Last active
August 15, 2024 14:35
-
-
Save rishubil/97b02c6108366e24fec391960a54035b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Dogdrip css | |
// @namespace dogdrip-css | |
// @description Dogdrip css | |
// @version 0.0.1 | |
// @match https://www.dogdrip.net/* | |
// @updateURL https://gist.github.com/rishubil/97b02c6108366e24fec391960a54035b/raw/dogdrip-css.user.js | |
// @downloadURL https://gist.github.com/rishubil/97b02c6108366e24fec391960a54035b/raw/dogdrip-css.user.js | |
// @run-at document-start | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
// https://css-load.com/resources/dogdrip.net-css-bd-2 | |
(function() {GM_addStyle(` | |
@charset "UTF-8";html { | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.5; | |
background: #cfcfcf; | |
color: #555b61; | |
-webkit-text-size-adjust: 100%; | |
-moz-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100% | |
} | |
body { | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.5; | |
padding: 0; | |
margin: 0 | |
} | |
table,input,textarea,select,button { | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: .875rem | |
} | |
audio,canvas,img,video { | |
max-width: 100%; | |
height: auto; | |
box-sizing: border-box | |
} | |
fieldset { | |
padding: 0; | |
margin: 0; | |
border: none | |
} | |
main { | |
display: block | |
} | |
p { | |
margin: 0 0 20px | |
} | |
h1,.eq.h1,h2,.eq.h2,h3,.eq.h3,h4,.eq.h4,h5,.eq.h5,h6,.eq.h6 { | |
margin: 0 | |
} | |
h1,.eq.h1 { | |
font-size: 2.625rem; | |
font-weight: 300; | |
line-height: 1.2 | |
} | |
h2,.eq.h2 { | |
font-size: 2rem; | |
font-weight: 300; | |
line-height: 1.3 | |
} | |
h3,.eq.h3 { | |
font-size: 1.5rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h4,.eq.h4 { | |
font-size: 1.25rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h5,.eq.h5 { | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h6,.eq.h6 { | |
font-size: .875rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
a { | |
background-color: transparent; | |
-webkit-text-decoration-skip: objects | |
} | |
a:active,a:hover { | |
outline: none | |
} | |
a,.eq.link { | |
color: #388aff; | |
text-decoration: none; | |
cursor: pointer | |
} | |
a:hover,.eq.link:hover { | |
color: #388aff; | |
text-decoration: underline | |
} | |
a.btn { | |
box-sizing: content-box | |
} | |
.eq.link-muted { | |
text-decoration: none; | |
color: #868e96 | |
} | |
.eq.link-muted:hover,.eq.link-muted:hover * { | |
color: #555b61 | |
} | |
.eq.link-muted:active,.eq.link-muted:active * { | |
color: #25282b | |
} | |
.eq.link-reset,.eq.link-reset * { | |
color: inherit; | |
text-decoration: none; | |
outline: none | |
} | |
* { | |
-webkit-tap-highlight-color: transparent | |
} | |
::-moz-selection { | |
background: #d7e8ff; | |
color: #25282b; | |
text-shadow: none | |
} | |
::selection { | |
background: #d7e8ff; | |
color: #25282b; | |
text-shadow: none | |
} | |
hr,.eq.hr { | |
box-sizing: content-box; | |
height: 0; | |
overflow: visible; | |
text-align: inherit; | |
margin: 0 0 20px; | |
border: 0; | |
border-top: 1px solid #e8eaeb | |
} | |
*+hr,*+.eq.hr { | |
margin-top: 20px | |
} | |
#popup_menu_area { | |
position: absolute; | |
z-index: 9999; | |
margin: 10px 0; | |
padding: 10px; | |
border: none; | |
border-radius: 3px; | |
font-size: .875rem; | |
box-shadow: 0 0 1px 1px rgba(31,45,61,.15); | |
background: #fff; | |
min-width: 80px | |
} | |
#popup_menu_area a { | |
padding: 7px 10px; | |
color: #25282b; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
#popup_menu_area a:hover,#popup_menu_area a:focus { | |
background: 0 0; | |
color: #388aff | |
} | |
#popup_menu_area:focus { | |
outline: none | |
} | |
.eq.custom-scroll::-webkit-scrollbar { | |
width: 8px; | |
background-color: transparent | |
} | |
.eq.custom-scroll::-webkit-scrollbar-thumb { | |
border-radius: 10px; | |
background-color: rgba(85,91,97,.3) | |
} | |
.eq.custom-scroll::-webkit-scrollbar-track { | |
background-color: transparent | |
} | |
@-ms-viewport { | |
width: device-width; | |
} | |
html { | |
box-sizing: border-box; | |
-ms-overflow-style: scrollbar | |
} | |
*,*::before,*::after { | |
box-sizing: inherit | |
} | |
.eq.container { | |
max-width: 1300px; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
width: 100%; | |
box-sizing: border-box; | |
margin-left: auto; | |
margin-right: auto | |
} | |
@media(max-width: 1050px) { | |
.eq.container { | |
display:inherit | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.container { | |
width:100%; | |
display: inherit | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.container { | |
padding-left:0; | |
padding-right: 0; | |
overflow: hidden | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.container { | |
} | |
} | |
.eq.container-fluid { | |
margin-right: auto; | |
margin-left: auto; | |
width: 100% | |
} | |
@media(max-width: 639px) { | |
.eq.container-fluid .eq.container { | |
padding-left:15px; | |
padding-right: 15px | |
} | |
} | |
.row { | |
display: -ms-flexbox; | |
display: flex; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
margin-right: -15px; | |
margin-left: -15px | |
} | |
.no-gutters { | |
margin-right: 0; | |
margin-left: 0 | |
} | |
.no-gutters>.col,.no-gutters>[class*=col-] { | |
padding-right: 0; | |
padding-left: 0 | |
} | |
.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto { | |
position: relative; | |
width: 100%; | |
min-height: 1px; | |
padding-right: 15px; | |
padding-left: 15px | |
} | |
.col { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
@media(min-width: 640px) { | |
.col-sm { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-sm-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-sm-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-sm-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-sm-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-sm-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-sm-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-sm-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-sm-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-sm-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-sm-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-sm-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-sm-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-sm-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-sm-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-sm-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-sm-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-sm-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-sm-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-sm-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-sm-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-sm-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-sm-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-sm-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-sm-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-sm-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 960px) { | |
.col-md { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-md-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-md-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-md-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-md-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-md-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-md-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-md-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-md-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-md-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-md-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-md-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-md-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-md-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-md-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-md-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-md-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-md-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-md-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-md-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-md-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-md-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-md-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-md-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-md-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-md-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 1200px) { | |
.col-lg { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-lg-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-lg-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-lg-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-lg-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-lg-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-lg-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-lg-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-lg-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-lg-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-lg-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-lg-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-lg-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-lg-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-lg-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-lg-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-lg-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-lg-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-lg-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-lg-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-lg-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-lg-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-lg-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-lg-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-lg-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-lg-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 1600px) { | |
.col-xl { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-xl-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-xl-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-xl-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-xl-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-xl-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-xl-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-xl-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-xl-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-xl-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-xl-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-xl-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-xl-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-xl-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-xl-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-xl-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-xl-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-xl-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-xl-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-xl-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-xl-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-xl-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-xl-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-xl-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-xl-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-xl-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
.flex-row { | |
-ms-flex-direction: row!important; | |
flex-direction: row!important | |
} | |
.flex-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
@media(min-width: 640px) { | |
.flex-sm-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-sm-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-sm-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-sm-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-sm-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-sm-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-sm-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-sm-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-sm-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-sm-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-sm-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-sm-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-sm-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-sm-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-sm-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-sm-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-sm-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-sm-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-sm-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-sm-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-sm-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-sm-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-sm-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-sm-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-sm-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-sm-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-sm-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-sm-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-sm-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 960px) { | |
.flex-md-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-md-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-md-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-md-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-md-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-md-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-md-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-md-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-md-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-md-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-md-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-md-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-md-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-md-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-md-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-md-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-md-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-md-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-md-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-md-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-md-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-md-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-md-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-md-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-md-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-md-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-md-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-md-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-md-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 1200px) { | |
.flex-lg-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-lg-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-lg-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-lg-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-lg-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-lg-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-lg-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-lg-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-lg-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-lg-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-lg-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-lg-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-lg-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-lg-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-lg-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-lg-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-lg-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-lg-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-lg-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-lg-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-lg-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-lg-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-lg-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-lg-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-lg-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-lg-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-lg-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-lg-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-lg-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 1600px) { | |
.flex-xl-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-xl-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-xl-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-xl-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-xl-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-xl-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-xl-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-xl-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-xl-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-xl-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-xl-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-xl-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-xl-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-xl-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-xl-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-xl-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-xl-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-xl-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-xl-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-xl-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-xl-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-xl-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-xl-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-xl-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-xl-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-xl-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-xl-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-xl-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-xl-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
.eq.flex { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1 | |
} | |
.eq.inline-flex { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex | |
} | |
.eq.flex-wrap { | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap | |
} | |
.eq.flex-middle { | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center | |
} | |
.eq.flex-left { | |
-webkit-justify-content: flex-start; | |
justify-content: flex-start | |
} | |
.eq.flex-center { | |
-webkit-justify-content: center; | |
justify-content: center | |
} | |
.eq.flex-right { | |
-webkit-justify-content: flex-end; | |
justify-content: flex-end | |
} | |
.eq.section { | |
zoom:1;padding-top: 20px; | |
padding-bottom: 20px | |
} | |
.eq.section:before,.eq.section:after { | |
content: ""; | |
display: table | |
} | |
.eq.section::after { | |
clear: both | |
} | |
.eq.section.secontent { | |
width: 960px | |
} | |
@media(max-width: 1050px) { | |
.eq.section.secontent { | |
width:100% | |
} | |
} | |
.eq.section-medium { | |
padding-top: 80px; | |
padding-bottom: 80px | |
} | |
.eq.section-large { | |
padding-top: 140px; | |
padding-bottom: 140px | |
} | |
.eq.section-xlarge { | |
padding-top: 180px; | |
padding-bottom: 180px | |
} | |
.eq.section-remove { | |
padding-top: 0; | |
padding-bottom: 0 | |
} | |
.eq.section-muted { | |
background-color: #f9f9fa | |
} | |
.section-right-image { | |
position: absolute; | |
right: -7%; | |
bottom: 0 | |
} | |
@media(max-width: 1599px) { | |
.section-right-image { | |
right:-24% | |
} | |
} | |
@media(max-width: 1199px) { | |
.section-right-image { | |
right:-40% | |
} | |
} | |
@media(max-width: 959px) { | |
.section-right-image { | |
right:-100% | |
} | |
} | |
.section-left-image { | |
position: absolute; | |
left: -7% | |
} | |
@media(max-width: 1599px) { | |
.section-left-image { | |
left:-28% | |
} | |
} | |
@media(max-width: 1199px) { | |
.section-left-image { | |
left:-48% | |
} | |
} | |
@media(max-width: 959px) { | |
.section-left-image { | |
left:-100% | |
} | |
} | |
.eq.text-color-inverse,.eq.text-color-inverse>* { | |
color: #fff | |
} | |
.eq.background-color-content { | |
background-color: #fff | |
} | |
.eq.background-color-base { | |
background-color: #868e96!important | |
} | |
.eq.background-color-base-light { | |
background-color: #bdc1c5!important | |
} | |
.eq.background-color-base-lighter { | |
background-color: #e8eaeb!important | |
} | |
.eq.background-color-base-lightest { | |
background-color: #f9f9fa!important | |
} | |
.eq.background-color-base-grey { | |
background-color: #cfcfcf!important | |
} | |
.eq.background-color-base-dark { | |
background-color: #555b61!important | |
} | |
.eq.background-color-base-darker { | |
background-color: #25282b!important | |
} | |
.eq.background-color-base-darkest { | |
background-color: #17191a!important | |
} | |
.eq.background-color-primary { | |
background-color: #2e4361!important | |
} | |
.eq.background-color-primary-light { | |
background-color: #60a1ff!important | |
} | |
.eq.background-color-primary-lighter { | |
background-color: #d7e8ff!important | |
} | |
.eq.background-color-primary-dark { | |
background-color: #263850!important | |
} | |
.eq.background-color-primary-darker { | |
background-color: #1862cc!important | |
} | |
.eq.background-color-success { | |
background-color: #52d290!important | |
} | |
.eq.background-color-success-light { | |
background-color: #75dba6!important | |
} | |
.eq.background-color-success-lighter { | |
background-color: #dcf6e9!important | |
} | |
.eq.background-color-success-dark { | |
background-color: #38b876!important | |
} | |
.eq.background-color-success-darker { | |
background-color: #31a469!important | |
} | |
.eq.background-color-danger { | |
background-color: #ff6b6b!important | |
} | |
.eq.background-color-danger-light { | |
background-color: #ff8989!important | |
} | |
.eq.background-color-danger-lighter { | |
background-color: #ffe1e1!important | |
} | |
.eq.background-color-danger-dark { | |
background-color: #e64949!important | |
} | |
.eq.background-color-danger-darker { | |
background-color: #cc4141!important | |
} | |
.eq.navbar { | |
position: static; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-direction: column; | |
top: 0; | |
right: 0; | |
left: 0; | |
width: 100%; | |
min-height: 60px; | |
z-index: 500; | |
background-color: #fff; | |
box-shadow: 0 1px 2px 0 rgba(0,0,0,.1); | |
-webkit-transition: 150ms; | |
-moz-transition: 150ms; | |
-o-transition: 150ms; | |
transition: 150ms | |
} | |
.eq.navbar.fixed { | |
position: fixed | |
} | |
.eq.navbar.absolute { | |
position: absolute | |
} | |
.eq.navbar-small .eq.logo-item { | |
height: 60px | |
} | |
.eq.navbar-small .eq.navbar-nav>li>a { | |
font-size: .875rem; | |
line-height: 58px; | |
margin-right: 0!important | |
} | |
.eq.navbar-small .eq.navbar-item { | |
height: 60px; | |
outline: none | |
} | |
.eq.navbar-small .eq.navbar-icon { | |
font-size: .875rem | |
} | |
.eq.navbar.primary { | |
background-color: #2e4361 | |
} | |
.eq.navbar.primary .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.primary .eq.nav-icon .line,.eq.navbar.primary .eq.nav-icon::before,.eq.navbar.primary .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-icon { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.primary .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.primary .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.primary .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.primary .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.primary .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar.dark { | |
background-color: #25282b | |
} | |
.eq.navbar.dark .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.dark .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.dark .eq.nav-icon .line,.eq.navbar.dark .eq.nav-icon::before,.eq.navbar.dark .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.dark .eq.navbar-icon { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li.active>a { | |
color: #388aff!important; | |
border-bottom-color: #388aff | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.dark .eq.navbar-nav>li.active>a { | |
border-bottom-color:#388aff!important | |
} | |
} | |
.eq.navbar.dark .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.dark .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.dark .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.dark .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.dark .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar.muted { | |
background-color: transparent; | |
box-shadow: none | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.muted { | |
box-shadow:0 1px rgba(255,255,255,.1) | |
} | |
} | |
.eq.navbar.muted .eq.logo-item { | |
outline: none | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-img.dark { | |
opacity: 0 | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-img.light { | |
opacity: 1 | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.muted .eq.nav-icon .line,.eq.navbar.muted .eq.nav-icon::before,.eq.navbar.muted .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.muted .eq.navbar-icon { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: transparent | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.muted .eq.navbar-nav>li.active>a { | |
border-bottom-color:#fff | |
} | |
} | |
.eq.navbar.muted .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.muted .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.muted .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.muted .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.muted .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar-container { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
max-width: 1200px; | |
min-height: 60px; | |
width: 100%; | |
box-sizing: border-box; | |
margin-left: auto; | |
margin-right: auto; | |
padding-right: 15px; | |
padding-left: 15px | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-container { | |
width:100% | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-container { | |
padding-left:0; | |
padding-right: 0 | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.navbar-container { | |
padding-left:30px; | |
padding-right: 30px | |
} | |
} | |
.eq.navbar-left,.eq.navbar-right { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-wrap: wrap; | |
-webkit-flex-wrap: wrap; | |
flex-wrap: wrap | |
} | |
.eq.navbar-right { | |
justify-content: flex-end | |
} | |
.eq.navbar-center { | |
position: absolute; | |
top: 0; | |
left: 50%; | |
-webkit-transform: translateX(-50%); | |
transform: translateX(-50%); | |
display: table; | |
width: -moz-max-content; | |
max-width: 100%; | |
box-sizing: border-box | |
} | |
.eq.navbar-item { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
box-sizing: border-box; | |
height: 70px; | |
padding-left: 15px; | |
padding-right: 15px; | |
font-size: .875rem; | |
text-decoration: none | |
} | |
@media(min-width: 640px) { | |
.eq.navbar-item:last-child { | |
padding-right:0 | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-item { | |
height:60px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-item { | |
height:50px | |
} | |
} | |
.eq.logo-item { | |
position: relative; | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: left; | |
-webkit-justify-content: left; | |
justify-content: left; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
height: 70px; | |
-webkit-transition: opacity 150ms; | |
-moz-transition: opacity 150ms; | |
-o-transition: opacity 150ms; | |
transition: opacity 150ms | |
} | |
@media(max-width: 959px) { | |
.eq.logo-item { | |
height:60px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.logo-item { | |
height:50px | |
} | |
} | |
.eq.logo-item .eq.logo-img { | |
display: block; | |
width: auto; | |
height: 40px | |
} | |
@media(max-width: 639px) { | |
.eq.logo-item .eq.logo-img { | |
height:30px | |
} | |
} | |
.eq.logo-item .eq.logo-img.normal { | |
visibility: hidden | |
} | |
.eq.logo-item .eq.logo-img.dark,.eq.logo-item .eq.logo-img.light { | |
position: absolute; | |
top: 50%; | |
left: 0; | |
transform: translateY(-50%) | |
} | |
.eq.logo-item .eq.logo-img.light { | |
opacity: 0 | |
} | |
.eq.logo-item .eq.logo-svg { | |
fill: #25282b | |
} | |
.eq.logo-item .eq.logo-text { | |
color: #25282b; | |
font-weight: 600; | |
margin: 0 | |
} | |
.eq.logo-item:hover { | |
opacity: .8 | |
} | |
.eq.navbar-nav { | |
position: relative; | |
margin: 0; | |
padding: 0; | |
max-width: 820px; | |
white-space: nowrap; | |
list-style-type: none | |
} | |
@media(min-width: 640px) { | |
.eq.navbar-nav { | |
margin-left:10px | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-nav { | |
height:70px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-nav { | |
overflow-y:hidden; | |
height: 60px | |
} | |
} | |
.eq.navbar-nav>li { | |
display: inline-block | |
} | |
.eq.navbar-nav>li>a { | |
display: inline-block; | |
padding-left: 15px; | |
padding-right: 10px; | |
margin-right: 10px; | |
color: #868e96; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 68px; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom: 2px solid transparent; | |
-webkit-transition: 150ms; | |
-moz-transition: 150ms; | |
-o-transition: 150ms; | |
transition: 150ms | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-nav>li>a { | |
line-height:58px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-nav>li>a { | |
font-size:.875rem; | |
font-weight: 600; | |
line-height: 48px!important | |
} | |
} | |
.eq.navbar-nav>li:hover>a { | |
color: #25282b | |
} | |
.eq.navbar-nav>li.active>a { | |
color: #388aff; | |
border-bottom: 2px solid #388aff | |
} | |
.eq.mobile-navbar-nav { | |
height: 60px | |
} | |
@media(max-width: 639px) { | |
.eq.mobile-navbar-nav { | |
height:50px | |
} | |
} | |
.eq.navbar-search { | |
border-radius: 500px; | |
background: #f9f9fa; | |
-webkit-transition: all .3s; | |
transition: all .3s; | |
-webkit-transform-origin: right; | |
transform-origin: right | |
} | |
.eq.navbar-search:hover { | |
background: #e8eaeb | |
} | |
.eq.navbar-search input[type=text] { | |
display: inline-block; | |
position: relative; | |
padding: 10px 0 10px 20px; | |
width: 80px; | |
border: none; | |
border-radius: 2em 0 0 2em; | |
color: transparent; | |
font-size: 16px; | |
background-color: transparent; | |
-webkit-transition: all .4s cubic-bezier(.68,-.55,.27,1.55); | |
transition: all .4s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transform-origin: right; | |
transform-origin: right | |
} | |
.eq.navbar-search input[type=text]:focus { | |
width: 160px; | |
outline: none; | |
color: #555b61 | |
} | |
.eq.navbar-search>.eq.button-search { | |
font-family: ionicons; | |
box-shadow: none; | |
background: 0 0; | |
border: none; | |
font-size: 22px; | |
color: #868e96; | |
padding: 9px 14px!important; | |
height: 100%!important; | |
text-shadow: none; | |
transition: .3s; | |
-moz-transition: .3s; | |
-webkit-transition: .3s; | |
-o-transition: .3s | |
} | |
.eq.navbar-search>.eq.button-search:hover { | |
cursor: pointer; | |
color: #388aff | |
} | |
.eq.navbar-search>.eq.button-search:focus { | |
outline: none | |
} | |
.eq.navbar-icon { | |
cursor: pointer; | |
position: relative; | |
padding-left: 10px; | |
padding-right: 10px; | |
font-size: 16px; | |
color: #555b61; | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-icon { | |
font-size:.875rem; | |
padding-left: 5px; | |
padding-right: 5px | |
} | |
} | |
.eq.navbar-icon:hover { | |
color: #25282b | |
} | |
.eq.navbar-container .eq.badge { | |
display: none; | |
position: absolute; | |
right: 30px; | |
top: 4px | |
} | |
.eq.navbar-container .eq.badge.count { | |
display: block | |
} | |
.eq.nav-icon { | |
cursor: pointer; | |
position: relative; | |
width: 18px; | |
height: 14px | |
} | |
.eq.nav-icon::before,.eq.nav-icon::after { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
transition: .2s ease; | |
-o-transition: .2s ease; | |
-moz-transition: .2s ease; | |
-webkit-transition: .2s ease | |
} | |
.eq.nav-icon .line,.eq.nav-icon::before,.eq.nav-icon::after { | |
height: 2px; | |
background-color: #25282b | |
} | |
.eq.nav-icon::before { | |
width: 12px | |
} | |
.eq.nav-icon .line { | |
position: absolute; | |
top: 6px; | |
width: 100%; | |
transition: .3s ease; | |
-o-transition: .3s ease; | |
-moz-transition: .3s ease; | |
-webkit-transition: .3s ease | |
} | |
.eq.nav-icon::after { | |
width: 14px; | |
top: 12px | |
} | |
.eq.nav-drawer-toggle:hover .eq.nav-icon::before,.eq.nav-drawer-toggle:hover .eq.nav-icon::after { | |
width: 100% | |
} | |
.eq.nav-drawer-toggle:hover .eq.nav-icon .line { | |
width: 12px | |
} | |
@media(max-width: 400px) { | |
.eq.nav-drawer-toggle { | |
padding-left:10px!important; | |
padding-right: 5px!important | |
} | |
.navbar-profile { | |
padding-left: 10px!important | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.nav-drawer-toggle { | |
padding-left:15px; | |
padding-right: 15px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.profile-image { | |
padding-right:15px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.toggle-login { | |
margin-left:10px; | |
padding-right: 10px | |
} | |
} | |
.eq.modal { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1000; | |
visibility: hidden; | |
opacity: 0; | |
overflow-x: hidden; | |
overflow-y: auto; | |
-webkit-transition: opacity .2s,visibility .2s; | |
-moz-transition: opacity .2s,visibility .2s; | |
transition: opacity .2s,visibility .2s | |
} | |
.eq.modal.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.modal.on .eq.modal-content { | |
transform: scale(1) | |
} | |
.eq.modal-content { | |
display: block; | |
position: relative; | |
width: 100%; | |
max-width: 400px; | |
height: auto; | |
max-height: 100vh; | |
z-index: 1; | |
overflow-y: auto; | |
background-color: #fff; | |
border-radius: 3px; | |
box-shadow: 0 2px 4px rgba(0,0,0,.2); | |
transform: scale(.8); | |
transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-moz-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-o-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55) | |
} | |
.eq.modal-header { | |
position: relative; | |
height: auto; | |
padding: 15px 30px; | |
border-bottom: 1px solid #e8eaeb | |
} | |
.eq.modal-body { | |
padding: 30px | |
} | |
.eq.modal-background { | |
position: fixed; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
overflow-x: hidden; | |
background-color: rgba(0,0,0,.2) | |
} | |
.eq.modal-close { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: absolute; | |
bottom: 0; | |
right: 0; | |
height: 100%; | |
max-height: 50px; | |
padding: 12px 16px; | |
color: #868e96; | |
font-size: 20px; | |
line-height: 1; | |
text-decoration: none; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
transition: all .3s | |
} | |
.eq.modal-close:hover,.eq.modal-close:active { | |
color: #555b61 | |
} | |
@media(max-width: 639px) { | |
.eq.modal-login .eq.modal-content { | |
position:absolute; | |
bottom: 0; | |
border-radius: 0; | |
max-width: 100% | |
} | |
} | |
.eq.modal.slide-left .eq.modal-content { | |
max-width: 250px; | |
height: 100%; | |
margin: 0 auto 0 0; | |
border-radius: 0; | |
top: 0; | |
left: 0; | |
transform: translateX(-50%) scale(1); | |
transition: all .2s ease-in-out; | |
-webkit-transition: all .2s ease-in-out; | |
-moz-transition: all .2s ease-in-out; | |
-o-transition: all .2s ease-in-out | |
} | |
.eq.modal.slide-left .eq.modal-content .eq.modal-body { | |
padding: 15px 30px | |
} | |
.eq.modal.slide-left.on .eq.modal-content { | |
transform: translateX(0) | |
} | |
.eq.nav-drawer-toggle>i { | |
color: #25282b | |
} | |
.eq.nav-drawer { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 8888; | |
visibility: hidden; | |
opacity: 0; | |
-webkit-transition: opacity .2s,visibility .2s; | |
-moz-transition: opacity .2s,visibility .2s; | |
transition: opacity .2s,visibility .2s | |
} | |
.eq.nav-drawer.on { | |
visibility: visible; | |
opacity: 1; | |
z-index: 9998 | |
} | |
.eq.nav-drawer.on.on>.eq.nav-drawer-content { | |
-webkit-transform: translateX(0) scaleX(1); | |
transform: translateX(0) scaleX(1) | |
} | |
.eq.nav-drawer-bg { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: rgba(0,0,0,.3); | |
z-index: 10 | |
} | |
.eq.nav-drawer-content { | |
position: relative; | |
width: 280px; | |
height: 100%; | |
overflow-x: hidden; | |
z-index: 20; | |
background: #fff; | |
box-shadow: 2px 2px 5px rgba(0,0,0,.1); | |
transform: translateX(-50%) scaleX(.8); | |
transform-origin: left; | |
transition-timing-function: cubic-bezier(.4,0,.2,1); | |
transition-duration: .3s; | |
-webkit-transform: translateX(-50%) scaleX(.8); | |
-webkit-transform-origin: left; | |
-webkit-transition-timing-function: cubic-bezier(.4,0,.2,1); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-profile-menu { | |
box-shadow: 0 2px 3px rgba(23,25,26,.1) | |
} | |
.eq.nav-menu { | |
margin: 0; | |
padding: 20px 0; | |
list-style-type: none | |
} | |
.eq.nav-menu>li { | |
position: relative; | |
margin: 0; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 20px; | |
border-bottom: 1px solid #f9f9fa; | |
color: #25282b; | |
font-size: .875rem; | |
font-weight: 600; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>a:hover { | |
color: #555b61; | |
background-color: #f9f9fa | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron { | |
cursor: pointer; | |
position: absolute; | |
top: 0; | |
right: 0; | |
width: 42px; | |
height: 42px; | |
padding: 0; | |
border: none; | |
outline: none; | |
background-color: transparent | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::before,.eq.nav-menu>li.parent .eq.nav-chevron::after { | |
content: ""; | |
position: absolute; | |
top: 50%; | |
width: 10px; | |
height: 2px; | |
background-color: #555b61; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::before { | |
right: 20px; | |
transform: rotate(45deg) | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::after { | |
right: 14px; | |
transform: rotate(135deg) | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron:hover::before,.eq.nav-menu>li.parent .eq.nav-chevron:hover::after { | |
background-color: #25282b | |
} | |
.eq.nav-menu>li.open>ul { | |
opacity: 1; | |
max-height: 100vh; | |
margin-bottom: 10px | |
} | |
.eq.nav-menu>li.open .eq.nav-chevron::before { | |
transform: rotate(-45deg) | |
} | |
.eq.nav-menu>li.open .eq.nav-chevron::after { | |
transform: rotate(225deg) | |
} | |
.eq.nav-menu>li.active>a { | |
color: #388aff; | |
background-color: #f9f9fa | |
} | |
.eq.nav-menu>li>ul { | |
overflow: hidden; | |
max-height: 0; | |
padding: 0; | |
margin: 0; | |
list-style-type: none; | |
opacity: 0; | |
transition: all 350ms ease-in-out; | |
-o-transition: all 350ms ease-in-out; | |
-moz-transition: all 350ms ease-in-out; | |
-webkit-transition: all 350ms ease-in-out | |
} | |
.eq.nav-menu>li>ul>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 40px; | |
color: #868e96; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>ul>li>a:hover { | |
color: #555b61; | |
background-color: #f9f9fa | |
} | |
.eq.nav-menu>li>ul>li>ul { | |
padding: 0; | |
margin-bottom: 10px; | |
list-style-type: none | |
} | |
.eq.nav-menu>li>ul>li>ul>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 60px; | |
color: #868e96; | |
font-size: .75rem; | |
text-decoration: none | |
} | |
.eq.nav-menu>li>ul>li>ul>li>a:hover { | |
color: #555b61; | |
background-color: #f9f9fa | |
} | |
.eq.nav-menu>li>ul>li>ul>li.active>a { | |
color: #17191a; | |
font-weight: 600 | |
} | |
.eq.nav-menu>li>ul>li.active>a { | |
color: #17191a; | |
font-weight: 600 | |
} | |
.eq.search { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
visibility: hidden; | |
opacity: 0; | |
z-index: 10000; | |
transition: all .2s ease-in-out; | |
-webkit-transition: all .2s ease-in-out; | |
-moz-transition: all .2s ease-in-out; | |
-o-transition: all .2s ease-in-out | |
} | |
.eq.search.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.search.on .eq.search-circle { | |
-webkit-transform: translateX(-50%) scale(6)!important; | |
transform: translateX(-50%) scale(6)!important | |
} | |
.eq.search .eq.search-content { | |
position: relative; | |
width: 100%; | |
z-index: 2; | |
box-shadow: 0 3px 5px rgba(23,25,26,.1); | |
overflow: hidden | |
} | |
.eq.search .eq.search-content .search-close { | |
cursor: pointer; | |
top: 5px; | |
left: 5px; | |
padding: 15px; | |
color: #25282b; | |
font-size: 16px | |
} | |
.eq.search .eq.search-content .eq.search-form { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input { | |
display: inline-block; | |
position: relative; | |
width: 70%; | |
padding: 10px 0; | |
margin-top: 30px; | |
margin-bottom: 140px; | |
border: none; | |
outline: none; | |
border-bottom: 2px solid #17191a; | |
background-color: transparent; | |
color: #17191a; | |
font-size: 1.25rem; | |
font-weight: 300; | |
transition: .4s; | |
-webkit-transition: .4s; | |
-moz-transition: .4s; | |
-o-transition: .4s | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input:-ms-input-placeholder { | |
color: #868e96!important | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input::-moz-placeholder { | |
color: #868e96 | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input::-webkit-input-placeholder { | |
color: #868e96 | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-button { | |
padding: 10px; | |
background-color: transparent | |
} | |
.eq.search .eq.search-content .eq.search-circle { | |
position: absolute; | |
width: 100px; | |
height: 100px; | |
top: 50px; | |
left: 50%; | |
z-index: -1; | |
border-radius: 50%; | |
background-color: #fff; | |
transform: translateX(-50%); | |
will-change: transform,translateX; | |
-webkit-transition: translateX .3s,-webkit-transform .3s; | |
transition: translateX .3s,-webkit-transform .3s; | |
transition: transform .3s,translateX .3s; | |
transition: transform .3s,translateX .3s,-webkit-transform .3s | |
} | |
.eq.search .eq.search-shadow { | |
position: fixed; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1; | |
background: rgba(0,0,0,.9) | |
} | |
.eq.button { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
cursor: pointer; | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 1.4; | |
text-align: center; | |
padding: 10px 18px; | |
outline: none; | |
border: none; | |
border-radius: 3px; | |
text-decoration: none!important; | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.button:focus { | |
box-shadow: 0 0 0 .2rem rgba(134,142,150,.3) | |
} | |
.eq.button:disabled { | |
opacity: .7 | |
} | |
.eq.button-group { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1 | |
} | |
.eq.button-group .eq.button { | |
width: 100%; | |
margin-right: 10px | |
} | |
.eq.button-group .eq.button:last-child { | |
margin-right: 0 | |
} | |
.eq.button-expand { | |
width: 100% | |
} | |
.eq.button-rounded { | |
border-radius: 100px!important | |
} | |
.eq.button-shadow { | |
box-shadow: 0 3px 4px rgba(0,0,0,.1) | |
} | |
.eq.button-shadow:hover { | |
box-shadow: 0 3px 10px rgba(0,0,0,.2) | |
} | |
.eq.button-shadow:active { | |
box-shadow: 0 1px 4px rgba(0,0,0,.1) | |
} | |
.eq.button-small { | |
font-size: .75rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 5px 10px; | |
border-radius: 3px | |
} | |
.eq.button-small.button-stroke { | |
padding: 4px 9px | |
} | |
.eq.button-large { | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 10px 25px; | |
border-radius: 3px | |
} | |
.eq.button-xxsmall { | |
font-size: .75rem; | |
border-radius: 3px | |
} | |
.eq.button-default { | |
padding: 9px 17px; | |
color: #555b61; | |
background-color: #fff; | |
border-color: #e8eaeb; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb | |
} | |
.eq.button-default:hover { | |
border-color: #bdc1c5 | |
} | |
.eq.button-primary { | |
color: #fff; | |
background-color: #2e4361 | |
} | |
.eq.button-primary:hover { | |
background-color: #405e88 | |
} | |
.eq.button-primary:focus { | |
box-shadow: 0 0 0 .2rem rgba(56,138,255,.3) | |
} | |
.eq.button-success { | |
color: #fff; | |
background-color: #52d290 | |
} | |
.eq.button-success:hover { | |
background-color: #75dba6 | |
} | |
.eq.button-success:focus { | |
box-shadow: 0 0 0 .2rem rgba(82,210,144,.3) | |
} | |
.eq.button-danger { | |
color: #fff; | |
background-color: #ff6b6b | |
} | |
.eq.button-danger:hover { | |
background-color: #ff8989 | |
} | |
.eq.button-danger:focus { | |
box-shadow: 0 0 0 .2rem rgba(255,107,107,.3) | |
} | |
.eq.button-content { | |
color: #2e4361; | |
background-color: #fff | |
} | |
.eq.button-content:hover { | |
background-color: #f9f9fa | |
} | |
.eq.button-stroke { | |
padding: 9px 17px; | |
border-width: 1px; | |
border-style: solid; | |
background-color: transparent | |
} | |
.eq.button-stroke.eq.button-default { | |
color: #555b61; | |
border-color: #555b61 | |
} | |
.eq.button-stroke.eq.button-default:hover { | |
color: #fff; | |
border-color: #555b61; | |
background-color: #555b61 | |
} | |
.eq.button-stroke.eq.button-primary { | |
color: #388aff | |
} | |
.eq.button-stroke.eq.button-primary:hover { | |
color: #fff; | |
border-color: #327ce6; | |
background-color: #327ce6 | |
} | |
.eq.button-stroke.eq.button-success { | |
color: #52d290 | |
} | |
.eq.button-stroke.eq.button-success:hover { | |
color: #fff; | |
border-color: #38b876; | |
background-color: #38b876 | |
} | |
.eq.button-stroke.eq.button-danger { | |
color: #ff6b6b | |
} | |
.eq.button-stroke.eq.button-danger:hover { | |
color: #fff; | |
border-color: #e64949; | |
background-color: #e64949 | |
} | |
.eq.button-icon { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
width: 36px; | |
height: 36px; | |
text-decoration: none; | |
border: none; | |
outline: none; | |
border-radius: 500px | |
} | |
.eq.button-social { | |
padding: 12px 18px; | |
text-align: center; | |
line-height: 1; | |
border-radius: 500px | |
} | |
.eq.button-social-google { | |
color: #e05353; | |
border-color: #fff; | |
background-color: #fff; | |
box-shadow: 0 6px 24px -2px rgba(85,91,97,.3) | |
} | |
.eq.button-social-google:hover { | |
border-color: #f9f9fa; | |
background-color: #f9f9fa; | |
box-shadow: 0 6px 30px -2px rgba(85,91,97,.6) | |
} | |
.eq.button-social-google:active { | |
border-color: #e8eaeb; | |
background-color: #e8eaeb; | |
box-shadow: 0 3px 14px -2px rgba(85,91,97,.3) | |
} | |
.eq.button-social-google:focus { | |
box-shadow: 0 0 0 .2rem rgba(134,142,150,.1) | |
} | |
.eq.button-social-facebook { | |
color: #fff; | |
border-color: #4378e2; | |
background-color: #4378e2; | |
box-shadow: 0 6px 24px -2px rgba(67,120,226,.4) | |
} | |
.eq.button-social-facebook:hover { | |
border-color: #285ec8; | |
background-color: #285ec8; | |
box-shadow: 0 6px 30px -2px rgba(67,120,226,.6) | |
} | |
.eq.button-social-facebook:active { | |
border-color: #2453b2; | |
background-color: #2453b2; | |
box-shadow: 0 3px 14px -2px rgba(67,120,226,.3) | |
} | |
.eq.button-social-facebook:focus { | |
box-shadow: 0 0 0 .2rem rgba(67,120,226,.3) | |
} | |
.eq.button-social-kakao { | |
color: #713d3d; | |
border-color: #f7e542; | |
background-color: #f7e542; | |
box-shadow: 0 6px 24px -2px rgba(247,229,66,.4) | |
} | |
.eq.button-social-kakao:hover { | |
border-color: #ddcb25; | |
background-color: #ddcb25; | |
box-shadow: 0 3px 30px -2px rgba(247,229,66,.6) | |
} | |
.eq.button-social-kakao:active { | |
border-color: #c5b521; | |
background-color: #c5b521; | |
box-shadow: 0 3px 14px -2px rgba(247,229,66,.3) | |
} | |
.eq.button-social-kakao:focus { | |
box-shadow: 0 0 0 .2rem rgba(247,229,66,.3) | |
} | |
.eq.button-social-naver { | |
color: #fff; | |
border-color: #4aad39; | |
background-color: #4aad39; | |
box-shadow: 0 6px 24px -2px rgba(74,173,57,.4) | |
} | |
.eq.button-social-naver:hover { | |
border-color: #3b8a2e; | |
background-color: #3b8a2e; | |
box-shadow: 0 3px 30px -2px rgba(74,173,57,.6) | |
} | |
.eq.button-social-naver:active { | |
border-color: #357b29; | |
background-color: #357b29; | |
box-shadow: 0 3px 14px -2px rgba(74,173,57,.3) | |
} | |
.eq.button-social-naver:focus { | |
box-shadow: 0 0 0 .2rem rgba(74,173,57,.3) | |
} | |
.eq.button-social-twitter { | |
color: #fff; | |
border-color: #56aef7; | |
background-color: #56aef7; | |
box-shadow: 0 6px 24px -2px rgba(86,174,247,.4) | |
} | |
.eq.button-social-twitter:hover { | |
border-color: #3792dd; | |
background-color: #3792dd; | |
box-shadow: 0 3px 30px -2px rgba(86,174,247,.6) | |
} | |
.eq.button-social-twitter:active { | |
border-color: #3182c5; | |
background-color: #3182c5; | |
box-shadow: 0 3px 14px -2px rgba(86,174,247,.3) | |
} | |
.eq.button-social-twitter:focus { | |
box-shadow: 0 0 0 .2rem rgba(86,174,247,.3) | |
} | |
.eq.button-scroll-top { | |
visibility: hidden; | |
position: fixed; | |
opacity: 0; | |
right: 40px; | |
bottom: 40px; | |
padding: 14px 18px; | |
line-height: 1; | |
border-radius: 2em; | |
z-index: 100; | |
font-size: 1.25rem; | |
color: #fff; | |
background-color: #2e4361; | |
box-shadow: 0 3px 4px rgba(23,25,26,.1); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.button-scroll-top.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.button-scroll-top:hover { | |
background-color: #5b7aa7; | |
box-shadow: 0 3px 10px rgba(23,25,26,.2) | |
} | |
.eq.button-scroll-top:active { | |
background-color: #2e4361; | |
box-shadow: 0 1px 4px rgba(23,25,26,.1) | |
} | |
@media(max-width: 959px) { | |
.eq.button-scroll-top { | |
right:20px; | |
bottom: 20px | |
} | |
} | |
.eq.button-scroll-tool-box { | |
position: fixed; | |
right: 40px; | |
bottom: 70px; | |
z-index: 100; | |
font-size: 1.25rem; | |
display: flex; | |
flex-direction: column | |
} | |
.eq.button-scroll-tool-item { | |
padding: 0 10px; | |
border-radius: .25em; | |
z-index: 100; | |
font-size: 1.25rem; | |
margin: 2px; | |
text-align: center; | |
color: #ccc; | |
background-color: rgba(255,255,255,.5); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms; | |
border: 1px solid #ddd | |
} | |
.eq.button-scroll-tool-item:active { | |
background-color: rgba(128,128,128,.2) | |
} | |
@media(max-width: 639px) { | |
.eq.button-scroll-tool-box { | |
right:20px; | |
bottom: 75px | |
} | |
.eq.button-scroll-tool-item { | |
padding: 0 8px; | |
margin: 1px | |
} | |
} | |
.eq.input { | |
display: inline-block; | |
font-size: .874rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 10px 18px; | |
margin-bottom: 10px; | |
border-radius: 4px; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s; | |
background-color: #fff; | |
color: #000 | |
} | |
.eq.input:-webkit-autofill { | |
-webkit-box-shadow: 0 0 0 1000px #fff inset | |
} | |
.eq.input:focus { | |
outline: none | |
} | |
.eq.input-expand { | |
width: 100% | |
} | |
.eq.input-default { | |
border-color: #e8eaeb | |
} | |
.eq.input-default:hover { | |
border-color: #bdc1c5 | |
} | |
.eq.input-default:focus { | |
border-color: #388aff; | |
outline: none | |
} | |
.eq.input-checkbox { | |
display: none; | |
visibility: hidden | |
} | |
.eq.input-checkbox+label { | |
cursor: pointer; | |
font-size: .875rem; | |
color: #868e96; | |
-webkit-transition: .2s; | |
-moz-transition: .2s; | |
-o-transition: .2s; | |
transition: .2s | |
} | |
.eq.input-checkbox+label:hover { | |
color: #555b61 | |
} | |
.eq.input-checkbox+label:hover:before { | |
border-color: #bdc1c5 | |
} | |
.eq.input-checkbox+label:active:before { | |
border-color: #388aff | |
} | |
.eq.input-checkbox+label:before { | |
display: inline-block; | |
content: ""; | |
width: 18px; | |
height: 18px; | |
margin-right: 6px; | |
border-radius: 4px; | |
border: none; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb; | |
vertical-align: middle; | |
background-color: #fff; | |
background-repeat: no-repeat; | |
background-position: center; | |
background-size: 10px auto; | |
-webkit-background-size: 10px auto; | |
-moz-background-size: 10px auto; | |
-o-background-size: 10px auto; | |
-webkit-transition: .2s; | |
-moz-transition: .2s; | |
-o-transition: .2s; | |
transition: .2s | |
} | |
.eq.input-checkbox:focus+label:before { | |
border-color: #388aff | |
} | |
.eq.input-checkbox:checked+label:before { | |
border-color: #388aff; | |
background-color: #388aff; | |
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwcHgiIGhlaWdodD0iMTVweCIgdmlld0JveD0iMCAwIDIwIDE1Ij4NCjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iNy4xNDMsMTQuOTM4IDAsNy43OTYgMi4wMjEsNS43NzYgNy4xNDMsMTAuODk4IDE3Ljk3OSwwLjA2MiAyMCwyLjA4MiAiLz4NCjwvc3ZnPg0K) | |
} | |
.eq.input:-ms-input-placeholder { | |
color: #868e96!important; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input::-moz-placeholder { | |
color: #868e96; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input::-webkit-input-placeholder { | |
color: #868e96; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input:focus:-ms-input-placeholder { | |
color: transparent!important | |
} | |
.eq.input:focus::-moz-placeholder { | |
color: transparent | |
} | |
.eq.input:focus::-webkit-input-placeholder { | |
color: transparent | |
} | |
.eq.textarea { | |
width: 100%; | |
border: 1px solid #e8eaeb; | |
border-radius: 3px; | |
padding: 10px | |
} | |
.eq.textarea:focus { | |
outline: none; | |
border-color: #388aff | |
} | |
.eq.form-field { | |
position: relative; | |
padding-top: 10px; | |
margin: 0 0 15px | |
} | |
.eq.form-field .eq.input { | |
border: none; | |
padding: 12px 0; | |
margin: 0 | |
} | |
.eq.form-field .eq.input+label { | |
display: block; | |
position: relative; | |
margin: 0 | |
} | |
.eq.form-field .eq.input+label .eq.input-title { | |
position: absolute; | |
display: block; | |
top: -33px; | |
visibility: hidden; | |
opacity: 0; | |
color: #868e96; | |
font-size: 16px; | |
transition: 250ms; | |
-o-transition: 250ms; | |
-moz-transition: 250ms; | |
-webkit-transition: 250ms | |
} | |
.eq.form-field .eq.input+label::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid #e8eaeb; | |
transition: all 250ms; | |
-o-transition: all 250ms; | |
-moz-transition: all 250ms; | |
-webkit-transition: all 250ms | |
} | |
.eq.form-field .eq.input+label::after { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
height: 2px; | |
background-color: #388aff; | |
transform: scaleX(0); | |
transition: all 250ms; | |
-o-transition: all 250ms; | |
-moz-transition: all 250ms; | |
-webkit-transition: all 250ms | |
} | |
.eq.form-field .eq.input:hover+label::before { | |
border-color: #bdc1c5 | |
} | |
.eq.form-field .eq.input:focus+label .eq.input-title { | |
visibility: visible; | |
opacity: 1; | |
top: -60px; | |
font-size: .75rem | |
} | |
.eq.form-field .eq.input:focus+label::after { | |
transform: scaleX(1) | |
} | |
.eq.table { | |
width: 100%; | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: .875rem; | |
line-height: 1.5; | |
border-collapse: collapse | |
} | |
.eq.table tr th,.eq.table tr td { | |
color: #25282b; | |
font-size: .875rem; | |
font-weight: 400; | |
text-align: left; | |
padding: 15px | |
} | |
.eq.table-divider tr { | |
border: 1px solid #e8eaeb | |
} | |
.eq.table-divider tr>th { | |
background-color: #f9f9fa | |
} | |
.eq.tab { | |
position: relative; | |
margin: 0; | |
padding: 0; | |
white-space: nowrap; | |
list-style-type: none | |
} | |
@media(max-width: 639px) { | |
.eq.tab { | |
overflow-y:hidden; | |
height: 50px | |
} | |
} | |
.eq.tab::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid #e8eaeb | |
} | |
.eq.tab>li { | |
display: inline-block; | |
position: relative | |
} | |
.eq.tab>li>a { | |
display: inline-block; | |
color: #868e96; | |
font-size: .874rem; | |
font-weight: 500; | |
line-height: 58px; | |
padding: 0 10px; | |
margin-right: 10px; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom: 2px solid transparent; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
@media(max-width: 639px) { | |
.eq.tab>li>a { | |
font-weight:600; | |
line-height: 48px | |
} | |
} | |
.eq.tab>li:last-child>a { | |
margin-right: 0 | |
} | |
.eq.tab>li:hover>a { | |
color: #555b61 | |
} | |
.eq.tab>li.active>a { | |
color: #388aff; | |
border-bottom: 2px solid #388aff | |
} | |
.eq.tab>li:hover>.popover-animationLeft { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
@media(max-width: 639px) { | |
.eq.tab-wrap { | |
overflow:hidden; | |
border-bottom: 1px solid #e8eaeb; | |
height: 51px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.tab-wrap .eq.tab { | |
height:60px | |
} | |
} | |
.eq.list-menu { | |
padding: 0; | |
margin: 0 0 40px | |
} | |
.eq.list-menu li { | |
list-style-type: none | |
} | |
.eq.list-menu li.active>a { | |
border-left-width: 2px; | |
border-left-color: #388aff; | |
color: #388aff; | |
font-weight: 600 | |
} | |
.eq.list-menu li.active>a:hover { | |
color: #327ce6 | |
} | |
.eq.list-menu li a { | |
display: inline-block; | |
padding: 6px 10px; | |
margin-bottom: 5px; | |
border-left-width: 1px; | |
border-left-style: solid; | |
border-left-color: transparent; | |
color: #868e96; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.list-menu li a:hover { | |
border-left-color: #388aff; | |
color: #388aff | |
} | |
.eq.list-menu>li>ul { | |
padding: 0; | |
margin-bottom: 10px | |
} | |
.eq.list-menu>li>ul>li>a { | |
padding-left: 30px; | |
color: #868e96; | |
font-size: .875rem; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.list-menu>li>ul>li.active>a { | |
border: none; | |
color: #25282b | |
} | |
.eq.nav-dropdown-wrap { | |
position: absolute; | |
top: 60px | |
} | |
.eq.nav-dropdown { | |
position: absolute; | |
width: 200px; | |
padding: 15px 20px; | |
border: 1px solid rgba(0,0,0,.1); | |
border-radius: 4px; | |
z-index: 200; | |
background-color: #fff; | |
box-shadow: 0 8px 20px 1px rgba(23,25,26,.15) | |
} | |
.eq.nav-dropdown-animation-right { | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.8); | |
transform-origin: top right; | |
transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
transition-duration: .3s; | |
-webkit-transform: scale(.8); | |
-webkit-transform-origin: top right; | |
-webkit-transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-dropdown-animation-left { | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.8); | |
transform-origin: top right; | |
transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
transition-duration: .3s; | |
-webkit-transform: scale(.8); | |
-webkit-transform-origin: top left; | |
-webkit-transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-dropdown-link:hover .nav-dropdown-animation-right,.eq.navbar-nav>li:hover>.nav-dropdown-animation-right { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
.eq.nav-dropdown-link:hover .nav-dropdown-animation-left,.eq.navbar-nav>li:hover>.nav-dropdown-animation-left { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
.eq.nav-dropdown-list li { | |
list-style-type: none | |
} | |
.eq.nav-dropdown-list li a { | |
display: inline-block; | |
width: 100%; | |
color: #555b61; | |
font-size: 15px; | |
font-weight: 400; | |
text-decoration: none; | |
padding: 5px 20px 5px 0; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-dropdown-list li a>i { | |
padding-right: 10px | |
} | |
.eq.nav-dropdown-list li a:hover { | |
color: #388aff | |
} | |
.eq.nav-dropdown-list>li>ul { | |
padding: 0 0 0 20px; | |
margin-bottom: 10px | |
} | |
.eq.nav-dropdown-list>li>ul li a { | |
color: #868e96; | |
font-size: .875rem; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-dropdown-list>li>ul li a:hover { | |
color: #388aff | |
} | |
.eq.nav-dropdown-list>li>ul li.active>a { | |
color: #25282b | |
} | |
.eq.nav-dropdown-list li.active>a { | |
color: #388aff | |
} | |
.nav-dropdown-usermenu { | |
right: -20px; | |
top: 0; | |
width: 260px!important | |
} | |
.nav-dropdown-usermenu>a { | |
position: absolute; | |
display: inline-block; | |
top: 25px; | |
right: 20px; | |
width: 24px; | |
line-height: 24px; | |
text-align: center | |
} | |
ul.nav-dropdown-usermenu-userinfo { | |
padding-bottom: 15px; | |
list-style: none; | |
margin: 0; | |
padding: 0 | |
} | |
.nav-dropdown-usermenu ul.nav-dropdown-list { | |
margin: 0; | |
padding: 0 | |
} | |
.eq.dropdown { | |
position: relative | |
} | |
.eq.dropdown .eq.dropdown-toggle { | |
cursor: pointer | |
} | |
.eq.dropdown .eq.dropdown-toggle img { | |
width: 40px; | |
height: 40px | |
} | |
@media(min-width: 640px) { | |
.eq.dropdown .eq.dropdown-toggle { | |
padding-right:0!important | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown .eq.dropdown-toggle img { | |
width:30px; | |
height: 30px | |
} | |
} | |
.eq.dropdown-menu { | |
position: absolute; | |
top: 0; | |
left: 0; | |
z-index: 200; | |
width: 250px; | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.6,.5); | |
transform-origin: top left; | |
transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-o-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-moz-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-webkit-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
background-color: #fff; | |
border: 1px solid rgba(0,0,0,.1); | |
border-radius: 4px; | |
box-shadow: 0 6px 24px rgba(23,25,26,.2) | |
} | |
.eq.dropdown-menu .eq.dropdown-header { | |
padding: 12px; | |
border-bottom: 1px solid #e8eaeb | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-menu { | |
width:230px | |
} | |
.eq.dropdown-menu.dropdown-boards { | |
width: 215px | |
} | |
.eq.dropdown-menu .eq.dropdown-header { | |
padding: 8px | |
} | |
} | |
.eq.dropdown-menu .eq.dropdown-header>* { | |
margin: 0 | |
} | |
.eq.dropdown-menu .eq.dropdown-content { | |
padding: 15px | |
} | |
.eq.dropdown-menu ul { | |
list-style-type: none; | |
padding: 0; | |
margin: 0 | |
} | |
.eq.dropdown-menu ul>li { | |
opacity: 0; | |
transform: translateY(-5px) | |
} | |
.eq.dropdown-menu ul>li>a { | |
display: block; | |
padding: 8px; | |
color: #25282b; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-menu ul>li>a { | |
padding:6px 8px | |
} | |
} | |
.eq.dropdown-menu ul>li>a>.eq.icon { | |
display: inline-block; | |
width: 15px; | |
margin-right: 5px; | |
color: #555b61 | |
} | |
.eq.dropdown-menu ul>li>a:hover,.eq.dropdown-menu ul>li>a:active { | |
background-color: #f9f9fa | |
} | |
.eq.dropdown-menu ul>li>a.more { | |
color: #868e96; | |
background-color: #f9f9fa; | |
text-align: center | |
} | |
.eq.dropdown-menu ul>li>a.more .eq.icon { | |
color: #868e96 | |
} | |
.eq.dropdown-menu ul>li:first-child>a { | |
overflow: hidden; | |
border-radius: 3px 3px 0 0 | |
} | |
.eq.dropdown-menu ul>li:last-child>a { | |
overflow: hidden; | |
border-radius: 0 0 3px 3px | |
} | |
.eq.dropdown-menu ul>li:nth-child(1) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 50ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(2) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 100ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(3) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 150ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(4) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 200ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(5) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 250ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(6) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 300ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(7) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 350ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(8) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 400ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(9) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 450ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(10) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 500ms | |
} | |
.eq.dropdown-menu.on>ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.dropdown-menu+.eq.dropdown-close { | |
display: block; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1; | |
visibility: hidden | |
} | |
.eq.dropdown-menu.on { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-menu.on+.eq.dropdown-close { | |
cursor: default; | |
position: fixed; | |
visibility: visible | |
} | |
.eq.dropdown-right .eq.dropdown-menu { | |
left: auto; | |
right: 0; | |
transform-origin: top right | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu { | |
z-index: 720 | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu+.eq.dropdown-close { | |
z-index: 700; | |
opacity: 0; | |
background-color: rgba(23,25,26,.1); | |
transition: opacity 250ms,visibility .2s; | |
-o-transition: opacity 250ms,visibility .2s; | |
-moz-transition: opacity 250ms,visibility .2s; | |
-webkit-transition: opacity 250ms,visibility .2s | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu.on+.eq.dropdown-close { | |
opacity: 1 | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::before,.eq.dropdown-angle .eq.dropdown-menu::after { | |
content: ''; | |
position: absolute | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::before { | |
top: -7px; | |
right: 11px; | |
display: inline-block; | |
border-right: 7px solid transparent; | |
border-bottom: 7px solid rgba(0,0,0,.1); | |
border-left: 7px solid transparent | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::after { | |
top: -6px; | |
right: 12px; | |
display: inline-block; | |
border-right: 6px solid transparent; | |
border-bottom: 6px solid #fff; | |
border-left: 6px solid transparent | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::before { | |
right: 15px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::after { | |
right: 16px | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-angle .eq.dropdown-menu::before { | |
right:13px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::after { | |
right: 14px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::before { | |
right: 23px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::after { | |
right: 24px | |
} | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu { | |
top: 70px | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu:hover { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu:hover ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle:hover+.eq.dropdown-menu { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle:hover+.eq.dropdown-menu ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.notify-header { | |
border-bottom: 1px dashed rgba(0,0,0,.2)!important | |
} | |
.eq.notify-list { | |
max-height: 200px; | |
overflow: auto | |
} | |
@media(max-width: 639px) { | |
.eq.notify-list { | |
max-height:150px | |
} | |
} | |
.eq.all-boards { | |
text-align: center!important; | |
font-size: 1rem!important; | |
border-radius: 0!important | |
} | |
#main-visual { | |
background-color: #388aff | |
} | |
#main-visual .eq.main-visual { | |
position: relative; | |
overflow: hidden; | |
height: 100vh; | |
background-position: center; | |
background-size: cover; | |
overflow: hidden | |
} | |
#main-visual .eq.main-visual .eq.main-visual-content { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
box-sizing: border-box; | |
width: 100%; | |
height: 100%; | |
padding: 30px | |
} | |
#main-visual .eq.main-visual .eq.main-visual-img { | |
width: 100%; | |
height: 100%; | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-size: auto 100% | |
} | |
#main-visual .eq.main-visual .eq.main-visual-youtube-wrap { | |
position: relative; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
width: 100%; | |
height: 100%; | |
overflow: hidden | |
} | |
#main-visual .eq.main-visual .eq.main-visual-youtube-wrap .eq.main-visual-youtube { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
width: 1280px; | |
height: 720px | |
} | |
#main-visual .eq.main-visual .eq.main-visual-title,#main-visual .eq.main-visual .eq.main-visual-subtitle { | |
word-break: keep-all | |
} | |
#main-visual .eq.main-visual .eq.main-visual-title { | |
color: #fff | |
} | |
@media(max-width: 639px) { | |
#main-visual .eq.main-visual .eq.main-visual-title { | |
font-size:2rem | |
} | |
} | |
#main-visual .eq.main-visual .eq.main-visual-subtitle { | |
color: rgba(255,255,255,.6) | |
} | |
@media(max-width: 639px) { | |
#main-visual .eq.main-visual .eq.main-visual-button-expand { | |
width:100% | |
} | |
} | |
#main-visual .eq.main-visual .eq.main-visual-mouse { | |
left: 50%; | |
width: 30px; | |
height: 47px; | |
margin-bottom: 30px; | |
border: 2px solid rgba(255,255,255,.38); | |
border-radius: 14px; | |
transform: translateX(-50%) | |
} | |
#main-visual .eq.main-visual .eq.main-visual-mouse .eq.mouse-scroll { | |
width: 4px; | |
height: 4px; | |
border-radius: 2px; | |
background: rgba(255,255,255,.38); | |
position: relative; | |
top: 10px; | |
left: 11px; | |
-webkit-animation: scrolls 1.3s ease-out infinite | |
} | |
@-webkit-keyframes scrolls { | |
0% { | |
top: 10px; | |
opacity: 1; | |
height: 4px | |
} | |
95% { | |
top: 18px; | |
opacity: 0; | |
height: 10px | |
} | |
100% { | |
top: 8px; | |
opacity: 1; | |
height: 4px | |
} | |
} | |
.eq.slide-wrap { | |
position: relative; | |
width: 100%; | |
margin-top: 30px; | |
border-radius: 5px; | |
vertical-align: middle; | |
-webkit-backface-visibility: hidden; | |
overflow: hidden; | |
z-index: 1; | |
background-color: #388aff; | |
box-shadow: 0 6px 12px rgba(23,25,26,.1) | |
} | |
@media(max-width: 959px) { | |
.eq.slide-wrap { | |
margin-top:15px | |
} | |
} | |
.eq.slide-wrap>.slide-nav { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: absolute; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
padding: 15px | |
} | |
.eq.slide-wrap>.slide-nav .indicator { | |
cursor: pointer; | |
display: inline-block; | |
width: 10px; | |
height: 10px; | |
padding: 0; | |
margin: 5px; | |
font-size: 0; | |
line-height: 0; | |
text-indent: -9999px; | |
background-color: rgba(255,255,255,.5); | |
border-radius: 500px; | |
border: none | |
} | |
.eq.slide-wrap>.slide-nav .indicator:active,.eq.slide-wrap>.slide-nav .indicator:focus { | |
outline: none | |
} | |
.eq.slide-wrap>.slide-nav .indicator.active { | |
background-color: #fff | |
} | |
.eq.slide { | |
position: relative; | |
width: 100%; | |
min-height: 400px; | |
overflow: hidden; | |
background-color: #388aff | |
} | |
.eq.slide>ul { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 99999px; | |
margin: 0; | |
list-style-type: none; | |
overflow: hidden | |
} | |
.eq.slide>ul li { | |
position: relative; | |
overflow: hidden | |
} | |
.eq.slide-item { | |
position: relative; | |
min-height: 400px; | |
background-position: center; | |
background-size: cover; | |
background-repeat: no-repeat | |
} | |
.eq.slide-img { | |
display: block | |
} | |
@media(max-width: 959px) { | |
.eq.slide-img { | |
width:auto; | |
height: 100vw | |
} | |
} | |
.eq.slide-content { | |
padding: 100px; | |
text-align: center | |
} | |
@media(max-width: 959px) { | |
.eq.slide-content { | |
padding:30px | |
} | |
} | |
.eq.slide-content .eq.slide-title,.eq.slide-content .eq.slide-subtitle { | |
word-break: keep-all | |
} | |
.eq.slide-content .eq.slide-title { | |
color: #fff | |
} | |
@media(max-width: 959px) { | |
.eq.slide-content .eq.slide-title { | |
font-size:2rem | |
} | |
} | |
.eq.slide-content .eq.slide-subtitle { | |
color: rgba(255,255,255,.7); | |
font-size: .875rem; | |
margin-bottom: 30px | |
} | |
.eq.login-offcanvas { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
visibility: hidden; | |
opacity: 0; | |
z-index: 10000; | |
-webkit-transition: opacity .2s,visibility .5s; | |
-moz-transition: opacity .2s,visibility .5s; | |
transition: opacity .2s,visibility .5s | |
} | |
.eq.login-offcanvas.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.login-offcanvas.on .eq.login-offcanvas-content { | |
transform: scale(1) | |
} | |
.eq.login-offcanvas-bg { | |
position: fixed; | |
left: 0; | |
top: 0; | |
height: 100%; | |
width: 100%; | |
z-index: 1; | |
background-color: rgba(0,0,0,.2) | |
} | |
.eq.login-offcanvas-content { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
max-width: 500px; | |
height: 100%; | |
min-height: 100%; | |
padding: 60px; | |
overflow-y: auto; | |
z-index: 2; | |
background: #fff; | |
box-shadow: 0 2px 4px rgba(0,0,0,.2); | |
transform: scale(.8); | |
transform-origin: 50%; | |
transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-moz-transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-o-transition: all .3s cubic-bezier(.68,-.55,.27,1.55) | |
} | |
@media(max-width: 639px) { | |
.eq.login-offcanvas-content { | |
padding:30px | |
} | |
} | |
.eq.login-offcanvas-content .eq.login-logo-item { | |
width: 100%; | |
height: 50px; | |
margin-bottom: 50px; | |
text-align: center; | |
background-image: url(../img/logo.svg); | |
background-position: center center; | |
background-repeat: no-repeat; | |
background-size: contain | |
} | |
.eq.login-offcanvas-content .eq.login-logo-item>span { | |
font-size: 26px; | |
font-weight: 700; | |
top: 10px; | |
position: relative | |
} | |
.eq.login-offcanvas-close { | |
cursor: pointer; | |
position: absolute; | |
top: 70px; | |
right: 60px; | |
width: 40px; | |
height: 40px; | |
padding: 12px; | |
font-size: 16px; | |
color: #96a3b4; | |
background: #e5e9f2; | |
border-radius: 2em; | |
text-align: center; | |
line-height: 1; | |
transition: all .3s; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
-o-transition: all .3s | |
} | |
@media(max-width: 639px) { | |
.eq.login-offcanvas-close { | |
top:40px; | |
right: 30px | |
} | |
} | |
.eq.login-offcanvas-close:hover { | |
color: #fff; | |
background-color: #388aff | |
} | |
.login-offcanvas .message { | |
padding: 0; | |
text-align: center; | |
text-shadow: none; | |
font-size: .875rem; | |
color: #ff6b6b; | |
background-color: #ffe1e1; | |
border-color: #ffe1e1 | |
} | |
.login-offcanvas-thumbnail { | |
position: absolute; | |
top: 0; | |
right: 0; | |
width: 100%; | |
height: 100%; | |
min-height: 100%; | |
max-width: calc(100% - 500px); | |
background-image: url(../img/demo.jpg); | |
background-position: left; | |
background-size: cover | |
} | |
.eq.sidebar-banner { | |
width: 100%; | |
height: auto; | |
overflow: hidden; | |
border-radius: 4px; | |
line-height: 0; | |
background-color: #fff; | |
margin-bottom: 40px; | |
transition: all .3s; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
-o-transition: all .3s | |
} | |
.eq.sidebar-banner:hover { | |
box-shadow: 0 1px 8px rgba(81,99,120,.1) | |
} | |
.eq.sidebar-banner:hover img { | |
opacity: .8 | |
} | |
.eq.sidebar-banner :active { | |
box-shadow: 0 1px 3px rgba(81,99,120,.1) | |
} | |
.eq.sidebar-banner img { | |
width: 100%; | |
height: auto | |
} | |
.eq.widget { | |
list-style-type: none; | |
padding: 0 | |
} | |
.eq.widget-title .eq.widget-title-text { | |
display: inline-block; | |
position: relative; | |
padding-top: 15px; | |
padding-bottom: 15px; | |
margin-bottom: 0; | |
border-bottom: 1px solid #25282b; | |
color: #25282b; | |
font-weight: 500; | |
line-height: 1 | |
} | |
.eq.widget-point div.graph div { | |
background-color: #388aff!important | |
} | |
.eq.widget-tab { | |
list-style-type: none; | |
padding: 0; | |
margin: 0; | |
overflow-y: hidden; | |
height: 53px; | |
white-space: nowrap; | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: #e8eaeb | |
} | |
.eq.widget-tab>li { | |
display: inline-block; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-tab>li>a { | |
display: inline-block; | |
color: #868e96; | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 50px; | |
padding: 0 15px; | |
margin-right: 10px; | |
margin-bottom: -1px; | |
outline: none; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom-width: 2px; | |
border-bottom-style: solid; | |
border-bottom-color: transparent; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-tab>li>a:hover { | |
color: #555b61 | |
} | |
.eq.widget-tab>li.active>a { | |
color: #388aff; | |
border-bottom-width: 2px; | |
border-bottom-color: #388aff | |
} | |
.eq.widget>li>a .eq.text-link { | |
color: #000!important | |
} | |
.eq.widget>li>a:visited .eq.text-link { | |
color: #a8a8a8!important | |
} | |
.eq.widget-tab-content { | |
margin: 0 | |
} | |
.eq.widget-tab-content dt { | |
display: none | |
} | |
.eq.widget-tab-content dd,.eq.widget-tab-content .eq.widget-tab-item { | |
display: none; | |
margin: 0 | |
} | |
.eq.widget-tab-content dd.open,.eq.widget-tab-content .eq.widget-tab-item.open { | |
display: block | |
} | |
.eq.widget-title { | |
width: 100%; | |
position: relative | |
} | |
.eq.widget-title::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid #e8eaeb | |
} | |
.eq.widget-normal { | |
margin: 0 | |
} | |
.eq.widget-normal>li { | |
border-bottom-width: 1px; | |
border-bottom-style: dashed; | |
border-bottom-color: #f1f1f1 | |
} | |
.eq.widget-normal>li>a { | |
display: block; | |
width: 100%; | |
padding-top: 4px; | |
padding-bottom: 4px; | |
text-decoration: none; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-normal>li>a:hover { | |
background-color: rgba(249,249,250,.5) | |
} | |
.eq.widget-image-title { | |
margin: 0 | |
} | |
.eq.widget-image-title-content { | |
padding: 0; | |
margin: 0 | |
} | |
.eq.widget-image-title-content .eq.widget-item { | |
padding-top: 15px; | |
padding-bottom: 15px | |
} | |
.eq.widget-gallery { | |
padding: 2px 2px 0!important; | |
margin-left: -1px; | |
margin-right: -1px | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item:hover .eq.widget-gallery-thumbnail-wrap { | |
opacity: .7 | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item .eq.widget-gallery-thumbnail-wrap { | |
opacity: .9 | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item-body { | |
background: linear-gradient(to top,#000000,transparent) | |
} | |
.eq.widget-gallery-item { | |
position: relative; | |
margin-bottom: 2px; | |
background-color: #17191a; | |
overflow: hidden; | |
height: 100% | |
} | |
@media(max-width: 639px) { | |
.eq.widget-gallery-item { | |
margin-bottom:0 | |
} | |
} | |
.eq.widget-gallery-item:hover .eq.widget-gallery-thumbnail-wrap { | |
transform: scale(1.1) | |
} | |
.eq.widget-gallery-item-wrap { | |
padding-left: 1px; | |
padding-right: 1px | |
} | |
.eq.widget-gallery-item-body { | |
padding: 15px | |
} | |
.eq.widget-gallery-item-category { | |
position: absolute; | |
top: 15px; | |
left: 15px; | |
padding: 2px 8px; | |
color: #fff; | |
font-size: .75rem; | |
border-radius: 500px; | |
background-color: #388aff | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail { | |
display: block; | |
width: 100% | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail-wrap { | |
transition: 250ms; | |
-o-transition: 250ms; | |
-moz-transition: 250ms; | |
-webkit-transition: 250ms | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail-alt { | |
display: block; | |
width: 100%; | |
height: 100px | |
} | |
.eq.card>.eq.widget-title { | |
padding: 10px 15px | |
} | |
.eq.card>.eq.widget-title-none::before { | |
border: none | |
} | |
.eq.card ul.eq.widget-normal>li>a { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card ul.eq.widget-normal>li:last-child { | |
border-bottom: none | |
} | |
.eq.card .eq.widget-image-title { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card .eq.widget-image-title-content .eq.widget-item { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card .eq.widget-image-title-content>li:last-child hr { | |
display: none | |
} | |
.eq.card { | |
padding: 15px; | |
border-radius: 3px | |
} | |
.eq.card .eq.card-media img { | |
display: block; | |
max-width: 100% | |
} | |
.eq.card .eq.card-body { | |
padding-top: 15px; | |
padding-bottom: 15px | |
} | |
.eq.card-gallery { | |
padding: 0 | |
} | |
.eq.card-gallery .eq.card-media { | |
overflow: hidden; | |
border-radius: 3px; | |
box-shadow: 0 3px 4px rgba(23,25,26,.1); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.card-gallery:hover .eq.card-media { | |
opacity: .8 | |
} | |
.eq.card-default { | |
background-color: #fff; | |
border: 1px solid #e8eaeb | |
} | |
.eq.card-secondary { | |
background-color: #33373b; | |
border: 1px solid #202325 | |
} | |
.eq.card-secondary .eq.widget-title::before { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary hr { | |
border-top-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-tab { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-normal>li { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-normal>li>a:hover { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.footer { | |
padding-top: 30px | |
} | |
.eq.footer.muted { | |
color: #555b61; | |
border: none!important; | |
background-color: #f9f9fa | |
} | |
.eq.footer.dark { | |
color: #fff; | |
border: none!important; | |
background-color: #25282b | |
} | |
.eq.footer-menu { | |
margin: 0 0 16px; | |
padding: 0 | |
} | |
.eq.footer-menu li { | |
display: inline; | |
list-style: none | |
} | |
.eq.footer-menu li a { | |
color: #868e96; | |
font-size: .875rem; | |
padding-right: 15px; | |
text-decoration: none; | |
transition: all .3s; | |
-moz-transition: all .3s; | |
-webkit-transition: all .3s; | |
-o-transition: all .3s | |
} | |
.eq.footer-menu li a:hover { | |
color: #555b61 | |
} | |
.eq.border-circle { | |
border-radius: 50% | |
} | |
.eq.border-rounded { | |
border-radius: 3px | |
} | |
.eq.border-max-rounded { | |
border-radius: 500px | |
} | |
.eq.width-small { | |
width: 450px | |
} | |
.eq.width-medium { | |
width: 640px | |
} | |
.eq.height-small { | |
height: 70px | |
} | |
.eq.height-medium { | |
height: 150px | |
} | |
.eq.height-large { | |
height: 300px | |
} | |
.eq.border { | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb | |
} | |
.eq.border-right { | |
border-right-width: 1px; | |
border-right-style: solid; | |
border-right-color: #e8eaeb | |
} | |
.eq.border-top { | |
border-top-width: 1px; | |
border-top-style: solid; | |
border-top-color: #e8eaeb | |
} | |
.eq.border-top-alpha { | |
border-top-width: 1px; | |
border-top-style: solid; | |
border-top-color: rgba(0,0,0,.2) | |
} | |
.eq.border-bottom { | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: #e8eaeb | |
} | |
.eq.border-bottom-alpha { | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: rgba(0,0,0,.2) | |
} | |
.eq.border-color-primary { | |
border-bottom-color: #388aff!important | |
} | |
.eq.overflow-scroll { | |
overflow: scroll | |
} | |
.eq.overflow-hidden { | |
overflow: hidden | |
} | |
@media(max-width: 959px) { | |
.eq.overflow-hidden\@m { | |
overflow:hidden | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.overflow-hidden\@s { | |
overflow:hidden | |
} | |
} | |
.eq.position-relative { | |
position: relative | |
} | |
.eq.position-absolute { | |
position: absolute | |
} | |
.eq.clearfix { | |
zoom:1} | |
.eq.clearfix:before,.eq.clearfix:after { | |
content: ""; | |
display: table | |
} | |
.eq.clearfix::after { | |
clear: both | |
} | |
.eq.float-left { | |
float: left | |
} | |
.eq.float-right { | |
float: right | |
} | |
.eq.width-expand { | |
width: 100%; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
overflow: hidden | |
} | |
.eq.display-block { | |
display: block | |
} | |
.eq.inline { | |
display: inline | |
} | |
.eq.inline-block { | |
display: inline-block | |
} | |
.eq.white-space-nowrap { | |
white-space: nowrap | |
} | |
.eq.box-shadow-small { | |
box-shadow: 0 3px 4px rgba(23,25,26,.1) | |
} | |
.eq.box-shadow-default { | |
box-shadow: 0 2px 8px -3px rgba(23,25,26,.2) | |
} | |
.eq.box-shadow-medium { | |
box-shadow: 0 5px 8px rgba(23,25,26,.1) | |
} | |
.eq.box-shadow-large { | |
box-shadow: 0 6px 12px rgba(23,25,26,.1) | |
} | |
.eq.hidden { | |
visibility: hidden!important | |
} | |
@media(min-width: 640px) { | |
.eq.hidden\@s { | |
display:none!important | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.hidden\@m { | |
display:none!important | |
} | |
} | |
@media(min-width: 1200px) { | |
.eq.hidden\@l { | |
display:none!important | |
} | |
} | |
@media(min-width: 1600px) { | |
.eq.hidden\@xl { | |
display:none!important | |
} | |
} | |
.eq.visible { | |
visibility: visible!important | |
} | |
@media(max-width: 639px) { | |
.eq.visible\@s { | |
display:none!important | |
} | |
} | |
@media(max-width: 1050px) { | |
.eq.visible\@m { | |
display:none!important | |
} | |
} | |
@media(max-width: 1199px) { | |
.eq.visible\@l { | |
display:none!important | |
} | |
} | |
@media(max-width: 1599px) { | |
.eq.visible\@xl { | |
display:none!important | |
} | |
} | |
.eq.opacity-0 { | |
opacity: 0 | |
} | |
@media(max-width: 639px) { | |
.eq.opacity-0\@s { | |
opacity:0 | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.opacity-0\@m { | |
opacity:0 | |
} | |
} | |
@media(max-width: 1199px) { | |
.eq.opacity-0\@l { | |
opacity:0 | |
} | |
} | |
@media(max-width: 1599px) { | |
.eq.opacity-0\@xl { | |
opacity:0 | |
} | |
} | |
.eq.padding-xxsmall { | |
padding: 5px!important | |
} | |
.eq.padding-xsmall { | |
padding: 10px!important | |
} | |
.eq.padding-small { | |
padding: 15px!important | |
} | |
.eq.padding-default { | |
padding: 30px!important | |
} | |
.eq.padding-medium { | |
padding: 50px!important | |
} | |
.eq.padding-large { | |
padding: 100px!important | |
} | |
.eq.padding-xlarge { | |
padding: 140px!important | |
} | |
.eq.padding-top-xxsmall { | |
padding-top: 5px!important | |
} | |
.eq.padding-top-xsmall { | |
padding-top: 10px!important | |
} | |
.eq.padding-top-small { | |
padding-top: 15px!important | |
} | |
.eq.padding-top-default { | |
padding-top: 30px!important | |
} | |
.eq.padding-top-medium { | |
padding-top: 50px!important | |
} | |
.eq.padding-top-large { | |
padding-top: 100px!important | |
} | |
.eq.padding-top-xlarge { | |
padding-top: 140px!important | |
} | |
.eq.padding-bottom-xxsmall { | |
padding-bottom: 5px!important | |
} | |
.eq.padding-bottom-xsmall { | |
padding-bottom: 10px!important | |
} | |
.eq.padding-bottom-small { | |
padding-bottom: 15px!important | |
} | |
.eq.padding-bottom-default { | |
padding-bottom: 30px!important | |
} | |
.eq.padding-bottom-medium { | |
padding-bottom: 50px!important | |
} | |
.eq.padding-bottom-large { | |
padding-bottom: 100px!important | |
} | |
.eq.padding-bottom-xlarge { | |
padding-bottom: 140px!important | |
} | |
.eq.padding-left-xxsmall { | |
padding-left: 5px!important | |
} | |
.eq.padding-left-xsmall { | |
padding-left: 10px!important | |
} | |
.eq.padding-left-small { | |
padding-left: 15px!important | |
} | |
.eq.padding-left-default { | |
padding-left: 30px!important | |
} | |
.eq.padding-left-medium { | |
padding-left: 50px!important | |
} | |
.eq.padding-left-large { | |
padding-left: 100px!important | |
} | |
.eq.padding-left-xlarge { | |
padding-left: 140px!important | |
} | |
.eq.padding-right-xxsmall { | |
padding-right: 5px!important | |
} | |
.eq.padding-right-xsmall { | |
padding-right: 10px!important | |
} | |
.eq.padding-right-small { | |
padding-right: 15px!important | |
} | |
.eq.padding-right-default { | |
padding-right: 30px!important | |
} | |
.eq.padding-right-medium { | |
padding-right: 50px!important | |
} | |
.eq.padding-right-large { | |
padding-right: 100px!important | |
} | |
.eq.padding-right-xlarge { | |
padding-right: 140px!important | |
} | |
.eq.padding-vertical-xxsmall { | |
padding-top: 5px!important; | |
padding-bottom: 5px!important | |
} | |
.eq.padding-vertical-xsmall { | |
padding-top: 10px!important; | |
padding-bottom: 10px!important | |
} | |
.eq.padding-vertical-small { | |
padding-top: 15px!important; | |
padding-bottom: 15px!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-vertical-small\@s { | |
padding-top:15px!important; | |
padding-bottom: 15px!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-vertical-small\@m { | |
padding-top:15px!important; | |
padding-bottom: 15px!important | |
} | |
} | |
.eq.padding-vertical-default { | |
padding-top: 30px!important; | |
padding-bottom: 30px!important | |
} | |
.eq.padding-vertical-medium { | |
padding-top: 50px!important; | |
padding-bottom: 50px!important | |
} | |
.eq.padding-vertical-large { | |
padding-top: 100px!important; | |
padding-bottom: 100px!important | |
} | |
.eq.padding-vertical-xlarge { | |
padding-top: 140px!important; | |
padding-bottom: 140px!important | |
} | |
.eq.padding-horizontal-xxsmall { | |
padding-left: 5px!important; | |
padding-right: 5px!important | |
} | |
.eq.padding-horizontal-xsmall { | |
padding-left: 10px!important; | |
padding-right: 10px!important | |
} | |
.eq.padding-horizontal-small { | |
padding-left: 15px!important; | |
padding-right: 15px!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-horizontal-small\@s { | |
padding-left:15px!important; | |
padding-right: 15px!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-horizontal-small\@m { | |
padding-left:15px!important; | |
padding-right: 15px!important | |
} | |
} | |
.eq.padding-horizontal-default { | |
padding-left: 30px!important; | |
padding-right: 30px!important | |
} | |
.eq.padding-horizontal-medium { | |
padding-left: 50px!important; | |
padding-right: 50px!important | |
} | |
.eq.padding-horizontal-large { | |
padding-left: 100px!important; | |
padding-right: 100px!important | |
} | |
.eq.padding-horizontal-xlarge { | |
padding-left: 140px!important; | |
padding-right: 140px!important | |
} | |
.eq.padding-remove { | |
padding: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-remove\@s { | |
padding:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-remove\@m { | |
padding:0!important | |
} | |
} | |
.eq.padding-top-remove { | |
padding-top: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-top-remove\@s { | |
padding-top:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-top-remove\@m { | |
padding-top:0!important | |
} | |
} | |
.eq.padding-bottom-remove { | |
padding-bottom: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-bottom-remove\@s { | |
padding-bottom:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-bottom-remove\@m { | |
padding-bottom:0!important | |
} | |
} | |
.eq.padding-left-remove { | |
padding-left: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-left-remove\@s { | |
padding-left:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-left-remove\@m { | |
padding-left:0!important | |
} | |
} | |
.eq.padding-right-remove { | |
padding-right: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-right-remove\@s { | |
padding-right:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-right-remove\@m { | |
padding-right:0!important | |
} | |
} | |
.eq.margin-xxsmall { | |
margin: 5px!important | |
} | |
.eq.margin-xsmall { | |
margin: 10px!important | |
} | |
.eq.margin-small { | |
margin: 15px!important | |
} | |
.eq.margin-default { | |
margin: 30px!important | |
} | |
.eq.margin-medium { | |
margin: 40px!important | |
} | |
.eq.margin-large { | |
margin: 60px!important | |
} | |
.eq.margin-top-xxsmall { | |
margin-top: 5px!important | |
} | |
.eq.margin-top-xsmall { | |
margin-top: 10px!important | |
} | |
.eq.margin-top-small { | |
margin-top: 15px!important | |
} | |
.eq.margin-top-default { | |
margin-top: 30px!important | |
} | |
.eq.margin-top-medium { | |
margin-top: 40px!important | |
} | |
.eq.margin-top-large { | |
margin-top: 60px!important | |
} | |
.eq.margin-bottom-xxsmall { | |
margin-bottom: 5px!important | |
} | |
.eq.margin-bottom-xsmall { | |
margin-bottom: 10px!important | |
} | |
.eq.margin-bottom-small { | |
margin-bottom: 15px!important | |
} | |
.eq.margin-bottom-default { | |
margin-bottom: 30px!important | |
} | |
.eq.margin-bottom-medium { | |
margin-bottom: 40px!important | |
} | |
.eq.margin-bottom-large { | |
margin-bottom: 60px!important | |
} | |
.eq.margin-left-xxsmall { | |
margin-left: 5px!important | |
} | |
.eq.margin-left-xsmall { | |
margin-left: 10px!important | |
} | |
.eq.margin-left-small { | |
margin-left: 15px!important | |
} | |
.eq.margin-left-default { | |
margin-left: 30px!important | |
} | |
.eq.margin-left-medium { | |
margin-left: 40px!important | |
} | |
.eq.margin-left-large { | |
margin-left: 60px!important | |
} | |
.eq.margin-right-xxsmall { | |
margin-right: 5px!important | |
} | |
.eq.margin-right-xsmall { | |
margin-right: 10px!important | |
} | |
.eq.margin-right-small { | |
margin-right: 15px!important | |
} | |
.eq.margin-right-default { | |
margin-right: 30px!important | |
} | |
.eq.margin-right-medium { | |
margin-right: 40px!important | |
} | |
.eq.margin-right-large { | |
margin-right: 60px!important | |
} | |
.eq.margin-vertical-xxsmall { | |
margin-top: 5px!important; | |
margin-bottom: 5px!important | |
} | |
.eq.margin-vertical-xsmall { | |
margin-top: 10px!important; | |
margin-bottom: 10px!important | |
} | |
.eq.margin-vertical-small { | |
margin-top: 15px!important; | |
margin-bottom: 15px!important | |
} | |
.eq.margin-vertical-default { | |
margin-top: 30px!important; | |
margin-bottom: 30px!important | |
} | |
.eq.margin-vertical-medium { | |
margin-top: 40px!important; | |
margin-bottom: 40px!important | |
} | |
.eq.margin-vertical-large { | |
margin-top: 60px!important; | |
margin-bottom: 60px!important | |
} | |
.eq.margin-horizontal-xxsmall { | |
margin-left: 5px!important; | |
margin-right: 5px!important | |
} | |
.eq.margin-horizontal-xsmall { | |
margin-left: 10px!important; | |
margin-right: 10px!important | |
} | |
.eq.margin-horizontal-small { | |
margin-left: 15px!important; | |
margin-right: 15px!important | |
} | |
.eq.margin-horizontal-default { | |
margin-left: 30px!important; | |
margin-right: 30px!important | |
} | |
.eq.margin-horizontal-medium { | |
margin-left: 40px!important; | |
margin-right: 40px!important | |
} | |
.eq.margin-horizontal-large { | |
margin-left: 60px!important; | |
margin-right: 60px!important | |
} | |
.eq.margin-remove { | |
margin: 0!important | |
} | |
.eq.margin-top-remove { | |
margin-top: 0!important | |
} | |
.eq.margin-bottom-remove { | |
margin-bottom: 0!important | |
} | |
.eq.margin-left-remove { | |
margin-left: 0!important | |
} | |
.eq.margin-right-remove { | |
margin-right: 0!important | |
} | |
.eq.margin-auto-vertical { | |
margin-top: auto; | |
margin-bottom: auto | |
} | |
.eq.margin-auto-horizontal { | |
margin-left: auto; | |
margin-right: auto | |
} | |
.eq.inverse,.eq.inverse>* { | |
color: #fff | |
} | |
.eq.inverse .eq.text-default { | |
color: #fff!important | |
} | |
.eq.inverse .eq.text-muted,.eq.inverse .eq.text-muted-child * { | |
color: rgba(255,255,255,.6)!important | |
} | |
.eq.inverse .eq.link-muted { | |
color: rgba(255,255,255,.4) | |
} | |
.eq.inverse .eq.link-muted:hover,.eq.inverse .eq.link-muted:hover * { | |
color: rgba(255,255,255,.8)!important | |
} | |
.eq.inverse hr { | |
border-top-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.rebalance>* { | |
color: #25282b | |
} | |
.eq.inverse .eq.rebalance>* .eq.text-muted,.eq.inverse .eq.rebalance>* .eq.text-muted-child>* { | |
color: #868e96!important | |
} | |
.eq.inverse .eq.rebalance hr { | |
border-top-color: #e8eaeb | |
} | |
.eq.inverse .eq.section-muted { | |
background-color: #17191a | |
} | |
.eq.inverse>.eq.button-default { | |
background-color: transparent; | |
color: #fff; | |
border: 2px solid #fff; | |
box-shadow: none | |
} | |
.eq.inverse>.eq.button-default:hover { | |
background-color: #fff; | |
color: #555b61; | |
border-width: 2px; | |
border-color: #fff; | |
box-shadow: 0 3px 10px rgba(23,25,26,.2) | |
} | |
.eq.inverse>.eq.button-default:active { | |
background-color: #f9f9fa; | |
color: #25282b; | |
border-width: 2px; | |
border-color: #f9f9fa; | |
box-shadow: 0 1px 4px rgba(23,25,26,.1) | |
} | |
.eq.inverse.navbar .eq.navbar-icon>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.nav-drawer-toggle>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.search-drawer-toggle>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-search { | |
color: #fff; | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search:hover { | |
color: #fff; | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search>input[type=text] { | |
color: transparent | |
} | |
.eq.inverse.navbar .eq.navbar-search>input[type=text]:focus { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li.active.eq.dark>a { | |
color: #388aff; | |
border-bottom-color: #388aff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>ul.eq.popover { | |
margin-top: -4px | |
} | |
.eq.inverse .eq.nav-icon .line,.eq.inverse .eq.nav-icon::before,.eq.inverse .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.inverse .eq.navbar-icon::before { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse.eq.footer { | |
border-top-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.footer.muted { | |
color: #fff; | |
background-color: rgba(85,91,97,.2) | |
} | |
.eq.inverse .eq.footer.dark { | |
background-color: #17191a | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content { | |
background-color: #25282b | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>a { | |
color: #fff; | |
border-color: transparent | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>a:hover { | |
color: rgba(255,255,255,.8); | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.active>a { | |
color: #388aff; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron::before,.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron::after { | |
background-color: #fff | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron:hover::before,.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron:hover::after { | |
background-color: #bdc1c5 | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>a { | |
color: rgba(255,255,255,.4) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>a:hover { | |
color: rgba(255,255,255,.6); | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li.active>a { | |
color: #fff | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li>a { | |
color: #868e96 | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li>a:hover { | |
color: #555b61; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li.active>a { | |
color: #fff | |
} | |
.eq.inverse .eq.border-top,.eq.inverse .eq.border-bottom,.eq.inverse .eq.border-left,.eq.inverse .eq.border-right { | |
border-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.inverse .eq.badge,.eq.navbar.muted .eq.badge,.eq.navbar.dark .eq.badge { | |
color: #fff; | |
background-color: #868e96 | |
} | |
.eq.navbar.inverse .eq.badge-primary,.eq.navbar.muted .eq.badge-primary,.eq.navbar.dark .eq.badge-primary { | |
color: #fff; | |
background-color: #388aff | |
} | |
.eq.navbar.inverse .eq.badge-success,.eq.navbar.muted .eq.badge-success,.eq.navbar.dark .eq.badge-success { | |
color: #fff; | |
background-color: #52d290 | |
} | |
.eq.navbar.inverse .eq.badge-danger,.eq.navbar.muted .eq.badge-danger,.eq.navbar.dark .eq.badge-danger { | |
color: #fff; | |
background-color: #ff6b6b | |
} | |
.eq.inverse .eq.popover { | |
border-radius: 3px; | |
background-color: rgba(11,12,13,.9) | |
} | |
.eq.inverse .eq.dropdown-menu { | |
background-color: rgba(11,12,13,.9) | |
} | |
.eq.inverse .eq.dropdown-menu .eq.dropdown-header { | |
border-bottom-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a { | |
color: #868e96 | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a>i { | |
width: 15px | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a:hover,.eq.inverse .eq.dropdown-menu ul>li>a:active { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a.more { | |
color: #868e96; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-angle .eq.dropdown-menu::after { | |
border-bottom-color: rgba(11,12,13,.9) | |
} | |
.eq.overlay { | |
position: absolute | |
} | |
.eq.overlay-fill { | |
width: 100%; | |
height: 100% | |
} | |
.eq.overlay-top { | |
top: 0 | |
} | |
.eq.overlay-bottom { | |
bottom: 0 | |
} | |
.eq.overlay-left { | |
left: 0 | |
} | |
.eq.overlay-right { | |
right: 0 | |
} | |
.eq.overlay-default { | |
width: 100%; | |
height: 100%; | |
background-color: rgba(0,0,0,.3) | |
} | |
.eq.overlay-clayerbox { | |
position: relative | |
} | |
.eq.clayerbox-left { | |
width: 160px; | |
left: -100px; | |
margin-right: 10px; | |
margin-top: 20px | |
} | |
.eq.clayerbox-left-ad { | |
height: 600px; | |
position: -webkit-sticky; | |
position: sticky; | |
top: 20px | |
} | |
.eq.clayerbox-right { | |
width: 160px; | |
right: -100px; | |
margin-left: 10px; | |
margin-top: 20px | |
} | |
.eq.clayerbox-right-list { | |
height: 200px; | |
background-color: #aaa | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper { | |
background-color: #fff | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper .title.lightgray { | |
background-color: #f6f6f6; | |
color: #444; | |
border-bottom: 1px solid #ddd | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper .title a { | |
color: #444 | |
} | |
.eq.clayerbox-right-ad { | |
height: 600px | |
} | |
@media(max-width: 1050px) { | |
.eq.clayerbox-left { | |
display:none | |
} | |
.eq.clayerbox-right { | |
display: none | |
} | |
.eq.section { | |
padding-top: 0 | |
} | |
} | |
.navbar_recent_wrap { | |
} | |
.navbar_recent_wrap li { | |
opacity: 1!important; | |
transform: translateY(0)!important | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li { | |
overflow: hidden; | |
white-space: nowrap; | |
display: flex; | |
justify-content: space-between | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li a { | |
border-radius: 0 | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li .title { | |
flex: 1 | |
} | |
.navbar_recent_wrap .recent_container>._recent_modules>ul>li:nth-child(n+6) { | |
display: none | |
} | |
.navbar-favorite li.fold:nth-child(n+6) { | |
display: none | |
} | |
.more-favorite-wrap { | |
text-align: center | |
} | |
.more-favorite { | |
display: block; | |
text-decoration: none | |
} | |
.more-favorite span { | |
display: none | |
} | |
.more-favorite span.on { | |
display: inline | |
} | |
.eq.darkmode-toggle.active:after { | |
content: '' | |
} | |
.eq.text-thin { | |
font-weight: 100!important | |
} | |
.eq.text-light { | |
font-weight: 300!important | |
} | |
.eq.text-normal { | |
font-weight: 400!important | |
} | |
.eq.text-bold { | |
font-weight: 700!important | |
} | |
.eq.text-black { | |
font-weight: 900!important | |
} | |
.eq.text-keep-all { | |
word-break: keep-all | |
} | |
.eq.text-left { | |
text-align: left | |
} | |
.eq.text-center { | |
text-align: center | |
} | |
.eq.text-right { | |
text-align: right | |
} | |
.eq.text-middle { | |
vertical-align: middle; | |
align-self: center; | |
align-item: center | |
} | |
.eq.text-xxsmall { | |
font-size: .6rem | |
} | |
.eq.text-xsmall { | |
font-size: .75rem | |
} | |
.eq.text-small { | |
font-size: .875rem | |
} | |
.eq.text-medium { | |
font-size: 1.25rem | |
} | |
.eq.text-large { | |
font-size: 1.5rem | |
} | |
.eq.text-xsmall-child * { | |
font-size: .75rem | |
} | |
.eq.text-small-child * { | |
font-size: .875rem | |
} | |
.eq.text-default { | |
color: #25282b!important | |
} | |
.eq.text-primary { | |
color: #388aff!important | |
} | |
.eq.text-success { | |
color: #52d290!important | |
} | |
.eq.text-muted { | |
color: #868e96!important | |
} | |
.eq.text-muted-child * { | |
color: #868e96 | |
} | |
.eq.text-warning { | |
color: #bb3b3b!important | |
} | |
.eq.heading-primary { | |
font-size: 3.5rem; | |
font-weight: 300; | |
line-height: 1.1 | |
} | |
.eq.divider-with-text { | |
display: block; | |
background: #e8eaeb; | |
width: 100%; | |
height: 1px; | |
margin-top: 30px; | |
position: relative; | |
margin-bottom: 30px | |
} | |
.eq.divider-with-text div { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
-webkit-transform: translate(-50%,-50%); | |
-ms-transform: translate(-50%,-50%); | |
transform: translate(-50%,-50%); | |
background: #fff; | |
padding-left: 30px; | |
padding-right: 30px; | |
color: #868e96; | |
font-size: .875rem | |
} | |
code { | |
padding: .2rem .4rem; | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 90%; | |
color: #ff6b6b; | |
background-color: #f9f9fa; | |
border-radius: .25rem | |
} | |
.eq.text-highlighter { | |
background-color: #d7e8ff | |
} | |
.eq.text-line { | |
text-decoration: line-through | |
} | |
.eq.badge { | |
display: inline-block; | |
border-radius: 500px; | |
padding: 4px 6px; | |
font-size: .75rem; | |
font-weight: 600; | |
color: #868e96; | |
line-height: 1; | |
text-align: center; | |
white-space: nowrap; | |
background-color: #f9f9fa | |
} | |
.eq.badge.count { | |
padding: 3px 6px | |
} | |
.eq.badge-primary { | |
color: #fff; | |
background-color: #bb3b3b | |
} | |
.eq.badge-success { | |
color: #52d290; | |
background-color: #dcf6e9 | |
} | |
.eq.badge-danger { | |
color: #ff6b6b; | |
background-color: #ffe1e1 | |
} | |
.eq.badge-warning { | |
color: #202124; | |
background-color: #fbbc04 | |
} | |
.eq.badge-info { | |
color: #339af0; | |
background-color: #d6ebfc | |
} | |
.eq.alert { | |
padding: 15px; | |
background-color: #d7e8ff; | |
color: #388aff; | |
font-size: .875rem; | |
border-radius: 3px; | |
margin-bottom: 15px | |
} | |
.eq.alert p { | |
margin: 0 | |
} | |
.eq.alert.error { | |
background-color: #ffe1e1; | |
color: #ff6b6b | |
} | |
.eq .dn-privacy,.eq .dn-policy { | |
color: #555b61 | |
} | |
select,input[type=text],input[type=number],input[type=password],textarea { | |
font-size: 16px!important | |
} | |
.xm .agreement { | |
border: 1px solid #ddd!important; | |
background: #f8f8f8!important; | |
color: #000!important | |
} | |
.xm { | |
color: #555b61!important | |
} | |
.xm .table-striped tbody>tr:nth-child(odd)>td { | |
background-color: #f9f9f9!important | |
} | |
.xm .table-hover tbody tr:hover>td { | |
background-color: #f5f5f5!important | |
} | |
.xm .table td { | |
border-top: 1px solid #ddd!important | |
} | |
.xm .nav-tabs>.active>a { | |
color: #555!important; | |
background-color: #fff!important; | |
border: 1px solid transparent!important | |
} | |
@media(max-width: 959px) { | |
.xm .nav-tabs>li>a { | |
padding:5px 8px!important | |
} | |
} | |
.xm .nav-tabs>li>a:hover { | |
border-color: unset!important | |
} | |
.xm .nav>li>a:hover { | |
background-color: #eee #eee #ddd!important | |
} | |
.xm input[type=text],.xm input[type=password],.xm input[type=datetime],.xm input[type=datetime-local],.xm input[type=date],.xm input[type=month],.xm input[type=time],.xm input[type=week],.xm input[type=number],.xm input[type=email],.xm input[type=url],.xm input[type=search],.xm input[type=tel],.xm input[type=color] { | |
background-color: #fff!important; | |
color: #555!important | |
} | |
.xm input[disabled],.xm select[disabled],.xm textarea[disabled],.xm input[readonly],.xm select[readonly],.xm textarea[readonly] { | |
background-color: #eee!important | |
} | |
.xm .help-inline { | |
color: #595959!important | |
} | |
html body.cke_editable,.cke_wysiwyg_div,.rx_simpleeditor.light { | |
background-color: #fff!important; | |
color: #000!important | |
} | |
textarea.cke_source { | |
background-color: #fff!important; | |
color: #555b61!important | |
} | |
.cke_1 .cke_top { | |
background-color: #f5f6f6!important; | |
background-image: linear-gradient(rgb(253,253,253),rgb(239,240,240))!important | |
} | |
.cke_1 .cke_button_on { | |
background-color: #f9f9f9!important | |
} | |
.cke_1 .cke_bottom { | |
background-color: #f5f6f6!important; | |
background-image: linear-gradient(rgb(253,253,253),rgb(239,240,240))!important | |
} | |
.cke_1 .cke_resizer { | |
border-right-color: #939393!important | |
} | |
.xefu-dropzone { | |
background-color: #f5f6f6!important; | |
color: #555b61!important | |
} | |
.bd { | |
color: #444!important | |
} | |
.bd a { | |
color: #333!important | |
} | |
.stk_bd { | |
border: 1px solid #fff!important; | |
background: #fff!important | |
} | |
.rd_hd .board .top_area { | |
border-top: 1px solid #ccc!important; | |
border-bottom: 1px solid #ccc!important; | |
background: #fcfcfc!important | |
} | |
.btn_img { | |
border-color: #ccc!important; | |
background: #fcfcfc!important; | |
text-shadow: 0 1px 0 #fff!important | |
} | |
.et_vars th { | |
background: #f6f6f6!important | |
} | |
.sicker_file_list ul { | |
border: 1px solid #ccc!important; | |
background-color: #fbfbfb!important | |
} | |
.bd_tmb_lst .tmb_wrp { | |
border: 1px solid #fff!important | |
} | |
.rd_nav_style2 .rd_nav,.rd_nav_side .rd_nav { | |
background: #fcfcfc!important | |
} | |
.ddnad { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
text-align: center | |
} | |
@media(prefers-color-scheme: dark) { | |
html { | |
font-family:open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.5; | |
background: #222; | |
color: #555b61; | |
-webkit-text-size-adjust: 100%; | |
-moz-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100% | |
} | |
body { | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.5; | |
padding: 0; | |
margin: 0 | |
} | |
table,input,textarea,select,button { | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: .875rem | |
} | |
audio,canvas,img,video { | |
max-width: 100%; | |
height: auto; | |
box-sizing: border-box | |
} | |
fieldset { | |
padding: 0; | |
margin: 0; | |
border: none | |
} | |
main { | |
display: block | |
} | |
p { | |
margin: 0 0 20px | |
} | |
h1,.eq.h1,h2,.eq.h2,h3,.eq.h3,h4,.eq.h4,h5,.eq.h5,h6,.eq.h6 { | |
margin: 0 | |
} | |
h1,.eq.h1 { | |
font-size: 2.625rem; | |
font-weight: 300; | |
line-height: 1.2 | |
} | |
h2,.eq.h2 { | |
font-size: 2rem; | |
font-weight: 300; | |
line-height: 1.3 | |
} | |
h3,.eq.h3 { | |
font-size: 1.5rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h4,.eq.h4 { | |
font-size: 1.25rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h5,.eq.h5 { | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
h6,.eq.h6 { | |
font-size: .875rem; | |
font-weight: 400; | |
line-height: 1.4 | |
} | |
a { | |
background-color: transparent; | |
-webkit-text-decoration-skip: objects | |
} | |
a:active,a:hover { | |
outline: none | |
} | |
a,.eq.link { | |
color: #3066b4; | |
text-decoration: none; | |
cursor: pointer | |
} | |
a:hover,.eq.link:hover { | |
color: #388aff; | |
text-decoration: underline | |
} | |
a.btn { | |
box-sizing: content-box | |
} | |
.eq.link-muted { | |
text-decoration: none; | |
color: #868e96 | |
} | |
.eq.link-muted:hover,.eq.link-muted:hover * { | |
color: #555b61 | |
} | |
.eq.link-muted:active,.eq.link-muted:active * { | |
color: #25282b | |
} | |
.eq.link-reset,.eq.link-reset * { | |
color: inherit; | |
text-decoration: none; | |
outline: none | |
} | |
* { | |
-webkit-tap-highlight-color: transparent | |
} | |
::-moz-selection { | |
background: #d7e8ff; | |
color: #25282b; | |
text-shadow: none | |
} | |
::selection { | |
background: #d7e8ff; | |
color: #25282b; | |
text-shadow: none | |
} | |
hr,.eq.hr { | |
box-sizing: content-box; | |
height: 0; | |
overflow: visible; | |
text-align: inherit; | |
margin: 0 0 20px; | |
border: 0; | |
border-top: 1px solid #e8eaeb | |
} | |
*+hr,*+.eq.hr { | |
margin-top: 20px | |
} | |
#popup_menu_area { | |
position: absolute; | |
z-index: 9999; | |
margin: 10px 0; | |
padding: 10px; | |
border: none; | |
border-radius: 3px; | |
font-size: .875rem; | |
box-shadow: 0 0 1px 1px rgba(31,45,61,.15); | |
background: #fff; | |
min-width: 80px | |
} | |
#popup_menu_area a { | |
padding: 7px 10px; | |
color: #25282b; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
#popup_menu_area a:hover,#popup_menu_area a:focus { | |
background: 0 0; | |
color: #388aff | |
} | |
#popup_menu_area:focus { | |
outline: none | |
} | |
.eq.custom-scroll::-webkit-scrollbar { | |
width: 8px; | |
background-color: transparent | |
} | |
.eq.custom-scroll::-webkit-scrollbar-thumb { | |
border-radius: 10px; | |
background-color: rgba(85,91,97,.3) | |
} | |
.eq.custom-scroll::-webkit-scrollbar-track { | |
background-color: transparent | |
} | |
@-ms-viewport { | |
width: device-width; | |
} | |
html { | |
box-sizing: border-box; | |
-ms-overflow-style: scrollbar | |
} | |
*,*::before,*::after { | |
box-sizing: inherit | |
} | |
.eq.container { | |
max-width: 1300px; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
width: 100%; | |
box-sizing: border-box; | |
margin-left: auto; | |
margin-right: auto | |
} | |
@media(max-width: 1050px) { | |
.eq.container { | |
display:inherit | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.container { | |
width:100%; | |
display: inherit | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.container { | |
padding-left:0; | |
padding-right: 0; | |
overflow: hidden | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.container { | |
} | |
} | |
.eq.container-fluid { | |
margin-right: auto; | |
margin-left: auto; | |
width: 100% | |
} | |
@media(max-width: 639px) { | |
.eq.container-fluid .eq.container { | |
padding-left:15px; | |
padding-right: 15px | |
} | |
} | |
.row { | |
display: -ms-flexbox; | |
display: flex; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
margin-right: -15px; | |
margin-left: -15px | |
} | |
.no-gutters { | |
margin-right: 0; | |
margin-left: 0 | |
} | |
.no-gutters>.col,.no-gutters>[class*=col-] { | |
padding-right: 0; | |
padding-left: 0 | |
} | |
.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto { | |
position: relative; | |
width: 100%; | |
min-height: 1px; | |
padding-right: 15px; | |
padding-left: 15px | |
} | |
.col { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
@media(min-width: 640px) { | |
.col-sm { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-sm-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-sm-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-sm-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-sm-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-sm-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-sm-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-sm-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-sm-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-sm-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-sm-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-sm-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-sm-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-sm-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-sm-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-sm-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-sm-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-sm-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-sm-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-sm-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-sm-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-sm-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-sm-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-sm-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-sm-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-sm-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 960px) { | |
.col-md { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-md-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-md-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-md-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-md-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-md-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-md-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-md-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-md-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-md-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-md-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-md-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-md-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-md-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-md-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-md-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-md-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-md-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-md-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-md-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-md-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-md-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-md-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-md-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-md-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-md-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 1200px) { | |
.col-lg { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-lg-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-lg-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-lg-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-lg-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-lg-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-lg-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-lg-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-lg-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-lg-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-lg-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-lg-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-lg-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-lg-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-lg-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-lg-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-lg-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-lg-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-lg-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-lg-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-lg-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-lg-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-lg-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-lg-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-lg-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-lg-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
@media(min-width: 1600px) { | |
.col-xl { | |
-ms-flex-preferred-size:0; | |
flex-basis: 0; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100% | |
} | |
.col-xl-auto { | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: none | |
} | |
.col-xl-1 { | |
-ms-flex: 0 0 8.333333%; | |
flex: 0 0 8.333333%; | |
max-width: 8.333333% | |
} | |
.col-xl-2 { | |
-ms-flex: 0 0 16.666667%; | |
flex: 0 0 16.666667%; | |
max-width: 16.666667% | |
} | |
.col-xl-3 { | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25% | |
} | |
.col-xl-4 { | |
-ms-flex: 0 0 33.333333%; | |
flex: 0 0 33.333333%; | |
max-width: 33.333333% | |
} | |
.col-xl-5 { | |
-ms-flex: 0 0 41.666667%; | |
flex: 0 0 41.666667%; | |
max-width: 41.666667% | |
} | |
.col-xl-6 { | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50% | |
} | |
.col-xl-7 { | |
-ms-flex: 0 0 58.333333%; | |
flex: 0 0 58.333333%; | |
max-width: 58.333333% | |
} | |
.col-xl-8 { | |
-ms-flex: 0 0 66.666667%; | |
flex: 0 0 66.666667%; | |
max-width: 66.666667% | |
} | |
.col-xl-9 { | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75% | |
} | |
.col-xl-10 { | |
-ms-flex: 0 0 83.333333%; | |
flex: 0 0 83.333333%; | |
max-width: 83.333333% | |
} | |
.col-xl-11 { | |
-ms-flex: 0 0 91.666667%; | |
flex: 0 0 91.666667%; | |
max-width: 91.666667% | |
} | |
.col-xl-12 { | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100% | |
} | |
.order-xl-1 { | |
-ms-flex-order: 1; | |
order: 1 | |
} | |
.order-xl-2 { | |
-ms-flex-order: 2; | |
order: 2 | |
} | |
.order-xl-3 { | |
-ms-flex-order: 3; | |
order: 3 | |
} | |
.order-xl-4 { | |
-ms-flex-order: 4; | |
order: 4 | |
} | |
.order-xl-5 { | |
-ms-flex-order: 5; | |
order: 5 | |
} | |
.order-xl-6 { | |
-ms-flex-order: 6; | |
order: 6 | |
} | |
.order-xl-7 { | |
-ms-flex-order: 7; | |
order: 7 | |
} | |
.order-xl-8 { | |
-ms-flex-order: 8; | |
order: 8 | |
} | |
.order-xl-9 { | |
-ms-flex-order: 9; | |
order: 9 | |
} | |
.order-xl-10 { | |
-ms-flex-order: 10; | |
order: 10 | |
} | |
.order-xl-11 { | |
-ms-flex-order: 11; | |
order: 11 | |
} | |
.order-xl-12 { | |
-ms-flex-order: 12; | |
order: 12 | |
} | |
} | |
.flex-row { | |
-ms-flex-direction: row!important; | |
flex-direction: row!important | |
} | |
.flex-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
@media(min-width: 640px) { | |
.flex-sm-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-sm-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-sm-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-sm-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-sm-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-sm-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-sm-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-sm-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-sm-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-sm-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-sm-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-sm-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-sm-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-sm-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-sm-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-sm-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-sm-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-sm-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-sm-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-sm-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-sm-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-sm-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-sm-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-sm-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-sm-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-sm-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-sm-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-sm-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-sm-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 960px) { | |
.flex-md-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-md-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-md-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-md-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-md-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-md-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-md-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-md-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-md-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-md-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-md-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-md-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-md-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-md-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-md-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-md-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-md-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-md-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-md-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-md-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-md-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-md-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-md-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-md-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-md-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-md-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-md-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-md-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-md-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 1200px) { | |
.flex-lg-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-lg-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-lg-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-lg-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-lg-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-lg-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-lg-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-lg-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-lg-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-lg-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-lg-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-lg-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-lg-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-lg-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-lg-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-lg-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-lg-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-lg-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-lg-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-lg-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-lg-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-lg-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-lg-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-lg-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-lg-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-lg-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-lg-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-lg-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-lg-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
@media(min-width: 1600px) { | |
.flex-xl-row { | |
-ms-flex-direction:row!important; | |
flex-direction: row!important | |
} | |
.flex-xl-column { | |
-ms-flex-direction: column!important; | |
flex-direction: column!important | |
} | |
.flex-xl-row-reverse { | |
-ms-flex-direction: row-reverse!important; | |
flex-direction: row-reverse!important | |
} | |
.flex-xl-column-reverse { | |
-ms-flex-direction: column-reverse!important; | |
flex-direction: column-reverse!important | |
} | |
.flex-xl-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important | |
} | |
.flex-xl-nowrap { | |
-ms-flex-wrap: nowrap!important; | |
flex-wrap: nowrap!important | |
} | |
.flex-xl-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse!important; | |
flex-wrap: wrap-reverse!important | |
} | |
.justify-content-xl-start { | |
-ms-flex-pack: start!important; | |
justify-content: flex-start!important | |
} | |
.justify-content-xl-end { | |
-ms-flex-pack: end!important; | |
justify-content: flex-end!important | |
} | |
.justify-content-xl-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important | |
} | |
.justify-content-xl-between { | |
-ms-flex-pack: justify!important; | |
justify-content: space-between!important | |
} | |
.justify-content-xl-around { | |
-ms-flex-pack: distribute!important; | |
justify-content: space-around!important | |
} | |
.align-items-xl-start { | |
-ms-flex-align: start!important; | |
align-items: flex-start!important | |
} | |
.align-items-xl-end { | |
-ms-flex-align: end!important; | |
align-items: flex-end!important | |
} | |
.align-items-xl-center { | |
-ms-flex-align: center!important; | |
align-items: center!important | |
} | |
.align-items-xl-baseline { | |
-ms-flex-align: baseline!important; | |
align-items: baseline!important | |
} | |
.align-items-xl-stretch { | |
-ms-flex-align: stretch!important; | |
align-items: stretch!important | |
} | |
.align-content-xl-start { | |
-ms-flex-line-pack: start!important; | |
align-content: flex-start!important | |
} | |
.align-content-xl-end { | |
-ms-flex-line-pack: end!important; | |
align-content: flex-end!important | |
} | |
.align-content-xl-center { | |
-ms-flex-line-pack: center!important; | |
align-content: center!important | |
} | |
.align-content-xl-between { | |
-ms-flex-line-pack: justify!important; | |
align-content: space-between!important | |
} | |
.align-content-xl-around { | |
-ms-flex-line-pack: distribute!important; | |
align-content: space-around!important | |
} | |
.align-content-xl-stretch { | |
-ms-flex-line-pack: stretch!important; | |
align-content: stretch!important | |
} | |
.align-self-xl-auto { | |
-ms-flex-item-align: auto!important; | |
align-self: auto!important | |
} | |
.align-self-xl-start { | |
-ms-flex-item-align: start!important; | |
align-self: flex-start!important | |
} | |
.align-self-xl-end { | |
-ms-flex-item-align: end!important; | |
align-self: flex-end!important | |
} | |
.align-self-xl-center { | |
-ms-flex-item-align: center!important; | |
align-self: center!important | |
} | |
.align-self-xl-baseline { | |
-ms-flex-item-align: baseline!important; | |
align-self: baseline!important | |
} | |
.align-self-xl-stretch { | |
-ms-flex-item-align: stretch!important; | |
align-self: stretch!important | |
} | |
} | |
.eq.flex { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1 | |
} | |
.eq.inline-flex { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex | |
} | |
.eq.flex-wrap { | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap | |
} | |
.eq.flex-middle { | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center | |
} | |
.eq.flex-left { | |
-webkit-justify-content: flex-start; | |
justify-content: flex-start | |
} | |
.eq.flex-center { | |
-webkit-justify-content: center; | |
justify-content: center | |
} | |
.eq.flex-right { | |
-webkit-justify-content: flex-end; | |
justify-content: flex-end | |
} | |
.eq.section { | |
zoom:1;padding-top: 20px; | |
padding-bottom: 20px | |
} | |
.eq.section:before,.eq.section:after { | |
content: ""; | |
display: table | |
} | |
.eq.section::after { | |
clear: both | |
} | |
.eq.section.secontent { | |
width: 960px | |
} | |
@media(max-width: 1050px) { | |
.eq.section.secontent { | |
width:100% | |
} | |
} | |
.eq.section-medium { | |
padding-top: 80px; | |
padding-bottom: 80px | |
} | |
.eq.section-large { | |
padding-top: 140px; | |
padding-bottom: 140px | |
} | |
.eq.section-xlarge { | |
padding-top: 180px; | |
padding-bottom: 180px | |
} | |
.eq.section-remove { | |
padding-top: 0; | |
padding-bottom: 0 | |
} | |
.eq.section-muted { | |
background-color: #f9f9fa | |
} | |
.section-right-image { | |
position: absolute; | |
right: -7%; | |
bottom: 0 | |
} | |
@media(max-width: 1599px) { | |
.section-right-image { | |
right:-24% | |
} | |
} | |
@media(max-width: 1199px) { | |
.section-right-image { | |
right:-40% | |
} | |
} | |
@media(max-width: 959px) { | |
.section-right-image { | |
right:-100% | |
} | |
} | |
.section-left-image { | |
position: absolute; | |
left: -7% | |
} | |
@media(max-width: 1599px) { | |
.section-left-image { | |
left:-28% | |
} | |
} | |
@media(max-width: 1199px) { | |
.section-left-image { | |
left:-48% | |
} | |
} | |
@media(max-width: 959px) { | |
.section-left-image { | |
left:-100% | |
} | |
} | |
.eq.text-color-inverse,.eq.text-color-inverse>* { | |
color: #fff | |
} | |
.eq.background-color-content { | |
background-color: #1e1e1e | |
} | |
.eq.background-color-base { | |
background-color: #868e96!important | |
} | |
.eq.background-color-base-light { | |
background-color: #bdc1c5!important | |
} | |
.eq.background-color-base-lighter { | |
background-color: #e8eaeb!important | |
} | |
.eq.background-color-base-lightest { | |
background-color: #f9f9fa!important | |
} | |
.eq.background-color-base-grey { | |
background-color: #222!important | |
} | |
.eq.background-color-base-dark { | |
background-color: #555b61!important | |
} | |
.eq.background-color-base-darker { | |
background-color: #25282b!important | |
} | |
.eq.background-color-base-darkest { | |
background-color: #17191a!important | |
} | |
.eq.background-color-primary { | |
background-color: #2e4361!important | |
} | |
.eq.background-color-primary-light { | |
background-color: #60a1ff!important | |
} | |
.eq.background-color-primary-lighter { | |
background-color: #d7e8ff!important | |
} | |
.eq.background-color-primary-dark { | |
background-color: #263850!important | |
} | |
.eq.background-color-primary-darker { | |
background-color: #1862cc!important | |
} | |
.eq.background-color-success { | |
background-color: #52d290!important | |
} | |
.eq.background-color-success-light { | |
background-color: #75dba6!important | |
} | |
.eq.background-color-success-lighter { | |
background-color: #dcf6e9!important | |
} | |
.eq.background-color-success-dark { | |
background-color: #38b876!important | |
} | |
.eq.background-color-success-darker { | |
background-color: #31a469!important | |
} | |
.eq.background-color-danger { | |
background-color: #ff6b6b!important | |
} | |
.eq.background-color-danger-light { | |
background-color: #ff8989!important | |
} | |
.eq.background-color-danger-lighter { | |
background-color: #ffe1e1!important | |
} | |
.eq.background-color-danger-dark { | |
background-color: #e64949!important | |
} | |
.eq.background-color-danger-darker { | |
background-color: #cc4141!important | |
} | |
.eq.navbar { | |
position: static; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-direction: column; | |
top: 0; | |
right: 0; | |
left: 0; | |
width: 100%; | |
min-height: 60px; | |
z-index: 500; | |
background-color: #fff; | |
box-shadow: 0 1px 2px 0 rgba(0,0,0,.1); | |
-webkit-transition: 150ms; | |
-moz-transition: 150ms; | |
-o-transition: 150ms; | |
transition: 150ms | |
} | |
.eq.navbar.fixed { | |
position: fixed | |
} | |
.eq.navbar.absolute { | |
position: absolute | |
} | |
.eq.navbar-small .eq.logo-item { | |
height: 60px | |
} | |
.eq.navbar-small .eq.navbar-nav>li>a { | |
font-size: .875rem; | |
line-height: 58px; | |
margin-right: 0!important | |
} | |
.eq.navbar-small .eq.navbar-item { | |
height: 60px; | |
outline: none | |
} | |
.eq.navbar-small .eq.navbar-icon { | |
font-size: .875rem | |
} | |
.eq.navbar.primary { | |
background-color: #2e4361 | |
} | |
.eq.navbar.primary .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.primary .eq.nav-icon .line,.eq.navbar.primary .eq.nav-icon::before,.eq.navbar.primary .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-icon { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.primary .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.primary .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.primary .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.primary .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.primary .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.primary .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar.dark { | |
background-color: #25282b | |
} | |
.eq.navbar.dark .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.dark .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.dark .eq.nav-icon .line,.eq.navbar.dark .eq.nav-icon::before,.eq.navbar.dark .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.dark .eq.navbar-icon { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.dark .eq.navbar-nav>li.active>a { | |
color: #388aff!important; | |
border-bottom-color: #388aff | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.dark .eq.navbar-nav>li.active>a { | |
border-bottom-color:#388aff!important | |
} | |
} | |
.eq.navbar.dark .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.dark .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.dark .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.dark .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.dark .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar.muted { | |
background-color: transparent; | |
box-shadow: none | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.muted { | |
box-shadow:0 1px rgba(255,255,255,.1) | |
} | |
} | |
.eq.navbar.muted .eq.logo-item { | |
outline: none | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-img.dark { | |
opacity: 0 | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-img.light { | |
opacity: 1 | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-svg { | |
fill: #fff | |
} | |
.eq.navbar.muted .eq.logo-item .eq.logo-text { | |
color: #fff | |
} | |
.eq.navbar.muted .eq.nav-icon .line,.eq.navbar.muted .eq.nav-icon::before,.eq.navbar.muted .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.navbar.muted .eq.navbar-icon { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.navbar.muted .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: transparent | |
} | |
@media(max-width: 959px) { | |
.eq.navbar.muted .eq.navbar-nav>li.active>a { | |
border-bottom-color:#fff | |
} | |
} | |
.eq.navbar.muted .eq.navbar-search { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.muted .eq.navbar-search:hover { | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.navbar.muted .eq.navbar-search>input:focus { | |
color: #fff | |
} | |
.eq.navbar.muted .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.navbar.muted .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.navbar-container { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
max-width: 1200px; | |
min-height: 60px; | |
width: 100%; | |
box-sizing: border-box; | |
margin-left: auto; | |
margin-right: auto; | |
padding-right: 15px; | |
padding-left: 15px | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-container { | |
width:100% | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-container { | |
padding-left:0; | |
padding-right: 0 | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.navbar-container { | |
padding-left:30px; | |
padding-right: 30px | |
} | |
} | |
.eq.navbar-left,.eq.navbar-right { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-wrap: wrap; | |
-webkit-flex-wrap: wrap; | |
flex-wrap: wrap | |
} | |
.eq.navbar-right { | |
justify-content: flex-end | |
} | |
.eq.navbar-center { | |
position: absolute; | |
top: 0; | |
left: 50%; | |
-webkit-transform: translateX(-50%); | |
transform: translateX(-50%); | |
display: table; | |
width: -moz-max-content; | |
max-width: 100%; | |
box-sizing: border-box | |
} | |
.eq.navbar-item { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
box-sizing: border-box; | |
height: 70px; | |
padding-left: 15px; | |
padding-right: 15px; | |
font-size: .875rem; | |
text-decoration: none | |
} | |
@media(min-width: 640px) { | |
.eq.navbar-item:last-child { | |
padding-right:0 | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-item { | |
height:60px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-item { | |
height:50px | |
} | |
} | |
.eq.logo-item { | |
position: relative; | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: left; | |
-webkit-justify-content: left; | |
justify-content: left; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
height: 70px; | |
-webkit-transition: opacity 150ms; | |
-moz-transition: opacity 150ms; | |
-o-transition: opacity 150ms; | |
transition: opacity 150ms | |
} | |
@media(max-width: 959px) { | |
.eq.logo-item { | |
height:60px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.logo-item { | |
height:50px | |
} | |
} | |
.eq.logo-item .eq.logo-img { | |
display: block; | |
width: auto; | |
height: 40px | |
} | |
@media(max-width: 639px) { | |
.eq.logo-item .eq.logo-img { | |
height:30px | |
} | |
} | |
.eq.logo-item .eq.logo-img.normal { | |
visibility: hidden | |
} | |
.eq.logo-item .eq.logo-img.dark,.eq.logo-item .eq.logo-img.light { | |
position: absolute; | |
top: 50%; | |
left: 0; | |
transform: translateY(-50%) | |
} | |
.eq.logo-item .eq.logo-img.light { | |
opacity: 0 | |
} | |
.eq.logo-item .eq.logo-svg { | |
fill: #25282b | |
} | |
.eq.logo-item .eq.logo-text { | |
color: #25282b; | |
font-weight: 600; | |
margin: 0 | |
} | |
.eq.logo-item:hover { | |
opacity: .8 | |
} | |
.eq.navbar-nav { | |
position: relative; | |
margin: 0; | |
padding: 0; | |
max-width: 820px; | |
white-space: nowrap; | |
list-style-type: none | |
} | |
@media(min-width: 640px) { | |
.eq.navbar-nav { | |
margin-left:10px | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-nav { | |
height:70px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-nav { | |
overflow-y:hidden; | |
height: 60px | |
} | |
} | |
.eq.navbar-nav>li { | |
display: inline-block | |
} | |
.eq.navbar-nav>li>a { | |
display: inline-block; | |
padding-left: 15px; | |
padding-right: 10px; | |
margin-right: 10px; | |
color: #868e96; | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 68px; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom: 2px solid transparent; | |
-webkit-transition: 150ms; | |
-moz-transition: 150ms; | |
-o-transition: 150ms; | |
transition: 150ms | |
} | |
@media(max-width: 959px) { | |
.eq.navbar-nav>li>a { | |
line-height:58px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-nav>li>a { | |
font-size:.875rem; | |
font-weight: 600; | |
line-height: 48px!important | |
} | |
} | |
.eq.navbar-nav>li:hover>a { | |
color: #25282b | |
} | |
.eq.navbar-nav>li.active>a { | |
color: #388aff; | |
border-bottom: 2px solid #388aff | |
} | |
.eq.mobile-navbar-nav { | |
height: 60px | |
} | |
@media(max-width: 639px) { | |
.eq.mobile-navbar-nav { | |
height:50px | |
} | |
} | |
.eq.navbar-search { | |
border-radius: 500px; | |
background: #f9f9fa; | |
-webkit-transition: all .3s; | |
transition: all .3s; | |
-webkit-transform-origin: right; | |
transform-origin: right | |
} | |
.eq.navbar-search:hover { | |
background: #e8eaeb | |
} | |
.eq.navbar-search input[type=text] { | |
display: inline-block; | |
position: relative; | |
padding: 10px 0 10px 20px; | |
width: 80px; | |
border: none; | |
border-radius: 2em 0 0 2em; | |
color: transparent; | |
font-size: 16px; | |
background-color: transparent; | |
-webkit-transition: all .4s cubic-bezier(.68,-.55,.27,1.55); | |
transition: all .4s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transform-origin: right; | |
transform-origin: right | |
} | |
.eq.navbar-search input[type=text]:focus { | |
width: 160px; | |
outline: none; | |
color: #555b61 | |
} | |
.eq.navbar-search>.eq.button-search { | |
font-family: ionicons; | |
box-shadow: none; | |
background: 0 0; | |
border: none; | |
font-size: 22px; | |
color: #868e96; | |
padding: 9px 14px!important; | |
height: 100%!important; | |
text-shadow: none; | |
transition: .3s; | |
-moz-transition: .3s; | |
-webkit-transition: .3s; | |
-o-transition: .3s | |
} | |
.eq.navbar-search>.eq.button-search:hover { | |
cursor: pointer; | |
color: #388aff | |
} | |
.eq.navbar-search>.eq.button-search:focus { | |
outline: none | |
} | |
.eq.navbar-icon { | |
cursor: pointer; | |
position: relative; | |
padding-left: 10px; | |
padding-right: 10px; | |
font-size: 16px; | |
color: #555b61; | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
@media(max-width: 639px) { | |
.eq.navbar-icon { | |
font-size:.875rem; | |
padding-left: 5px; | |
padding-right: 5px | |
} | |
} | |
.eq.navbar-icon:hover { | |
color: #25282b | |
} | |
.eq.navbar-container .eq.badge { | |
display: none; | |
position: absolute; | |
right: 30px; | |
top: 4px | |
} | |
.eq.navbar-container .eq.badge.count { | |
display: block | |
} | |
.eq.nav-icon { | |
cursor: pointer; | |
position: relative; | |
width: 18px; | |
height: 14px | |
} | |
.eq.nav-icon::before,.eq.nav-icon::after { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
transition: .2s ease; | |
-o-transition: .2s ease; | |
-moz-transition: .2s ease; | |
-webkit-transition: .2s ease | |
} | |
.eq.nav-icon .line,.eq.nav-icon::before,.eq.nav-icon::after { | |
height: 2px; | |
background-color: #25282b | |
} | |
.eq.nav-icon::before { | |
width: 12px | |
} | |
.eq.nav-icon .line { | |
position: absolute; | |
top: 6px; | |
width: 100%; | |
transition: .3s ease; | |
-o-transition: .3s ease; | |
-moz-transition: .3s ease; | |
-webkit-transition: .3s ease | |
} | |
.eq.nav-icon::after { | |
width: 14px; | |
top: 12px | |
} | |
.eq.nav-drawer-toggle:hover .eq.nav-icon::before,.eq.nav-drawer-toggle:hover .eq.nav-icon::after { | |
width: 100% | |
} | |
.eq.nav-drawer-toggle:hover .eq.nav-icon .line { | |
width: 12px | |
} | |
@media(max-width: 400px) { | |
.eq.nav-drawer-toggle { | |
padding-left:10px!important; | |
padding-right: 5px!important | |
} | |
.navbar-profile { | |
padding-left: 10px!important | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.nav-drawer-toggle { | |
padding-left:15px; | |
padding-right: 15px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.profile-image { | |
padding-right:15px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.toggle-login { | |
margin-left:10px; | |
padding-right: 10px | |
} | |
} | |
.eq.modal { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1000; | |
visibility: hidden; | |
opacity: 0; | |
overflow-x: hidden; | |
overflow-y: auto; | |
-webkit-transition: opacity .2s,visibility .2s; | |
-moz-transition: opacity .2s,visibility .2s; | |
transition: opacity .2s,visibility .2s | |
} | |
.eq.modal.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.modal.on .eq.modal-content { | |
transform: scale(1) | |
} | |
.eq.modal-content { | |
display: block; | |
position: relative; | |
width: 100%; | |
max-width: 400px; | |
height: auto; | |
max-height: 100vh; | |
z-index: 1; | |
overflow-y: auto; | |
background-color: #2a2a2a; | |
border-radius: 3px; | |
box-shadow: 0 2px 4px rgba(0,0,0,.2); | |
transform: scale(.8); | |
transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-moz-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55); | |
-o-transition: transform .3s cubic-bezier(.68,-.55,.27,1.55) | |
} | |
.eq.modal-header { | |
position: relative; | |
height: auto; | |
padding: 15px 30px; | |
border-bottom: 1px solid rgba(255,255,255,.1) | |
} | |
.eq.modal-body { | |
padding: 30px | |
} | |
.eq.modal-background { | |
position: fixed; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
overflow-x: hidden; | |
background-color: rgba(0,0,0,.2) | |
} | |
.eq.modal-close { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: absolute; | |
bottom: 0; | |
right: 0; | |
height: 100%; | |
max-height: 50px; | |
padding: 12px 16px; | |
color: #868e96; | |
font-size: 20px; | |
line-height: 1; | |
text-decoration: none; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
transition: all .3s | |
} | |
.eq.modal-close:hover,.eq.modal-close:active { | |
color: #555b61 | |
} | |
@media(max-width: 639px) { | |
.eq.modal-login .eq.modal-content { | |
position:absolute; | |
bottom: 0; | |
border-radius: 0; | |
max-width: 100% | |
} | |
} | |
.eq.modal.slide-left .eq.modal-content { | |
max-width: 250px; | |
height: 100%; | |
margin: 0 auto 0 0; | |
border-radius: 0; | |
top: 0; | |
left: 0; | |
transform: translateX(-50%) scale(1); | |
transition: all .2s ease-in-out; | |
-webkit-transition: all .2s ease-in-out; | |
-moz-transition: all .2s ease-in-out; | |
-o-transition: all .2s ease-in-out | |
} | |
.eq.modal.slide-left .eq.modal-content .eq.modal-body { | |
padding: 15px 30px | |
} | |
.eq.modal.slide-left.on .eq.modal-content { | |
transform: translateX(0) | |
} | |
.eq.nav-drawer-toggle>i { | |
color: #25282b | |
} | |
.eq.nav-drawer { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 8888; | |
visibility: hidden; | |
opacity: 0; | |
-webkit-transition: opacity .2s,visibility .2s; | |
-moz-transition: opacity .2s,visibility .2s; | |
transition: opacity .2s,visibility .2s | |
} | |
.eq.nav-drawer.on { | |
visibility: visible; | |
opacity: 1; | |
z-index: 9998 | |
} | |
.eq.nav-drawer.on.on>.eq.nav-drawer-content { | |
-webkit-transform: translateX(0) scaleX(1); | |
transform: translateX(0) scaleX(1) | |
} | |
.eq.nav-drawer-bg { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: rgba(0,0,0,.3); | |
z-index: 10 | |
} | |
.eq.nav-drawer-content { | |
position: relative; | |
width: 280px; | |
height: 100%; | |
overflow-x: hidden; | |
z-index: 20; | |
background: #1e1e1e; | |
box-shadow: 2px 2px 5px rgba(0,0,0,.1); | |
transform: translateX(-50%) scaleX(.8); | |
transform-origin: left; | |
transition-timing-function: cubic-bezier(.4,0,.2,1); | |
transition-duration: .3s; | |
-webkit-transform: translateX(-50%) scaleX(.8); | |
-webkit-transform-origin: left; | |
-webkit-transition-timing-function: cubic-bezier(.4,0,.2,1); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-profile-menu { | |
box-shadow: 0 2px 3px rgba(23,25,26,.1) | |
} | |
.eq.nav-menu { | |
margin: 0; | |
padding: 20px 0; | |
list-style-type: none | |
} | |
.eq.nav-menu>li { | |
position: relative; | |
margin: 0; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 20px; | |
border-bottom: 1px solid rgba(255,255,255,.1); | |
color: #d4d4d4; | |
font-size: .875rem; | |
font-weight: 600; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>a:hover { | |
color: #fff; | |
background-color: #424242 | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron { | |
cursor: pointer; | |
position: absolute; | |
top: 0; | |
right: 0; | |
width: 42px; | |
height: 42px; | |
padding: 0; | |
border: none; | |
outline: none; | |
background-color: transparent | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::before,.eq.nav-menu>li.parent .eq.nav-chevron::after { | |
content: ""; | |
position: absolute; | |
top: 50%; | |
width: 10px; | |
height: 2px; | |
background-color: #555b61; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::before { | |
right: 20px; | |
transform: rotate(45deg) | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron::after { | |
right: 14px; | |
transform: rotate(135deg) | |
} | |
.eq.nav-menu>li.parent .eq.nav-chevron:hover::before,.eq.nav-menu>li.parent .eq.nav-chevron:hover::after { | |
background-color: #fff | |
} | |
.eq.nav-menu>li.open>ul { | |
opacity: 1; | |
max-height: 100vh; | |
margin-bottom: 10px | |
} | |
.eq.nav-menu>li.open .eq.nav-chevron::before { | |
transform: rotate(-45deg) | |
} | |
.eq.nav-menu>li.open .eq.nav-chevron::after { | |
transform: rotate(225deg) | |
} | |
.eq.nav-menu>li.active>a { | |
color: #6488bb; | |
background-color: #424242 | |
} | |
.eq.nav-menu>li>ul { | |
overflow: hidden; | |
max-height: 0; | |
padding: 0; | |
margin: 0; | |
list-style-type: none; | |
opacity: 0; | |
transition: all 350ms ease-in-out; | |
-o-transition: all 350ms ease-in-out; | |
-moz-transition: all 350ms ease-in-out; | |
-webkit-transition: all 350ms ease-in-out | |
} | |
.eq.nav-menu>li>ul>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 40px; | |
color: #868e96; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-menu>li>ul>li>a:hover { | |
color: #d4d4d4; | |
background-color: #424242 | |
} | |
.eq.nav-menu>li>ul>li>ul { | |
padding: 0; | |
margin-bottom: 10px; | |
list-style-type: none | |
} | |
.eq.nav-menu>li>ul>li>ul>li>a { | |
display: inline-block; | |
width: 100%; | |
padding: 10px 60px; | |
color: #868e96; | |
font-size: .75rem; | |
text-decoration: none | |
} | |
.eq.nav-menu>li>ul>li>ul>li>a:hover { | |
color: #d4d4d4; | |
background-color: #424242 | |
} | |
.eq.nav-menu>li>ul>li>ul>li.active>a { | |
color: #d4d4d4; | |
font-weight: 600 | |
} | |
.eq.nav-menu>li>ul>li.active>a { | |
color: #d4d4d4; | |
font-weight: 600 | |
} | |
.eq.search { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
visibility: hidden; | |
opacity: 0; | |
z-index: 10000; | |
transition: all .2s ease-in-out; | |
-webkit-transition: all .2s ease-in-out; | |
-moz-transition: all .2s ease-in-out; | |
-o-transition: all .2s ease-in-out | |
} | |
.eq.search.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.search.on .eq.search-circle { | |
-webkit-transform: translateX(-50%) scale(6)!important; | |
transform: translateX(-50%) scale(6)!important | |
} | |
.eq.search .eq.search-content { | |
position: relative; | |
width: 100%; | |
z-index: 2; | |
box-shadow: 0 3px 5px rgba(23,25,26,.1); | |
overflow: hidden | |
} | |
.eq.search .eq.search-content .search-close { | |
cursor: pointer; | |
top: 5px; | |
left: 5px; | |
padding: 15px; | |
color: #25282b; | |
font-size: 16px | |
} | |
.eq.search .eq.search-content .eq.search-form { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input { | |
display: inline-block; | |
position: relative; | |
width: 70%; | |
padding: 10px 0; | |
margin-top: 30px; | |
margin-bottom: 140px; | |
border: none; | |
outline: none; | |
border-bottom: 2px solid #17191a; | |
background-color: transparent; | |
color: #17191a; | |
font-size: 1.25rem; | |
font-weight: 300; | |
transition: .4s; | |
-webkit-transition: .4s; | |
-moz-transition: .4s; | |
-o-transition: .4s | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input:-ms-input-placeholder { | |
color: #868e96!important | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input::-moz-placeholder { | |
color: #868e96 | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-input::-webkit-input-placeholder { | |
color: #868e96 | |
} | |
.eq.search .eq.search-content .eq.search-form .eq.search-button { | |
padding: 10px; | |
background-color: transparent | |
} | |
.eq.search .eq.search-content .eq.search-circle { | |
position: absolute; | |
width: 100px; | |
height: 100px; | |
top: 50px; | |
left: 50%; | |
z-index: -1; | |
border-radius: 50%; | |
background-color: #fff; | |
transform: translateX(-50%); | |
will-change: transform,translateX; | |
-webkit-transition: translateX .3s,-webkit-transform .3s; | |
transition: translateX .3s,-webkit-transform .3s; | |
transition: transform .3s,translateX .3s; | |
transition: transform .3s,translateX .3s,-webkit-transform .3s | |
} | |
.eq.search .eq.search-shadow { | |
position: fixed; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1; | |
background: rgba(0,0,0,.9) | |
} | |
.eq.button { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
cursor: pointer; | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 1.4; | |
text-align: center; | |
padding: 10px 18px; | |
outline: none; | |
border: none; | |
border-radius: 3px; | |
text-decoration: none!important; | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.button:focus { | |
box-shadow: 0 0 0 .2rem rgba(134,142,150,.3) | |
} | |
.eq.button:disabled { | |
opacity: .7 | |
} | |
.eq.button-group { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1 | |
} | |
.eq.button-group .eq.button { | |
width: 100%; | |
margin-right: 10px | |
} | |
.eq.button-group .eq.button:last-child { | |
margin-right: 0 | |
} | |
.eq.button-expand { | |
width: 100% | |
} | |
.eq.button-rounded { | |
border-radius: 100px!important | |
} | |
.eq.button-shadow { | |
box-shadow: 0 3px 4px rgba(0,0,0,.1) | |
} | |
.eq.button-shadow:hover { | |
box-shadow: 0 3px 10px rgba(0,0,0,.2) | |
} | |
.eq.button-shadow:active { | |
box-shadow: 0 1px 4px rgba(0,0,0,.1) | |
} | |
.eq.button-small { | |
font-size: .75rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 5px 10px; | |
border-radius: 3px | |
} | |
.eq.button-small.button-stroke { | |
padding: 4px 9px | |
} | |
.eq.button-large { | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 10px 25px; | |
border-radius: 3px | |
} | |
.eq.button-xxsmall { | |
font-size: .75rem; | |
border-radius: 3px | |
} | |
.eq.button-default { | |
padding: 9px 17px; | |
color: #555b61; | |
background-color: #fff; | |
border-color: #e8eaeb; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb | |
} | |
.eq.button-default:hover { | |
border-color: #bdc1c5 | |
} | |
.eq.button-primary { | |
color: #fff; | |
background-color: #2e4361 | |
} | |
.eq.button-primary:hover { | |
background-color: #405e88 | |
} | |
.eq.button-primary:focus { | |
box-shadow: 0 0 0 .2rem rgba(56,138,255,.3) | |
} | |
.eq.button-success { | |
color: #fff; | |
background-color: #52d290 | |
} | |
.eq.button-success:hover { | |
background-color: #75dba6 | |
} | |
.eq.button-success:focus { | |
box-shadow: 0 0 0 .2rem rgba(82,210,144,.3) | |
} | |
.eq.button-danger { | |
color: #fff; | |
background-color: #ff6b6b | |
} | |
.eq.button-danger:hover { | |
background-color: #ff8989 | |
} | |
.eq.button-danger:focus { | |
box-shadow: 0 0 0 .2rem rgba(255,107,107,.3) | |
} | |
.eq.button-content { | |
color: #d4d4d4; | |
background-color: #1b2a40 | |
} | |
.eq.button-content:hover { | |
background-color: #1d2e46 | |
} | |
.eq.button-stroke { | |
padding: 9px 17px; | |
border-width: 1px; | |
border-style: solid; | |
background-color: transparent | |
} | |
.eq.button-stroke.eq.button-default { | |
color: #555b61; | |
border-color: #555b61 | |
} | |
.eq.button-stroke.eq.button-default:hover { | |
color: #fff; | |
border-color: #555b61; | |
background-color: #555b61 | |
} | |
.eq.button-stroke.eq.button-primary { | |
color: #388aff | |
} | |
.eq.button-stroke.eq.button-primary:hover { | |
color: #fff; | |
border-color: #327ce6; | |
background-color: #327ce6 | |
} | |
.eq.button-stroke.eq.button-success { | |
color: #52d290 | |
} | |
.eq.button-stroke.eq.button-success:hover { | |
color: #fff; | |
border-color: #38b876; | |
background-color: #38b876 | |
} | |
.eq.button-stroke.eq.button-danger { | |
color: #ff6b6b | |
} | |
.eq.button-stroke.eq.button-danger:hover { | |
color: #fff; | |
border-color: #e64949; | |
background-color: #e64949 | |
} | |
.eq.button-icon { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
width: 36px; | |
height: 36px; | |
text-decoration: none; | |
border: none; | |
outline: none; | |
border-radius: 500px | |
} | |
.eq.button-social { | |
padding: 12px 18px; | |
text-align: center; | |
line-height: 1; | |
border-radius: 500px | |
} | |
.eq.button-social-google { | |
color: #e05353; | |
border-color: #fff; | |
background-color: #fff; | |
box-shadow: 0 6px 24px -2px rgba(85,91,97,.3) | |
} | |
.eq.button-social-google:hover { | |
border-color: #f9f9fa; | |
background-color: #f9f9fa; | |
box-shadow: 0 6px 30px -2px rgba(85,91,97,.6) | |
} | |
.eq.button-social-google:active { | |
border-color: #e8eaeb; | |
background-color: #e8eaeb; | |
box-shadow: 0 3px 14px -2px rgba(85,91,97,.3) | |
} | |
.eq.button-social-google:focus { | |
box-shadow: 0 0 0 .2rem rgba(134,142,150,.1) | |
} | |
.eq.button-social-facebook { | |
color: #fff; | |
border-color: #4378e2; | |
background-color: #4378e2; | |
box-shadow: 0 6px 24px -2px rgba(67,120,226,.4) | |
} | |
.eq.button-social-facebook:hover { | |
border-color: #285ec8; | |
background-color: #285ec8; | |
box-shadow: 0 6px 30px -2px rgba(67,120,226,.6) | |
} | |
.eq.button-social-facebook:active { | |
border-color: #2453b2; | |
background-color: #2453b2; | |
box-shadow: 0 3px 14px -2px rgba(67,120,226,.3) | |
} | |
.eq.button-social-facebook:focus { | |
box-shadow: 0 0 0 .2rem rgba(67,120,226,.3) | |
} | |
.eq.button-social-kakao { | |
color: #713d3d; | |
border-color: #f7e542; | |
background-color: #f7e542; | |
box-shadow: 0 6px 24px -2px rgba(247,229,66,.4) | |
} | |
.eq.button-social-kakao:hover { | |
border-color: #ddcb25; | |
background-color: #ddcb25; | |
box-shadow: 0 3px 30px -2px rgba(247,229,66,.6) | |
} | |
.eq.button-social-kakao:active { | |
border-color: #c5b521; | |
background-color: #c5b521; | |
box-shadow: 0 3px 14px -2px rgba(247,229,66,.3) | |
} | |
.eq.button-social-kakao:focus { | |
box-shadow: 0 0 0 .2rem rgba(247,229,66,.3) | |
} | |
.eq.button-social-naver { | |
color: #fff; | |
border-color: #4aad39; | |
background-color: #4aad39; | |
box-shadow: 0 6px 24px -2px rgba(74,173,57,.4) | |
} | |
.eq.button-social-naver:hover { | |
border-color: #3b8a2e; | |
background-color: #3b8a2e; | |
box-shadow: 0 3px 30px -2px rgba(74,173,57,.6) | |
} | |
.eq.button-social-naver:active { | |
border-color: #357b29; | |
background-color: #357b29; | |
box-shadow: 0 3px 14px -2px rgba(74,173,57,.3) | |
} | |
.eq.button-social-naver:focus { | |
box-shadow: 0 0 0 .2rem rgba(74,173,57,.3) | |
} | |
.eq.button-social-twitter { | |
color: #fff; | |
border-color: #56aef7; | |
background-color: #56aef7; | |
box-shadow: 0 6px 24px -2px rgba(86,174,247,.4) | |
} | |
.eq.button-social-twitter:hover { | |
border-color: #3792dd; | |
background-color: #3792dd; | |
box-shadow: 0 3px 30px -2px rgba(86,174,247,.6) | |
} | |
.eq.button-social-twitter:active { | |
border-color: #3182c5; | |
background-color: #3182c5; | |
box-shadow: 0 3px 14px -2px rgba(86,174,247,.3) | |
} | |
.eq.button-social-twitter:focus { | |
box-shadow: 0 0 0 .2rem rgba(86,174,247,.3) | |
} | |
.eq.button-scroll-top { | |
visibility: hidden; | |
position: fixed; | |
opacity: 0; | |
right: 40px; | |
bottom: 40px; | |
padding: 14px 18px; | |
line-height: 1; | |
border-radius: 2em; | |
z-index: 100; | |
font-size: 1.25rem; | |
color: #fff; | |
background-color: #2e4361; | |
box-shadow: 0 3px 4px rgba(23,25,26,.1); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.button-scroll-top.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.button-scroll-top:hover { | |
background-color: #5b7aa7; | |
box-shadow: 0 3px 10px rgba(23,25,26,.2) | |
} | |
.eq.button-scroll-top:active { | |
background-color: #2e4361; | |
box-shadow: 0 1px 4px rgba(23,25,26,.1) | |
} | |
@media(max-width: 959px) { | |
.eq.button-scroll-top { | |
right:20px; | |
bottom: 20px | |
} | |
} | |
.eq.button-scroll-tool-box { | |
position: fixed; | |
right: 40px; | |
bottom: 70px; | |
z-index: 100; | |
font-size: 1.25rem; | |
display: flex; | |
flex-direction: column | |
} | |
.eq.button-scroll-tool-item { | |
padding: 0 10px; | |
border-radius: .25em; | |
z-index: 100; | |
font-size: 1.25rem; | |
margin: 2px; | |
text-align: center; | |
color: rgba(128,128,128,.35); | |
background-color: rgba(255,255,255,.1); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms; | |
border: 1px solid rgba(128,128,128,.35) | |
} | |
.eq.button-scroll-tool-item:active { | |
background-color: rgba(255,255,255,.2) | |
} | |
@media(max-width: 639px) { | |
.eq.button-scroll-tool-box { | |
right:20px; | |
bottom: 75px | |
} | |
.eq.button-scroll-tool-item { | |
padding: 0 8px; | |
margin: 1px | |
} | |
} | |
.eq.input { | |
display: inline-block; | |
font-size: .874rem; | |
font-weight: 500; | |
line-height: 1.5; | |
padding: 10px 18px; | |
margin-bottom: 10px; | |
border-radius: 4px; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s; | |
background-color: #494949; | |
color: #d4d4d4 | |
} | |
.eq.input:-webkit-autofill { | |
-webkit-box-shadow: 0 0 0 1000px #fff inset | |
} | |
.eq.input:focus { | |
outline: none | |
} | |
.eq.input-expand { | |
width: 100% | |
} | |
.eq.input-default { | |
border-color: #e8eaeb | |
} | |
.eq.input-default:hover { | |
border-color: #bdc1c5 | |
} | |
.eq.input-default:focus { | |
border-color: #388aff; | |
outline: none | |
} | |
.eq.input-checkbox { | |
display: none; | |
visibility: hidden | |
} | |
.eq.input-checkbox+label { | |
cursor: pointer; | |
font-size: .875rem; | |
color: #868e96; | |
-webkit-transition: .2s; | |
-moz-transition: .2s; | |
-o-transition: .2s; | |
transition: .2s | |
} | |
.eq.input-checkbox+label:hover { | |
color: #555b61 | |
} | |
.eq.input-checkbox+label:hover:before { | |
border-color: #bdc1c5 | |
} | |
.eq.input-checkbox+label:active:before { | |
border-color: #388aff | |
} | |
.eq.input-checkbox+label:before { | |
display: inline-block; | |
content: ""; | |
width: 18px; | |
height: 18px; | |
margin-right: 6px; | |
border-radius: 4px; | |
border: none; | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb; | |
vertical-align: middle; | |
background-color: #fff; | |
background-repeat: no-repeat; | |
background-position: center; | |
background-size: 10px auto; | |
-webkit-background-size: 10px auto; | |
-moz-background-size: 10px auto; | |
-o-background-size: 10px auto; | |
-webkit-transition: .2s; | |
-moz-transition: .2s; | |
-o-transition: .2s; | |
transition: .2s | |
} | |
.eq.input-checkbox:focus+label:before { | |
border-color: #388aff | |
} | |
.eq.input-checkbox:checked+label:before { | |
border-color: #388aff; | |
background-color: #388aff; | |
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwcHgiIGhlaWdodD0iMTVweCIgdmlld0JveD0iMCAwIDIwIDE1Ij4NCjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iNy4xNDMsMTQuOTM4IDAsNy43OTYgMi4wMjEsNS43NzYgNy4xNDMsMTAuODk4IDE3Ljk3OSwwLjA2MiAyMCwyLjA4MiAiLz4NCjwvc3ZnPg0K) | |
} | |
.eq.input:-ms-input-placeholder { | |
color: #868e96!important; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input::-moz-placeholder { | |
color: #868e96; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input::-webkit-input-placeholder { | |
color: #868e96; | |
transition: all 150ms; | |
-o-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-webkit-transition: all 150ms | |
} | |
.eq.input:focus:-ms-input-placeholder { | |
color: transparent!important | |
} | |
.eq.input:focus::-moz-placeholder { | |
color: transparent | |
} | |
.eq.input:focus::-webkit-input-placeholder { | |
color: transparent | |
} | |
.eq.textarea { | |
width: 100%; | |
border: 1px solid #e8eaeb; | |
border-radius: 3px; | |
padding: 10px | |
} | |
.eq.textarea:focus { | |
outline: none; | |
border-color: #388aff | |
} | |
.eq.form-field { | |
position: relative; | |
padding-top: 10px; | |
margin: 0 0 15px | |
} | |
.eq.form-field .eq.input { | |
border: none; | |
padding: 12px 0; | |
margin: 0 | |
} | |
.eq.form-field .eq.input+label { | |
display: block; | |
position: relative; | |
margin: 0 | |
} | |
.eq.form-field .eq.input+label .eq.input-title { | |
position: absolute; | |
display: block; | |
top: -33px; | |
visibility: hidden; | |
opacity: 0; | |
color: #868e96; | |
font-size: 16px; | |
transition: 250ms; | |
-o-transition: 250ms; | |
-moz-transition: 250ms; | |
-webkit-transition: 250ms | |
} | |
.eq.form-field .eq.input+label::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid rgba(255,255,255,.1); | |
transition: all 250ms; | |
-o-transition: all 250ms; | |
-moz-transition: all 250ms; | |
-webkit-transition: all 250ms | |
} | |
.eq.form-field .eq.input+label::after { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
height: 2px; | |
background-color: #388aff; | |
transform: scaleX(0); | |
transition: all 250ms; | |
-o-transition: all 250ms; | |
-moz-transition: all 250ms; | |
-webkit-transition: all 250ms | |
} | |
.eq.form-field .eq.input:hover+label::before { | |
border-color: #bdc1c5 | |
} | |
.eq.form-field .eq.input:focus+label .eq.input-title { | |
visibility: visible; | |
opacity: 1; | |
top: -60px; | |
font-size: .75rem | |
} | |
.eq.form-field .eq.input:focus+label::after { | |
transform: scaleX(1) | |
} | |
.eq.table { | |
width: 100%; | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: .875rem; | |
line-height: 1.5; | |
border-collapse: collapse | |
} | |
.eq.table tr th,.eq.table tr td { | |
color: #25282b; | |
font-size: .875rem; | |
font-weight: 400; | |
text-align: left; | |
padding: 15px | |
} | |
.eq.table-divider tr { | |
border: 1px solid #e8eaeb | |
} | |
.eq.table-divider tr>th { | |
background-color: #f9f9fa | |
} | |
.eq.tab { | |
position: relative; | |
margin: 0; | |
padding: 0; | |
white-space: nowrap; | |
list-style-type: none | |
} | |
@media(max-width: 639px) { | |
.eq.tab { | |
overflow-y:hidden; | |
height: 50px | |
} | |
} | |
.eq.tab::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid #e8eaeb | |
} | |
.eq.tab>li { | |
display: inline-block; | |
position: relative | |
} | |
.eq.tab>li>a { | |
display: inline-block; | |
color: #868e96; | |
font-size: .874rem; | |
font-weight: 500; | |
line-height: 58px; | |
padding: 0 10px; | |
margin-right: 10px; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom: 2px solid transparent; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
@media(max-width: 639px) { | |
.eq.tab>li>a { | |
font-weight:600; | |
line-height: 48px | |
} | |
} | |
.eq.tab>li:last-child>a { | |
margin-right: 0 | |
} | |
.eq.tab>li:hover>a { | |
color: #555b61 | |
} | |
.eq.tab>li.active>a { | |
color: #388aff; | |
border-bottom: 2px solid #388aff | |
} | |
.eq.tab>li:hover>.popover-animationLeft { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
@media(max-width: 639px) { | |
.eq.tab-wrap { | |
overflow:hidden; | |
border-bottom: 1px solid #e8eaeb; | |
height: 51px | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.tab-wrap .eq.tab { | |
height:60px | |
} | |
} | |
.eq.list-menu { | |
padding: 0; | |
margin: 0 0 40px | |
} | |
.eq.list-menu li { | |
list-style-type: none | |
} | |
.eq.list-menu li.active>a { | |
border-left-width: 2px; | |
border-left-color: #388aff; | |
color: #388aff; | |
font-weight: 600 | |
} | |
.eq.list-menu li.active>a:hover { | |
color: #327ce6 | |
} | |
.eq.list-menu li a { | |
display: inline-block; | |
padding: 6px 10px; | |
margin-bottom: 5px; | |
border-left-width: 1px; | |
border-left-style: solid; | |
border-left-color: transparent; | |
color: #868e96; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.list-menu li a:hover { | |
border-left-color: #388aff; | |
color: #388aff | |
} | |
.eq.list-menu>li>ul { | |
padding: 0; | |
margin-bottom: 10px | |
} | |
.eq.list-menu>li>ul>li>a { | |
padding-left: 30px; | |
color: #868e96; | |
font-size: .875rem; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.list-menu>li>ul>li.active>a { | |
border: none; | |
color: #25282b | |
} | |
.eq.nav-dropdown-wrap { | |
position: absolute; | |
top: 60px | |
} | |
.eq.nav-dropdown { | |
position: absolute; | |
width: 200px; | |
padding: 15px 20px; | |
border: 1px solid rgba(255,255,255,.1); | |
border-radius: 4px; | |
z-index: 200; | |
background-color: #2a2a2a; | |
box-shadow: 0 8px 20px 1px rgba(23,25,26,.15) | |
} | |
.eq.nav-dropdown-animation-right { | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.8); | |
transform-origin: top right; | |
transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
transition-duration: .3s; | |
-webkit-transform: scale(.8); | |
-webkit-transform-origin: top right; | |
-webkit-transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-dropdown-animation-left { | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.8); | |
transform-origin: top right; | |
transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
transition-duration: .3s; | |
-webkit-transform: scale(.8); | |
-webkit-transform-origin: top left; | |
-webkit-transition-timing-function: cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition-duration: .3s | |
} | |
.eq.nav-dropdown-link:hover .nav-dropdown-animation-right,.eq.navbar-nav>li:hover>.nav-dropdown-animation-right { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
.eq.nav-dropdown-link:hover .nav-dropdown-animation-left,.eq.navbar-nav>li:hover>.nav-dropdown-animation-left { | |
visibility: visible; | |
opacity: 1; | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
.eq.nav-dropdown-list li { | |
list-style-type: none | |
} | |
.eq.nav-dropdown-list li a { | |
display: inline-block; | |
width: 100%; | |
color: #d4d4d4; | |
font-size: 15px; | |
font-weight: 400; | |
text-decoration: none; | |
padding: 5px 20px 5px 0; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-dropdown-list li a>i { | |
padding-right: 10px | |
} | |
.eq.nav-dropdown-list li a:hover { | |
color: #388aff | |
} | |
.eq.nav-dropdown-list>li>ul { | |
padding: 0 0 0 20px; | |
margin-bottom: 10px | |
} | |
.eq.nav-dropdown-list>li>ul li a { | |
color: #868e96; | |
font-size: .875rem; | |
-webkit-transition: all .2s; | |
-moz-transition: all .2s; | |
-o-transition: all .2s; | |
transition: all .2s | |
} | |
.eq.nav-dropdown-list>li>ul li a:hover { | |
color: #388aff | |
} | |
.eq.nav-dropdown-list>li>ul li.active>a { | |
color: #25282b | |
} | |
.eq.nav-dropdown-list li.active>a { | |
color: #388aff | |
} | |
.nav-dropdown-usermenu { | |
right: -20px; | |
top: 0; | |
width: 260px!important | |
} | |
.nav-dropdown-usermenu>a { | |
position: absolute; | |
display: inline-block; | |
top: 25px; | |
right: 20px; | |
width: 24px; | |
line-height: 24px; | |
text-align: center | |
} | |
ul.nav-dropdown-usermenu-userinfo { | |
padding-bottom: 15px; | |
list-style: none; | |
margin: 0; | |
padding: 0 | |
} | |
.nav-dropdown-usermenu ul.nav-dropdown-list { | |
margin: 0; | |
padding: 0 | |
} | |
.eq.dropdown { | |
position: relative | |
} | |
.eq.dropdown .eq.dropdown-toggle { | |
cursor: pointer | |
} | |
.eq.dropdown .eq.dropdown-toggle img { | |
width: 40px; | |
height: 40px | |
} | |
@media(min-width: 640px) { | |
.eq.dropdown .eq.dropdown-toggle { | |
padding-right:0!important | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown .eq.dropdown-toggle img { | |
width:30px; | |
height: 30px | |
} | |
} | |
.eq.dropdown-menu { | |
position: absolute; | |
top: 0; | |
left: 0; | |
z-index: 200; | |
width: 250px; | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.6,.5); | |
transform-origin: top left; | |
transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-o-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-moz-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
-webkit-transition: opacity .2s,visibility .2s,transform 150ms cubic-bezier(.43,-.02,.2,.79); | |
background-color: #2a2a2a; | |
border: 1px solid rgba(255,255,255,.1); | |
border-radius: 4px; | |
box-shadow: 0 6px 24px rgba(23,25,26,.2) | |
} | |
.eq.dropdown-menu .eq.dropdown-header { | |
padding: 12px; | |
border-bottom: 1px solid rgba(255,255,255,.1) | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-menu { | |
width:230px | |
} | |
.eq.dropdown-menu.dropdown-boards { | |
width: 215px | |
} | |
.eq.dropdown-menu .eq.dropdown-header { | |
padding: 8px | |
} | |
} | |
.eq.dropdown-menu .eq.dropdown-header>* { | |
margin: 0 | |
} | |
.eq.dropdown-menu .eq.dropdown-content { | |
padding: 15px | |
} | |
.eq.dropdown-menu ul { | |
list-style-type: none; | |
padding: 0; | |
margin: 0 | |
} | |
.eq.dropdown-menu ul>li { | |
opacity: 0; | |
transform: translateY(-5px) | |
} | |
.eq.dropdown-menu ul>li>a { | |
display: block; | |
padding: 8px; | |
color: #d4d4d4; | |
font-size: .875rem; | |
text-decoration: none; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-menu ul>li>a { | |
padding:6px 8px | |
} | |
} | |
.eq.dropdown-menu ul>li>a>.eq.icon { | |
display: inline-block; | |
width: 15px; | |
margin-right: 5px; | |
color: #555b61 | |
} | |
.eq.dropdown-menu ul>li>a:hover,.eq.dropdown-menu ul>li>a:active { | |
background-color: #555 | |
} | |
.eq.dropdown-menu ul>li>a.more { | |
color: #d4d4d4; | |
background-color: #333; | |
text-align: center | |
} | |
.eq.dropdown-menu ul>li>a.more .eq.icon { | |
color: #868e96 | |
} | |
.eq.dropdown-menu ul>li:first-child>a { | |
overflow: hidden; | |
border-radius: 3px 3px 0 0 | |
} | |
.eq.dropdown-menu ul>li:last-child>a { | |
overflow: hidden; | |
border-radius: 0 0 3px 3px | |
} | |
.eq.dropdown-menu ul>li:nth-child(1) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 50ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(2) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 100ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(3) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 150ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(4) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 200ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(5) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 250ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(6) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 300ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(7) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 350ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(8) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 400ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(9) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 450ms | |
} | |
.eq.dropdown-menu ul>li:nth-child(10) { | |
transition: opacity .2s,transform .1s ease-in-out; | |
transition-delay: 500ms | |
} | |
.eq.dropdown-menu.on>ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.dropdown-menu+.eq.dropdown-close { | |
display: block; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1; | |
visibility: hidden | |
} | |
.eq.dropdown-menu.on { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-menu.on+.eq.dropdown-close { | |
cursor: default; | |
position: fixed; | |
visibility: visible | |
} | |
.eq.dropdown-right .eq.dropdown-menu { | |
left: auto; | |
right: 0; | |
transform-origin: top right | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu { | |
z-index: 720 | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu+.eq.dropdown-close { | |
z-index: 700; | |
opacity: 0; | |
background-color: rgba(23,25,26,.1); | |
transition: opacity 250ms,visibility .2s; | |
-o-transition: opacity 250ms,visibility .2s; | |
-moz-transition: opacity 250ms,visibility .2s; | |
-webkit-transition: opacity 250ms,visibility .2s | |
} | |
.eq.dropdown-shadow .eq.dropdown-menu.on+.eq.dropdown-close { | |
opacity: 1 | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::before,.eq.dropdown-angle .eq.dropdown-menu::after { | |
content: ''; | |
position: absolute | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::before { | |
top: -7px; | |
right: 11px; | |
display: inline-block; | |
border-right: 7px solid transparent; | |
border-bottom: 7px solid rgba(0,0,0,.1); | |
border-left: 7px solid transparent | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::after { | |
top: -6px; | |
right: 12px; | |
display: inline-block; | |
border-right: 6px solid transparent; | |
border-bottom: 6px solid #2a2a2a; | |
border-left: 6px solid transparent | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::before { | |
right: 15px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::after { | |
right: 16px | |
} | |
@media(max-width: 639px) { | |
.eq.dropdown-angle .eq.dropdown-menu::before { | |
right:13px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu::after { | |
right: 14px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::before { | |
right: 23px | |
} | |
.eq.dropdown-angle .eq.dropdown-menu.dropdown-profile::after { | |
right: 24px | |
} | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu { | |
top: 70px | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu:hover { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle+.eq.dropdown-menu:hover ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle:hover+.eq.dropdown-menu { | |
visibility: visible; | |
opacity: 1; | |
transform: scale(1,1) | |
} | |
.eq.dropdown-hover .eq.dropdown-hover-toggle:hover+.eq.dropdown-menu ul>li { | |
opacity: 1; | |
transform: translateY(0) | |
} | |
.eq.notify-header { | |
border-bottom: 1px dashed rgba(255,255,255,.2)!important | |
} | |
.eq.notify-list { | |
max-height: 200px; | |
overflow: auto | |
} | |
@media(max-width: 639px) { | |
.eq.notify-list { | |
max-height:150px | |
} | |
} | |
.eq.all-boards { | |
text-align: center!important; | |
font-size: 1rem!important; | |
border-radius: 0!important | |
} | |
#main-visual { | |
background-color: #388aff | |
} | |
#main-visual .eq.main-visual { | |
position: relative; | |
overflow: hidden; | |
height: 100vh; | |
background-position: center; | |
background-size: cover; | |
overflow: hidden | |
} | |
#main-visual .eq.main-visual .eq.main-visual-content { | |
display: -ms-inline-flex; | |
display: -webkit-inline-flex; | |
display: inline-flex; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
box-sizing: border-box; | |
width: 100%; | |
height: 100%; | |
padding: 30px | |
} | |
#main-visual .eq.main-visual .eq.main-visual-img { | |
width: 100%; | |
height: 100%; | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-size: auto 100% | |
} | |
#main-visual .eq.main-visual .eq.main-visual-youtube-wrap { | |
position: relative; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
width: 100%; | |
height: 100%; | |
overflow: hidden | |
} | |
#main-visual .eq.main-visual .eq.main-visual-youtube-wrap .eq.main-visual-youtube { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
width: 1280px; | |
height: 720px | |
} | |
#main-visual .eq.main-visual .eq.main-visual-title,#main-visual .eq.main-visual .eq.main-visual-subtitle { | |
word-break: keep-all | |
} | |
#main-visual .eq.main-visual .eq.main-visual-title { | |
color: #fff | |
} | |
@media(max-width: 639px) { | |
#main-visual .eq.main-visual .eq.main-visual-title { | |
font-size:2rem | |
} | |
} | |
#main-visual .eq.main-visual .eq.main-visual-subtitle { | |
color: rgba(255,255,255,.6) | |
} | |
@media(max-width: 639px) { | |
#main-visual .eq.main-visual .eq.main-visual-button-expand { | |
width:100% | |
} | |
} | |
#main-visual .eq.main-visual .eq.main-visual-mouse { | |
left: 50%; | |
width: 30px; | |
height: 47px; | |
margin-bottom: 30px; | |
border: 2px solid rgba(255,255,255,.38); | |
border-radius: 14px; | |
transform: translateX(-50%) | |
} | |
#main-visual .eq.main-visual .eq.main-visual-mouse .eq.mouse-scroll { | |
width: 4px; | |
height: 4px; | |
border-radius: 2px; | |
background: rgba(255,255,255,.38); | |
position: relative; | |
top: 10px; | |
left: 11px; | |
-webkit-animation: scrolls 1.3s ease-out infinite | |
} | |
@-webkit-keyframes scrolls { | |
0% { | |
top: 10px; | |
opacity: 1; | |
height: 4px | |
} | |
95% { | |
top: 18px; | |
opacity: 0; | |
height: 10px | |
} | |
100% { | |
top: 8px; | |
opacity: 1; | |
height: 4px | |
} | |
} | |
.eq.slide-wrap { | |
position: relative; | |
width: 100%; | |
margin-top: 30px; | |
border-radius: 5px; | |
vertical-align: middle; | |
-webkit-backface-visibility: hidden; | |
overflow: hidden; | |
z-index: 1; | |
background-color: #388aff; | |
box-shadow: 0 6px 12px rgba(23,25,26,.1) | |
} | |
@media(max-width: 959px) { | |
.eq.slide-wrap { | |
margin-top:15px | |
} | |
} | |
.eq.slide-wrap>.slide-nav { | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
flex-grow: 1; | |
-ms-flex-pack: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
-ms-flex-align: center; | |
-webkit-align-items: center; | |
align-items: center; | |
position: absolute; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
padding: 15px | |
} | |
.eq.slide-wrap>.slide-nav .indicator { | |
cursor: pointer; | |
display: inline-block; | |
width: 10px; | |
height: 10px; | |
padding: 0; | |
margin: 5px; | |
font-size: 0; | |
line-height: 0; | |
text-indent: -9999px; | |
background-color: rgba(255,255,255,.5); | |
border-radius: 500px; | |
border: none | |
} | |
.eq.slide-wrap>.slide-nav .indicator:active,.eq.slide-wrap>.slide-nav .indicator:focus { | |
outline: none | |
} | |
.eq.slide-wrap>.slide-nav .indicator.active { | |
background-color: #fff | |
} | |
.eq.slide { | |
position: relative; | |
width: 100%; | |
min-height: 400px; | |
overflow: hidden; | |
background-color: #388aff | |
} | |
.eq.slide>ul { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 99999px; | |
margin: 0; | |
list-style-type: none; | |
overflow: hidden | |
} | |
.eq.slide>ul li { | |
position: relative; | |
overflow: hidden | |
} | |
.eq.slide-item { | |
position: relative; | |
min-height: 400px; | |
background-position: center; | |
background-size: cover; | |
background-repeat: no-repeat | |
} | |
.eq.slide-img { | |
display: block | |
} | |
@media(max-width: 959px) { | |
.eq.slide-img { | |
width:auto; | |
height: 100vw | |
} | |
} | |
.eq.slide-content { | |
padding: 100px; | |
text-align: center | |
} | |
@media(max-width: 959px) { | |
.eq.slide-content { | |
padding:30px | |
} | |
} | |
.eq.slide-content .eq.slide-title,.eq.slide-content .eq.slide-subtitle { | |
word-break: keep-all | |
} | |
.eq.slide-content .eq.slide-title { | |
color: #fff | |
} | |
@media(max-width: 959px) { | |
.eq.slide-content .eq.slide-title { | |
font-size:2rem | |
} | |
} | |
.eq.slide-content .eq.slide-subtitle { | |
color: rgba(255,255,255,.7); | |
font-size: .875rem; | |
margin-bottom: 30px | |
} | |
.eq.login-offcanvas { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
visibility: hidden; | |
opacity: 0; | |
z-index: 10000; | |
-webkit-transition: opacity .2s,visibility .5s; | |
-moz-transition: opacity .2s,visibility .5s; | |
transition: opacity .2s,visibility .5s | |
} | |
.eq.login-offcanvas.on { | |
visibility: visible; | |
opacity: 1 | |
} | |
.eq.login-offcanvas.on .eq.login-offcanvas-content { | |
transform: scale(1) | |
} | |
.eq.login-offcanvas-bg { | |
position: fixed; | |
left: 0; | |
top: 0; | |
height: 100%; | |
width: 100%; | |
z-index: 1; | |
background-color: rgba(0,0,0,.2) | |
} | |
.eq.login-offcanvas-content { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
max-width: 500px; | |
height: 100%; | |
min-height: 100%; | |
padding: 60px; | |
overflow-y: auto; | |
z-index: 2; | |
background: #fff; | |
box-shadow: 0 2px 4px rgba(0,0,0,.2); | |
transform: scale(.8); | |
transform-origin: 50%; | |
transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-webkit-transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-moz-transition: all .3s cubic-bezier(.68,-.55,.27,1.55); | |
-o-transition: all .3s cubic-bezier(.68,-.55,.27,1.55) | |
} | |
@media(max-width: 639px) { | |
.eq.login-offcanvas-content { | |
padding:30px | |
} | |
} | |
.eq.login-offcanvas-content .eq.login-logo-item { | |
width: 100%; | |
height: 50px; | |
margin-bottom: 50px; | |
text-align: center; | |
background-image: url(../img/logo.svg); | |
background-position: center center; | |
background-repeat: no-repeat; | |
background-size: contain | |
} | |
.eq.login-offcanvas-content .eq.login-logo-item>span { | |
font-size: 26px; | |
font-weight: 700; | |
top: 10px; | |
position: relative | |
} | |
.eq.login-offcanvas-close { | |
cursor: pointer; | |
position: absolute; | |
top: 70px; | |
right: 60px; | |
width: 40px; | |
height: 40px; | |
padding: 12px; | |
font-size: 16px; | |
color: #96a3b4; | |
background: #e5e9f2; | |
border-radius: 2em; | |
text-align: center; | |
line-height: 1; | |
transition: all .3s; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
-o-transition: all .3s | |
} | |
@media(max-width: 639px) { | |
.eq.login-offcanvas-close { | |
top:40px; | |
right: 30px | |
} | |
} | |
.eq.login-offcanvas-close:hover { | |
color: #fff; | |
background-color: #388aff | |
} | |
.login-offcanvas .message { | |
padding: 0; | |
text-align: center; | |
text-shadow: none; | |
font-size: .875rem; | |
color: #ff6b6b; | |
background-color: #ffe1e1; | |
border-color: #ffe1e1 | |
} | |
.login-offcanvas-thumbnail { | |
position: absolute; | |
top: 0; | |
right: 0; | |
width: 100%; | |
height: 100%; | |
min-height: 100%; | |
max-width: calc(100% - 500px); | |
background-image: url(../img/demo.jpg); | |
background-position: left; | |
background-size: cover | |
} | |
.eq.sidebar-banner { | |
width: 100%; | |
height: auto; | |
overflow: hidden; | |
border-radius: 4px; | |
line-height: 0; | |
background-color: #fff; | |
margin-bottom: 40px; | |
transition: all .3s; | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
-o-transition: all .3s | |
} | |
.eq.sidebar-banner:hover { | |
box-shadow: 0 1px 8px rgba(81,99,120,.1) | |
} | |
.eq.sidebar-banner:hover img { | |
opacity: .8 | |
} | |
.eq.sidebar-banner :active { | |
box-shadow: 0 1px 3px rgba(81,99,120,.1) | |
} | |
.eq.sidebar-banner img { | |
width: 100%; | |
height: auto | |
} | |
.eq.widget { | |
list-style-type: none; | |
padding: 0 | |
} | |
.eq.widget-title .eq.widget-title-text { | |
display: inline-block; | |
position: relative; | |
padding-top: 15px; | |
padding-bottom: 15px; | |
margin-bottom: 0; | |
border-bottom: 1px solid rgba(255,255,255,.1); | |
color: #25282b; | |
font-weight: 500; | |
line-height: 1 | |
} | |
.eq.widget-point div.graph div { | |
background-color: #388aff!important | |
} | |
.eq.widget-tab { | |
list-style-type: none; | |
padding: 0; | |
margin: 0; | |
overflow-y: hidden; | |
height: 53px; | |
white-space: nowrap; | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: #e8eaeb | |
} | |
.eq.widget-tab>li { | |
display: inline-block; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-tab>li>a { | |
display: inline-block; | |
color: #868e96; | |
font-size: .875rem; | |
font-weight: 500; | |
line-height: 50px; | |
padding: 0 15px; | |
margin-right: 10px; | |
margin-bottom: -1px; | |
outline: none; | |
text-transform: uppercase; | |
text-decoration: none; | |
border-bottom-width: 2px; | |
border-bottom-style: solid; | |
border-bottom-color: transparent; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-tab>li>a:hover { | |
color: #555b61 | |
} | |
.eq.widget-tab>li.active>a { | |
color: #388aff; | |
border-bottom-width: 2px; | |
border-bottom-color: #388aff | |
} | |
.eq.widget>li>a .eq.text-link { | |
color: #d4d4d4!important | |
} | |
.eq.widget>li>a:visited .eq.text-link { | |
color: #555!important | |
} | |
.eq.widget-tab-content { | |
margin: 0 | |
} | |
.eq.widget-tab-content dt { | |
display: none | |
} | |
.eq.widget-tab-content dd,.eq.widget-tab-content .eq.widget-tab-item { | |
display: none; | |
margin: 0 | |
} | |
.eq.widget-tab-content dd.open,.eq.widget-tab-content .eq.widget-tab-item.open { | |
display: block | |
} | |
.eq.widget-title { | |
width: 100%; | |
position: relative | |
} | |
.eq.widget-title::before { | |
content: ""; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
border-bottom: 1px solid rgba(255,255,255,.1) | |
} | |
.eq.widget-normal { | |
margin: 0 | |
} | |
.eq.widget-normal>li { | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: rgba(255,255,255,.1) | |
} | |
.eq.widget-normal>li>a { | |
display: block; | |
width: 100%; | |
padding-top: 4px; | |
padding-bottom: 4px; | |
text-decoration: none; | |
-webkit-transition: all 150ms; | |
-moz-transition: all 150ms; | |
-o-transition: all 150ms; | |
transition: all 150ms | |
} | |
.eq.widget-normal>li>a:hover { | |
background-color: rgba(249,249,250,.1) | |
} | |
.eq.widget-image-title { | |
margin: 0 | |
} | |
.eq.widget-image-title-content { | |
padding: 0; | |
margin: 0 | |
} | |
.eq.widget-image-title-content .eq.widget-item { | |
padding-top: 15px; | |
padding-bottom: 15px | |
} | |
.eq.widget-gallery { | |
padding: 2px 2px 0!important; | |
margin-left: -1px; | |
margin-right: -1px | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item:hover .eq.widget-gallery-thumbnail-wrap { | |
opacity: .7 | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item .eq.widget-gallery-thumbnail-wrap { | |
opacity: .9 | |
} | |
.eq.widget-gallery-shadow .eq.widget-gallery-item-body { | |
background: linear-gradient(to top,#000000,transparent) | |
} | |
.eq.widget-gallery-item { | |
position: relative; | |
margin-bottom: 2px; | |
background-color: #17191a; | |
overflow: hidden; | |
height: 100% | |
} | |
@media(max-width: 639px) { | |
.eq.widget-gallery-item { | |
margin-bottom:0 | |
} | |
} | |
.eq.widget-gallery-item:hover .eq.widget-gallery-thumbnail-wrap { | |
transform: scale(1.1) | |
} | |
.eq.widget-gallery-item-wrap { | |
padding-left: 1px; | |
padding-right: 1px | |
} | |
.eq.widget-gallery-item-body { | |
padding: 15px | |
} | |
.eq.widget-gallery-item-category { | |
position: absolute; | |
top: 15px; | |
left: 15px; | |
padding: 2px 8px; | |
color: #fff; | |
font-size: .75rem; | |
border-radius: 500px; | |
background-color: #388aff | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail { | |
display: block; | |
width: 100% | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail-wrap { | |
transition: 250ms; | |
-o-transition: 250ms; | |
-moz-transition: 250ms; | |
-webkit-transition: 250ms | |
} | |
.eq.widget-gallery-item .eq.widget-gallery-thumbnail-alt { | |
display: block; | |
width: 100%; | |
height: 100px | |
} | |
.eq.card>.eq.widget-title { | |
padding: 10px 15px | |
} | |
.eq.card>.eq.widget-title-none::before { | |
border: none | |
} | |
.eq.card ul.eq.widget-normal>li>a { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card ul.eq.widget-normal>li:last-child { | |
border-bottom: none | |
} | |
.eq.card .eq.widget-image-title { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card .eq.widget-image-title-content .eq.widget-item { | |
padding-left: 15px; | |
padding-right: 15px | |
} | |
.eq.card .eq.widget-image-title-content>li:last-child hr { | |
display: none | |
} | |
.eq.card { | |
padding: 15px; | |
border-radius: 3px | |
} | |
.eq.card .eq.card-media img { | |
display: block; | |
max-width: 100% | |
} | |
.eq.card .eq.card-body { | |
padding-top: 15px; | |
padding-bottom: 15px | |
} | |
.eq.card-gallery { | |
padding: 0 | |
} | |
.eq.card-gallery .eq.card-media { | |
overflow: hidden; | |
border-radius: 3px; | |
box-shadow: 0 3px 4px rgba(23,25,26,.1); | |
-webkit-transition: 250ms; | |
-moz-transition: 250ms; | |
-o-transition: 250ms; | |
transition: 250ms | |
} | |
.eq.card-gallery:hover .eq.card-media { | |
opacity: .8 | |
} | |
.eq.card-default { | |
background-color: #fff; | |
border: 1px solid #e8eaeb | |
} | |
.eq.card-secondary { | |
background-color: #33373b; | |
border: 1px solid #202325 | |
} | |
.eq.card-secondary .eq.widget-title::before { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary hr { | |
border-top-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-tab { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-normal>li { | |
border-bottom-color: #25282b | |
} | |
.eq.card-secondary .eq.widget-normal>li>a:hover { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.footer { | |
padding-top: 30px | |
} | |
.eq.footer.muted { | |
color: #555b61; | |
border: none!important; | |
background-color: #f9f9fa | |
} | |
.eq.footer.dark { | |
color: #fff; | |
border: none!important; | |
background-color: #25282b | |
} | |
.eq.footer-menu { | |
margin: 0 0 16px; | |
padding: 0 | |
} | |
.eq.footer-menu li { | |
display: inline; | |
list-style: none | |
} | |
.eq.footer-menu li a { | |
color: #868e96; | |
font-size: .875rem; | |
padding-right: 15px; | |
text-decoration: none; | |
transition: all .3s; | |
-moz-transition: all .3s; | |
-webkit-transition: all .3s; | |
-o-transition: all .3s | |
} | |
.eq.footer-menu li a:hover { | |
color: #555b61 | |
} | |
.eq.border-circle { | |
border-radius: 50% | |
} | |
.eq.border-rounded { | |
border-radius: 3px | |
} | |
.eq.border-max-rounded { | |
border-radius: 500px | |
} | |
.eq.width-small { | |
width: 450px | |
} | |
.eq.width-medium { | |
width: 640px | |
} | |
.eq.height-small { | |
height: 70px | |
} | |
.eq.height-medium { | |
height: 150px | |
} | |
.eq.height-large { | |
height: 300px | |
} | |
.eq.border { | |
border-width: 1px; | |
border-style: solid; | |
border-color: #e8eaeb | |
} | |
.eq.border-right { | |
border-right-width: 1px; | |
border-right-style: solid; | |
border-right-color: #e8eaeb | |
} | |
.eq.border-top { | |
border-top-width: 1px; | |
border-top-style: solid; | |
border-top-color: #e8eaeb | |
} | |
.eq.border-top-alpha { | |
border-top-width: 1px; | |
border-top-style: solid; | |
border-top-color: rgba(255,255,255,.2) | |
} | |
.eq.border-bottom { | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: #e8eaeb | |
} | |
.eq.border-bottom-alpha { | |
border-bottom-width: 1px; | |
border-bottom-style: solid; | |
border-bottom-color: rgba(255,255,255,.2) | |
} | |
.eq.border-color-primary { | |
border-bottom-color: #388aff!important | |
} | |
.eq.overflow-scroll { | |
overflow: scroll | |
} | |
.eq.overflow-hidden { | |
overflow: hidden | |
} | |
@media(max-width: 959px) { | |
.eq.overflow-hidden\@m { | |
overflow:hidden | |
} | |
} | |
@media(max-width: 639px) { | |
.eq.overflow-hidden\@s { | |
overflow:hidden | |
} | |
} | |
.eq.position-relative { | |
position: relative | |
} | |
.eq.position-absolute { | |
position: absolute | |
} | |
.eq.clearfix { | |
zoom:1} | |
.eq.clearfix:before,.eq.clearfix:after { | |
content: ""; | |
display: table | |
} | |
.eq.clearfix::after { | |
clear: both | |
} | |
.eq.float-left { | |
float: left | |
} | |
.eq.float-right { | |
float: right | |
} | |
.eq.width-expand { | |
width: 100%; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
overflow: hidden | |
} | |
.eq.display-block { | |
display: block | |
} | |
.eq.inline { | |
display: inline | |
} | |
.eq.inline-block { | |
display: inline-block | |
} | |
.eq.white-space-nowrap { | |
white-space: nowrap | |
} | |
.eq.box-shadow-small { | |
box-shadow: 0 3px 4px rgba(23,25,26,.1) | |
} | |
.eq.box-shadow-default { | |
box-shadow: 0 2px 8px -3px rgba(23,25,26,.2) | |
} | |
.eq.box-shadow-medium { | |
box-shadow: 0 5px 8px rgba(23,25,26,.1) | |
} | |
.eq.box-shadow-large { | |
box-shadow: 0 6px 12px rgba(23,25,26,.1) | |
} | |
.eq.hidden { | |
visibility: hidden!important | |
} | |
@media(min-width: 640px) { | |
.eq.hidden\@s { | |
display:none!important | |
} | |
} | |
@media(min-width: 960px) { | |
.eq.hidden\@m { | |
display:none!important | |
} | |
} | |
@media(min-width: 1200px) { | |
.eq.hidden\@l { | |
display:none!important | |
} | |
} | |
@media(min-width: 1600px) { | |
.eq.hidden\@xl { | |
display:none!important | |
} | |
} | |
.eq.visible { | |
visibility: visible!important | |
} | |
@media(max-width: 639px) { | |
.eq.visible\@s { | |
display:none!important | |
} | |
} | |
@media(max-width: 1050px) { | |
.eq.visible\@m { | |
display:none!important | |
} | |
} | |
@media(max-width: 1199px) { | |
.eq.visible\@l { | |
display:none!important | |
} | |
} | |
@media(max-width: 1599px) { | |
.eq.visible\@xl { | |
display:none!important | |
} | |
} | |
.eq.opacity-0 { | |
opacity: 0 | |
} | |
@media(max-width: 639px) { | |
.eq.opacity-0\@s { | |
opacity:0 | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.opacity-0\@m { | |
opacity:0 | |
} | |
} | |
@media(max-width: 1199px) { | |
.eq.opacity-0\@l { | |
opacity:0 | |
} | |
} | |
@media(max-width: 1599px) { | |
.eq.opacity-0\@xl { | |
opacity:0 | |
} | |
} | |
.eq.padding-xxsmall { | |
padding: 5px!important | |
} | |
.eq.padding-xsmall { | |
padding: 10px!important | |
} | |
.eq.padding-small { | |
padding: 15px!important | |
} | |
.eq.padding-default { | |
padding: 30px!important | |
} | |
.eq.padding-medium { | |
padding: 50px!important | |
} | |
.eq.padding-large { | |
padding: 100px!important | |
} | |
.eq.padding-xlarge { | |
padding: 140px!important | |
} | |
.eq.padding-top-xxsmall { | |
padding-top: 5px!important | |
} | |
.eq.padding-top-xsmall { | |
padding-top: 10px!important | |
} | |
.eq.padding-top-small { | |
padding-top: 15px!important | |
} | |
.eq.padding-top-default { | |
padding-top: 30px!important | |
} | |
.eq.padding-top-medium { | |
padding-top: 50px!important | |
} | |
.eq.padding-top-large { | |
padding-top: 100px!important | |
} | |
.eq.padding-top-xlarge { | |
padding-top: 140px!important | |
} | |
.eq.padding-bottom-xxsmall { | |
padding-bottom: 5px!important | |
} | |
.eq.padding-bottom-xsmall { | |
padding-bottom: 10px!important | |
} | |
.eq.padding-bottom-small { | |
padding-bottom: 15px!important | |
} | |
.eq.padding-bottom-default { | |
padding-bottom: 30px!important | |
} | |
.eq.padding-bottom-medium { | |
padding-bottom: 50px!important | |
} | |
.eq.padding-bottom-large { | |
padding-bottom: 100px!important | |
} | |
.eq.padding-bottom-xlarge { | |
padding-bottom: 140px!important | |
} | |
.eq.padding-left-xxsmall { | |
padding-left: 5px!important | |
} | |
.eq.padding-left-xsmall { | |
padding-left: 10px!important | |
} | |
.eq.padding-left-small { | |
padding-left: 15px!important | |
} | |
.eq.padding-left-default { | |
padding-left: 30px!important | |
} | |
.eq.padding-left-medium { | |
padding-left: 50px!important | |
} | |
.eq.padding-left-large { | |
padding-left: 100px!important | |
} | |
.eq.padding-left-xlarge { | |
padding-left: 140px!important | |
} | |
.eq.padding-right-xxsmall { | |
padding-right: 5px!important | |
} | |
.eq.padding-right-xsmall { | |
padding-right: 10px!important | |
} | |
.eq.padding-right-small { | |
padding-right: 15px!important | |
} | |
.eq.padding-right-default { | |
padding-right: 30px!important | |
} | |
.eq.padding-right-medium { | |
padding-right: 50px!important | |
} | |
.eq.padding-right-large { | |
padding-right: 100px!important | |
} | |
.eq.padding-right-xlarge { | |
padding-right: 140px!important | |
} | |
.eq.padding-vertical-xxsmall { | |
padding-top: 5px!important; | |
padding-bottom: 5px!important | |
} | |
.eq.padding-vertical-xsmall { | |
padding-top: 10px!important; | |
padding-bottom: 10px!important | |
} | |
.eq.padding-vertical-small { | |
padding-top: 15px!important; | |
padding-bottom: 15px!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-vertical-small\@s { | |
padding-top:15px!important; | |
padding-bottom: 15px!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-vertical-small\@m { | |
padding-top:15px!important; | |
padding-bottom: 15px!important | |
} | |
} | |
.eq.padding-vertical-default { | |
padding-top: 30px!important; | |
padding-bottom: 30px!important | |
} | |
.eq.padding-vertical-medium { | |
padding-top: 50px!important; | |
padding-bottom: 50px!important | |
} | |
.eq.padding-vertical-large { | |
padding-top: 100px!important; | |
padding-bottom: 100px!important | |
} | |
.eq.padding-vertical-xlarge { | |
padding-top: 140px!important; | |
padding-bottom: 140px!important | |
} | |
.eq.padding-horizontal-xxsmall { | |
padding-left: 5px!important; | |
padding-right: 5px!important | |
} | |
.eq.padding-horizontal-xsmall { | |
padding-left: 10px!important; | |
padding-right: 10px!important | |
} | |
.eq.padding-horizontal-small { | |
padding-left: 15px!important; | |
padding-right: 15px!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-horizontal-small\@s { | |
padding-left:15px!important; | |
padding-right: 15px!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-horizontal-small\@m { | |
padding-left:15px!important; | |
padding-right: 15px!important | |
} | |
} | |
.eq.padding-horizontal-default { | |
padding-left: 30px!important; | |
padding-right: 30px!important | |
} | |
.eq.padding-horizontal-medium { | |
padding-left: 50px!important; | |
padding-right: 50px!important | |
} | |
.eq.padding-horizontal-large { | |
padding-left: 100px!important; | |
padding-right: 100px!important | |
} | |
.eq.padding-horizontal-xlarge { | |
padding-left: 140px!important; | |
padding-right: 140px!important | |
} | |
.eq.padding-remove { | |
padding: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-remove\@s { | |
padding:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-remove\@m { | |
padding:0!important | |
} | |
} | |
.eq.padding-top-remove { | |
padding-top: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-top-remove\@s { | |
padding-top:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-top-remove\@m { | |
padding-top:0!important | |
} | |
} | |
.eq.padding-bottom-remove { | |
padding-bottom: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-bottom-remove\@s { | |
padding-bottom:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-bottom-remove\@m { | |
padding-bottom:0!important | |
} | |
} | |
.eq.padding-left-remove { | |
padding-left: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-left-remove\@s { | |
padding-left:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-left-remove\@m { | |
padding-left:0!important | |
} | |
} | |
.eq.padding-right-remove { | |
padding-right: 0!important | |
} | |
@media(max-width: 639px) { | |
.eq.padding-right-remove\@s { | |
padding-right:0!important | |
} | |
} | |
@media(max-width: 959px) { | |
.eq.padding-right-remove\@m { | |
padding-right:0!important | |
} | |
} | |
.eq.margin-xxsmall { | |
margin: 5px!important | |
} | |
.eq.margin-xsmall { | |
margin: 10px!important | |
} | |
.eq.margin-small { | |
margin: 15px!important | |
} | |
.eq.margin-default { | |
margin: 30px!important | |
} | |
.eq.margin-medium { | |
margin: 40px!important | |
} | |
.eq.margin-large { | |
margin: 60px!important | |
} | |
.eq.margin-top-xxsmall { | |
margin-top: 5px!important | |
} | |
.eq.margin-top-xsmall { | |
margin-top: 10px!important | |
} | |
.eq.margin-top-small { | |
margin-top: 15px!important | |
} | |
.eq.margin-top-default { | |
margin-top: 30px!important | |
} | |
.eq.margin-top-medium { | |
margin-top: 40px!important | |
} | |
.eq.margin-top-large { | |
margin-top: 60px!important | |
} | |
.eq.margin-bottom-xxsmall { | |
margin-bottom: 5px!important | |
} | |
.eq.margin-bottom-xsmall { | |
margin-bottom: 10px!important | |
} | |
.eq.margin-bottom-small { | |
margin-bottom: 15px!important | |
} | |
.eq.margin-bottom-default { | |
margin-bottom: 30px!important | |
} | |
.eq.margin-bottom-medium { | |
margin-bottom: 40px!important | |
} | |
.eq.margin-bottom-large { | |
margin-bottom: 60px!important | |
} | |
.eq.margin-left-xxsmall { | |
margin-left: 5px!important | |
} | |
.eq.margin-left-xsmall { | |
margin-left: 10px!important | |
} | |
.eq.margin-left-small { | |
margin-left: 15px!important | |
} | |
.eq.margin-left-default { | |
margin-left: 30px!important | |
} | |
.eq.margin-left-medium { | |
margin-left: 40px!important | |
} | |
.eq.margin-left-large { | |
margin-left: 60px!important | |
} | |
.eq.margin-right-xxsmall { | |
margin-right: 5px!important | |
} | |
.eq.margin-right-xsmall { | |
margin-right: 10px!important | |
} | |
.eq.margin-right-small { | |
margin-right: 15px!important | |
} | |
.eq.margin-right-default { | |
margin-right: 30px!important | |
} | |
.eq.margin-right-medium { | |
margin-right: 40px!important | |
} | |
.eq.margin-right-large { | |
margin-right: 60px!important | |
} | |
.eq.margin-vertical-xxsmall { | |
margin-top: 5px!important; | |
margin-bottom: 5px!important | |
} | |
.eq.margin-vertical-xsmall { | |
margin-top: 10px!important; | |
margin-bottom: 10px!important | |
} | |
.eq.margin-vertical-small { | |
margin-top: 15px!important; | |
margin-bottom: 15px!important | |
} | |
.eq.margin-vertical-default { | |
margin-top: 30px!important; | |
margin-bottom: 30px!important | |
} | |
.eq.margin-vertical-medium { | |
margin-top: 40px!important; | |
margin-bottom: 40px!important | |
} | |
.eq.margin-vertical-large { | |
margin-top: 60px!important; | |
margin-bottom: 60px!important | |
} | |
.eq.margin-horizontal-xxsmall { | |
margin-left: 5px!important; | |
margin-right: 5px!important | |
} | |
.eq.margin-horizontal-xsmall { | |
margin-left: 10px!important; | |
margin-right: 10px!important | |
} | |
.eq.margin-horizontal-small { | |
margin-left: 15px!important; | |
margin-right: 15px!important | |
} | |
.eq.margin-horizontal-default { | |
margin-left: 30px!important; | |
margin-right: 30px!important | |
} | |
.eq.margin-horizontal-medium { | |
margin-left: 40px!important; | |
margin-right: 40px!important | |
} | |
.eq.margin-horizontal-large { | |
margin-left: 60px!important; | |
margin-right: 60px!important | |
} | |
.eq.margin-remove { | |
margin: 0!important | |
} | |
.eq.margin-top-remove { | |
margin-top: 0!important | |
} | |
.eq.margin-bottom-remove { | |
margin-bottom: 0!important | |
} | |
.eq.margin-left-remove { | |
margin-left: 0!important | |
} | |
.eq.margin-right-remove { | |
margin-right: 0!important | |
} | |
.eq.margin-auto-vertical { | |
margin-top: auto; | |
margin-bottom: auto | |
} | |
.eq.margin-auto-horizontal { | |
margin-left: auto; | |
margin-right: auto | |
} | |
.eq.inverse,.eq.inverse>* { | |
color: #fff | |
} | |
.eq.inverse .eq.text-default { | |
color: #fff!important | |
} | |
.eq.inverse .eq.text-muted,.eq.inverse .eq.text-muted-child * { | |
color: rgba(255,255,255,.6)!important | |
} | |
.eq.inverse .eq.link-muted { | |
color: rgba(255,255,255,.4) | |
} | |
.eq.inverse .eq.link-muted:hover,.eq.inverse .eq.link-muted:hover * { | |
color: rgba(255,255,255,.8)!important | |
} | |
.eq.inverse hr { | |
border-top-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.rebalance>* { | |
color: #25282b | |
} | |
.eq.inverse .eq.rebalance>* .eq.text-muted,.eq.inverse .eq.rebalance>* .eq.text-muted-child>* { | |
color: #868e96!important | |
} | |
.eq.inverse .eq.rebalance hr { | |
border-top-color: #e8eaeb | |
} | |
.eq.inverse .eq.section-muted { | |
background-color: #17191a | |
} | |
.eq.inverse>.eq.button-default { | |
background-color: transparent; | |
color: #fff; | |
border: 2px solid #fff; | |
box-shadow: none | |
} | |
.eq.inverse>.eq.button-default:hover { | |
background-color: #fff; | |
color: #555b61; | |
border-width: 2px; | |
border-color: #fff; | |
box-shadow: 0 3px 10px rgba(23,25,26,.2) | |
} | |
.eq.inverse>.eq.button-default:active { | |
background-color: #f9f9fa; | |
color: #25282b; | |
border-width: 2px; | |
border-color: #f9f9fa; | |
box-shadow: 0 1px 4px rgba(23,25,26,.1) | |
} | |
.eq.inverse.navbar .eq.navbar-icon>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.nav-drawer-toggle>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.search-drawer-toggle>i { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-search { | |
color: #fff; | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search:hover { | |
color: #fff; | |
background-color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search>input[type=text] { | |
color: transparent | |
} | |
.eq.inverse.navbar .eq.navbar-search>input[type=text]:focus { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-search>.eq.button-search { | |
color: rgba(255,255,255,.2) | |
} | |
.eq.inverse.navbar .eq.navbar-search>.eq.button-search:hover { | |
color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>a { | |
color: rgba(255,255,255,.6) | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>a:hover { | |
color: rgba(255,255,255,.8) | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li.active>a { | |
color: #fff; | |
border-bottom-color: #fff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li.active.eq.dark>a { | |
color: #388aff; | |
border-bottom-color: #388aff | |
} | |
.eq.inverse.navbar .eq.navbar-nav>li>ul.eq.popover { | |
margin-top: -4px | |
} | |
.eq.inverse .eq.nav-icon .line,.eq.inverse .eq.nav-icon::before,.eq.inverse .eq.nav-icon::after { | |
background-color: #fff | |
} | |
.eq.inverse .eq.navbar-icon::before { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse.eq.footer { | |
border-top-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.footer.muted { | |
color: #fff; | |
background-color: rgba(85,91,97,.2) | |
} | |
.eq.inverse .eq.footer.dark { | |
background-color: #17191a | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content { | |
background-color: #25282b | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>a { | |
color: #fff; | |
border-color: transparent | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>a:hover { | |
color: rgba(255,255,255,.8); | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.active>a { | |
color: #388aff; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron::before,.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron::after { | |
background-color: #fff | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron:hover::before,.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li.parent .eq.nav-chevron:hover::after { | |
background-color: #bdc1c5 | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>a { | |
color: rgba(255,255,255,.4) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>a:hover { | |
color: rgba(255,255,255,.6); | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li.active>a { | |
color: #fff | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li>a { | |
color: #868e96 | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li>a:hover { | |
color: #555b61; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.nav-drawer .eq.nav-drawer-content .eq.nav-menu>li>ul>li>ul>li.active>a { | |
color: #fff | |
} | |
.eq.inverse .eq.border-top,.eq.inverse .eq.border-bottom,.eq.inverse .eq.border-left,.eq.inverse .eq.border-right { | |
border-color: rgba(255,255,255,.1) | |
} | |
.eq.navbar.inverse .eq.badge,.eq.navbar.muted .eq.badge,.eq.navbar.dark .eq.badge { | |
color: #fff; | |
background-color: #868e96 | |
} | |
.eq.navbar.inverse .eq.badge-primary,.eq.navbar.muted .eq.badge-primary,.eq.navbar.dark .eq.badge-primary { | |
color: #fff; | |
background-color: #388aff | |
} | |
.eq.navbar.inverse .eq.badge-success,.eq.navbar.muted .eq.badge-success,.eq.navbar.dark .eq.badge-success { | |
color: #fff; | |
background-color: #52d290 | |
} | |
.eq.navbar.inverse .eq.badge-danger,.eq.navbar.muted .eq.badge-danger,.eq.navbar.dark .eq.badge-danger { | |
color: #fff; | |
background-color: #ff6b6b | |
} | |
.eq.inverse .eq.popover { | |
border-radius: 3px; | |
background-color: rgba(11,12,13,.9) | |
} | |
.eq.inverse .eq.dropdown-menu { | |
background-color: rgba(11,12,13,.9) | |
} | |
.eq.inverse .eq.dropdown-menu .eq.dropdown-header { | |
border-bottom-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a { | |
color: #868e96 | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a>i { | |
width: 15px | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a:hover,.eq.inverse .eq.dropdown-menu ul>li>a:active { | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-menu ul>li>a.more { | |
color: #868e96; | |
background-color: rgba(255,255,255,.1) | |
} | |
.eq.inverse .eq.dropdown-angle .eq.dropdown-menu::after { | |
border-bottom-color: rgba(11,12,13,.9) | |
} | |
.eq.overlay { | |
position: absolute | |
} | |
.eq.overlay-fill { | |
width: 100%; | |
height: 100% | |
} | |
.eq.overlay-top { | |
top: 0 | |
} | |
.eq.overlay-bottom { | |
bottom: 0 | |
} | |
.eq.overlay-left { | |
left: 0 | |
} | |
.eq.overlay-right { | |
right: 0 | |
} | |
.eq.overlay-default { | |
width: 100%; | |
height: 100%; | |
background-color: rgba(0,0,0,.3) | |
} | |
.eq.overlay-clayerbox { | |
position: relative | |
} | |
.eq.clayerbox-left { | |
width: 160px; | |
left: -100px; | |
margin-right: 10px; | |
margin-top: 20px | |
} | |
.eq.clayerbox-left-ad { | |
height: 600px; | |
position: -webkit-sticky; | |
position: sticky; | |
top: 20px | |
} | |
.eq.clayerbox-right { | |
width: 160px; | |
right: -100px; | |
margin-left: 10px; | |
margin-top: 20px | |
} | |
.eq.clayerbox-right-list { | |
height: 200px; | |
background-color: #aaa | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper { | |
background-color: #1e1e1e | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper .title.lightgray { | |
background-color: #2a2a2a; | |
color: #d4d4d4; | |
border-bottom: 1px solid rgba(255,255,255,.1) | |
} | |
.eq.clayerbox-right-list .xe-widget-wrapper .title a { | |
color: #d4d4d4 | |
} | |
.eq.clayerbox-right-ad { | |
height: 600px | |
} | |
@media(max-width: 1050px) { | |
.eq.clayerbox-left { | |
display:none | |
} | |
.eq.clayerbox-right { | |
display: none | |
} | |
.eq.section { | |
padding-top: 0 | |
} | |
} | |
.navbar_recent_wrap { | |
} | |
.navbar_recent_wrap li { | |
opacity: 1!important; | |
transform: translateY(0)!important | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li { | |
overflow: hidden; | |
white-space: nowrap; | |
display: flex; | |
justify-content: space-between | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li a { | |
border-radius: 0 | |
} | |
.navbar_recent_wrap .recent_container ._recent_modules>ul>li .title { | |
flex: 1 | |
} | |
.navbar_recent_wrap .recent_container>._recent_modules>ul>li:nth-child(n+6) { | |
display: none | |
} | |
.navbar-favorite li.fold:nth-child(n+6) { | |
display: none | |
} | |
.more-favorite-wrap { | |
text-align: center | |
} | |
.more-favorite { | |
display: block; | |
text-decoration: none | |
} | |
.more-favorite span { | |
display: none | |
} | |
.more-favorite span.on { | |
display: inline | |
} | |
.eq.darkmode-toggle.active:after { | |
content: '' | |
} | |
.eq.text-thin { | |
font-weight: 100!important | |
} | |
.eq.text-light { | |
font-weight: 300!important | |
} | |
.eq.text-normal { | |
font-weight: 400!important | |
} | |
.eq.text-bold { | |
font-weight: 700!important | |
} | |
.eq.text-black { | |
font-weight: 900!important | |
} | |
.eq.text-keep-all { | |
word-break: keep-all | |
} | |
.eq.text-left { | |
text-align: left | |
} | |
.eq.text-center { | |
text-align: center | |
} | |
.eq.text-right { | |
text-align: right | |
} | |
.eq.text-middle { | |
vertical-align: middle; | |
align-self: center; | |
align-item: center | |
} | |
.eq.text-xxsmall { | |
font-size: .6rem | |
} | |
.eq.text-xsmall { | |
font-size: .75rem | |
} | |
.eq.text-small { | |
font-size: .875rem | |
} | |
.eq.text-medium { | |
font-size: 1.25rem | |
} | |
.eq.text-large { | |
font-size: 1.5rem | |
} | |
.eq.text-xsmall-child * { | |
font-size: .75rem | |
} | |
.eq.text-small-child * { | |
font-size: .875rem | |
} | |
.eq.text-default { | |
color: #25282b!important | |
} | |
.eq.text-primary { | |
color: #3066b4!important | |
} | |
.eq.text-success { | |
color: #52d290!important | |
} | |
.eq.text-muted { | |
color: #868e96!important | |
} | |
.eq.text-muted-child * { | |
color: #868e96 | |
} | |
.eq.text-warning { | |
color: #bb3b3b!important | |
} | |
.eq.heading-primary { | |
font-size: 3.5rem; | |
font-weight: 300; | |
line-height: 1.1 | |
} | |
.eq.divider-with-text { | |
display: block; | |
background: #e8eaeb; | |
width: 100%; | |
height: 1px; | |
margin-top: 30px; | |
position: relative; | |
margin-bottom: 30px | |
} | |
.eq.divider-with-text div { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
-webkit-transform: translate(-50%,-50%); | |
-ms-transform: translate(-50%,-50%); | |
transform: translate(-50%,-50%); | |
background: #fff; | |
padding-left: 30px; | |
padding-right: 30px; | |
color: #868e96; | |
font-size: .875rem | |
} | |
code { | |
padding: .2rem .4rem; | |
font-family: open sans,malgun gothic,nanum gothic,dotum,arial,sans-serif; | |
font-size: 90%; | |
color: #ff6b6b; | |
background-color: #f9f9fa; | |
border-radius: .25rem | |
} | |
.eq.text-highlighter { | |
background-color: #d7e8ff | |
} | |
.eq.text-line { | |
text-decoration: line-through | |
} | |
.eq.badge { | |
display: inline-block; | |
border-radius: 500px; | |
padding: 4px 6px; | |
font-size: .75rem; | |
font-weight: 600; | |
color: #868e96; | |
line-height: 1; | |
text-align: center; | |
white-space: nowrap; | |
background-color: #f9f9fa | |
} | |
.eq.badge.count { | |
padding: 3px 6px | |
} | |
.eq.badge-primary { | |
color: #fff; | |
background-color: #bb3b3b | |
} | |
.eq.badge-success { | |
color: #52d290; | |
background-color: #dcf6e9 | |
} | |
.eq.badge-danger { | |
color: #ff6b6b; | |
background-color: #ffe1e1 | |
} | |
.eq.badge-warning { | |
color: #202124; | |
background-color: #fbbc04 | |
} | |
.eq.badge-info { | |
color: #339af0; | |
background-color: #d6ebfc | |
} | |
.eq.alert { | |
padding: 15px; | |
background-color: #d7e8ff; | |
color: #388aff; | |
font-size: .875rem; | |
border-radius: 3px; | |
margin-bottom: 15px | |
} | |
.eq.alert p { | |
margin: 0 | |
} | |
.eq.alert.error { | |
background-color: #ffe1e1; | |
color: #ff6b6b | |
} | |
.eq .dn-privacy,.eq .dn-policy { | |
color: #d4d4d4 | |
} | |
select,input[type=text],input[type=number],input[type=password],textarea { | |
font-size: 16px!important | |
} | |
.xm .agreement { | |
border: 1px solid rgba(255,255,255,.1)!important; | |
background: #2a2a2a!important; | |
color: #d4d4d4!important | |
} | |
.xm { | |
color: #d4d4d4!important | |
} | |
.xm .table-striped tbody>tr:nth-child(odd)>td { | |
background-color: transparent!important | |
} | |
.xm .table-hover tbody tr:hover>td { | |
background-color: transparent!important | |
} | |
.xm .table td { | |
border-top: 1px solid rgba(255,255,255,.1)!important | |
} | |
.xm .nav-tabs>.active>a { | |
color: #d4d4d4!important; | |
background-color: #2a2a2a!important; | |
border: 1px solid #424242!important | |
} | |
@media(max-width: 959px) { | |
.xm .nav-tabs>li>a { | |
padding:5px 8px!important | |
} | |
} | |
.xm .nav-tabs>li>a:hover { | |
border-color: rgba(255,255,255,.1)!important | |
} | |
.xm .nav>li>a:hover { | |
background-color: transparent!important | |
} | |
.xm input[type=text],.xm input[type=password],.xm input[type=datetime],.xm input[type=datetime-local],.xm input[type=date],.xm input[type=month],.xm input[type=time],.xm input[type=week],.xm input[type=number],.xm input[type=email],.xm input[type=url],.xm input[type=search],.xm input[type=tel],.xm input[type=color] { | |
background-color: #2a2a2a!important; | |
color: #d4d4d4!important | |
} | |
.xm input[disabled],.xm select[disabled],.xm textarea[disabled],.xm input[readonly],.xm select[readonly],.xm textarea[readonly] { | |
background-color: #666!important | |
} | |
.xm .help-inline { | |
color: #b4b4b4!important | |
} | |
html body.cke_editable,.cke_wysiwyg_div,.rx_simpleeditor.light { | |
background-color: #1e1e1e!important; | |
color: #d4d4d4!important | |
} | |
textarea.cke_source { | |
background-color: #1e1e1e!important; | |
color: #d4d4d4!important | |
} | |
.cke_1 .cke_top { | |
background-color: #999!important; | |
background-image: linear-gradient(#999,#999)!important | |
} | |
.cke_1 .cke_button_on { | |
background-color: silver!important | |
} | |
.cke_1 .cke_bottom { | |
background-color: #999!important; | |
background-image: linear-gradient(#999,#999)!important | |
} | |
.cke_1 .cke_resizer { | |
border-right-color: #d4d4d4!important | |
} | |
.xefu-dropzone { | |
background-color: #494949!important; | |
color: #d4d4d4!important | |
} | |
.bd { | |
color: #d4d4d4!important | |
} | |
.bd a { | |
color: #d4d4d4!important | |
} | |
.stk_bd { | |
border: 1px solid rgba(255,255,255,.1)!important; | |
background: #1e1e1e!important | |
} | |
.rd_hd .board .top_area { | |
border-top: 1px solid rgba(255,255,255,.1)!important; | |
border-bottom: 1px solid rgba(255,255,255,.1)!important; | |
background: #424242!important | |
} | |
.btn_img { | |
border-color: rgba(255,255,255,.1)!important; | |
background: #424242!important; | |
text-shadow: none!important | |
} | |
.et_vars th { | |
background: #424242!important | |
} | |
.sicker_file_list ul { | |
border: 1px solid rgba(255,255,255,.1)!important; | |
background-color: #2a2a2a!important | |
} | |
.bd_tmb_lst .tmb_wrp { | |
border: 1px solid rgba(255,255,255,.1)!important | |
} | |
.rd_nav_style2 .rd_nav,.rd_nav_side .rd_nav { | |
background: #444!important | |
} | |
.ddnad { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
text-align: center | |
} | |
} | |
`)})(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment