code
stringlengths
2k
1.04M
repo_path
stringlengths
5
517
parsed_code
stringlengths
0
1.04M
quality_prob
float64
0.02
0.95
learning_prob
float64
0.02
0.93
@import url('https://fonts.googleapis.com/css?family=Tangerine'); /*--- General css ---*/ .cHeaderCol { margin: 0!important; padding: 0!important; border: 0!important; } .row.cdevide [class*='col']:not(:last-child):after { background: #75BF42; width: 3px; content: ""; display: block; position: absolute; top: 0; bottom: 0; right: 0; min-height: 70px; } body { height: 100%; width: 100%; } .navbarBottom { background-color: #75BF42; height: 5em!important; margin: 0; padding: 0; }; .navbarBottom a img { height: 10em!important; } .main-service h3 { text-align: center; } header { overflow: unset; } main .main-header { padding: 0; } main .card { margin: 5px; } .productImage { padding-top: 0!important; padding-bottom: 0!important; } .productText { padding-top: 0!important; padding-bottom: 0!important; } .productImage img{ min-width: 100%; min-height: 100%; width: auto; height: auto; } /*--- Media Queries ---*/ @media (max-width: 992px) { } @media (max-width: 768px) { } /*--- Firefox Bug Fix ---*/ .carousel-item { transition: -webkit-transform 0.5s ease; transition: transform 0.5s ease; transition: transform 0.5s ease, -webkit-transform 0.5s ease; -webkit-backface-visibility: visible; backface-visibility: visible; } /*--- Fixed Background Image---*/ figure { position: relative; width: 100%; height: 60%; margin: 0!important; } .fixed-wrap { clip: rect(0, auto, auto, 0); position: absolute; top: 0; left: 0; width: 100%; height: 100%; } #fixed { background-image: url('images/logo.png'); position: fixed; display: block; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; } /*---Bootstrap Padding Fix---*/ [class*="col-"] { padding: 1rem; } /* Extra small (xs) devices (portrait phones, less than 576px) No media query since this is the default in Bootstrap Small (sm) devices (landscape phones, 576px and up) @media (min-width: 576px) { ... } Medium (md) devices (tables, 768px and up) @media (min-width: 768px) { ... } Medium (lg) devices (tables, 992px and up) @media (min-width: 992px) { ... } Medium (xl) devices (tables, 1200px and up) @media (min-width: 1200px) { ... } */
public/src/css/custom.css
@import url('https://fonts.googleapis.com/css?family=Tangerine'); /*--- General css ---*/ .cHeaderCol { margin: 0!important; padding: 0!important; border: 0!important; } .row.cdevide [class*='col']:not(:last-child):after { background: #75BF42; width: 3px; content: ""; display: block; position: absolute; top: 0; bottom: 0; right: 0; min-height: 70px; } body { height: 100%; width: 100%; } .navbarBottom { background-color: #75BF42; height: 5em!important; margin: 0; padding: 0; }; .navbarBottom a img { height: 10em!important; } .main-service h3 { text-align: center; } header { overflow: unset; } main .main-header { padding: 0; } main .card { margin: 5px; } .productImage { padding-top: 0!important; padding-bottom: 0!important; } .productText { padding-top: 0!important; padding-bottom: 0!important; } .productImage img{ min-width: 100%; min-height: 100%; width: auto; height: auto; } /*--- Media Queries ---*/ @media (max-width: 992px) { } @media (max-width: 768px) { } /*--- Firefox Bug Fix ---*/ .carousel-item { transition: -webkit-transform 0.5s ease; transition: transform 0.5s ease; transition: transform 0.5s ease, -webkit-transform 0.5s ease; -webkit-backface-visibility: visible; backface-visibility: visible; } /*--- Fixed Background Image---*/ figure { position: relative; width: 100%; height: 60%; margin: 0!important; } .fixed-wrap { clip: rect(0, auto, auto, 0); position: absolute; top: 0; left: 0; width: 100%; height: 100%; } #fixed { background-image: url('images/logo.png'); position: fixed; display: block; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; } /*---Bootstrap Padding Fix---*/ [class*="col-"] { padding: 1rem; } /* Extra small (xs) devices (portrait phones, less than 576px) No media query since this is the default in Bootstrap Small (sm) devices (landscape phones, 576px and up) @media (min-width: 576px) { ... } Medium (md) devices (tables, 768px and up) @media (min-width: 768px) { ... } Medium (lg) devices (tables, 992px and up) @media (min-width: 992px) { ... } Medium (xl) devices (tables, 1200px and up) @media (min-width: 1200px) { ... } */
0.41941
0.061283
ol, ul { margin-left:0px; } ul li, ol li { margin:1em 0 1em 1em; list-style-position: inside; } /** full scope support * * nested ol lishould render * 1. abc * 1.1 def. **/ ol.full-scope { counter-reset: section; list-style-type: none; } ol.full-scope li:before{ counter-increment:section; content:counter(section, decimal) ". ";/*content:"Section " counter(section) ". ";*/ } ol.full-scope li ol { list-style-type: none; counter-reset: subsection; } ol.full-scope li ol li:before { list-style-type: none; counter-increment:subsection; content:counter(section) "." counter(subsection, decimal) " "; } ol.full-scope li ol li ol { list-style-type: none; counter-reset: subsubsection; } ol.full-scope li ol li ol li:before { list-style-type: none; counter-increment:subsubsection; content:counter(section) "." counter(subsection, decimal) "." counter(subsubsection, decimal) " "; } /** * list-style-type * @see: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type */ ol.lower-alpha{ list-style-type:lower-alpha } ol.upper-alpha { list-style-type:upper-alpha } ol.disc, ul.disc { list-style-type:disc; } ol.circle, ul.circle { list-style-type:circle; } ol.square,ul.square { list-style-type:square; } ol.decimal { list-style-type:decimal; } ol.lower-roman { list-style-type:lower-roman; } ol.upper-roman { list-style-type:upper-roman; } ol.lower-latin { list-style-type:lower-latin; } ol.upper-latin { list-style-type:upper-latin; } ol.lower-greek { list-style-type:lower-greek; } ol.armenian { list-style-type:armenian; } ol.georgian { list-style-type:georgian; } ol.decimal-leading-zero { list-style-type:decimal-leading-zero; } ol.hebrew { list-style-type:hebrew; } ol.cjk-ideographic { list-style-type:cjk-ideographic; } ol.hiragana { list-style-type:hiraganal; } ol.hiragana-iroha { list-style-type:hiragana-iroha; } ol.katakana { list-style-type:katakana; } ol.katakana-iroha { list-style-type:katakana-iroha; } /** * Steps */ ol.steps { counter-reset: section; list-style-type: none; margin-left:2.2em; } ol.steps li { margin: 1.5 0; } ol.steps li span.cmd { font-size: 1.35em; display: block; margin: 0 0 1.5em 0; } ol.steps li.substep span.cmd { border-bottom: none; display:inline; } ol.steps li:before { counter-increment: section; content: " " counter(section, decimal); /*content:"Section " counter(section) ". ";*/ background-color: #666; border-radius: 20px; color: #FFF; text-align:center; vertical-align: bottom; display: block; position: relative; left: -42px; width: 25px; height: 25px; top: 25px; line-height: 25px; } ol.steps li ol { counter-reset: none; list-style-type: decimal; } ol.steps li ul { counter-reset: none; list-style-type: bullet; } ol.steps li ol li:before, ol.steps li ul li:before { content: ''; counter-increment: none; display: inline; background: #FFF; } /** * data list */ dt {margin-top:1.5em} dd {margin-top:0.3em} li dl { position:relative; left:12px } /** * Related links */ ul.ullinks { border-top: 1px dashed #ccc; padding-top:15px; margin-top:25px; } ul.ullinks li.ulchildlink { margin:10px 0; }
html5-themes/modules/DITA/list/css/list.css
ol, ul { margin-left:0px; } ul li, ol li { margin:1em 0 1em 1em; list-style-position: inside; } /** full scope support * * nested ol lishould render * 1. abc * 1.1 def. **/ ol.full-scope { counter-reset: section; list-style-type: none; } ol.full-scope li:before{ counter-increment:section; content:counter(section, decimal) ". ";/*content:"Section " counter(section) ". ";*/ } ol.full-scope li ol { list-style-type: none; counter-reset: subsection; } ol.full-scope li ol li:before { list-style-type: none; counter-increment:subsection; content:counter(section) "." counter(subsection, decimal) " "; } ol.full-scope li ol li ol { list-style-type: none; counter-reset: subsubsection; } ol.full-scope li ol li ol li:before { list-style-type: none; counter-increment:subsubsection; content:counter(section) "." counter(subsection, decimal) "." counter(subsubsection, decimal) " "; } /** * list-style-type * @see: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type */ ol.lower-alpha{ list-style-type:lower-alpha } ol.upper-alpha { list-style-type:upper-alpha } ol.disc, ul.disc { list-style-type:disc; } ol.circle, ul.circle { list-style-type:circle; } ol.square,ul.square { list-style-type:square; } ol.decimal { list-style-type:decimal; } ol.lower-roman { list-style-type:lower-roman; } ol.upper-roman { list-style-type:upper-roman; } ol.lower-latin { list-style-type:lower-latin; } ol.upper-latin { list-style-type:upper-latin; } ol.lower-greek { list-style-type:lower-greek; } ol.armenian { list-style-type:armenian; } ol.georgian { list-style-type:georgian; } ol.decimal-leading-zero { list-style-type:decimal-leading-zero; } ol.hebrew { list-style-type:hebrew; } ol.cjk-ideographic { list-style-type:cjk-ideographic; } ol.hiragana { list-style-type:hiraganal; } ol.hiragana-iroha { list-style-type:hiragana-iroha; } ol.katakana { list-style-type:katakana; } ol.katakana-iroha { list-style-type:katakana-iroha; } /** * Steps */ ol.steps { counter-reset: section; list-style-type: none; margin-left:2.2em; } ol.steps li { margin: 1.5 0; } ol.steps li span.cmd { font-size: 1.35em; display: block; margin: 0 0 1.5em 0; } ol.steps li.substep span.cmd { border-bottom: none; display:inline; } ol.steps li:before { counter-increment: section; content: " " counter(section, decimal); /*content:"Section " counter(section) ". ";*/ background-color: #666; border-radius: 20px; color: #FFF; text-align:center; vertical-align: bottom; display: block; position: relative; left: -42px; width: 25px; height: 25px; top: 25px; line-height: 25px; } ol.steps li ol { counter-reset: none; list-style-type: decimal; } ol.steps li ul { counter-reset: none; list-style-type: bullet; } ol.steps li ol li:before, ol.steps li ul li:before { content: ''; counter-increment: none; display: inline; background: #FFF; } /** * data list */ dt {margin-top:1.5em} dd {margin-top:0.3em} li dl { position:relative; left:12px } /** * Related links */ ul.ullinks { border-top: 1px dashed #ccc; padding-top:15px; margin-top:25px; } ul.ullinks li.ulchildlink { margin:10px 0; }
0.582372
0.093761
* { padding: 0; margin: 0; font-weight: normal; border: none; } strong { font-weight: bold; } /* main css */ body { background: #444; font: 100% "Lato", "Lucida Grande", Verdana, sans-serif; color: #fff; min-width: 60em; } #wrap > *, footer { padding: 2em; position: relative; } header { background: #697C00; border-bottom: 1px solid #586F00; z-index: 100; text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px } header h1 { font-weight: bold; } #wrap > section { text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px; padding-bottom: 0; } #wrap > #abstract { background: #718C00; border-top: 1px solid #7B9D00; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 5px; padding-bottom: 2em; } footer { background: #111; color: #444; /* margin-top: 1em;*/ text-align: center; border-top: 2px solid #111; box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 5px; word-spacing: 0.2em; font-size: 0.8em; } footer a { color: #444; border-bottom: 1px dashed #444; text-decoration: none; } footer a:hover { border-bottom: 1px solid #444; } a { color: #fff; border-bottom: 1px dashed #fff; text-decoration: none; } a:hover { border-bottom: 1px solid #fff; } p { margin-bottom: 1em; } p:last-child { margin-bottom: 0; } code { font: 16px 'Inconsolata', 'Courier New', monospace; text-shadow: none; } pre { background: #222 url(code-bg.jpg); padding: 1em; color: #CCC; overflow: auto; border: 3px dashed #7D8E00; box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); } pre h2 { position: relative; display: inline; padding: .5em .5em; background: #7D8E00; color: #fff; border-top: none; border-left: none; top: -.5em; left: -1em; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 5px; text-shadow: none; } canvas { box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); background: #222; } button { -moz-box-shadow: inset 0px 1px 0px 0px #ffffff; -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff; box-shadow: inset 0px 1px 0px 0px #ffffff; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf'); background-color: #ededed; -moz-border-radius: 2em; -webkit-border-radius: 2em; border-radius: 2em; border: 1px solid #dcdcdc; display: inline-block; color: #444; font-family: arial; font-size: 15px; font-weight: bold; padding: .1em 1.1em; text-decoration: none; text-shadow: 1px 1px 0px #ffffff; box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); } button:active { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) ); background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% ); filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed'); background-color: #dfdfdf; box-shadow: none; } button:hover { color: #000; } /* hijs colors */ code .keyword { color: #C82829; } code .string { color: #718C00; } code .regexp { color: #EAB700 } code .class { color: #4271AE; } code .special { color: #8959A8; } code .number { color: #F5871F; } code .comment { color: #888 } /* // comment window //special var // keyword "String" Class (/^[a-z]+/) // regexp 50 // number */ /* sticky footer code */ html, body { height: 100%; } #wrap { min-height: 100%; } section.code-block:last-child { overflow:auto; padding-bottom: 7em !important; } footer { position: relative; margin-top: -5em; /* negative value of footer height */ height: 1em; clear:both; } body:before {/* thanks to Maleika (Kohoutec)*/ content:""; height:100%; float:left; width:0; margin-top:-32767px;/* thank you <NAME> - negate effect of float*/ }
examples/support/main.css
* { padding: 0; margin: 0; font-weight: normal; border: none; } strong { font-weight: bold; } /* main css */ body { background: #444; font: 100% "Lato", "Lucida Grande", Verdana, sans-serif; color: #fff; min-width: 60em; } #wrap > *, footer { padding: 2em; position: relative; } header { background: #697C00; border-bottom: 1px solid #586F00; z-index: 100; text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px } header h1 { font-weight: bold; } #wrap > section { text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px; padding-bottom: 0; } #wrap > #abstract { background: #718C00; border-top: 1px solid #7B9D00; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 5px; padding-bottom: 2em; } footer { background: #111; color: #444; /* margin-top: 1em;*/ text-align: center; border-top: 2px solid #111; box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 5px; word-spacing: 0.2em; font-size: 0.8em; } footer a { color: #444; border-bottom: 1px dashed #444; text-decoration: none; } footer a:hover { border-bottom: 1px solid #444; } a { color: #fff; border-bottom: 1px dashed #fff; text-decoration: none; } a:hover { border-bottom: 1px solid #fff; } p { margin-bottom: 1em; } p:last-child { margin-bottom: 0; } code { font: 16px 'Inconsolata', 'Courier New', monospace; text-shadow: none; } pre { background: #222 url(code-bg.jpg); padding: 1em; color: #CCC; overflow: auto; border: 3px dashed #7D8E00; box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); } pre h2 { position: relative; display: inline; padding: .5em .5em; background: #7D8E00; color: #fff; border-top: none; border-left: none; top: -.5em; left: -1em; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 5px; text-shadow: none; } canvas { box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); background: #222; } button { -moz-box-shadow: inset 0px 1px 0px 0px #ffffff; -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff; box-shadow: inset 0px 1px 0px 0px #ffffff; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf'); background-color: #ededed; -moz-border-radius: 2em; -webkit-border-radius: 2em; border-radius: 2em; border: 1px solid #dcdcdc; display: inline-block; color: #444; font-family: arial; font-size: 15px; font-weight: bold; padding: .1em 1.1em; text-decoration: none; text-shadow: 1px 1px 0px #ffffff; box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); } button:active { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) ); background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% ); filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed'); background-color: #dfdfdf; box-shadow: none; } button:hover { color: #000; } /* hijs colors */ code .keyword { color: #C82829; } code .string { color: #718C00; } code .regexp { color: #EAB700 } code .class { color: #4271AE; } code .special { color: #8959A8; } code .number { color: #F5871F; } code .comment { color: #888 } /* // comment window //special var // keyword "String" Class (/^[a-z]+/) // regexp 50 // number */ /* sticky footer code */ html, body { height: 100%; } #wrap { min-height: 100%; } section.code-block:last-child { overflow:auto; padding-bottom: 7em !important; } footer { position: relative; margin-top: -5em; /* negative value of footer height */ height: 1em; clear:both; } body:before {/* thanks to Maleika (Kohoutec)*/ content:""; height:100%; float:left; width:0; margin-top:-32767px;/* thank you <NAME> - negate effect of float*/ }
0.3492
0.104843
.verticalAlign { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .gray { color: #a6a6a6; } html, body { width: 100%; height: 100%; padding: 0; margin: 0; } body { font-size: 14px; color: #000; -webkit-font-smoothing: antialiased; font-family: Lato, sans-serif; } body a { color: #369eef; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; } body a:hover, body a:active, body a:focus { color: #1078c9; outline: 0; text-decoration: none; } #wrapper { overflow: hidden; } .logo { margin: 0 auto; width: 148px; height: 148px; text-align: center; border: 1px solid #fff; padding: 20px; } .logo .wrap { border: 1px solid #fff; height: 100%; font-size: 16px; font-weight: 900; text-transform: uppercase; line-height: 46px; } .logo .wrap div { font-size: 85px; margin: 14px 0 0 0; } .bg-image { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } h1, h2, h3, h4, h5, h6 { font-weight: 900; } h3 { font-size: 22px; margin: 20px 0; } p { line-height: 24px; } .parallax { background-repeat: no-repeat; background-position: center center; background-attachment: fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; position: static; width: 100%; height: 100%} .btn { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; font-size: 14px; font-weight: 700; } .btn.btn-default { border: 2px solid #1d1f1e; } .btn.btn-default:hover, .btn.btn-default:focus { background: 0 0; border-color: #369eef; color: #369eef; } .btn-lg { padding: 15px 50px; } .sectionHeader { text-align: center; } .sectionHeader.font-white h2, .sectionHeader.font-white .stars { color: #fff; } .sectionHeader.font-white .dotted-break span { background: #fff; } .sectionHeader.font-white .dotted-break span:before, .sectionHeader.font-white .dotted-break span:after { background: #fff; } .sectionHeader h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } .sectionHeader h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } .sectionHeader .dotted-break { width: 44px; height: 5px; margin: 15px auto; } .sectionHeader .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } .sectionHeader .dotted-break span:before, .sectionHeader .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } .sectionHeader .dotted-break span:after { left: 6px; } .sectionHeader .dotted-break span:first-child { margin: 0; } section { padding: 60px 0 80px 0; } section header { text-align: center; } section header.font-white h2, section header.font-white .stars { color: #fff; } section header.font-white .dotted-break span { background: #fff; } section header.font-white .dotted-break span:before, section header.font-white .dotted-break span:after { background: #fff; } section header h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } section header h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } section header .dotted-break { width: 44px; height: 5px; margin: 15px auto; } section header .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } section header .dotted-break span:before, section header .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } section header .dotted-break span:after { left: 6px; } section header .dotted-break span:first-child { margin: 0; } section header .wow { visibility: hidden; } section header h2 { font-size: 16px; } blockquote { border: 0; font-size: 16px; font-style: italic; line-height: 30px; text-align: center; padding: 0; margin: 0; } blockquote .quotes { font-size: 50px; display: block; margin: 0 auto 25px auto; } blockquote p { margin: 0; } blockquote cite { font-weight: 700; margin: 30px 0 0 0; display: block; } .subtitle { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; } .form-control { color: #fff; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; margin: 20px 0 0 0; background: rgba(255, 255, 255, .2); border: 1px solid transparent; font-weight: 400; height: 40px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .form-control:focus { border-color: #369eef; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .form-control::-webkit-input-placeholder { color: #fff; } .form-control:-moz-placeholder { color: #fff; } .form-control::-moz-placeholder { color: #fff; } .form-control:-ms-input-placeholder { color: #fff; } .form-control.parsley-error { border-color: #ed2727; } .parsley-errors-list { padding: 0; margin: 0; } .parsley-errors-list li { display: inline-block; padding: 0 5px; background: #ed2727; margin: 5px 0; } textarea { resize: none; } .owl-carousel .owl-controls, .home-carousel .owl-controls, .owl-carousel .carousel-controls, .home-carousel .carousel-controls { height: auto; position: absolute; top: 50%; margin: -54px 0 0 0; left: 0; width: 100%; z-index: 2; } .owl-carousel .owl-controls .owl-prev, .home-carousel .owl-controls .owl-prev, .owl-carousel .carousel-controls .owl-prev, .home-carousel .carousel-controls .owl-prev, .owl-carousel .owl-controls .owl-next, .home-carousel .owl-controls .owl-next, .owl-carousel .carousel-controls .owl-next, .home-carousel .carousel-controls .owl-next, .owl-carousel .owl-controls .prev, .home-carousel .owl-controls .prev, .owl-carousel .carousel-controls .prev, .home-carousel .carousel-controls .prev, .owl-carousel .owl-controls .next, .home-carousel .owl-controls .next, .owl-carousel .carousel-controls .next, .home-carousel .carousel-controls .next { font-size: 75px; position: absolute; width: auto; -moz-opacity: .7; -khtml-opacity: .7; -webkit-opacity: .7; opacity: .7; } .owl-carousel .owl-controls .owl-prev:hover, .home-carousel .owl-controls .owl-prev:hover, .owl-carousel .carousel-controls .owl-prev:hover, .home-carousel .carousel-controls .owl-prev:hover, .owl-carousel .owl-controls .owl-next:hover, .home-carousel .owl-controls .owl-next:hover, .owl-carousel .carousel-controls .owl-next:hover, .home-carousel .carousel-controls .owl-next:hover, .owl-carousel .owl-controls .prev:hover, .home-carousel .owl-controls .prev:hover, .owl-carousel .carousel-controls .prev:hover, .home-carousel .carousel-controls .prev:hover, .owl-carousel .owl-controls .next:hover, .home-carousel .owl-controls .next:hover, .owl-carousel .carousel-controls .next:hover, .home-carousel .carousel-controls .next:hover { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } .owl-carousel .owl-controls .owl-prev, .home-carousel .owl-controls .owl-prev, .owl-carousel .carousel-controls .owl-prev, .home-carousel .carousel-controls .owl-prev, .owl-carousel .owl-controls .prev, .home-carousel .owl-controls .prev, .owl-carousel .carousel-controls .prev, .home-carousel .carousel-controls .prev { left: 5px; } .owl-carousel .owl-controls .owl-next, .home-carousel .owl-controls .owl-next, .owl-carousel .carousel-controls .owl-next, .home-carousel .carousel-controls .owl-next, .owl-carousel .owl-controls .next, .home-carousel .owl-controls .next, .owl-carousel .carousel-controls .next, .home-carousel .carousel-controls .next { right: 5px; left: auto; } .owl-carousel .owl-controls .container, .home-carousel .owl-controls .container, .owl-carousel .carousel-controls .container, .home-carousel .carousel-controls .container { position: relative; } #header .navbar-brand { font-size: 60px; font-weight: 900; height: 70px; padding: 22px 15px; } #header .navbar-toggle { background: #369eef; margin-top: 18px; } #header .navbar-toggle .icon-bar { background: #fff; } #header .navbar { height: 70px; background: #fff; -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); border: 0; } #header .navbar-nav { text-transform: uppercase; } #header .navbar-nav>li>a { color: #000; font-weight: 400; } #header .navbar-nav>li>a:hover, #header .navbar-nav>li>a:focus { background: 0 0; } #header .navbar-nav>li.active>a { color: #369eef; } #header .navbar-collapse { background: #fff; padding-left: 15px; padding-right: 15px; } #home { text-align: center; color: #fff; height: 770px; } #home .carousel-inner { height: 100%} #home .carousel-inner .item { left: 0!important; -webkit-transition: opacity 1s; -moz-transition: opacity 1s; -ms-transition: opacity 1s; -o-transition: opacity 1s; height: 100%; background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #home .carousel-inner .item .logo { margin-bottom: 35px; } #home .carousel-inner .item .text { text-align: center; } #home .carousel-inner .item .text.font-white h2, #home .carousel-inner .item .text.font-white .stars { color: #fff; } #home .carousel-inner .item .text.font-white .dotted-break span { background: #fff; } #home .carousel-inner .item .text.font-white .dotted-break span:before, #home .carousel-inner .item .text.font-white .dotted-break span:after { background: #fff; } #home .carousel-inner .item .text h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } #home .carousel-inner .item .text h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } #home .carousel-inner .item .text .dotted-break { width: 44px; height: 5px; margin: 15px auto; } #home .carousel-inner .item .text .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } #home .carousel-inner .item .text .dotted-break span:before, #home .carousel-inner .item .text .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } #home .carousel-inner .item .text .dotted-break span:after { left: 6px; } #home .carousel-inner .item .text .dotted-break span:first-child { margin: 0; } #home .carousel-inner .item .text h1 { font-size: 95px; margin-bottom: 15px; text-transform: none; font-weight: 900; } #home .carousel-inner .item .text h2 { font-size: 20px; font-weight: 400; text-transform: none; margin-top: 20px; text-transform: uppercase; } #home .carousel-inner .item .container { height: 100%} #home .carousel-inner .item .container .content { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #home .next.left, #home .prev.right { opacity: 1; z-index: 1; } #home .active.left, #home .active.right { opacity: 0; z-index: 2; } #home .scrollDown { position: absolute; bottom: 60px; left: 50%; color: #fff; margin: 0 0 0 -10px; font-size: 30px; z-index: 2; -moz-opacity: .7; -khtml-opacity: .7; -webkit-opacity: .7; opacity: .7; } #home .scrollDown:hover { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #home .wow { visibility: hidden; } #features .i { margin-top: 30px; } #features .i .icon { text-align: center; line-height: 130px; color: #fff; font-size: 50px; } #features .i .icon .c { border: 1px solid #d9d9d9; padding: 20px; } #features .i .icon .c .fill { background: #369eef; height: 130px; } #features h3 { text-transform: uppercase; font-weight: 700; } #testimonials { z-index: 2; position: relative; background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_testimonials.jpg); color: #fff; padding: 70px 0; } .backgroundItemHover .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } .backgroundItemHover .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } .backgroundItemHover .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .backgroundItemHover .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } .backgroundItemHover .wrap .info .info-wrap h3, .backgroundItemHover .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } .backgroundItemHover .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } .backgroundItemHover .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } .borderedHover:before, .borderedHover:after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } .borderedHover:before { border-top: 1px solid #369eef; border-bottom: 1px solid #369eef; -webkit-transform: scale(0, 1); transform: scale(0, 1); } .borderedHover:after { border-right: 1px solid #369eef; border-left: 1px solid #369eef; -webkit-transform: scale(1, 0); transform: scale(1, 0); } .borderedHover:hover:before, .borderedHover:hover:after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } #portfolio .filter { padding: 0; margin: 35px 0 15px 0; font-size: 12px; text-transform: uppercase; font-weight: 700; text-align: center; } #portfolio .filter li { display: inline-block; margin: 0 0 0 -3px; } #portfolio .filter li a { border: 1px solid #d9d9d9; display: block; padding: 10px 35px; color: #1d1f1e; } #portfolio .filter li.active a, #portfolio .filter li:hover a { border-color: #369eef; } #portfolio .filter li.active a { background: #369eef; color: #fff; } #portfolio .i .c { display: block; border: 1px solid #d9d9d9; padding: 26px; } #portfolio .i .c img { margin: 0 auto; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #portfolio .i .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #portfolio .i .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #portfolio .i .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #portfolio .i .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #portfolio .i .c .wrap .info .info-wrap h3, #portfolio .i .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #portfolio .i .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #portfolio .i .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #portfolio .i .c:hover { border-color: transparent; } #portfolio .i .c:hover .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #portfolio .i .c:hover .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } #portfolio .i>.social { display: none; } #portfolio .og-grid { list-style: none; padding: 0; margin: 0 auto; width: 100%; text-align: center; } #portfolio .og-grid>li { display: inline-block; margin: 24px 12px 0 12px; vertical-align: top; height: 370px; } #portfolio .og-grid li>a, #portfolio .og-grid li>a img { border: none; outline: 0; display: block; position: relative; } #portfolio .og-loading { width: 30px; height: 30px; position: relative; left: 50%; top: 150px; margin: 0 0 0 -15px; background: url(../img/preloader.gif); } #portfolio .og-expander { position: absolute; top: auto; left: 0; width: 100%; text-align: left; height: 0; overflow: hidden; } #portfolio .og-expander .og-expander-inner { height: 100%} #portfolio .og-expander .container { padding-top: 24px; } #portfolio .og-expander .container .details h3 { text-transform: uppercase; font-size: 40px; margin: 30px 0 15px 0; } #portfolio .og-expander .container .details .fa-external-link { color: #369eef; display: inline-block; margin: 0 0 0 5px; } #portfolio .og-expander .container .details .og-close { width: 90px; height: 90px; background: rgba(0, 0, 0, .7); position: absolute; top: 0; right: 15px; cursor: pointer; font-size: 40px; text-align: center; line-height: 90px; color: #fff; -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; } #portfolio .og-expander .container .details .og-close:hover { background: #369eef; } #portfolio .og-expander .container .details .social { text-align: right; } #portfolio .og-expander .container .details .social li { display: inline-block; margin: 0 2px 0 0; } #portfolio .og-expander .container .details .social li a { display: block; width: 30px; text-align: center; font-size: 20px; color: #000; } #portfolio .og-expander .container .details .social li a:hover { color: #369eef; border-color: #369eef; } .video { padding: 0; height: 350px; color: #fff; } .video .parallax { cursor: pointer; } .video .parallax:hover .content .icon { color: #369eef; border-color: #369eef; } .video .content { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); text-align: center; } .video .content h2 { font-weight: 400; color: #fff; margin-bottom: 0; } .video .content .icon { width: 60px; height: 60px; border: 2px solid #fff; display: inline-block; line-height: 55px; font-size: 30px; margin-bottom: 10px; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .video .content .icon .fa { position: relative; left: 3px; } #about { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_about.jpg); color: #fff; } #about img { margin: 20px auto 0 auto; } #about .skills { padding: 0; margin: 60px 0 0 0; font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; color: #1d1f1e; overflow: hidden; } #about .skills li { display: block; border: 1px solid #fff; margin: 20px 0; padding: 8px; } #about .skills li div { background: #fff; padding: 2px 5px; } #blog.subpage { padding: 0 0 80px 0; } #blog.subpage header { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_blog.jpg); color: #fff; padding: 80px 0; } #blog.subpage header .logo { display: block; color: #fff; margin-bottom: 30px; } #blog.subpage.detail header { background-image: url(../img/bg_blog-detail.jpg); } #blog.subpage.detail .articles .article { border-bottom: 1px solid #bfbfbf; padding-bottom: 20px; margin-bottom: 40px; } #blog.subpage.detail .articles .article .title { font-size: 40px; color: #000; margin-top: 20px; } #blog.subpage.detail .articles .article p { margin: 20px 0; } #blog.subpage.detail .articles .article h2 { font-size: 26px; } #blog.subpage.detail .articles .article h3 { font-size: 22px; } #blog.subpage.detail .articles .article h4 { font-size: 18px; } #blog .articles { margin-top: 20px; margin-bottom: 50px; } #blog .articles .article { margin-top: 30px; } #blog .articles .article:nth-child(odd) { clear: left; } #blog .articles .article .c { position: relative; display: block; border: 1px solid #dbdbdb; padding: 30px; margin: 20px auto 0 auto; } #blog .articles .article .c img { -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #blog .articles .article .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #blog .articles .article .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #blog .articles .article .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #blog .articles .article .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #blog .articles .article .c .wrap .info .info-wrap h3, #blog .articles .article .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #blog .articles .article .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #blog .articles .article .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #blog .articles .article .c .wrap { overflow: hidden; position: relative; z-index: 1; font-size: 24px; } #blog .articles .article .c .wrap .more { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin-top: 15px; } #blog .articles .article .c:hover { border-color: transparent; } #blog .articles .article .c:hover .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #blog .articles .article .c:hover .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } #blog .articles .article h3, #blog .articles .article h2, #blog .articles .article h4 { font-size: 22px; margin: 30px 0 7px 0; font-weight: 400; } #blog .articles .article h3 a, #blog .articles .article h2 a, #blog .articles .article h4 a { color: inherit; } #blog .articles .article h3 a:hover, #blog .articles .article h2 a:hover, #blog .articles .article h4 a:hover { color: #369eef; } #blog .articles .article .articleInfo { margin: 5px 0 20px 0; font-style: italic; color: #666; font-size: 12px; } #blog .articles .article .articleInfo .i { float: left; margin: 0 0 0 8px; border-left: 1px solid #666; padding: 0 0 0 8px; } #blog .articles .article .articleInfo .i:first-child { margin: 0; padding: 0; border: 0; } #blog .articles .article .articleInfo .i .fa { font-size: 14px; margin: 0 2px 0 0; } #blog .articles .article .asideArticleInfo { text-align: center; } #blog .articles .article .asideArticleInfo .date { margin: 20px 0 0; } #blog .articles .article .asideArticleInfo .date .day { font-size: 32px; font-weight: 700; } #blog .articles .article .asideArticleInfo .date .month { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; } #blog .articles .article .asideArticleInfo .comments { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 20px 0 0 0; } #blog .articles .article .asideArticleInfo .comments .fa { font-size: 18px; } #blog .morePosts .fa { margin: 0 10px 0 0; } #blog .btn { background: #369eef; border: 0; color: #fff; } #blog .btn:hover { background: #1078c9; } #blog .articleComments h3, #blog .articleComments h4 { font-size: 22px; margin: 0 0 40px 0; font-weight: 400; } #blog .articleComments h4 { font-size: 18px; margin: 0 0 2px 0; } #blog .articleComments .info { font-style: italic; font-size: 12px; color: #666; } #blog .articleComments p { margin: 10px 0; } #blog .articleComments ul { padding: 0; } #blog .articleComments ul li { margin: 30px 0; list-style-type: none; } #blog .articleComments ul li .image img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #blog .articleComments ul ul { padding: 0 0 0 30px; } #blog .addComment h3, #blog .addComment h4 { font-size: 22px; margin: 0; font-weight: 400; } #blog .addComment .wrap { border: 1px solid #d9d9d9; padding: 30px; } #blog .addComment form .form-control { border-color: #d9d9d9; color: #666; margin-top: 30px; } #blog .addComment form .form-control::-webkit-input-placeholder { color: #666; } #blog .addComment form .form-control:-moz-placeholder { color: #666; } #blog .addComment form .form-control::-moz-placeholder { color: #666; } #blog .addComment form .form-control:-ms-input-placeholder { color: #666; } #blog .addComment form .form-control:focus { border-color: #369eef; } #blog .addComment form .btn { background: 0 0; border: 2px solid #666; color: #666; margin: 30px 0 0 0; } #blog .addComment form .btn:hover { border-color: #369eef; color: #369eef; } #team .i { text-align: center; } #team .i .c { border: 1px solid #dbdbdb; padding: 30px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; max-width: 370px; margin: 20px auto 0 auto; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #team .i .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #team .i .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #team .i .c .wrap .info .info-wrap h3, #team .i .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #team .i .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #team .i .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #team .i .c .wrap { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; overflow: hidden; position: relative; z-index: 1; -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000); } #team .i .c .wrap .info { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: rgba(255, 255, 255, .7); } #team .i .c .wrap .share { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin-bottom: 15px; font-size: 20px; color: #000; } #team .i h3 { font-size: 22px; text-transform: uppercase; margin: 30px 0 15px 0; } #team .i h4 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 0 0 20px 0; background: #369eef; color: #fff; font-weight: 700; display: inline-block; padding: 4px 10px; } #team .i:hover .c { background: #369eef; } #team .i:hover .c .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #team .i:hover .c .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } .counter { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_counter.jpg); text-align: center; padding: 70px 0; z-index: 2; position: relative; color: #fff; } .counter .icon { font-size: 60px; margin-bottom: 5px; } .counter h3 { font-size: 34px; margin-bottom: 10px; font-weight: 400; } .counter h4 { text-transform: uppercase; margin-bottom: 0; font-size: 22px; font-weight: 400; } .charts { text-align: center; position: relative; z-index: 2; padding: 70px 0 60px 0; } .charts h3 { font-size: 22px; text-transform: uppercase; margin: 30px 0 15px; font-weight: 400; } .charts p { margin: 0 30px; } .charts h4 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; color: gray; margin: 15px 0; } .charts .chart { position: relative; display: block; width: 160px; height: 160px; line-height: 160px; margin: 0 auto 20px auto; font-size: 34px; font-weight: 400; } .charts .chart canvas { position: absolute; top: 0; left: 0; } .charts .percent { display: inline-block; line-height: 110px; z-index: 2; } .charts .percent:after { content: '%'; margin-left: .1em; font-size: .8em; } .charts .angular { margin-top: 100px; } .charts .angular .chart { margin-top: 0; } #social { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_social.jpg); color: #fff; padding: 105px 0; text-align: center; } #social .icon { font-size: 50px; display: block; margin: 0 0 30px 0; } #social p { font-size: 22px; font-weight: 300; margin: 30px 0; } #social .author { font-size: 20px; font-weight: 700; } #pricing .i { text-align: center; margin-top: 20px; } #pricing .i .wrap { position: relative; -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; border: 1px solid #d9d9d9; padding: 30px; } #pricing .i .wrap .c { border: 1px solid #d9d9d9; background: #fff; padding: 0 15% 40px 15%} #pricing .i .wrap .c h3 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; border-bottom: 1px solid #d9d9d9; padding: 25px 0; font-size: 14px; font-weight: 700; } #pricing .i .wrap .c .price { font-size: 40px; text-transform: uppercase; font-weight: 900; line-height: 40px; margin: 5px 0 20px 0; } #pricing .i .wrap .c .price sup { font-size: 20px; font-weight: 400; font-family: Lato, sans-serif; top: -1.2em; } #pricing .i .wrap .c .price.price-lg { font-size: 60px; } #pricing .i .wrap .c .info { line-height: 40px; margin: 0 0 30px 0; } #pricing .i .wrap .c .btn { z-index: 1; position: relative; background: #a6a6a6; border: 0; color: #fff; } #pricing .i .wrap .c .btn:hover { background: #369eef; } #pricing .i:hover .wrap { border-color: transparent; background: #f7f7f7; } #pricing .i.active .wrap { background: #369eef; border-color: #369eef; } #pricing .i.active .wrap .c { border-color: #369eef; } #pricing .i.active .wrap .c h3 { position: relative; } #pricing .i.active .wrap .c h3:before { content: '\f005'; font-family: FontAwesome; position: absolute; top: 6px; left: 50%; margin: 0 0 0 -5px; } #pricing .i.active .wrap .c .btn { background: #369eef; } #contact { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color: #fff; background-image: url(../img/bg_contact.jpg); } #contact form .btn { background: #fff; color: #000; margin: 15px auto; display: block; border: 0; } #contact form .btn:hover { background: #369eef; color: #fff; } #contact .info { margin-top: 30px; margin-bottom: 30px; line-height: 32px; text-align: center; } #contact .info span { margin: 0 10px; display: inline-block; } #contact .info .icon { font-size: 20px; display: inline-block; width: 25px; margin: 0; color: #fff; position: relative; top: 2px; } #contact .info h3 { text-transform: uppercase; } .googleMapWrap { background: #1d1f1e; border-top: 5px solid #1d1f1e; } .googleMapWrap #googleMap { background: #1d1f1e; height: 400px; } #footer { background: #1d1f1e; padding: 60px 0 70px 0; text-align: center; line-height: 24px; font-size: 14px; letter-spacing: 2px; color: #a6a6a6; } #footer a { color: #a6a6a6; } #footer .social { margin-bottom: 30px; } #footer .social .icon { margin: 0 15px 0 0; width: auto; font-size: 20px; color: #fff; } #footer .social .icon:hover { color: #369eef; } .pagination { text-align: center; display: block; margin-top: 80px; font-size: 14px; } .pagination>li>a, .pagination>li>span { color: #000; float: none; margin: 0 0 0 -4px; padding: 10px 16px; } .pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { color: #000; } .pagination>li:last-child>a, .pagination>li:first-child>a, .pagination>li:last-child>span, .pagination>li:first-child>span { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .pagination .active>a, .pagination .active>span { border-color: #369eef; background: #369eef; } .pagination .active>a:hover, .pagination .active>span:hover, .pagination .active>a:focus, .pagination .active>span:focus { border-color: #369eef; background: #369eef; } .modal-content { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .modal-content .intro { padding: 20px; font-size: 16px; font-style: italic; background: #eee; margin: 0 30px; } .modal-content img.pull-right { margin: 0 0 30px 30px; } .modal-content img.pull-left { margin: 0 30px 30px 0; } .modal-content p { margin: 0 0 20px 0; } .modal-body { padding: 30px; } .modal-header { padding: 30px 100px 30px 30px; border: 0; } .modal-header .modal-title { text-transform: uppercase; font-size: 22px; margin: 0 0 4px 0; } .modal-header .info { color: #7c7c7c; font-size: 11px; } .modal-header .close { width: 70px; height: 70px; position: absolute; right: 0; top: 2px; background: #7f7f7f; font-size: 30px; color: #fff; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; outline: 0; } .modal-header .close:hover { background: #369eef; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-fade .carousel-inner>.item.next, .carousel-fade .carousel-inner>.item.active.right { opacity: 0; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); } .carousel-fade .carousel-inner>.item.prev, .carousel-fade .carousel-inner>.item.active.left { opacity: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .carousel-fade .carousel-inner>.item.next.left, .carousel-fade .carousel-inner>.item.prev.right, .carousel-fade .carousel-inner>.item.active { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }@media (min-width:768px) { #contact .info { padding-left: 35px; } #header .navbar-nav>li>a { padding-top: 25px; padding-bottom: 25px; } #header .navbar-nav>li.active { position: relative; } #header .navbar-nav>li.active:before { content: '\f005'; font-family: FontAwesome; position: absolute; top: 8px; left: 50%; margin: 0 0 0 -5px; font-size: 12px; color: #369eef; } .modal-dialog { width: 700px; } #portfolio .og-expander .container>.row { position: relative; } #portfolio .og-expander .container .details { position: static; } }@media (min-width:992px) { #features .row .i: first-child { text-align: right; } #features .row .i:first-child .icon { float: right; } #portfolio .og-expander .container .fullImage, #portfolio .og-expander .container .details { padding-left: 105px; padding-right: 105px; } #portfolio .og-expander .container .details .og-close { right: 105px; } #header .navbar-nav>li>a { padding-left: 25px; padding-right: 25px; } .modal-dialog { width: 770px; } }@media (min-width:1200px) { #portfolio .og-expander .container .fullImage, #portfolio .og-expander .container .details { padding-left: 54px; padding-right: 54px; } #portfolio .og-expander .container .details .og-close { right: 54px; } }@media (min-width:768px) and (max-width:991px) { #features .i { text-align: center; } #pricing .i .wrap { padding: 6%} #pricing .i .wrap .c { padding: 0 10% 40px 10%} #pricing .btn-lg { padding: 15px 30px; } #team .i .c { padding: 15px; } }@media (min-width:650px) and (max-width:991px) { #portfolio .og-grid>li { width: 40%; height: 290px; } }@media (max-width:650px) { #blog .article { width: 100%} }@media (max-width:767px) { #home { height: auto; } #home .carousel-inner .item { padding: 130px 0 90px 0; } #home .carousel-inner .item .container .content { position: static; -webkit-transform: none; -ms-transform: none; transform: none; } .charts .i { margin-top: 40px; } .charts .i:first-child { margin-top: 0; } .counter .i { margin-top: 50px; } .counter .i:first-child { margin-top: 0; } #portfolio .og-expander .container .details .og-close { width: 70px; height: 70px; line-height: 70px; } }@media (max-width:480px) { #features .i { text-align: center; width: 100%} }@media (min-width:1200px) { .container { width: 1200px; } }
assets/frontend/css/style.css
.verticalAlign { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .gray { color: #a6a6a6; } html, body { width: 100%; height: 100%; padding: 0; margin: 0; } body { font-size: 14px; color: #000; -webkit-font-smoothing: antialiased; font-family: Lato, sans-serif; } body a { color: #369eef; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; } body a:hover, body a:active, body a:focus { color: #1078c9; outline: 0; text-decoration: none; } #wrapper { overflow: hidden; } .logo { margin: 0 auto; width: 148px; height: 148px; text-align: center; border: 1px solid #fff; padding: 20px; } .logo .wrap { border: 1px solid #fff; height: 100%; font-size: 16px; font-weight: 900; text-transform: uppercase; line-height: 46px; } .logo .wrap div { font-size: 85px; margin: 14px 0 0 0; } .bg-image { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } h1, h2, h3, h4, h5, h6 { font-weight: 900; } h3 { font-size: 22px; margin: 20px 0; } p { line-height: 24px; } .parallax { background-repeat: no-repeat; background-position: center center; background-attachment: fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; position: static; width: 100%; height: 100%} .btn { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; font-size: 14px; font-weight: 700; } .btn.btn-default { border: 2px solid #1d1f1e; } .btn.btn-default:hover, .btn.btn-default:focus { background: 0 0; border-color: #369eef; color: #369eef; } .btn-lg { padding: 15px 50px; } .sectionHeader { text-align: center; } .sectionHeader.font-white h2, .sectionHeader.font-white .stars { color: #fff; } .sectionHeader.font-white .dotted-break span { background: #fff; } .sectionHeader.font-white .dotted-break span:before, .sectionHeader.font-white .dotted-break span:after { background: #fff; } .sectionHeader h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } .sectionHeader h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } .sectionHeader .dotted-break { width: 44px; height: 5px; margin: 15px auto; } .sectionHeader .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } .sectionHeader .dotted-break span:before, .sectionHeader .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } .sectionHeader .dotted-break span:after { left: 6px; } .sectionHeader .dotted-break span:first-child { margin: 0; } section { padding: 60px 0 80px 0; } section header { text-align: center; } section header.font-white h2, section header.font-white .stars { color: #fff; } section header.font-white .dotted-break span { background: #fff; } section header.font-white .dotted-break span:before, section header.font-white .dotted-break span:after { background: #fff; } section header h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } section header h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } section header .dotted-break { width: 44px; height: 5px; margin: 15px auto; } section header .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } section header .dotted-break span:before, section header .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } section header .dotted-break span:after { left: 6px; } section header .dotted-break span:first-child { margin: 0; } section header .wow { visibility: hidden; } section header h2 { font-size: 16px; } blockquote { border: 0; font-size: 16px; font-style: italic; line-height: 30px; text-align: center; padding: 0; margin: 0; } blockquote .quotes { font-size: 50px; display: block; margin: 0 auto 25px auto; } blockquote p { margin: 0; } blockquote cite { font-weight: 700; margin: 30px 0 0 0; display: block; } .subtitle { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; } .form-control { color: #fff; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; margin: 20px 0 0 0; background: rgba(255, 255, 255, .2); border: 1px solid transparent; font-weight: 400; height: 40px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .form-control:focus { border-color: #369eef; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .form-control::-webkit-input-placeholder { color: #fff; } .form-control:-moz-placeholder { color: #fff; } .form-control::-moz-placeholder { color: #fff; } .form-control:-ms-input-placeholder { color: #fff; } .form-control.parsley-error { border-color: #ed2727; } .parsley-errors-list { padding: 0; margin: 0; } .parsley-errors-list li { display: inline-block; padding: 0 5px; background: #ed2727; margin: 5px 0; } textarea { resize: none; } .owl-carousel .owl-controls, .home-carousel .owl-controls, .owl-carousel .carousel-controls, .home-carousel .carousel-controls { height: auto; position: absolute; top: 50%; margin: -54px 0 0 0; left: 0; width: 100%; z-index: 2; } .owl-carousel .owl-controls .owl-prev, .home-carousel .owl-controls .owl-prev, .owl-carousel .carousel-controls .owl-prev, .home-carousel .carousel-controls .owl-prev, .owl-carousel .owl-controls .owl-next, .home-carousel .owl-controls .owl-next, .owl-carousel .carousel-controls .owl-next, .home-carousel .carousel-controls .owl-next, .owl-carousel .owl-controls .prev, .home-carousel .owl-controls .prev, .owl-carousel .carousel-controls .prev, .home-carousel .carousel-controls .prev, .owl-carousel .owl-controls .next, .home-carousel .owl-controls .next, .owl-carousel .carousel-controls .next, .home-carousel .carousel-controls .next { font-size: 75px; position: absolute; width: auto; -moz-opacity: .7; -khtml-opacity: .7; -webkit-opacity: .7; opacity: .7; } .owl-carousel .owl-controls .owl-prev:hover, .home-carousel .owl-controls .owl-prev:hover, .owl-carousel .carousel-controls .owl-prev:hover, .home-carousel .carousel-controls .owl-prev:hover, .owl-carousel .owl-controls .owl-next:hover, .home-carousel .owl-controls .owl-next:hover, .owl-carousel .carousel-controls .owl-next:hover, .home-carousel .carousel-controls .owl-next:hover, .owl-carousel .owl-controls .prev:hover, .home-carousel .owl-controls .prev:hover, .owl-carousel .carousel-controls .prev:hover, .home-carousel .carousel-controls .prev:hover, .owl-carousel .owl-controls .next:hover, .home-carousel .owl-controls .next:hover, .owl-carousel .carousel-controls .next:hover, .home-carousel .carousel-controls .next:hover { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } .owl-carousel .owl-controls .owl-prev, .home-carousel .owl-controls .owl-prev, .owl-carousel .carousel-controls .owl-prev, .home-carousel .carousel-controls .owl-prev, .owl-carousel .owl-controls .prev, .home-carousel .owl-controls .prev, .owl-carousel .carousel-controls .prev, .home-carousel .carousel-controls .prev { left: 5px; } .owl-carousel .owl-controls .owl-next, .home-carousel .owl-controls .owl-next, .owl-carousel .carousel-controls .owl-next, .home-carousel .carousel-controls .owl-next, .owl-carousel .owl-controls .next, .home-carousel .owl-controls .next, .owl-carousel .carousel-controls .next, .home-carousel .carousel-controls .next { right: 5px; left: auto; } .owl-carousel .owl-controls .container, .home-carousel .owl-controls .container, .owl-carousel .carousel-controls .container, .home-carousel .carousel-controls .container { position: relative; } #header .navbar-brand { font-size: 60px; font-weight: 900; height: 70px; padding: 22px 15px; } #header .navbar-toggle { background: #369eef; margin-top: 18px; } #header .navbar-toggle .icon-bar { background: #fff; } #header .navbar { height: 70px; background: #fff; -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2); border: 0; } #header .navbar-nav { text-transform: uppercase; } #header .navbar-nav>li>a { color: #000; font-weight: 400; } #header .navbar-nav>li>a:hover, #header .navbar-nav>li>a:focus { background: 0 0; } #header .navbar-nav>li.active>a { color: #369eef; } #header .navbar-collapse { background: #fff; padding-left: 15px; padding-right: 15px; } #home { text-align: center; color: #fff; height: 770px; } #home .carousel-inner { height: 100%} #home .carousel-inner .item { left: 0!important; -webkit-transition: opacity 1s; -moz-transition: opacity 1s; -ms-transition: opacity 1s; -o-transition: opacity 1s; height: 100%; background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #home .carousel-inner .item .logo { margin-bottom: 35px; } #home .carousel-inner .item .text { text-align: center; } #home .carousel-inner .item .text.font-white h2, #home .carousel-inner .item .text.font-white .stars { color: #fff; } #home .carousel-inner .item .text.font-white .dotted-break span { background: #fff; } #home .carousel-inner .item .text.font-white .dotted-break span:before, #home .carousel-inner .item .text.font-white .dotted-break span:after { background: #fff; } #home .carousel-inner .item .text h1 { font-size: 50px; margin: 5px 0; font-weight: 700; text-transform: uppercase; } #home .carousel-inner .item .text h2 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 12px 0 25px 0; } #home .carousel-inner .item .text .dotted-break { width: 44px; height: 5px; margin: 15px auto; } #home .carousel-inner .item .text .dotted-break span { width: 2px; height: 5px; background: #369eef; display: inline-block; float: left; position: relative; margin: 0 0 0 7px; } #home .carousel-inner .item .text .dotted-break span:before, #home .carousel-inner .item .text .dotted-break span:after { content: ''; width: 2px; height: 5px; display: inline-block; background: #369eef; position: absolute; left: 3px; } #home .carousel-inner .item .text .dotted-break span:after { left: 6px; } #home .carousel-inner .item .text .dotted-break span:first-child { margin: 0; } #home .carousel-inner .item .text h1 { font-size: 95px; margin-bottom: 15px; text-transform: none; font-weight: 900; } #home .carousel-inner .item .text h2 { font-size: 20px; font-weight: 400; text-transform: none; margin-top: 20px; text-transform: uppercase; } #home .carousel-inner .item .container { height: 100%} #home .carousel-inner .item .container .content { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #home .next.left, #home .prev.right { opacity: 1; z-index: 1; } #home .active.left, #home .active.right { opacity: 0; z-index: 2; } #home .scrollDown { position: absolute; bottom: 60px; left: 50%; color: #fff; margin: 0 0 0 -10px; font-size: 30px; z-index: 2; -moz-opacity: .7; -khtml-opacity: .7; -webkit-opacity: .7; opacity: .7; } #home .scrollDown:hover { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #home .wow { visibility: hidden; } #features .i { margin-top: 30px; } #features .i .icon { text-align: center; line-height: 130px; color: #fff; font-size: 50px; } #features .i .icon .c { border: 1px solid #d9d9d9; padding: 20px; } #features .i .icon .c .fill { background: #369eef; height: 130px; } #features h3 { text-transform: uppercase; font-weight: 700; } #testimonials { z-index: 2; position: relative; background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_testimonials.jpg); color: #fff; padding: 70px 0; } .backgroundItemHover .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } .backgroundItemHover .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } .backgroundItemHover .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .backgroundItemHover .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } .backgroundItemHover .wrap .info .info-wrap h3, .backgroundItemHover .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } .backgroundItemHover .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } .backgroundItemHover .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } .borderedHover:before, .borderedHover:after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } .borderedHover:before { border-top: 1px solid #369eef; border-bottom: 1px solid #369eef; -webkit-transform: scale(0, 1); transform: scale(0, 1); } .borderedHover:after { border-right: 1px solid #369eef; border-left: 1px solid #369eef; -webkit-transform: scale(1, 0); transform: scale(1, 0); } .borderedHover:hover:before, .borderedHover:hover:after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } #portfolio .filter { padding: 0; margin: 35px 0 15px 0; font-size: 12px; text-transform: uppercase; font-weight: 700; text-align: center; } #portfolio .filter li { display: inline-block; margin: 0 0 0 -3px; } #portfolio .filter li a { border: 1px solid #d9d9d9; display: block; padding: 10px 35px; color: #1d1f1e; } #portfolio .filter li.active a, #portfolio .filter li:hover a { border-color: #369eef; } #portfolio .filter li.active a { background: #369eef; color: #fff; } #portfolio .i .c { display: block; border: 1px solid #d9d9d9; padding: 26px; } #portfolio .i .c img { margin: 0 auto; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #portfolio .i .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #portfolio .i .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #portfolio .i .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #portfolio .i .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #portfolio .i .c .wrap .info .info-wrap h3, #portfolio .i .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #portfolio .i .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #portfolio .i .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #portfolio .i .c:hover { border-color: transparent; } #portfolio .i .c:hover .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #portfolio .i .c:hover .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } #portfolio .i>.social { display: none; } #portfolio .og-grid { list-style: none; padding: 0; margin: 0 auto; width: 100%; text-align: center; } #portfolio .og-grid>li { display: inline-block; margin: 24px 12px 0 12px; vertical-align: top; height: 370px; } #portfolio .og-grid li>a, #portfolio .og-grid li>a img { border: none; outline: 0; display: block; position: relative; } #portfolio .og-loading { width: 30px; height: 30px; position: relative; left: 50%; top: 150px; margin: 0 0 0 -15px; background: url(../img/preloader.gif); } #portfolio .og-expander { position: absolute; top: auto; left: 0; width: 100%; text-align: left; height: 0; overflow: hidden; } #portfolio .og-expander .og-expander-inner { height: 100%} #portfolio .og-expander .container { padding-top: 24px; } #portfolio .og-expander .container .details h3 { text-transform: uppercase; font-size: 40px; margin: 30px 0 15px 0; } #portfolio .og-expander .container .details .fa-external-link { color: #369eef; display: inline-block; margin: 0 0 0 5px; } #portfolio .og-expander .container .details .og-close { width: 90px; height: 90px; background: rgba(0, 0, 0, .7); position: absolute; top: 0; right: 15px; cursor: pointer; font-size: 40px; text-align: center; line-height: 90px; color: #fff; -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; } #portfolio .og-expander .container .details .og-close:hover { background: #369eef; } #portfolio .og-expander .container .details .social { text-align: right; } #portfolio .og-expander .container .details .social li { display: inline-block; margin: 0 2px 0 0; } #portfolio .og-expander .container .details .social li a { display: block; width: 30px; text-align: center; font-size: 20px; color: #000; } #portfolio .og-expander .container .details .social li a:hover { color: #369eef; border-color: #369eef; } .video { padding: 0; height: 350px; color: #fff; } .video .parallax { cursor: pointer; } .video .parallax:hover .content .icon { color: #369eef; border-color: #369eef; } .video .content { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); text-align: center; } .video .content h2 { font-weight: 400; color: #fff; margin-bottom: 0; } .video .content .icon { width: 60px; height: 60px; border: 2px solid #fff; display: inline-block; line-height: 55px; font-size: 30px; margin-bottom: 10px; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .video .content .icon .fa { position: relative; left: 3px; } #about { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_about.jpg); color: #fff; } #about img { margin: 20px auto 0 auto; } #about .skills { padding: 0; margin: 60px 0 0 0; font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; color: #1d1f1e; overflow: hidden; } #about .skills li { display: block; border: 1px solid #fff; margin: 20px 0; padding: 8px; } #about .skills li div { background: #fff; padding: 2px 5px; } #blog.subpage { padding: 0 0 80px 0; } #blog.subpage header { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_blog.jpg); color: #fff; padding: 80px 0; } #blog.subpage header .logo { display: block; color: #fff; margin-bottom: 30px; } #blog.subpage.detail header { background-image: url(../img/bg_blog-detail.jpg); } #blog.subpage.detail .articles .article { border-bottom: 1px solid #bfbfbf; padding-bottom: 20px; margin-bottom: 40px; } #blog.subpage.detail .articles .article .title { font-size: 40px; color: #000; margin-top: 20px; } #blog.subpage.detail .articles .article p { margin: 20px 0; } #blog.subpage.detail .articles .article h2 { font-size: 26px; } #blog.subpage.detail .articles .article h3 { font-size: 22px; } #blog.subpage.detail .articles .article h4 { font-size: 18px; } #blog .articles { margin-top: 20px; margin-bottom: 50px; } #blog .articles .article { margin-top: 30px; } #blog .articles .article:nth-child(odd) { clear: left; } #blog .articles .article .c { position: relative; display: block; border: 1px solid #dbdbdb; padding: 30px; margin: 20px auto 0 auto; } #blog .articles .article .c img { -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #blog .articles .article .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #blog .articles .article .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #blog .articles .article .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #blog .articles .article .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #blog .articles .article .c .wrap .info .info-wrap h3, #blog .articles .article .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #blog .articles .article .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #blog .articles .article .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #blog .articles .article .c .wrap { overflow: hidden; position: relative; z-index: 1; font-size: 24px; } #blog .articles .article .c .wrap .more { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin-top: 15px; } #blog .articles .article .c:hover { border-color: transparent; } #blog .articles .article .c:hover .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #blog .articles .article .c:hover .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } #blog .articles .article h3, #blog .articles .article h2, #blog .articles .article h4 { font-size: 22px; margin: 30px 0 7px 0; font-weight: 400; } #blog .articles .article h3 a, #blog .articles .article h2 a, #blog .articles .article h4 a { color: inherit; } #blog .articles .article h3 a:hover, #blog .articles .article h2 a:hover, #blog .articles .article h4 a:hover { color: #369eef; } #blog .articles .article .articleInfo { margin: 5px 0 20px 0; font-style: italic; color: #666; font-size: 12px; } #blog .articles .article .articleInfo .i { float: left; margin: 0 0 0 8px; border-left: 1px solid #666; padding: 0 0 0 8px; } #blog .articles .article .articleInfo .i:first-child { margin: 0; padding: 0; border: 0; } #blog .articles .article .articleInfo .i .fa { font-size: 14px; margin: 0 2px 0 0; } #blog .articles .article .asideArticleInfo { text-align: center; } #blog .articles .article .asideArticleInfo .date { margin: 20px 0 0; } #blog .articles .article .asideArticleInfo .date .day { font-size: 32px; font-weight: 700; } #blog .articles .article .asideArticleInfo .date .month { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; } #blog .articles .article .asideArticleInfo .comments { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 20px 0 0 0; } #blog .articles .article .asideArticleInfo .comments .fa { font-size: 18px; } #blog .morePosts .fa { margin: 0 10px 0 0; } #blog .btn { background: #369eef; border: 0; color: #fff; } #blog .btn:hover { background: #1078c9; } #blog .articleComments h3, #blog .articleComments h4 { font-size: 22px; margin: 0 0 40px 0; font-weight: 400; } #blog .articleComments h4 { font-size: 18px; margin: 0 0 2px 0; } #blog .articleComments .info { font-style: italic; font-size: 12px; color: #666; } #blog .articleComments p { margin: 10px 0; } #blog .articleComments ul { padding: 0; } #blog .articleComments ul li { margin: 30px 0; list-style-type: none; } #blog .articleComments ul li .image img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #blog .articleComments ul ul { padding: 0 0 0 30px; } #blog .addComment h3, #blog .addComment h4 { font-size: 22px; margin: 0; font-weight: 400; } #blog .addComment .wrap { border: 1px solid #d9d9d9; padding: 30px; } #blog .addComment form .form-control { border-color: #d9d9d9; color: #666; margin-top: 30px; } #blog .addComment form .form-control::-webkit-input-placeholder { color: #666; } #blog .addComment form .form-control:-moz-placeholder { color: #666; } #blog .addComment form .form-control::-moz-placeholder { color: #666; } #blog .addComment form .form-control:-ms-input-placeholder { color: #666; } #blog .addComment form .form-control:focus { border-color: #369eef; } #blog .addComment form .btn { background: 0 0; border: 2px solid #666; color: #666; margin: 30px 0 0 0; } #blog .addComment form .btn:hover { border-color: #369eef; color: #369eef; } #team .i { text-align: center; } #team .i .c { border: 1px solid #dbdbdb; padding: 30px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; max-width: 370px; margin: 20px auto 0 auto; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c .wrap { overflow: hidden; width: 100%; height: 100%; position: relative; } #team .i .c .wrap .info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(54, 158, 239, .8); text-align: center; color: #fff; z-index: 1; -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; opacity: 0; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; } #team .i .c .wrap .info .info-wrap { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } #team .i .c .wrap .info .info-wrap .icon { font-size: 60px; margin: 0 auto 18px auto; -moz-opacity: .6; -khtml-opacity: .6; -webkit-opacity: .6; opacity: .6; } #team .i .c .wrap .info .info-wrap h3, #team .i .c .wrap .info .info-wrap .social { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; max-width: 70%; margin: 0 auto; padding: 16px 0 0 0; font-size: 14px; font-weight: 700; } #team .i .c .wrap .info .info-wrap .social { font-size: 30px; padding: 15px 0 0 0; } #team .i .c .wrap .info .info-wrap .social a { color: #000; margin: 0 3px; } #team .i .c .wrap { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; overflow: hidden; position: relative; z-index: 1; -webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000); } #team .i .c .wrap .info { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: rgba(255, 255, 255, .7); } #team .i .c .wrap .share { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin-bottom: 15px; font-size: 20px; color: #000; } #team .i h3 { font-size: 22px; text-transform: uppercase; margin: 30px 0 15px 0; } #team .i h4 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; margin: 0 0 20px 0; background: #369eef; color: #fff; font-weight: 700; display: inline-block; padding: 4px 10px; } #team .i:hover .c { background: #369eef; } #team .i:hover .c .wrap .info { -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; } #team .i:hover .c .wrap img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); } .counter { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_counter.jpg); text-align: center; padding: 70px 0; z-index: 2; position: relative; color: #fff; } .counter .icon { font-size: 60px; margin-bottom: 5px; } .counter h3 { font-size: 34px; margin-bottom: 10px; font-weight: 400; } .counter h4 { text-transform: uppercase; margin-bottom: 0; font-size: 22px; font-weight: 400; } .charts { text-align: center; position: relative; z-index: 2; padding: 70px 0 60px 0; } .charts h3 { font-size: 22px; text-transform: uppercase; margin: 30px 0 15px; font-weight: 400; } .charts p { margin: 0 30px; } .charts h4 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; color: gray; margin: 15px 0; } .charts .chart { position: relative; display: block; width: 160px; height: 160px; line-height: 160px; margin: 0 auto 20px auto; font-size: 34px; font-weight: 400; } .charts .chart canvas { position: absolute; top: 0; left: 0; } .charts .percent { display: inline-block; line-height: 110px; z-index: 2; } .charts .percent:after { content: '%'; margin-left: .1em; font-size: .8em; } .charts .angular { margin-top: 100px; } .charts .angular .chart { margin-top: 0; } #social { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-image: url(../img/bg_social.jpg); color: #fff; padding: 105px 0; text-align: center; } #social .icon { font-size: 50px; display: block; margin: 0 0 30px 0; } #social p { font-size: 22px; font-weight: 300; margin: 30px 0; } #social .author { font-size: 20px; font-weight: 700; } #pricing .i { text-align: center; margin-top: 20px; } #pricing .i .wrap { position: relative; -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; border: 1px solid #d9d9d9; padding: 30px; } #pricing .i .wrap .c { border: 1px solid #d9d9d9; background: #fff; padding: 0 15% 40px 15%} #pricing .i .wrap .c h3 { font-family: Lato, sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 400; border-bottom: 1px solid #d9d9d9; padding: 25px 0; font-size: 14px; font-weight: 700; } #pricing .i .wrap .c .price { font-size: 40px; text-transform: uppercase; font-weight: 900; line-height: 40px; margin: 5px 0 20px 0; } #pricing .i .wrap .c .price sup { font-size: 20px; font-weight: 400; font-family: Lato, sans-serif; top: -1.2em; } #pricing .i .wrap .c .price.price-lg { font-size: 60px; } #pricing .i .wrap .c .info { line-height: 40px; margin: 0 0 30px 0; } #pricing .i .wrap .c .btn { z-index: 1; position: relative; background: #a6a6a6; border: 0; color: #fff; } #pricing .i .wrap .c .btn:hover { background: #369eef; } #pricing .i:hover .wrap { border-color: transparent; background: #f7f7f7; } #pricing .i.active .wrap { background: #369eef; border-color: #369eef; } #pricing .i.active .wrap .c { border-color: #369eef; } #pricing .i.active .wrap .c h3 { position: relative; } #pricing .i.active .wrap .c h3:before { content: '\f005'; font-family: FontAwesome; position: absolute; top: 6px; left: 50%; margin: 0 0 0 -5px; } #pricing .i.active .wrap .c .btn { background: #369eef; } #contact { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color: #fff; background-image: url(../img/bg_contact.jpg); } #contact form .btn { background: #fff; color: #000; margin: 15px auto; display: block; border: 0; } #contact form .btn:hover { background: #369eef; color: #fff; } #contact .info { margin-top: 30px; margin-bottom: 30px; line-height: 32px; text-align: center; } #contact .info span { margin: 0 10px; display: inline-block; } #contact .info .icon { font-size: 20px; display: inline-block; width: 25px; margin: 0; color: #fff; position: relative; top: 2px; } #contact .info h3 { text-transform: uppercase; } .googleMapWrap { background: #1d1f1e; border-top: 5px solid #1d1f1e; } .googleMapWrap #googleMap { background: #1d1f1e; height: 400px; } #footer { background: #1d1f1e; padding: 60px 0 70px 0; text-align: center; line-height: 24px; font-size: 14px; letter-spacing: 2px; color: #a6a6a6; } #footer a { color: #a6a6a6; } #footer .social { margin-bottom: 30px; } #footer .social .icon { margin: 0 15px 0 0; width: auto; font-size: 20px; color: #fff; } #footer .social .icon:hover { color: #369eef; } .pagination { text-align: center; display: block; margin-top: 80px; font-size: 14px; } .pagination>li>a, .pagination>li>span { color: #000; float: none; margin: 0 0 0 -4px; padding: 10px 16px; } .pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { color: #000; } .pagination>li:last-child>a, .pagination>li:first-child>a, .pagination>li:last-child>span, .pagination>li:first-child>span { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .pagination .active>a, .pagination .active>span { border-color: #369eef; background: #369eef; } .pagination .active>a:hover, .pagination .active>span:hover, .pagination .active>a:focus, .pagination .active>span:focus { border-color: #369eef; background: #369eef; } .modal-content { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .modal-content .intro { padding: 20px; font-size: 16px; font-style: italic; background: #eee; margin: 0 30px; } .modal-content img.pull-right { margin: 0 0 30px 30px; } .modal-content img.pull-left { margin: 0 30px 30px 0; } .modal-content p { margin: 0 0 20px 0; } .modal-body { padding: 30px; } .modal-header { padding: 30px 100px 30px 30px; border: 0; } .modal-header .modal-title { text-transform: uppercase; font-size: 22px; margin: 0 0 4px 0; } .modal-header .info { color: #7c7c7c; font-size: 11px; } .modal-header .close { width: 70px; height: 70px; position: absolute; right: 0; top: 2px; background: #7f7f7f; font-size: 30px; color: #fff; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; -moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; opacity: 1; outline: 0; } .modal-header .close:hover { background: #369eef; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-fade .carousel-inner>.item.next, .carousel-fade .carousel-inner>.item.active.right { opacity: 0; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); } .carousel-fade .carousel-inner>.item.prev, .carousel-fade .carousel-inner>.item.active.left { opacity: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .carousel-fade .carousel-inner>.item.next.left, .carousel-fade .carousel-inner>.item.prev.right, .carousel-fade .carousel-inner>.item.active { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }@media (min-width:768px) { #contact .info { padding-left: 35px; } #header .navbar-nav>li>a { padding-top: 25px; padding-bottom: 25px; } #header .navbar-nav>li.active { position: relative; } #header .navbar-nav>li.active:before { content: '\f005'; font-family: FontAwesome; position: absolute; top: 8px; left: 50%; margin: 0 0 0 -5px; font-size: 12px; color: #369eef; } .modal-dialog { width: 700px; } #portfolio .og-expander .container>.row { position: relative; } #portfolio .og-expander .container .details { position: static; } }@media (min-width:992px) { #features .row .i: first-child { text-align: right; } #features .row .i:first-child .icon { float: right; } #portfolio .og-expander .container .fullImage, #portfolio .og-expander .container .details { padding-left: 105px; padding-right: 105px; } #portfolio .og-expander .container .details .og-close { right: 105px; } #header .navbar-nav>li>a { padding-left: 25px; padding-right: 25px; } .modal-dialog { width: 770px; } }@media (min-width:1200px) { #portfolio .og-expander .container .fullImage, #portfolio .og-expander .container .details { padding-left: 54px; padding-right: 54px; } #portfolio .og-expander .container .details .og-close { right: 54px; } }@media (min-width:768px) and (max-width:991px) { #features .i { text-align: center; } #pricing .i .wrap { padding: 6%} #pricing .i .wrap .c { padding: 0 10% 40px 10%} #pricing .btn-lg { padding: 15px 30px; } #team .i .c { padding: 15px; } }@media (min-width:650px) and (max-width:991px) { #portfolio .og-grid>li { width: 40%; height: 290px; } }@media (max-width:650px) { #blog .article { width: 100%} }@media (max-width:767px) { #home { height: auto; } #home .carousel-inner .item { padding: 130px 0 90px 0; } #home .carousel-inner .item .container .content { position: static; -webkit-transform: none; -ms-transform: none; transform: none; } .charts .i { margin-top: 40px; } .charts .i:first-child { margin-top: 0; } .counter .i { margin-top: 50px; } .counter .i:first-child { margin-top: 0; } #portfolio .og-expander .container .details .og-close { width: 70px; height: 70px; line-height: 70px; } }@media (max-width:480px) { #features .i { text-align: center; width: 100%} }@media (min-width:1200px) { .container { width: 1200px; } }
0.436862
0.070432
.user-profile { padding: 30px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; background: white; border: 1px solid #e7e7e7; margin-top: 10px; margin-left: 16px; max-width: 480px; -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out; -ms-transition: all 0.7s ease-out; -o-transition: all 0.7s ease-out; transition: all 0.7s ease-out; } .user-profile .h1 {margin-right: 20px; } .user-profile .h2 {margin-right: 20px; } .user-profile .column {display: flex; flex-direction: column; justify-content: flex-end;} .user-profile .row {display: flex; flex-direction: row; justify-content: space-between;} .user-profile .allergies .column {margin-right: 20px;} .user-profile .allergies { margin-top: 72px; width: 100%; margin-bottom: 45px;} .user-profile .allergies paper-checkbox {margin-bottom: 10px;} .user-profile .activity { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; margin-top: 32px; } .user-profile select { width: 200px; height: 33px; font-family: Roboto, sans-serif; font-size: 14px; font-weight: 300; border: 0px; background-color: none; border-bottom: 1px solid #747474; border-radius: 0px; -webkit-appearance: none; color: #727272; font-size: 16px; font-weight: 300; background: linear-gradient(45deg, transparent 50%, #747474 50%), linear-gradient(135deg, #747474 50%, transparent 50%), linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); background-position: calc(100% - 21px) calc(1em + 2px), calc(100% - 16px) calc(1em + 2px), 100% 0; background-size: 5px 5px, 5px 5px, 2.5em 2.5em; background-repeat: no-repeat; margin-top: 8px; } .user-profile select:focus { outline: none; } .user-profile .input { display: flex; justify-content: center; width: 420px; height: 55px; margin-right: 20px; } .user-profile .text-inputs { display: flex;} .text-inputs .input {width: 200px;} .next-profile { margin-top: 50px !important; align-self: flex-end; box-shadow: 1px 1px 10px #888888 !important; } .next-profile:hover { box-shadow: 1px 1px 20px #888888 !important; }
client/user-profile/user-profile.css
.user-profile { padding: 30px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; background: white; border: 1px solid #e7e7e7; margin-top: 10px; margin-left: 16px; max-width: 480px; -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out; -ms-transition: all 0.7s ease-out; -o-transition: all 0.7s ease-out; transition: all 0.7s ease-out; } .user-profile .h1 {margin-right: 20px; } .user-profile .h2 {margin-right: 20px; } .user-profile .column {display: flex; flex-direction: column; justify-content: flex-end;} .user-profile .row {display: flex; flex-direction: row; justify-content: space-between;} .user-profile .allergies .column {margin-right: 20px;} .user-profile .allergies { margin-top: 72px; width: 100%; margin-bottom: 45px;} .user-profile .allergies paper-checkbox {margin-bottom: 10px;} .user-profile .activity { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; margin-top: 32px; } .user-profile select { width: 200px; height: 33px; font-family: Roboto, sans-serif; font-size: 14px; font-weight: 300; border: 0px; background-color: none; border-bottom: 1px solid #747474; border-radius: 0px; -webkit-appearance: none; color: #727272; font-size: 16px; font-weight: 300; background: linear-gradient(45deg, transparent 50%, #747474 50%), linear-gradient(135deg, #747474 50%, transparent 50%), linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); background-position: calc(100% - 21px) calc(1em + 2px), calc(100% - 16px) calc(1em + 2px), 100% 0; background-size: 5px 5px, 5px 5px, 2.5em 2.5em; background-repeat: no-repeat; margin-top: 8px; } .user-profile select:focus { outline: none; } .user-profile .input { display: flex; justify-content: center; width: 420px; height: 55px; margin-right: 20px; } .user-profile .text-inputs { display: flex;} .text-inputs .input {width: 200px;} .next-profile { margin-top: 50px !important; align-self: flex-end; box-shadow: 1px 1px 10px #888888 !important; } .next-profile:hover { box-shadow: 1px 1px 20px #888888 !important; }
0.30819
0.060585
.nice-dates-navigation { -webkit-box-align: center; align-items: center; color: #000; display: -webkit-box; display: flex; -webkit-box-pack: justify; justify-content: space-between; position: relative; text-align: center; text-transform: capitalize; } .nice-dates-navigation_current { -webkit-box-flex: 1; flex-grow: 1; font-size: 16px; } .nice-dates-navigation_previous, .nice-dates-navigation_next { cursor: pointer; height: 0; padding-bottom: calc(100% / 7); position: relative; width: calc(100% / 7); } .nice-dates-navigation_previous:before, .nice-dates-navigation_next:before { border-right: 2px solid #000; border-top: 2px solid #000; box-sizing: border-box; content: ""; display: block; height: 14px; left: 50%; margin-left: -7px; margin-top: -7px; position: absolute; top: 50%; -webkit-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: 200ms border-color; transition: 200ms border-color; width: 14px; } .nice-dates-navigation_previous:hover:before, .nice-dates-navigation_next:hover:before { border-color: #000; } .nice-dates-navigation_previous.-disabled, .nice-dates-navigation_next.-disabled { cursor: default; pointer-events: none; } .nice-dates-navigation_previous.-disabled:before, .nice-dates-navigation_next.-disabled:before { border-color: #ddd; } .nice-dates-navigation_previous:before { -webkit-transform: rotate(-135deg); transform: rotate(-135deg); } .nice-dates-week-header { box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); display: -webkit-box; display: flex; padding: 8px 0; } .nice-dates-week-header_day { color: #000; font-size: 14px; line-height: 1; text-align: center; text-transform: capitalize; width: calc(100% / 7); } .nice-dates-grid { box-sizing: content-box; overflow: hidden; position: relative; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .nice-dates-grid_container { -webkit-backface-visibility: hidden; backface-visibility: hidden; display: -webkit-box; display: flex; flex-wrap: wrap; left: 0; position: absolute; right: 0; -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -webkit-transition-property: none; transition-property: none; will-change: transform; } .nice-dates-grid_container.-moving .nice-dates-day_date { -webkit-transition: 300ms color; transition: 300ms color; } .nice-dates-grid_container.-origin-bottom { top: auto; bottom: 0; } .nice-dates-grid_container.-origin-top { top: 0; bottom: auto; } .nice-dates-grid_container.-transition { -webkit-transition-property: -webkit-transform; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; } .nice-dates-day { border-top: 1px solid transparent; background-color: #fff; box-sizing: border-box; color: #000; cursor: pointer; font-size: 14px; position: relative; text-align: center; width: calc(100% / 7); -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; } .nice-dates-day_date { -webkit-transition: 150ms color; transition: 150ms color; will-change: color; z-index: 3; } .nice-dates-day_month { color: #000; font-size: 12px; left: 0; line-height: 1; position: absolute; right: 0; text-transform: capitalize; top: 10%; z-index: 3; } .nice-dates-day:before, .nice-dates-day:after { border-radius: 999px; bottom: 0; box-sizing: border-box; content: ""; display: block; left: 0; opacity: 0; position: absolute; right: 0; top: 0; } .nice-dates-day:before { background-color: #4cb050; z-index: 1; } .nice-dates-day:after { border: 2px solid #000; -webkit-transform: scale(0.95); transform: scale(0.95); -webkit-transition-duration: 150ms; transition-duration: 150ms; -webkit-transition-property: opacity, -webkit-transform; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; z-index: 2; } .nice-dates-day:not(.-disabled):hover:after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } @media (hover: none) { .nice-dates-day:after { content: none; } .nice-dates-day.-selected * { color: #fff; } } .nice-dates-day.-selected:before { opacity: 1; } .nice-dates-day.-selected:hover:after { background-color: #fff; } .nice-dates-day.-selected:not(:hover) *, .nice-dates-day.-selected.-disabled * { color: #fff; } .nice-dates-day.-selected.-selected-start:before { border-top-right-radius: 0; border-bottom-right-radius: 0; right: 0; } .nice-dates-day.-selected.-selected-end:before { border-top-left-radius: 0; border-bottom-left-radius: 0; left: 0; } .nice-dates-day.-selected.-selected-middle:before { border-radius: 0; left: 0; right: 0; } .nice-dates-day.-selected.-selected-middle:nth-child(7n+1):before { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .nice-dates-day.-selected.-selected-middle:not(.-end):nth-child(7n):before { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .nice-dates-day.-today { font-weight: 600; } .nice-dates-day.-wide:before, .nice-dates-day.-wide:after { left: 12.5%; right: 12.5%; } .nice-dates-day.-outside { color: #000; } .nice-dates-day.-disabled { cursor: default; pointer-events: none; color: #333; background-color: #f3f2f1; } .nice-dates-popover { background-color: #fff; border-radius: 8px; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12); margin: 8px 0; max-width: 600px; position: absolute; -webkit-transform-origin: top; transform-origin: top; -webkit-transform: perspective(1000px); transform: perspective(1000px); -webkit-transition-property: opacity, -webkit-transform; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; -webkit-transition-duration: 400ms; transition-duration: 400ms; -webkit-transition-timing-function: cubic-bezier(0.4, 0.2, 0, 1.1); transition-timing-function: cubic-bezier(0.4, 0.2, 0, 1.1); width: 100%; will-change: transform, opacity; z-index: 9; } .nice-dates-popover:not(.-open) { opacity: 0; pointer-events: none; -webkit-transform: perspective(1000px) rotateX(-15deg); transform: perspective(1000px) rotateX(-15deg); } .popup { position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; margin: auto; background-color: rgba(0,0,0, 0.5); } .popup\_inner { position: absolute; left: 25%; right: 25%; top: 25%; bottom: 25%; margin: auto; border-radius: 20px; background: white; } .simple-react-notifier { position: fixed; top: 0; right: 0; z-index: 9999; pointer-events: none; padding: 16px; } .simple-react-notifier > * { pointer-events: initial; animation-fill-mode: forwards; } .simple-react-notifier.top-left { left: 0; right: auto; } .simple-react-notifier.top-center { left: 50%; transform: translate(-50%, 0); right: auto; } .simple-react-notifier.bottom-left { top: auto; right: auto; left: 0; bottom: 0; } .simple-react-notifier.bottom-center { top: auto; left: 50%; transform: translate(-50%, 0); right: auto; bottom: 0; } .simple-react-notifier.bottom-right { top: auto; bottom: 0; } .simple-react-notifier .item { position: relative; min-height: 48px; margin-bottom: 16px; padding: 14px 6px; border-radius: 4px; box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2); display: flex; align-items: flex-start; cursor: default; font-size: 14px; line-height: 1.3; color: white; } .simple-react-notifier .item span { margin: 0 20px 0 10px; } .simple-react-notifier .item button { cursor: pointer; color: white; background: transparent; border: 0; position: relative; top: -5px; } .simple-react-notifier .item.success { background: #28a745; border-left: 8px solid #1e7532; } .simple-react-notifier .item.info { background: #077bf7; border-left: 8px solid #055fbe; } .simple-react-notifier .item.error { background: #e23849; border-left: 8px solid #ac1f2d; } .simple-react-notifier .item.warn { background: #ffd9bc; border-left: 8px solid #ffb366; } .simple-react-notifier .item.rtl { direction: rtl; border-left: 0; } .simple-react-notifier .item.rtl.success { border-right: 8px solid #1e7532; } .simple-react-notifier .item.rtl.info { border-right: 8px solid #055fbe; } .simple-react-notifier .item.rtl.error { border-right: 8px solid #ac1f2d; } .simple-react-notifier .item.rtl.warn { border-right: 8px solid #ffb366; }
src/components/style.css
.nice-dates-navigation { -webkit-box-align: center; align-items: center; color: #000; display: -webkit-box; display: flex; -webkit-box-pack: justify; justify-content: space-between; position: relative; text-align: center; text-transform: capitalize; } .nice-dates-navigation_current { -webkit-box-flex: 1; flex-grow: 1; font-size: 16px; } .nice-dates-navigation_previous, .nice-dates-navigation_next { cursor: pointer; height: 0; padding-bottom: calc(100% / 7); position: relative; width: calc(100% / 7); } .nice-dates-navigation_previous:before, .nice-dates-navigation_next:before { border-right: 2px solid #000; border-top: 2px solid #000; box-sizing: border-box; content: ""; display: block; height: 14px; left: 50%; margin-left: -7px; margin-top: -7px; position: absolute; top: 50%; -webkit-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: 200ms border-color; transition: 200ms border-color; width: 14px; } .nice-dates-navigation_previous:hover:before, .nice-dates-navigation_next:hover:before { border-color: #000; } .nice-dates-navigation_previous.-disabled, .nice-dates-navigation_next.-disabled { cursor: default; pointer-events: none; } .nice-dates-navigation_previous.-disabled:before, .nice-dates-navigation_next.-disabled:before { border-color: #ddd; } .nice-dates-navigation_previous:before { -webkit-transform: rotate(-135deg); transform: rotate(-135deg); } .nice-dates-week-header { box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); display: -webkit-box; display: flex; padding: 8px 0; } .nice-dates-week-header_day { color: #000; font-size: 14px; line-height: 1; text-align: center; text-transform: capitalize; width: calc(100% / 7); } .nice-dates-grid { box-sizing: content-box; overflow: hidden; position: relative; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .nice-dates-grid_container { -webkit-backface-visibility: hidden; backface-visibility: hidden; display: -webkit-box; display: flex; flex-wrap: wrap; left: 0; position: absolute; right: 0; -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -webkit-transition-property: none; transition-property: none; will-change: transform; } .nice-dates-grid_container.-moving .nice-dates-day_date { -webkit-transition: 300ms color; transition: 300ms color; } .nice-dates-grid_container.-origin-bottom { top: auto; bottom: 0; } .nice-dates-grid_container.-origin-top { top: 0; bottom: auto; } .nice-dates-grid_container.-transition { -webkit-transition-property: -webkit-transform; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; } .nice-dates-day { border-top: 1px solid transparent; background-color: #fff; box-sizing: border-box; color: #000; cursor: pointer; font-size: 14px; position: relative; text-align: center; width: calc(100% / 7); -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; } .nice-dates-day_date { -webkit-transition: 150ms color; transition: 150ms color; will-change: color; z-index: 3; } .nice-dates-day_month { color: #000; font-size: 12px; left: 0; line-height: 1; position: absolute; right: 0; text-transform: capitalize; top: 10%; z-index: 3; } .nice-dates-day:before, .nice-dates-day:after { border-radius: 999px; bottom: 0; box-sizing: border-box; content: ""; display: block; left: 0; opacity: 0; position: absolute; right: 0; top: 0; } .nice-dates-day:before { background-color: #4cb050; z-index: 1; } .nice-dates-day:after { border: 2px solid #000; -webkit-transform: scale(0.95); transform: scale(0.95); -webkit-transition-duration: 150ms; transition-duration: 150ms; -webkit-transition-property: opacity, -webkit-transform; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; z-index: 2; } .nice-dates-day:not(.-disabled):hover:after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } @media (hover: none) { .nice-dates-day:after { content: none; } .nice-dates-day.-selected * { color: #fff; } } .nice-dates-day.-selected:before { opacity: 1; } .nice-dates-day.-selected:hover:after { background-color: #fff; } .nice-dates-day.-selected:not(:hover) *, .nice-dates-day.-selected.-disabled * { color: #fff; } .nice-dates-day.-selected.-selected-start:before { border-top-right-radius: 0; border-bottom-right-radius: 0; right: 0; } .nice-dates-day.-selected.-selected-end:before { border-top-left-radius: 0; border-bottom-left-radius: 0; left: 0; } .nice-dates-day.-selected.-selected-middle:before { border-radius: 0; left: 0; right: 0; } .nice-dates-day.-selected.-selected-middle:nth-child(7n+1):before { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .nice-dates-day.-selected.-selected-middle:not(.-end):nth-child(7n):before { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .nice-dates-day.-today { font-weight: 600; } .nice-dates-day.-wide:before, .nice-dates-day.-wide:after { left: 12.5%; right: 12.5%; } .nice-dates-day.-outside { color: #000; } .nice-dates-day.-disabled { cursor: default; pointer-events: none; color: #333; background-color: #f3f2f1; } .nice-dates-popover { background-color: #fff; border-radius: 8px; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12); margin: 8px 0; max-width: 600px; position: absolute; -webkit-transform-origin: top; transform-origin: top; -webkit-transform: perspective(1000px); transform: perspective(1000px); -webkit-transition-property: opacity, -webkit-transform; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; -webkit-transition-duration: 400ms; transition-duration: 400ms; -webkit-transition-timing-function: cubic-bezier(0.4, 0.2, 0, 1.1); transition-timing-function: cubic-bezier(0.4, 0.2, 0, 1.1); width: 100%; will-change: transform, opacity; z-index: 9; } .nice-dates-popover:not(.-open) { opacity: 0; pointer-events: none; -webkit-transform: perspective(1000px) rotateX(-15deg); transform: perspective(1000px) rotateX(-15deg); } .popup { position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; margin: auto; background-color: rgba(0,0,0, 0.5); } .popup\_inner { position: absolute; left: 25%; right: 25%; top: 25%; bottom: 25%; margin: auto; border-radius: 20px; background: white; } .simple-react-notifier { position: fixed; top: 0; right: 0; z-index: 9999; pointer-events: none; padding: 16px; } .simple-react-notifier > * { pointer-events: initial; animation-fill-mode: forwards; } .simple-react-notifier.top-left { left: 0; right: auto; } .simple-react-notifier.top-center { left: 50%; transform: translate(-50%, 0); right: auto; } .simple-react-notifier.bottom-left { top: auto; right: auto; left: 0; bottom: 0; } .simple-react-notifier.bottom-center { top: auto; left: 50%; transform: translate(-50%, 0); right: auto; bottom: 0; } .simple-react-notifier.bottom-right { top: auto; bottom: 0; } .simple-react-notifier .item { position: relative; min-height: 48px; margin-bottom: 16px; padding: 14px 6px; border-radius: 4px; box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2); display: flex; align-items: flex-start; cursor: default; font-size: 14px; line-height: 1.3; color: white; } .simple-react-notifier .item span { margin: 0 20px 0 10px; } .simple-react-notifier .item button { cursor: pointer; color: white; background: transparent; border: 0; position: relative; top: -5px; } .simple-react-notifier .item.success { background: #28a745; border-left: 8px solid #1e7532; } .simple-react-notifier .item.info { background: #077bf7; border-left: 8px solid #055fbe; } .simple-react-notifier .item.error { background: #e23849; border-left: 8px solid #ac1f2d; } .simple-react-notifier .item.warn { background: #ffd9bc; border-left: 8px solid #ffb366; } .simple-react-notifier .item.rtl { direction: rtl; border-left: 0; } .simple-react-notifier .item.rtl.success { border-right: 8px solid #1e7532; } .simple-react-notifier .item.rtl.info { border-right: 8px solid #055fbe; } .simple-react-notifier .item.rtl.error { border-right: 8px solid #ac1f2d; } .simple-react-notifier .item.rtl.warn { border-right: 8px solid #ffb366; }
0.395835
0.072966
html { /* Prevent font scaling in landscape while allowing user zoom */ -webkit-text-size-adjust: 100%; } body { font-family: "Source Serif", Georgia, serif; font-size: 17px; line-height: 1.4em; } body.has-js .no-js, body.no-js .has-js { display: none !important; } img { max-width: 100%; } a { text-decoration: none; color: #0645ad; } /** * Top-level elements. * * There are two main elements: #navbar and #content. Both have a maximum * width, and is centered when the viewport is wider than that. * * #navbar is wrapped by #navbar-container, a black stripe that always span * the entire viewport. **/ #navbar-container { width: 100%; color: white; background-color: #1a1a1a; padding: 12px 0; } #content, #navbar { max-width: 1024px; margin: 0 auto; padding: 0 4%; } /** * Elements in the navbar. * * The navbar is made up of two elements, #site-title and ul#nav-list. The * latter contains li.nav-item which contains an a.nav-link. */ #site-title, #nav-list { display: inline-block; /* Add spacing between lines when the navbar cannot fit in one line. */ line-height: 1.4em; } #site-title { font-size: 1.2em; margin-right: 0.6em; /* Move the title upward 1px so that it looks more aligned with the * category list. */ position: relative; top: 1px; } #site-title a { color: #5b5; } .nav-item { list-style: none; display: inline-block; } .nav-link { color: white; } .nav-link > code { padding: 0px 0.5em; } .nav-link:hover { background-color: #444; } .nav-link.current { color: black; background-color: white; } .nav-item + .nav-item::before { content: "|"; } /** * Article header. **/ .timestamp { margin-bottom: 0.6em; } .article-title { padding: 16px 0; border-bottom: solid 1px #667; } /* Extra level needed to be more specific than .article h1 */ .article .article-title h1 { font-size: 1.5em; margin: 0; padding: 0; border: none; } /** * Article content. **/ .article-content { padding-top: 32px; } .article p, .article ul, .article pre { margin-bottom: 16px; } .article li { margin: 0.5em 0; } .article li > p { margin: 1em 0; } /* Block code. */ .article pre { padding: 1em; overflow: auto; } /* Inline code. */ .article p code { padding: 0.1em 0; } .article p code::before, .article p code::after { letter-spacing: -0.2em; content: "\00a0"; } code, pre { font-family: "Fira Mono", Menlo, "Roboto Mono", Consolas, monospace; } .article code, .article pre { background-color: #f0f0f0; border-radius: 3px; } /* This doesn't have p, so that it also applies to ttyshots. */ .article code { font-size: 85%; } /* We only use h1 to h3. */ .article h1, .article h2, .article h3 { line-height: 1.25; } .article h1, .article h2, .article h3 { margin-top: 24px; margin-bottom: 20px; font-weight: bold; } .article h1 { font-size: 1.3em; padding-bottom: 0.4em; border-bottom: 1px solid #aaa; } .article h2 { font-size: 1.2em; } .article h3 { font-style: italic; } .article ul, .article ol { margin-left: 1em; } /** * Table of content. */ .toc { background-color: #f0f0f0; padding: 1em; margin: 0 16px 16px 0; border-radius: 6px; line-height: 1; } /* The first <h1> clears the TOC */ .article-content h1 { clear: both; } #toc-list { margin-left: -0.6em; } @media (min-width: 600px) and (max-width: 899px) { #toc-list { column-count: 2; } } @media (min-width: 900px) { #toc-list { column-count: 3; } } #toc-list li { list-style: none; /* Keep first-level ToC within one column */ break-inside: avoid; } /** * Category content. **/ #content.category { padding-top: 16px; } .category-prelude, .group-intro, .article-list { margin-top: 16px; } .article-list > li { list-style: square inside; padding: 3px; } .article-list > li:hover { background-color: #c0c0c0; } .article-link, .article-link:visited { color: black; display: inline; line-height: 1.4em; border-bottom: 1px solid black; } .article-timestamp { float: right; display: inline-block; margin-left: 1em; } /** * Layout utilities. **/ .clear { clear: both; } .no-display { display: none !important; } /** * Miscellous elements. **/ hr { clear: both; border-color: #aaa; text-align: center; } hr:after { content: "❧"; text-shadow: 0px 0px 2px #667; display: inline-block; position: relative; top: -0.5em; padding: 0 0.25em; font-size: 1.1em; color: black; background-color: white; } .key { display: inline-block; border: 1px solid black; border-radius: 3px; padding: 0 2px; margin: 1px; font-size: 85%; font-family: "Lucida Grande", Arial, sans-serif; } /** Section numbers generated by pandoc */ .header-section-number:after, .toc-section-number:after { content: "."; } /** * TTY shots. */ pre.ttyshot { font-size: 12pt; line-height: 1 !important; border: 1px solid black; display: inline-block; margin-bottom: 0 !important; } pre.ttyshot, pre.ttyshot code { background-color: white; } @media screen and (max-width: 600px) { pre.ttyshot { font-size: 2.6vw; } } /* SGR classes, used in ttyshots. */ .sgr-1 { font-weight: bold; } .sgr-4 { text-decoration: underline; } .sgr-7 { color: white; background-color: black; } .sgr-31 { color: darkred; /* red in tty */ } .sgr-41 { background-color: darkred; /* red in tty */ } .sgr-32 { color: green; /* green in tty */ } .sgr-42, .sgr-7.sgr-32 { background-color: green; /* green in tty */ } .sgr-33 { color: goldenrod; /* yellow in tty */ } .sgr-43, .sgr-7.sgr-33 { background-color: goldenrod; /* yellow in tty */ } .sgr-34 { color: blue; } .sgr-44, .sgr-7.sgr-34 { color: white; /* Hacky hacky, just to make the nav ttyshot work */ background-color: blue; } .sgr-35 { color: darkorchid; /* magenta in tty */ } .sgr-45, .sgr-7.sgr-35 { background-color: darkorchid; /* magenta in tty */ } .sgr-36 { color: darkcyan; /* cyan in tty */ } .sgr-46, .sgr-7.sgr-36 { background-color: darkcyan; /* cyan in tty */ } .sgr-37 { color: lightgray; } .sgr-47, .sgr-7.sgr-37 { background-color: gray; } /** Header anchors. */ .anchor { opacity: 0; font-size: 90%; color: inherit; padding-left: 0.15em; } *:hover > .anchor { opacity: 1; } /** * Dark theme. */ .dark { color: #eee; background: black; } .dark a { color: #6da2fa; } .dark a:visited { color: #7e72ff; } .dark .article-link, .dark .article-link:visited { color: #eee; border-color: white; } .dark .article-list > li:hover { background-color: #333; } .dark .article code, .dark .article pre { background-color: #181818; } .dark .toc { background-color: #181818; } .dark hr { border-color: #eee; } .dark hr:after { color: #eee; background-color: black; } .dark pre.ttyshot, .dark pre.ttyshot code { background: black; } .dark .sgr-7 { color: black; background-color: #eee; } table { border-collapse: collapse; width: 100%; margin-bottom: 16px; } td, th { border: 1px solid #aaa; text-align: left; padding: 0.4em; } .dark td, .dark th { border-color: #444; }
website/style.css
html { /* Prevent font scaling in landscape while allowing user zoom */ -webkit-text-size-adjust: 100%; } body { font-family: "Source Serif", Georgia, serif; font-size: 17px; line-height: 1.4em; } body.has-js .no-js, body.no-js .has-js { display: none !important; } img { max-width: 100%; } a { text-decoration: none; color: #0645ad; } /** * Top-level elements. * * There are two main elements: #navbar and #content. Both have a maximum * width, and is centered when the viewport is wider than that. * * #navbar is wrapped by #navbar-container, a black stripe that always span * the entire viewport. **/ #navbar-container { width: 100%; color: white; background-color: #1a1a1a; padding: 12px 0; } #content, #navbar { max-width: 1024px; margin: 0 auto; padding: 0 4%; } /** * Elements in the navbar. * * The navbar is made up of two elements, #site-title and ul#nav-list. The * latter contains li.nav-item which contains an a.nav-link. */ #site-title, #nav-list { display: inline-block; /* Add spacing between lines when the navbar cannot fit in one line. */ line-height: 1.4em; } #site-title { font-size: 1.2em; margin-right: 0.6em; /* Move the title upward 1px so that it looks more aligned with the * category list. */ position: relative; top: 1px; } #site-title a { color: #5b5; } .nav-item { list-style: none; display: inline-block; } .nav-link { color: white; } .nav-link > code { padding: 0px 0.5em; } .nav-link:hover { background-color: #444; } .nav-link.current { color: black; background-color: white; } .nav-item + .nav-item::before { content: "|"; } /** * Article header. **/ .timestamp { margin-bottom: 0.6em; } .article-title { padding: 16px 0; border-bottom: solid 1px #667; } /* Extra level needed to be more specific than .article h1 */ .article .article-title h1 { font-size: 1.5em; margin: 0; padding: 0; border: none; } /** * Article content. **/ .article-content { padding-top: 32px; } .article p, .article ul, .article pre { margin-bottom: 16px; } .article li { margin: 0.5em 0; } .article li > p { margin: 1em 0; } /* Block code. */ .article pre { padding: 1em; overflow: auto; } /* Inline code. */ .article p code { padding: 0.1em 0; } .article p code::before, .article p code::after { letter-spacing: -0.2em; content: "\00a0"; } code, pre { font-family: "Fira Mono", Menlo, "Roboto Mono", Consolas, monospace; } .article code, .article pre { background-color: #f0f0f0; border-radius: 3px; } /* This doesn't have p, so that it also applies to ttyshots. */ .article code { font-size: 85%; } /* We only use h1 to h3. */ .article h1, .article h2, .article h3 { line-height: 1.25; } .article h1, .article h2, .article h3 { margin-top: 24px; margin-bottom: 20px; font-weight: bold; } .article h1 { font-size: 1.3em; padding-bottom: 0.4em; border-bottom: 1px solid #aaa; } .article h2 { font-size: 1.2em; } .article h3 { font-style: italic; } .article ul, .article ol { margin-left: 1em; } /** * Table of content. */ .toc { background-color: #f0f0f0; padding: 1em; margin: 0 16px 16px 0; border-radius: 6px; line-height: 1; } /* The first <h1> clears the TOC */ .article-content h1 { clear: both; } #toc-list { margin-left: -0.6em; } @media (min-width: 600px) and (max-width: 899px) { #toc-list { column-count: 2; } } @media (min-width: 900px) { #toc-list { column-count: 3; } } #toc-list li { list-style: none; /* Keep first-level ToC within one column */ break-inside: avoid; } /** * Category content. **/ #content.category { padding-top: 16px; } .category-prelude, .group-intro, .article-list { margin-top: 16px; } .article-list > li { list-style: square inside; padding: 3px; } .article-list > li:hover { background-color: #c0c0c0; } .article-link, .article-link:visited { color: black; display: inline; line-height: 1.4em; border-bottom: 1px solid black; } .article-timestamp { float: right; display: inline-block; margin-left: 1em; } /** * Layout utilities. **/ .clear { clear: both; } .no-display { display: none !important; } /** * Miscellous elements. **/ hr { clear: both; border-color: #aaa; text-align: center; } hr:after { content: "❧"; text-shadow: 0px 0px 2px #667; display: inline-block; position: relative; top: -0.5em; padding: 0 0.25em; font-size: 1.1em; color: black; background-color: white; } .key { display: inline-block; border: 1px solid black; border-radius: 3px; padding: 0 2px; margin: 1px; font-size: 85%; font-family: "Lucida Grande", Arial, sans-serif; } /** Section numbers generated by pandoc */ .header-section-number:after, .toc-section-number:after { content: "."; } /** * TTY shots. */ pre.ttyshot { font-size: 12pt; line-height: 1 !important; border: 1px solid black; display: inline-block; margin-bottom: 0 !important; } pre.ttyshot, pre.ttyshot code { background-color: white; } @media screen and (max-width: 600px) { pre.ttyshot { font-size: 2.6vw; } } /* SGR classes, used in ttyshots. */ .sgr-1 { font-weight: bold; } .sgr-4 { text-decoration: underline; } .sgr-7 { color: white; background-color: black; } .sgr-31 { color: darkred; /* red in tty */ } .sgr-41 { background-color: darkred; /* red in tty */ } .sgr-32 { color: green; /* green in tty */ } .sgr-42, .sgr-7.sgr-32 { background-color: green; /* green in tty */ } .sgr-33 { color: goldenrod; /* yellow in tty */ } .sgr-43, .sgr-7.sgr-33 { background-color: goldenrod; /* yellow in tty */ } .sgr-34 { color: blue; } .sgr-44, .sgr-7.sgr-34 { color: white; /* Hacky hacky, just to make the nav ttyshot work */ background-color: blue; } .sgr-35 { color: darkorchid; /* magenta in tty */ } .sgr-45, .sgr-7.sgr-35 { background-color: darkorchid; /* magenta in tty */ } .sgr-36 { color: darkcyan; /* cyan in tty */ } .sgr-46, .sgr-7.sgr-36 { background-color: darkcyan; /* cyan in tty */ } .sgr-37 { color: lightgray; } .sgr-47, .sgr-7.sgr-37 { background-color: gray; } /** Header anchors. */ .anchor { opacity: 0; font-size: 90%; color: inherit; padding-left: 0.15em; } *:hover > .anchor { opacity: 1; } /** * Dark theme. */ .dark { color: #eee; background: black; } .dark a { color: #6da2fa; } .dark a:visited { color: #7e72ff; } .dark .article-link, .dark .article-link:visited { color: #eee; border-color: white; } .dark .article-list > li:hover { background-color: #333; } .dark .article code, .dark .article pre { background-color: #181818; } .dark .toc { background-color: #181818; } .dark hr { border-color: #eee; } .dark hr:after { color: #eee; background-color: black; } .dark pre.ttyshot, .dark pre.ttyshot code { background: black; } .dark .sgr-7 { color: black; background-color: #eee; } table { border-collapse: collapse; width: 100%; margin-bottom: 16px; } td, th { border: 1px solid #aaa; text-align: left; padding: 0.4em; } .dark td, .dark th { border-color: #444; }
0.418578
0.09187
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap"); body { margin: 0; background-color: #F5F6F7; } a { cursor: pointer; } /* Header */ .header { display: flex; align-items: center; justify-content: space-between; position: fixed; width: auto; left: 0%; right: 0%; top: 0%; bottom: 0%; background: #FFFFFF; box-shadow: inset 0px -1px 0px #D1D2D6; z-index: 100; } .header-logo { font-family: Roboto Slab; font-style: normal; font-weight: bold; color: #1A1B22; } .header-nav { display: flex; justify-content: space-between; align-items: center; height: 100%; } .header-main-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .header-saved-articles-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .header-saved-articles-link:hover { box-shadow: inset 0px -2px 0px #1A1B22; } .header-main-link:hover { box-shadow: inset 0px -2px 0px #1A1B22; } .header-profile { border: 1px solid #1A1B22; box-sizing: border-box; border-radius: 100px; background-color: #FFFFFF; justify-self: center; } .header-profile-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .img-logout { vertical-align: bottom; } /* Main */ .main { background-color: #F5F6F7; } .title { background-color: #FFFFFF; display: flex; flex-direction: column; } .title-category { font-family: Roboto; font-style: normal; font-weight: normal; color: rgba(26, 27, 34, 0.5); } .title-title { font-family: Roboto Slab; font-style: normal; font-weight: normal; color: #1A1B22; margin: 0; } .title-keywords { font-family: Roboto; font-style: normal; font-weight: normal; color: #1A1B22; margin: 0; } /* Saved news */ .saved-news { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; } .saved-news-item { border-radius: 16px; overflow: hidden; position: relative; background: #fff; } .news-top { display: flex; flex-direction: row; justify-content: space-between; position:absolute; text-align: center; } .news-keyword { font-family: Roboto; font-style: normal; font-weight: 500; text-align: center; border-radius: 10px; background: #fff; justify-self: start; align-self: center; } .news-remove { display: flex; } .news-bin{ border-radius: 10px; background: #fff; border: none; cursor: pointer; justify-self: end; } .bin { color: #B6BCBF; } .svg-path { stroke:inherit; stroke-width:inherit; fill: #B6BCBF; } .news-bin:hover .svg-path { fill:black; stroke: black; } .tooltip-bin { font-family: Roboto; font-style: normal; font-weight: 500; border-radius: 10px; background: #fff; text-align: center; //align-self: end; visibility: visible; //hidden } .news-bin:hover .tooltip-bin { visibility: visible; } .news-image { } .news-date { font-family: Source Sans Pro; font-style: normal; font-weight: normal; color: #B6BCBF; } .news-title { font-family: Roboto Slab; font-style: normal; font-weight: normal; color: #1A1B22; } .news-summary { font-family: Roboto; font-style: normal; font-weight: normal; color: #1A1B22; } .news-source-container { position: absolute; bottom:0; } .news-source { font-family: Roboto Slab; font-style: normal; font-weight: bold; text-transform: uppercase; color: #B6BCBF; } /* Footer */ .footer { display:flex; flex-direction: row; justify-content: space-between; position: relative; background: #FFFFFF; align-items: center; } .footer-rights { font-family: Roboto; font-style: normal; font-weight: normal; color: #B6BCBF; } .footer-nav { display:flex; flex-direction: row; text-decoration: none; } .footer-social-media { display:flex; flex-direction: row; gap:24px; } .footer-link { text-decoration: none; justify-self: center; font-family: Roboto; font-style: normal; font-weight: normal; text-align: center; color: #1A1B22; } .footer-social-media-link { text-decoration: none; justify-self: end; } .img-sm { height: 20px; width: 20px; } @media screen and (min-width: 768px) { .header { height: 80px; padding-left: min(104px, 8%); padding-right: min(104px, 8%); } .header-logo { font-size: 20px; line-height: 24px; height: 30%; } .header-main-link { font-size: 18px; line-height: 24px; padding-top: min(30px, 37%); padding-bottom: min(26px, 32%); } .header-saved-articles-link { font-size: 18px; line-height: 24px; padding-top: min(30px, 37%); padding-bottom: min(26px, 32%); margin: 0 30px; } .header-profile { height: 60%; padding: 12px 10px; font-size: 18px; line-height: 24px; width: auto; } .header-profile-link { height: 100%; } .img-logout { height:24px; width:24px; } .burger-button { display:none; } .main { height: auto; width: auto; } .title { padding-left: min(104px, 8%); padding-right: min(104px, 8%); padding-top: 120px; padding-bottom: 32px; gap: 30px; } .title-category { font-size: 18px; line-height: 24px; } .title-title { font-size: 40px; line-height: 46px; } .title-keywords { font-size: 18px; line-height: 24px; } .saved-news { padding-left: min(104px, 8%); padding-right: min(104px, 8%); padding-top: min(62px, 4%); padding-bottom: min(62px, 4%); } .saved-news-item { width: 400px; height: 576px; } .news-top { width: 100%; } .news-keyword { font-size: 14px; line-height: 24px; margin: 24px; padding: 8px 12px; } .news-bin{ margin: 24px; padding: 8px; } .bin { width: 24px; height: 24px; } .tooltip-bin { font-size: 12px; line-height: 14px; margin: 24px 0; padding: 12px 5px; } .news-date { font-size: 18px; line-height: 24px; padding-top: 20px; padding-left: 24px; padding-bottom: 12px; } .news-image { width: 100%; height: 47%; } .news-title { font-size: 26px; line-height: 30px; padding-left: 24px; padding-bottom: 12px; } .news-summary { font-size: 16px; line-height: 22px; padding-left: 24px; padding-bottom: 12px; } .news-source { font-size: 16px; line-height: 20px; letter-spacing: 0.4px; } .news-source-container { margin-bottom: 20px; padding: 0 24px; } .footer { padding-left: min(104px, 8%); padding-right: min(104px, 8%); } .footer-rights { font-size: 16px; line-height: 22px; height: 30%; margin: 3% 0; } .footer-nav { height: 30%; gap:40px; } .footer-social-media { height: 30%; } .footer-link { font-size: 18px; line-height: 24px; } } @media screen and (max-width: 768px) { .header { height: 56px; width: 100%; box-sizing: border-box; padding-left: 16px; padding-right: 16px; } .header-logo { font-size: 16px; line-height: 24px; height: 40%; } .header-nav { display: none; } .burger-button { background-color: #fff; border:none; width: auto; text-align: end; justify-self: end; } .burger { width: 24px; height: 24px; } .main { height: auto; } .title { padding-left: 16px; padding-right: 16px; padding-top: 64px; padding-bottom: 4%; gap: 16px; } .title-category { font-size: 12px; line-height: 24px; } .title-title { font-size: 30px; line-height: 34px; } .title-keywords { font-size: 18px; line-height: 24px; } .saved-news { padding: 24px 16px; justify-content: center; gap: 9px; } .saved-news-item { //width: 288px; //height: 440px; width: 70%; height: auto; } .news-top { width: 100%; } .news-keyword { font-size: 14px; line-height: 18px; margin: 16px; padding: 8px 10px; } .news-bin{ margin: 16px; padding: 8px; width: auto; } .bin { width: 24px; height: 24px; } .tooltip-bin { display: none; } .news-date { font-size: 18px; line-height: 24px; padding-top: 3.6%; padding-left: 5%; padding-bottom: 2.3%; } .news-image { width: 100%; height: 44%; } .news-title { font-size: 22px; line-height: 26px; padding-left: 5%; padding-bottom: 12px; } .news-summary { font-size: 12px; line-height: 18px; padding-left: 5%; padding-bottom: 12px; } .news-source-container { margin-bottom: 5%; padding: 0 5%; } .news-source { font-size: 12px; line-height: 18px; letter-spacing: 0.4px; } .footer { padding-left: 16px; padding-right: 16px; height:auto; display: flex; flex-direction: column; } .footer-rights { font-size: 16px; line-height: 22px; height: 30%; margin: 3% 0; } .footer-nav { width: 100%; display:flex; flex-direction: column; justify-content: space-between; order: -1; gap: 15px; align-items: flex-start; margin: 20px 16px; } .footer-social-media { height: 30%; position:absolute; right: 16px; } .footer-link { font-size: 18px; line-height: 24px; } }
css/style.css
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap"); body { margin: 0; background-color: #F5F6F7; } a { cursor: pointer; } /* Header */ .header { display: flex; align-items: center; justify-content: space-between; position: fixed; width: auto; left: 0%; right: 0%; top: 0%; bottom: 0%; background: #FFFFFF; box-shadow: inset 0px -1px 0px #D1D2D6; z-index: 100; } .header-logo { font-family: Roboto Slab; font-style: normal; font-weight: bold; color: #1A1B22; } .header-nav { display: flex; justify-content: space-between; align-items: center; height: 100%; } .header-main-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .header-saved-articles-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .header-saved-articles-link:hover { box-shadow: inset 0px -2px 0px #1A1B22; } .header-main-link:hover { box-shadow: inset 0px -2px 0px #1A1B22; } .header-profile { border: 1px solid #1A1B22; box-sizing: border-box; border-radius: 100px; background-color: #FFFFFF; justify-self: center; } .header-profile-link { font-family: Roboto; font-style: normal; font-weight: 500; color: #1A1B22; text-decoration: none; } .img-logout { vertical-align: bottom; } /* Main */ .main { background-color: #F5F6F7; } .title { background-color: #FFFFFF; display: flex; flex-direction: column; } .title-category { font-family: Roboto; font-style: normal; font-weight: normal; color: rgba(26, 27, 34, 0.5); } .title-title { font-family: Roboto Slab; font-style: normal; font-weight: normal; color: #1A1B22; margin: 0; } .title-keywords { font-family: Roboto; font-style: normal; font-weight: normal; color: #1A1B22; margin: 0; } /* Saved news */ .saved-news { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; } .saved-news-item { border-radius: 16px; overflow: hidden; position: relative; background: #fff; } .news-top { display: flex; flex-direction: row; justify-content: space-between; position:absolute; text-align: center; } .news-keyword { font-family: Roboto; font-style: normal; font-weight: 500; text-align: center; border-radius: 10px; background: #fff; justify-self: start; align-self: center; } .news-remove { display: flex; } .news-bin{ border-radius: 10px; background: #fff; border: none; cursor: pointer; justify-self: end; } .bin { color: #B6BCBF; } .svg-path { stroke:inherit; stroke-width:inherit; fill: #B6BCBF; } .news-bin:hover .svg-path { fill:black; stroke: black; } .tooltip-bin { font-family: Roboto; font-style: normal; font-weight: 500; border-radius: 10px; background: #fff; text-align: center; //align-self: end; visibility: visible; //hidden } .news-bin:hover .tooltip-bin { visibility: visible; } .news-image { } .news-date { font-family: Source Sans Pro; font-style: normal; font-weight: normal; color: #B6BCBF; } .news-title { font-family: Roboto Slab; font-style: normal; font-weight: normal; color: #1A1B22; } .news-summary { font-family: Roboto; font-style: normal; font-weight: normal; color: #1A1B22; } .news-source-container { position: absolute; bottom:0; } .news-source { font-family: Roboto Slab; font-style: normal; font-weight: bold; text-transform: uppercase; color: #B6BCBF; } /* Footer */ .footer { display:flex; flex-direction: row; justify-content: space-between; position: relative; background: #FFFFFF; align-items: center; } .footer-rights { font-family: Roboto; font-style: normal; font-weight: normal; color: #B6BCBF; } .footer-nav { display:flex; flex-direction: row; text-decoration: none; } .footer-social-media { display:flex; flex-direction: row; gap:24px; } .footer-link { text-decoration: none; justify-self: center; font-family: Roboto; font-style: normal; font-weight: normal; text-align: center; color: #1A1B22; } .footer-social-media-link { text-decoration: none; justify-self: end; } .img-sm { height: 20px; width: 20px; } @media screen and (min-width: 768px) { .header { height: 80px; padding-left: min(104px, 8%); padding-right: min(104px, 8%); } .header-logo { font-size: 20px; line-height: 24px; height: 30%; } .header-main-link { font-size: 18px; line-height: 24px; padding-top: min(30px, 37%); padding-bottom: min(26px, 32%); } .header-saved-articles-link { font-size: 18px; line-height: 24px; padding-top: min(30px, 37%); padding-bottom: min(26px, 32%); margin: 0 30px; } .header-profile { height: 60%; padding: 12px 10px; font-size: 18px; line-height: 24px; width: auto; } .header-profile-link { height: 100%; } .img-logout { height:24px; width:24px; } .burger-button { display:none; } .main { height: auto; width: auto; } .title { padding-left: min(104px, 8%); padding-right: min(104px, 8%); padding-top: 120px; padding-bottom: 32px; gap: 30px; } .title-category { font-size: 18px; line-height: 24px; } .title-title { font-size: 40px; line-height: 46px; } .title-keywords { font-size: 18px; line-height: 24px; } .saved-news { padding-left: min(104px, 8%); padding-right: min(104px, 8%); padding-top: min(62px, 4%); padding-bottom: min(62px, 4%); } .saved-news-item { width: 400px; height: 576px; } .news-top { width: 100%; } .news-keyword { font-size: 14px; line-height: 24px; margin: 24px; padding: 8px 12px; } .news-bin{ margin: 24px; padding: 8px; } .bin { width: 24px; height: 24px; } .tooltip-bin { font-size: 12px; line-height: 14px; margin: 24px 0; padding: 12px 5px; } .news-date { font-size: 18px; line-height: 24px; padding-top: 20px; padding-left: 24px; padding-bottom: 12px; } .news-image { width: 100%; height: 47%; } .news-title { font-size: 26px; line-height: 30px; padding-left: 24px; padding-bottom: 12px; } .news-summary { font-size: 16px; line-height: 22px; padding-left: 24px; padding-bottom: 12px; } .news-source { font-size: 16px; line-height: 20px; letter-spacing: 0.4px; } .news-source-container { margin-bottom: 20px; padding: 0 24px; } .footer { padding-left: min(104px, 8%); padding-right: min(104px, 8%); } .footer-rights { font-size: 16px; line-height: 22px; height: 30%; margin: 3% 0; } .footer-nav { height: 30%; gap:40px; } .footer-social-media { height: 30%; } .footer-link { font-size: 18px; line-height: 24px; } } @media screen and (max-width: 768px) { .header { height: 56px; width: 100%; box-sizing: border-box; padding-left: 16px; padding-right: 16px; } .header-logo { font-size: 16px; line-height: 24px; height: 40%; } .header-nav { display: none; } .burger-button { background-color: #fff; border:none; width: auto; text-align: end; justify-self: end; } .burger { width: 24px; height: 24px; } .main { height: auto; } .title { padding-left: 16px; padding-right: 16px; padding-top: 64px; padding-bottom: 4%; gap: 16px; } .title-category { font-size: 12px; line-height: 24px; } .title-title { font-size: 30px; line-height: 34px; } .title-keywords { font-size: 18px; line-height: 24px; } .saved-news { padding: 24px 16px; justify-content: center; gap: 9px; } .saved-news-item { //width: 288px; //height: 440px; width: 70%; height: auto; } .news-top { width: 100%; } .news-keyword { font-size: 14px; line-height: 18px; margin: 16px; padding: 8px 10px; } .news-bin{ margin: 16px; padding: 8px; width: auto; } .bin { width: 24px; height: 24px; } .tooltip-bin { display: none; } .news-date { font-size: 18px; line-height: 24px; padding-top: 3.6%; padding-left: 5%; padding-bottom: 2.3%; } .news-image { width: 100%; height: 44%; } .news-title { font-size: 22px; line-height: 26px; padding-left: 5%; padding-bottom: 12px; } .news-summary { font-size: 12px; line-height: 18px; padding-left: 5%; padding-bottom: 12px; } .news-source-container { margin-bottom: 5%; padding: 0 5%; } .news-source { font-size: 12px; line-height: 18px; letter-spacing: 0.4px; } .footer { padding-left: 16px; padding-right: 16px; height:auto; display: flex; flex-direction: column; } .footer-rights { font-size: 16px; line-height: 22px; height: 30%; margin: 3% 0; } .footer-nav { width: 100%; display:flex; flex-direction: column; justify-content: space-between; order: -1; gap: 15px; align-items: flex-start; margin: 20px 16px; } .footer-social-media { height: 30%; position:absolute; right: 16px; } .footer-link { font-size: 18px; line-height: 24px; } }
0.362179
0.136062
body{ user-select: none; } .BtGlt, .BtGlt::after { width: 440px; height: 86px; font-size: 36px; font-family: 'Alegreya Sans SC'; background: linear-gradient( 45deg , transparent 5%, #0e9243 5%); border: 0; color: #fff; letter-spacing: 3px; line-height: 88px; box-shadow: 6px 0px 0px #a54b28; outline: transparent; position: absolute; transform: translate3d(33pc, -11pc, 0px); padding-left: 35px; } .BtGlt::after { --slice-0: inset(50% 50% 50% 50%); --slice-1: inset(80% -6px 0 0); --slice-2: inset(50% -6px 30% 0); --slice-3: inset(10% -6px 85% 0); --slice-4: inset(40% -6px 43% 0); --slice-5: inset(80% -6px 5% 0); content: "Join/Create Seminar"; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient( 45deg , transparent 3%, #a54b28 3%, #a54b28 5%, #0e9243 5% ); text-shadow: -3px -3px 0px #f8f005, 3px 3px 0px #00e6f6; clip-path: var(--slice-0); } .BtGlt:hover::after { animation: 1s glitch; animation-timing-function: steps(2, end); } @keyframes glitch { 0% { clip-path: var(--slice-1); transform: translate(-20px, -10px); } 10% { clip-path: var(--slice-3); transform: translate(10px, 10px); } 20% { clip-path: var(--slice-1); transform: translate(-10px, 10px); } 30% { clip-path: var(--slice-3); transform: translate(0px, 5px); } 40% { clip-path: var(--slice-2); transform: translate(-5px, 0px); } 50% { clip-path: var(--slice-3); transform: translate(5px, 0px); } 60% { clip-path: var(--slice-4); transform: translate(5px, 10px); } 70% { clip-path: var(--slice-2); transform: translate(-10px, 10px); } 80% { clip-path: var(--slice-5); transform: translate(20px, -10px); } 90% { clip-path: var(--slice-1); transform: translate(-10px, 0px); } 100% { clip-path: var(--slice-1); transform: translate(0); } } .SemGuest{ position: absolute; transform: translate3d(33.7pc, -11pc, 0px); font-family: inherit; mix-blend-mode: color-burn; }
DynamoCore/public/css/Seminar/semMain.css
body{ user-select: none; } .BtGlt, .BtGlt::after { width: 440px; height: 86px; font-size: 36px; font-family: 'Alegreya Sans SC'; background: linear-gradient( 45deg , transparent 5%, #0e9243 5%); border: 0; color: #fff; letter-spacing: 3px; line-height: 88px; box-shadow: 6px 0px 0px #a54b28; outline: transparent; position: absolute; transform: translate3d(33pc, -11pc, 0px); padding-left: 35px; } .BtGlt::after { --slice-0: inset(50% 50% 50% 50%); --slice-1: inset(80% -6px 0 0); --slice-2: inset(50% -6px 30% 0); --slice-3: inset(10% -6px 85% 0); --slice-4: inset(40% -6px 43% 0); --slice-5: inset(80% -6px 5% 0); content: "Join/Create Seminar"; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient( 45deg , transparent 3%, #a54b28 3%, #a54b28 5%, #0e9243 5% ); text-shadow: -3px -3px 0px #f8f005, 3px 3px 0px #00e6f6; clip-path: var(--slice-0); } .BtGlt:hover::after { animation: 1s glitch; animation-timing-function: steps(2, end); } @keyframes glitch { 0% { clip-path: var(--slice-1); transform: translate(-20px, -10px); } 10% { clip-path: var(--slice-3); transform: translate(10px, 10px); } 20% { clip-path: var(--slice-1); transform: translate(-10px, 10px); } 30% { clip-path: var(--slice-3); transform: translate(0px, 5px); } 40% { clip-path: var(--slice-2); transform: translate(-5px, 0px); } 50% { clip-path: var(--slice-3); transform: translate(5px, 0px); } 60% { clip-path: var(--slice-4); transform: translate(5px, 10px); } 70% { clip-path: var(--slice-2); transform: translate(-10px, 10px); } 80% { clip-path: var(--slice-5); transform: translate(20px, -10px); } 90% { clip-path: var(--slice-1); transform: translate(-10px, 0px); } 100% { clip-path: var(--slice-1); transform: translate(0); } } .SemGuest{ position: absolute; transform: translate3d(33.7pc, -11pc, 0px); font-family: inherit; mix-blend-mode: color-burn; }
0.536799
0.199094
.scrollbar-deep-purple::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-deep-purple::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-deep-purple::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #512da8; } .scrollbar-cyan::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-cyan::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-cyan::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #00bcd4; } .scrollbar-dusty-grass::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-dusty-grass::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-dusty-grass::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%); background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); } .scrollbar-ripe-malinka::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-ripe-malinka::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-ripe-malinka::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%); background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); } .bordered-deep-purple::-webkit-scrollbar-track { -webkit-box-shadow: none; border: 1px solid #512da8; } .bordered-deep-purple::-webkit-scrollbar-thumb { -webkit-box-shadow: none; } .bordered-cyan::-webkit-scrollbar-track { -webkit-box-shadow: none; border: 1px solid #00bcd4; } .bordered-cyan::-webkit-scrollbar-thumb { -webkit-box-shadow: none; } .square::-webkit-scrollbar-track { border-radius: 0 !important; } .square::-webkit-scrollbar-thumb { border-radius: 0 !important; } .thin::-webkit-scrollbar { width: 3px; } .scrollbar-juicy-peach::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-juicy-peach::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-juicy-peach::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f)); background-image: -webkit-linear-gradient(left, #ffecd2 0%, #fcb69f 100%); background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); } .scrollbar-young-passion::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-young-passion::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-young-passion::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left top, right top, from(#ff8177), color-stop(0%, #ff867a), color-stop(21%, #ff8c7f), color-stop(52%, #f99185), color-stop(78%, #cf556c), to(#b12a5b)); background-image: -webkit-linear-gradient(left, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); } .scrollbar-lady-lips::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-lady-lips::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-lady-lips::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(99%, #fecfef), to(#fecfef)); background-image: -webkit-linear-gradient(bottom, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); } .scrollbar-sunny-morning::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-sunny-morning::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-sunny-morning::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f6d365 0%, #fda085 100%); background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); } .scrollbar-rainy-ashville::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-rainy-ashville::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-rainy-ashville::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a6c1ee)); background-image: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a6c1ee 100%); background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); } .scrollbar-frozen-dreams::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-frozen-dreams::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-frozen-dreams::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fdcbf1), color-stop(1%, #fdcbf1), to(#e6dee9)); background-image: -webkit-linear-gradient(bottom, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); } .scrollbar-warm-flame::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-warm-flame::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-warm-flame::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); } .scrollbar-night-fade::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-night-fade::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-night-fade::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#a18cd1), to(#fbc2eb)); background-image: -webkit-linear-gradient(bottom, #a18cd1 0%, #fbc2eb 100%); background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); } .scrollbar-spring-warmth::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-spring-warmth::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-spring-warmth::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fad0c4), to(#ffd1ff)); background-image: -webkit-linear-gradient(bottom, #fad0c4 0%, #ffd1ff 100%); background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%); } .scrollbar-winter-neva::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-winter-neva::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-winter-neva::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #a1c4fd 0%, #c2e9fb 100%); background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); } .scrollbar-dusty-grass::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-dusty-grass::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-dusty-grass::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%); background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); } .scrollbar-tempting-azure::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-tempting-azure::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-tempting-azure::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #84fab0 0%, #8fd3f4 100%); background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); } .scrollbar-heavy-rain::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-heavy-rain::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-heavy-rain::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#cfd9df), to(#e2ebf0)); background-image: -webkit-linear-gradient(bottom, #cfd9df 0%, #e2ebf0 100%); background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); } .scrollbar-amy-crisp::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-amy-crisp::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-amy-crisp::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #a6c0fe 0%, #f68084 100%); background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%); } .scrollbar-mean-fruit::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-mean-fruit::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-mean-fruit::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #fccb90 0%, #d57eeb 100%); background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%); } .scrollbar-deep-blue::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-deep-blue::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-deep-blue::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #e0c3fc 0%, #8ec5fc 100%); background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); } .scrollbar-ripe-malinka::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-ripe-malinka::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-ripe-malinka::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%); background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); } .scrollbar-cloudy-knoxville::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-cloudy-knoxville::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-cloudy-knoxville::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%); background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); } .scrollbar-morpheus-den::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-morpheus-den::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-morpheus-den::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#30cfd0), to(#330867)); background-image: -webkit-linear-gradient(bottom, #30cfd0 0%, #330867 100%); background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%); } .scrollbar-rare-wind::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-rare-wind::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-rare-wind::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#a8edea), to(#fed6e3)); background-image: -webkit-linear-gradient(bottom, #a8edea 0%, #fed6e3 100%); background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%); } .scrollbar-near-moon::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-near-moon::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-near-moon::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#5ee7df), to(#b490ca)); background-image: -webkit-linear-gradient(bottom, #5ee7df 0%, #b490ca 100%); background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); } .scrollbar-primary::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-primary::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #4285F4; } .scrollbar-danger::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-danger::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-danger::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #ff3547; } .scrollbar-warning::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-warning::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-warning::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #FF8800; } .scrollbar-success::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-success::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-success::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #00C851; } .scrollbar-info::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-info::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-info::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #33b5e5; } .scrollbar-default::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-default::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-default::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #2BBBAD; } .scrollbar-secondary::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-secondary::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-secondary::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #aa66cc; } /** * Profile image component */ .profile-header-container{ margin: 0 auto; text-align: center; } .profile-header-img { padding: 54px; } .profile-header-img > img.img-circle { width: 120px; height: 120px; border: 2px solid #51D2B7; } .profile-header { margin-top: 43px; } /** * Ranking component */ .rank-label-container { margin-top: -19px; /* z-index: 1000; */ text-align: center; } .green-label { background-color: rgb(118, 227, 42); padding: 1px 5px 1px 17px; border-radius: 100%; } .red-label { background-color: rgb(214, 44, 36); padding: 1px 5px 1px 17px; border-radius: 100%; }
public/css/style.css
.scrollbar-deep-purple::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-deep-purple::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-deep-purple::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #512da8; } .scrollbar-cyan::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-cyan::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-cyan::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #00bcd4; } .scrollbar-dusty-grass::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-dusty-grass::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-dusty-grass::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%); background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); } .scrollbar-ripe-malinka::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-ripe-malinka::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-ripe-malinka::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%); background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); } .bordered-deep-purple::-webkit-scrollbar-track { -webkit-box-shadow: none; border: 1px solid #512da8; } .bordered-deep-purple::-webkit-scrollbar-thumb { -webkit-box-shadow: none; } .bordered-cyan::-webkit-scrollbar-track { -webkit-box-shadow: none; border: 1px solid #00bcd4; } .bordered-cyan::-webkit-scrollbar-thumb { -webkit-box-shadow: none; } .square::-webkit-scrollbar-track { border-radius: 0 !important; } .square::-webkit-scrollbar-thumb { border-radius: 0 !important; } .thin::-webkit-scrollbar { width: 3px; } .scrollbar-juicy-peach::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-juicy-peach::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-juicy-peach::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f)); background-image: -webkit-linear-gradient(left, #ffecd2 0%, #fcb69f 100%); background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); } .scrollbar-young-passion::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-young-passion::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-young-passion::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left top, right top, from(#ff8177), color-stop(0%, #ff867a), color-stop(21%, #ff8c7f), color-stop(52%, #f99185), color-stop(78%, #cf556c), to(#b12a5b)); background-image: -webkit-linear-gradient(left, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); } .scrollbar-lady-lips::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-lady-lips::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-lady-lips::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(99%, #fecfef), to(#fecfef)); background-image: -webkit-linear-gradient(bottom, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); } .scrollbar-sunny-morning::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-sunny-morning::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-sunny-morning::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f6d365 0%, #fda085 100%); background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); } .scrollbar-rainy-ashville::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-rainy-ashville::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-rainy-ashville::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a6c1ee)); background-image: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a6c1ee 100%); background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); } .scrollbar-frozen-dreams::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-frozen-dreams::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-frozen-dreams::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fdcbf1), color-stop(1%, #fdcbf1), to(#e6dee9)); background-image: -webkit-linear-gradient(bottom, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); } .scrollbar-warm-flame::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-warm-flame::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-warm-flame::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); } .scrollbar-night-fade::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-night-fade::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-night-fade::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#a18cd1), to(#fbc2eb)); background-image: -webkit-linear-gradient(bottom, #a18cd1 0%, #fbc2eb 100%); background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); } .scrollbar-spring-warmth::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-spring-warmth::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-spring-warmth::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#fad0c4), to(#ffd1ff)); background-image: -webkit-linear-gradient(bottom, #fad0c4 0%, #ffd1ff 100%); background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%); } .scrollbar-winter-neva::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-winter-neva::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-winter-neva::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #a1c4fd 0%, #c2e9fb 100%); background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); } .scrollbar-dusty-grass::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-dusty-grass::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-dusty-grass::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%); background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); } .scrollbar-tempting-azure::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-tempting-azure::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-tempting-azure::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #84fab0 0%, #8fd3f4 100%); background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); } .scrollbar-heavy-rain::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-heavy-rain::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-heavy-rain::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#cfd9df), to(#e2ebf0)); background-image: -webkit-linear-gradient(bottom, #cfd9df 0%, #e2ebf0 100%); background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); } .scrollbar-amy-crisp::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-amy-crisp::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-amy-crisp::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #a6c0fe 0%, #f68084 100%); background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%); } .scrollbar-mean-fruit::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-mean-fruit::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-mean-fruit::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #fccb90 0%, #d57eeb 100%); background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%); } .scrollbar-deep-blue::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-deep-blue::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-deep-blue::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #e0c3fc 0%, #8ec5fc 100%); background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); } .scrollbar-ripe-malinka::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-ripe-malinka::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-ripe-malinka::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%); background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); } .scrollbar-cloudy-knoxville::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-cloudy-knoxville::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-cloudy-knoxville::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%); background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); } .scrollbar-morpheus-den::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-morpheus-den::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-morpheus-den::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#30cfd0), to(#330867)); background-image: -webkit-linear-gradient(bottom, #30cfd0 0%, #330867 100%); background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%); } .scrollbar-rare-wind::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-rare-wind::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-rare-wind::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#a8edea), to(#fed6e3)); background-image: -webkit-linear-gradient(bottom, #a8edea 0%, #fed6e3 100%); background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%); } .scrollbar-near-moon::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-near-moon::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-near-moon::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-image: -webkit-gradient(linear, left bottom, left top, from(#5ee7df), to(#b490ca)); background-image: -webkit-linear-gradient(bottom, #5ee7df 0%, #b490ca 100%); background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); } .scrollbar-primary::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-primary::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #4285F4; } .scrollbar-danger::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-danger::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-danger::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #ff3547; } .scrollbar-warning::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-warning::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-warning::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #FF8800; } .scrollbar-success::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-success::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-success::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #00C851; } .scrollbar-info::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-info::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-info::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #33b5e5; } .scrollbar-default::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-default::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-default::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #2BBBAD; } .scrollbar-secondary::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #F5F5F5; border-radius: 10px; } .scrollbar-secondary::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } .scrollbar-secondary::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #aa66cc; } /** * Profile image component */ .profile-header-container{ margin: 0 auto; text-align: center; } .profile-header-img { padding: 54px; } .profile-header-img > img.img-circle { width: 120px; height: 120px; border: 2px solid #51D2B7; } .profile-header { margin-top: 43px; } /** * Ranking component */ .rank-label-container { margin-top: -19px; /* z-index: 1000; */ text-align: center; } .green-label { background-color: rgb(118, 227, 42); padding: 1px 5px 1px 17px; border-radius: 100%; } .red-label { background-color: rgb(214, 44, 36); padding: 1px 5px 1px 17px; border-radius: 100%; }
0.356447
0.06028
.LEDMatrix { display: inline-block; height: 80px; } .LEDMatrix #panel { height: 92px; width: 92px; background-color: #43506C; position: absolute; margin-left: -48px; margin-top: -8px; border-radius: 4px; } .LEDMatrix span { width: 16px; height: 16px; background: #3D6198; display: inline-block; position: absolute; border-radius: 50%; vertical-align: middle; } .LEDMatrix #dot0_0 { margin-top: 0px; margin-left: -40px; } .LEDMatrix #dot0_1 { margin-top: 0px; margin-left: -20px; } .LEDMatrix #dot0_2 { margin-top: 0px; margin-left: 0px; } .LEDMatrix #dot0_3 { margin-top: 0px; margin-left: 20px; } .LEDMatrix #dot1_0 { margin-top: 20px; margin-left: -40px; } .LEDMatrix #dot1_1 { margin-top: 20px; margin-left: -20px; } .LEDMatrix #dot1_2 { margin-top: 20px; margin-left: 0px; } .LEDMatrix #dot1_3 { margin-top: 20px; margin-left: 20px; } .LEDMatrix #dot2_0 { margin-top: 40px; margin-left: -40px; } .LEDMatrix #dot2_1 { margin-top: 40px; margin-left: -20px; } .LEDMatrix #dot2_2 { margin-top: 40px; margin-left: 0px; } .LEDMatrix #dot2_3 { margin-top: 40px; margin-left: 20px; } .LEDMatrix #dot3_0 { margin-top: 60px; margin-left: -40px; } .LEDMatrix #dot3_1 { margin-top: 60px; margin-left: -20px; } .LEDMatrix #dot3_2 { margin-top: 60px; margin-left: 0px; } .LEDMatrix #dot3_3 { margin-top: 60px; margin-left: 20px; } #dot0_0.on { background: #ffffff; } #dot0_1.on { background: #ffffff; } #dot0_2.on { background: #ffffff; } #dot0_3.on { background: #ffffff; } #dot1_0.on { background: #ffffff; } #dot1_1.on { background: #ffffff; } #dot1_2.on { background: #ffffff; } #dot1_3.on { background: #ffffff; } #dot2_0.on { background: #ffffff; } #dot2_1.on { background: #ffffff; } #dot2_2.on { background: #ffffff; } #dot2_3.on { background: #ffffff; } #dot3_0.on { background: #ffffff; } #dot3_1.on { background: #ffffff; } #dot3_2.on { background: #ffffff; } #dot3_3.on { background: #ffffff; }
Wonton.CrossUI.Web/ClientApp/src/components/Devices/LEDMatrix4t4/LEDMatrix4t4.css
.LEDMatrix { display: inline-block; height: 80px; } .LEDMatrix #panel { height: 92px; width: 92px; background-color: #43506C; position: absolute; margin-left: -48px; margin-top: -8px; border-radius: 4px; } .LEDMatrix span { width: 16px; height: 16px; background: #3D6198; display: inline-block; position: absolute; border-radius: 50%; vertical-align: middle; } .LEDMatrix #dot0_0 { margin-top: 0px; margin-left: -40px; } .LEDMatrix #dot0_1 { margin-top: 0px; margin-left: -20px; } .LEDMatrix #dot0_2 { margin-top: 0px; margin-left: 0px; } .LEDMatrix #dot0_3 { margin-top: 0px; margin-left: 20px; } .LEDMatrix #dot1_0 { margin-top: 20px; margin-left: -40px; } .LEDMatrix #dot1_1 { margin-top: 20px; margin-left: -20px; } .LEDMatrix #dot1_2 { margin-top: 20px; margin-left: 0px; } .LEDMatrix #dot1_3 { margin-top: 20px; margin-left: 20px; } .LEDMatrix #dot2_0 { margin-top: 40px; margin-left: -40px; } .LEDMatrix #dot2_1 { margin-top: 40px; margin-left: -20px; } .LEDMatrix #dot2_2 { margin-top: 40px; margin-left: 0px; } .LEDMatrix #dot2_3 { margin-top: 40px; margin-left: 20px; } .LEDMatrix #dot3_0 { margin-top: 60px; margin-left: -40px; } .LEDMatrix #dot3_1 { margin-top: 60px; margin-left: -20px; } .LEDMatrix #dot3_2 { margin-top: 60px; margin-left: 0px; } .LEDMatrix #dot3_3 { margin-top: 60px; margin-left: 20px; } #dot0_0.on { background: #ffffff; } #dot0_1.on { background: #ffffff; } #dot0_2.on { background: #ffffff; } #dot0_3.on { background: #ffffff; } #dot1_0.on { background: #ffffff; } #dot1_1.on { background: #ffffff; } #dot1_2.on { background: #ffffff; } #dot1_3.on { background: #ffffff; } #dot2_0.on { background: #ffffff; } #dot2_1.on { background: #ffffff; } #dot2_2.on { background: #ffffff; } #dot2_3.on { background: #ffffff; } #dot3_0.on { background: #ffffff; } #dot3_1.on { background: #ffffff; } #dot3_2.on { background: #ffffff; } #dot3_3.on { background: #ffffff; }
0.613237
0.128307
.column-wrapper { display: flex; } body { font: .8em Arial,Helvetica,sans-serif; } h1, h2, h3, h4, h5, h6 { font-weight: 400; } ul { list-style: none; padding: 0; } .n-product-content-block__title { margin-bottom: 9px; color: gray; text-transform: uppercase; } .n-summary__col-cpa2 { padding: 20px; border-radius: 4px; background-color: #fff; box-shadow: 0 1px 8px 0 rgba(0,0,0,.06),0 2px 2px 0 rgba(0,0,0,.12); align-self: flex-start; } .n-summary__col_size_5 { flex-grow: 5; } .n-summary__col_size_4 { flex-grow: 4; margin: 0 36px; } .n-gallery__image { width: 350px; } .n-summary__col_size_3 { flex-grow: 0; flex-shrink: 0; } .n-product-price-cpa2 { font-size: 26px; font-weight: 700; line-height: 32px; letter-spacing: .2px; color: #222; } .title_size_22 { font-size: 22px; } .layout { width: auto; max-width: 1440px; padding-right: 130px; padding-left: 130px; } .snippet-card { position: relative; color: #404040; display: flex; } .snippet-card__view { flex: 0 0 230px; } .snippet-card__info { flex: 0 0 230px; } .snippet-card__content { flex-grow: 1 } .snippet-card__price { font-weight: 700; font-size: 18px; line-height: 1.3em; color: #2b2b2b; } .snippet-card__header { font-size: 18px; line-height: 1.3em; color: #202020; } .snippet-card__row { display: table-row; } .snippet-card__row:first-child .snippet-card__col { vertical-align: top; } .snippet-card__col { display: table-cell; vertical-align: bottom; } .snippet-card__desc-list { line-height: 1.5em; margin: 7px 0 0; } .snippet-card__image { display: block; padding: 30px 0; } .snippet-card__image .image { display: block; max-width: 140px; max-height: 140px; margin: 0 auto; } .snippet-card__header-text { color: #33c; border-bottom: 1px solid #9999e5; transition: color .25s ease-out,border-color .25s ease-out; } .snippet-card__header { font-size: 18px; line-height: 1.3em; color: #202020; } .link { text-decoration: none; outline: 0; touch-action: manipulation; } .n-breadcrumbs { color: #404040; font-size: 19px; } .n-breadcrumbs__item:first-child { padding-left: 0; } .n-breadcrumbs__item, .n-breadcrumbs__item .link { position: relative; display: inline-block; padding: 5px 6px 5px 10px; padding-left: 10px; }
mikomarket/static/css/style.css
.column-wrapper { display: flex; } body { font: .8em Arial,Helvetica,sans-serif; } h1, h2, h3, h4, h5, h6 { font-weight: 400; } ul { list-style: none; padding: 0; } .n-product-content-block__title { margin-bottom: 9px; color: gray; text-transform: uppercase; } .n-summary__col-cpa2 { padding: 20px; border-radius: 4px; background-color: #fff; box-shadow: 0 1px 8px 0 rgba(0,0,0,.06),0 2px 2px 0 rgba(0,0,0,.12); align-self: flex-start; } .n-summary__col_size_5 { flex-grow: 5; } .n-summary__col_size_4 { flex-grow: 4; margin: 0 36px; } .n-gallery__image { width: 350px; } .n-summary__col_size_3 { flex-grow: 0; flex-shrink: 0; } .n-product-price-cpa2 { font-size: 26px; font-weight: 700; line-height: 32px; letter-spacing: .2px; color: #222; } .title_size_22 { font-size: 22px; } .layout { width: auto; max-width: 1440px; padding-right: 130px; padding-left: 130px; } .snippet-card { position: relative; color: #404040; display: flex; } .snippet-card__view { flex: 0 0 230px; } .snippet-card__info { flex: 0 0 230px; } .snippet-card__content { flex-grow: 1 } .snippet-card__price { font-weight: 700; font-size: 18px; line-height: 1.3em; color: #2b2b2b; } .snippet-card__header { font-size: 18px; line-height: 1.3em; color: #202020; } .snippet-card__row { display: table-row; } .snippet-card__row:first-child .snippet-card__col { vertical-align: top; } .snippet-card__col { display: table-cell; vertical-align: bottom; } .snippet-card__desc-list { line-height: 1.5em; margin: 7px 0 0; } .snippet-card__image { display: block; padding: 30px 0; } .snippet-card__image .image { display: block; max-width: 140px; max-height: 140px; margin: 0 auto; } .snippet-card__header-text { color: #33c; border-bottom: 1px solid #9999e5; transition: color .25s ease-out,border-color .25s ease-out; } .snippet-card__header { font-size: 18px; line-height: 1.3em; color: #202020; } .link { text-decoration: none; outline: 0; touch-action: manipulation; } .n-breadcrumbs { color: #404040; font-size: 19px; } .n-breadcrumbs__item:first-child { padding-left: 0; } .n-breadcrumbs__item, .n-breadcrumbs__item .link { position: relative; display: inline-block; padding: 5px 6px 5px 10px; padding-left: 10px; }
0.583678
0.088505
>>> TABLE OF CONTENTS: ---------------------------------------------------------------- # Normalize # Typography # Elements # Forms # Navigation ## Links ## Menus # Accessibility # Alignments # Clearings # Widgets # Content ## Posts and pages ## Asides ## Comments # Infinite scroll # Media ## Captions ## Galleries #Styles --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Normalize --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Typography --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Elements --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Navigation --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Links --------------------------------------------------------------*/ a { color: royalblue; } a:visited { color: purple; } a:hover, a:focus, a:active { color: midnightblue; } a:focus { outline: thin dotted; } a:hover, a:active { outline: 0; } /*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/ .navbar-nav >li.current_page_item a, .navbar-nav >li.current_page_parent a{ color: white; } /* Small menu. */ .menu-toggle, .main-navigation.toggled ul { display: block; } @media screen and (min-width: 37.5em) { .menu-toggle { display: none; } .main-navigation ul { display: block; } } .site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation { margin: 0 0 1.5em; overflow: hidden; } .comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous { float: left; width: 50%; } .comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next { float: right; text-align: right; width: 50%; } /*-------------------------------------------------------------- # Accessibility --------------------------------------------------------------*/ /* Text meant only for screen readers. */ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; } .screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; color: #21759b; display: block; font-size: 14px; font-size: 0.875rem; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar. */ } /* Do not show the outline on the skip link target. */ #content[tabindex="-1"]:focus { outline: 0; } /*-------------------------------------------------------------- # Alignments --------------------------------------------------------------*/ .alignleft { display: inline; float: left; margin-right: 1.5em; } .alignright { display: inline; float: right; margin-left: 1.5em; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; } /*-------------------------------------------------------------- # Clearings --------------------------------------------------------------*/ .clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after { content: ""; display: table; table-layout: fixed; } .clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after { clear: both; } /*-------------------------------------------------------------- # Widgets --------------------------------------------------------------*/ .widget { margin: 0 0 1.5em; } /* Make sure select elements fit in widgets. */ .widget select { max-width: 100%; } /*-------------------------------------------------------------- # Content --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Posts and pages --------------------------------------------------------------*/ .sticky { display: block; } .hentry { margin: 0 0 1.5em; } .byline, .updated:not(.published) { display: none; } .single .byline, .group-blog .byline { display: inline; } .page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; } .page-links { clear: both; margin: 0 0 1.5em; } /*-------------------------------------------------------------- ## Asides --------------------------------------------------------------*/ .blog .format-aside .entry-title, .archive .format-aside .entry-title { display: none; } /*-------------------------------------------------------------- ## Comments --------------------------------------------------------------*/ .comment-content a { word-wrap: break-word; } .bypostauthor { display: block; } /*-------------------------------------------------------------- # Infinite scroll --------------------------------------------------------------*/ /* Globally hidden elements when Infinite Scroll is supported and in use. */ .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */ .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ display: none; } /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */ .infinity-end.neverending .site-footer { display: block; } /*-------------------------------------------------------------- # Media --------------------------------------------------------------*/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } /* Make sure embeds and iframes fit their containers. */ embed, iframe, object { max-width: 100%; } /*-------------------------------------------------------------- ## Captions --------------------------------------------------------------*/ .wp-caption { margin-bottom: 1.5em; max-width: 100%; } .wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; } .wp-caption .wp-caption-text { margin: 0.8075em 0; } .wp-caption-text { text-align: center; } /*-------------------------------------------------------------- ## Galleries --------------------------------------------------------------*/ .gallery { margin-bottom: 1.5em; } .gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33.33%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-caption { display: block; } /* Theme Specific Styles*/ /*COLOUR REFERENCES Green #79b044 Salmon #dd5638 Blue Grey #3e4249 */ /*GENERAl*/ body{ margin-top: 50px; font-family: 'Raleway', sans-serif; font-size: 16px; background: url('assets/img/tile.jpg') top left repeat; } .logged-in .navbar-fixed-top{ top:32px; } /*GLOBAL*/ h1,h2,h3,h4,h5,h6{ -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; font-weight: bold; } h1{ font-size: 3em; } h1 small{ color: white; } h1,h2{ margin: 0 0 40px; } h3{ margin: 20px 0; } h4{ font-size: 18px; } p{ margin: 0 0 15px; } p.lead{ font-weight: normal; } a:link, a:visited{ color: #dd5638; } a:hover{ text-decoration: none; color: #c9302c; } button-input,.btn, a.btn{ -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; color: white; } .btn{ font-weight: bold; } button.btn:focus{. outline:none !important; } .btn-danger{ background-color: #dd5638; border-collapse: #d95131; } .btn-success{ background: #79b044; border: none; } .btn-success:hover{ background: #6a9b3d; border-color: #6a9b3d; } img{ max-width: 100%; } .modal-content { background: url('assets/img/tile.jpg') top left repeat; } .badge.social{ background: #ccc; font-size: 24px; height: 40px; width: 40px; text-align: center; line-height: 42px; margin: 0 5px 20px 0; padding: 0; -webkit-border-radius:50px; -moz-border-radius:50px; border-radius:50px; } .badge.social.twitter:hover{ background: #55acee; } .badge.social.facebook:hover{ background: #3b5998 } .badge.social.google:hover{ background: #db4b39; } blockquote { padding: 0; border: none; font-style: italic; text-align: left; } blockquote cite { display: block; color: #777; margin: 5px 0 0 0; } blockquote:before { display: none; } /*HERO*/ #hero { background: url('assets/img/hero-bg.jpg') 50% 0 repeat fixed; min-height: 500px; padding: 40px 0; color: white; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; } #hero article{ width: 100%; text-align: center; } #hero .hero-text{ margin-top: 30px; } #price-timeline{ margin: 30px 0 60px; text-align: center; } #price-timeline .price{ display: inline-block; margin: 0 2% 0 0; width: 30%; background: #3e4249; padding: 10px 20px 30px; position: relative; vertical-align: top; } #price-timeline .price.active{ background: #dd5638; } #price-timeline .price span{ background: #101010; display: block; height: 70px; width: 70px; text-align: center; line-height: 70px; font-weight: bold; font-size: 24px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; position: absolute; bottom: -35px; left: 50%; margin-left: -35px; } #price-timeloine h4{ margin: 0 0 10px; } #price-timeline h4 small { color: white; font-weight: bold; display: block; } /*LAYOUT*/ .row + .row{ margin-top: 20px; } section{ padding: 80px 0; } .section-header{ text-align: center; } section.main-content{ padding: 40px 0; } section h2{ margin: 20px 0 40px; } section h3{ margin: 30px 0 10px; } #primary{ padding-top: 40px; padding-bottom: 40px; } .feature-image{ display: table; width: 100%; } .feature-image-default { background: url('assets/img/stuff-feature.jpg') no-repeat; background-size: cover; } .feature-image-default-alt { background: url('assets/img/hipster-stuff.jpg') no-repeat; background-size: cover; } .feature-image h1{ display: table-cell; vertical-align: middle; text-align: center; color: white; } #optin{ background: #3e4249; padding: 20px 0; color:white; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; font-size: 1.2em; } #optin p{ margin: 7px 0 0 0; } #course-features{ background:#3e4249; color: white; text-align: center; } #who-benefits{ background-color: white; } #project-features{ text-align: center; } #featurette { background: url('assets/img/stuff-bg.jpg') 50% 100% repeat fixed; background-size: cover; text-align: center; color: white; } #instructor { background: white url('assets/img/brad-elvis.png') 90% -10px no-repeat; } #featurette h2{ color: white; } #instructor h2{ margin: 0 0 20px; } #instructor .num{ display: table; font-size: 30px; color: white; font-weight: bold; text-align: center; width: 140px; height: 140px; line-height: 24px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; background-color: #dd5638; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; } #instructor .num .num-content { display: table-cell; vertical-align: middle; } #instructor .num span { display: block; font-size: 20px; font-weight: normal; } #kudos{ text-align: center; } #testimonial{ margin-bottom: 60px; } .testimonial img{ -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%; } #signup { text-align: center; background: url('assets/img/hipster-stuff.jpg') center center repeat fixed; background-size: cover; color: white; padding: 140px 0; } #signup h2{ font-weight: normal; } #signup h2 strong{ border-bottom: solid 2px #dd5638; } #signup .btn{ font-size: 24px; } footer{ background: #3e4249; color: white; padding: 20px 0 10px; font-size: 12px; } footer p{ margin:0; } footera:link, footer a:visited{ color:white; } footer a:hover{ color:#dd5638; } footer li.signup-link a{ color: #dd5638; } footer li.signup-link a:hover{ font-weight: bold; } /*BLOG*/ .post, .widget, #comments{ position:relative; border: solid 1px #ddd; background: white; margin: 0 0 40px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .post header, .post .post-excerpt, .post .post-body, #comments .comments-wrap { padding: 20px; } .post header h1, .post header h3 { margin: 0 0 15px; padding: 0 0 15px; border-bottom: solid 1px #ddd; } .post header h1{ font-size: 24px; } .post-image img{ height: auto; } .post-details { font-size: 12px; width: 90%; } .post-details i.fa{ padding-left: 10px; } .post-details i.fa:first-child{ padding: 0; } /*WIDGETS*/ .widget{ padding: 20px; } .widget h4{ margin 0 0 10px; padding 0 0 10px; border-bottom: solid 1px #ddd; } .widget ul{ list-style: none; margin: 0; padding: 0; } .widget ul li{ margin 0 0 5px; } .widget ul li:hover{ position: relative; left: 1px; } /*COMMENTS*/ .post-comments-badge { height: 70px; width: 70px; position: absolute; top: 25px; right: 20px; border: none; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; background: #79b044; text-align: center; display: table; } .post-comments-badge a { display: table-cell; vertical-align: middle; color: white; font-size: 20px; line-height: 20px; } .post-comments-badge i.fa { display: block; font-size: 15px; padding: 0; margin-bottom: 4px; } .post-comments-badge:hover { background-color: #8bc653; } #comments h3 { text-align: center; } #comments h4 { font-size: 1.3em; } #comments ol { list-style: none; padding: 0; margin: 0; } #comments ol li { background: rgba(0,0,0,0.02); padding: 10px 20px; margin: 10px 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; border: solid 1px rgba(0,0,0,0.03); } #comments ol li ol.children { padding: 0; list-style: none; font-size: 0.96em; } #leave-comment { margin: 40px 0 0; padding: 20px 0 0; border-top: solid 1px #eee; } /*specific wordpress comment style*/ #comments footer{ background: none; color: inherit; } #comments footer a{ color: inherit; } #comments comment-metadata{ margin: 10px 0 0; } /*RESOURCES*/ .resource{ width: 31.33333333%; float: left; margin: 0 3% 40px 0; } .resource:nth-child(3n){ margin-right: 0; } /*Custom ICON Sprites*/ i.ci{ display: inline-block; height: 40px; width: 40px; background: url('assets/img/icon-sprite.png') no-repeat; } .ci.ci-computer{ background-position: 0 0; } .ci.ci-watch{ background-position: -40px 0; } .ci.ci-calendar{ background-position: -80px 0; } .ci.ci-community{ background-position: -120px 0; } .ci.ci-instructor{ background-position: -160px 0; } .ci.ci-device{ background-position: -200px 0; } /*FORMS*/ label{ display: block; font-weight: bold; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"],textarea{ color: #666; border: 1px solid #ccc; border-radius:3px ; -webkit-border-radius:3px ; -moz-border-radius:3px ; display: block; box-sizing: border-box; -webkir-box-sizing: border-box; -moz-box-sizing: border-box; width: 100%; padding: 6px 12px; } input[type="submit"], button[type="submit"]{ display: inline-block; margin-bottom: 0; font-size: 18px; font-weight: bold; line-height: 1.33; text-align: center; white-space: nowrap; vertical-align: middle; cursor: pointer; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; background-image: none; border: none; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; } input[type="submit"]:hover, button[type="submit"]:hover{ outline: none; border: none; background: #aaa; } /*MEDIA QUERIES*/ @media screen and (max-width : 991px) { #instructor .container { background: rgba(255,255,255,0.8); padding: 20px; } } @media screen and (max-width : 782px) { .logged-in .navbar-fixed-top{ top:46px; } } @media screen and (max-width : 768px) { .logo { width: 50%; } #optin p { margin: 0 0 10px; } #featurette iframe { height: 240px; } .resource { width: 48%; margin-right: 2%; min-height: 800px; } } @media screen and (max-width: 600px){ .logged-in .navbar-fixed-top{ top:42px; } } @media screen and (max-width : 568px) { #instructor .num { height: 100px; width: 100px; font-size: 22px; } #instructor .num span { font-size: 16px; } .resource { width: 100%; margin-right: 0; min-height: 0; } }
style.css
>>> TABLE OF CONTENTS: ---------------------------------------------------------------- # Normalize # Typography # Elements # Forms # Navigation ## Links ## Menus # Accessibility # Alignments # Clearings # Widgets # Content ## Posts and pages ## Asides ## Comments # Infinite scroll # Media ## Captions ## Galleries #Styles --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Normalize --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Typography --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Elements --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Navigation --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Links --------------------------------------------------------------*/ a { color: royalblue; } a:visited { color: purple; } a:hover, a:focus, a:active { color: midnightblue; } a:focus { outline: thin dotted; } a:hover, a:active { outline: 0; } /*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/ .navbar-nav >li.current_page_item a, .navbar-nav >li.current_page_parent a{ color: white; } /* Small menu. */ .menu-toggle, .main-navigation.toggled ul { display: block; } @media screen and (min-width: 37.5em) { .menu-toggle { display: none; } .main-navigation ul { display: block; } } .site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation { margin: 0 0 1.5em; overflow: hidden; } .comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous { float: left; width: 50%; } .comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next { float: right; text-align: right; width: 50%; } /*-------------------------------------------------------------- # Accessibility --------------------------------------------------------------*/ /* Text meant only for screen readers. */ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; } .screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; color: #21759b; display: block; font-size: 14px; font-size: 0.875rem; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar. */ } /* Do not show the outline on the skip link target. */ #content[tabindex="-1"]:focus { outline: 0; } /*-------------------------------------------------------------- # Alignments --------------------------------------------------------------*/ .alignleft { display: inline; float: left; margin-right: 1.5em; } .alignright { display: inline; float: right; margin-left: 1.5em; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; } /*-------------------------------------------------------------- # Clearings --------------------------------------------------------------*/ .clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after { content: ""; display: table; table-layout: fixed; } .clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after { clear: both; } /*-------------------------------------------------------------- # Widgets --------------------------------------------------------------*/ .widget { margin: 0 0 1.5em; } /* Make sure select elements fit in widgets. */ .widget select { max-width: 100%; } /*-------------------------------------------------------------- # Content --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Posts and pages --------------------------------------------------------------*/ .sticky { display: block; } .hentry { margin: 0 0 1.5em; } .byline, .updated:not(.published) { display: none; } .single .byline, .group-blog .byline { display: inline; } .page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; } .page-links { clear: both; margin: 0 0 1.5em; } /*-------------------------------------------------------------- ## Asides --------------------------------------------------------------*/ .blog .format-aside .entry-title, .archive .format-aside .entry-title { display: none; } /*-------------------------------------------------------------- ## Comments --------------------------------------------------------------*/ .comment-content a { word-wrap: break-word; } .bypostauthor { display: block; } /*-------------------------------------------------------------- # Infinite scroll --------------------------------------------------------------*/ /* Globally hidden elements when Infinite Scroll is supported and in use. */ .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */ .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ display: none; } /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */ .infinity-end.neverending .site-footer { display: block; } /*-------------------------------------------------------------- # Media --------------------------------------------------------------*/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } /* Make sure embeds and iframes fit their containers. */ embed, iframe, object { max-width: 100%; } /*-------------------------------------------------------------- ## Captions --------------------------------------------------------------*/ .wp-caption { margin-bottom: 1.5em; max-width: 100%; } .wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; } .wp-caption .wp-caption-text { margin: 0.8075em 0; } .wp-caption-text { text-align: center; } /*-------------------------------------------------------------- ## Galleries --------------------------------------------------------------*/ .gallery { margin-bottom: 1.5em; } .gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33.33%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-caption { display: block; } /* Theme Specific Styles*/ /*COLOUR REFERENCES Green #79b044 Salmon #dd5638 Blue Grey #3e4249 */ /*GENERAl*/ body{ margin-top: 50px; font-family: 'Raleway', sans-serif; font-size: 16px; background: url('assets/img/tile.jpg') top left repeat; } .logged-in .navbar-fixed-top{ top:32px; } /*GLOBAL*/ h1,h2,h3,h4,h5,h6{ -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; font-weight: bold; } h1{ font-size: 3em; } h1 small{ color: white; } h1,h2{ margin: 0 0 40px; } h3{ margin: 20px 0; } h4{ font-size: 18px; } p{ margin: 0 0 15px; } p.lead{ font-weight: normal; } a:link, a:visited{ color: #dd5638; } a:hover{ text-decoration: none; color: #c9302c; } button-input,.btn, a.btn{ -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; color: white; } .btn{ font-weight: bold; } button.btn:focus{. outline:none !important; } .btn-danger{ background-color: #dd5638; border-collapse: #d95131; } .btn-success{ background: #79b044; border: none; } .btn-success:hover{ background: #6a9b3d; border-color: #6a9b3d; } img{ max-width: 100%; } .modal-content { background: url('assets/img/tile.jpg') top left repeat; } .badge.social{ background: #ccc; font-size: 24px; height: 40px; width: 40px; text-align: center; line-height: 42px; margin: 0 5px 20px 0; padding: 0; -webkit-border-radius:50px; -moz-border-radius:50px; border-radius:50px; } .badge.social.twitter:hover{ background: #55acee; } .badge.social.facebook:hover{ background: #3b5998 } .badge.social.google:hover{ background: #db4b39; } blockquote { padding: 0; border: none; font-style: italic; text-align: left; } blockquote cite { display: block; color: #777; margin: 5px 0 0 0; } blockquote:before { display: none; } /*HERO*/ #hero { background: url('assets/img/hero-bg.jpg') 50% 0 repeat fixed; min-height: 500px; padding: 40px 0; color: white; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; } #hero article{ width: 100%; text-align: center; } #hero .hero-text{ margin-top: 30px; } #price-timeline{ margin: 30px 0 60px; text-align: center; } #price-timeline .price{ display: inline-block; margin: 0 2% 0 0; width: 30%; background: #3e4249; padding: 10px 20px 30px; position: relative; vertical-align: top; } #price-timeline .price.active{ background: #dd5638; } #price-timeline .price span{ background: #101010; display: block; height: 70px; width: 70px; text-align: center; line-height: 70px; font-weight: bold; font-size: 24px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; position: absolute; bottom: -35px; left: 50%; margin-left: -35px; } #price-timeloine h4{ margin: 0 0 10px; } #price-timeline h4 small { color: white; font-weight: bold; display: block; } /*LAYOUT*/ .row + .row{ margin-top: 20px; } section{ padding: 80px 0; } .section-header{ text-align: center; } section.main-content{ padding: 40px 0; } section h2{ margin: 20px 0 40px; } section h3{ margin: 30px 0 10px; } #primary{ padding-top: 40px; padding-bottom: 40px; } .feature-image{ display: table; width: 100%; } .feature-image-default { background: url('assets/img/stuff-feature.jpg') no-repeat; background-size: cover; } .feature-image-default-alt { background: url('assets/img/hipster-stuff.jpg') no-repeat; background-size: cover; } .feature-image h1{ display: table-cell; vertical-align: middle; text-align: center; color: white; } #optin{ background: #3e4249; padding: 20px 0; color:white; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; font-size: 1.2em; } #optin p{ margin: 7px 0 0 0; } #course-features{ background:#3e4249; color: white; text-align: center; } #who-benefits{ background-color: white; } #project-features{ text-align: center; } #featurette { background: url('assets/img/stuff-bg.jpg') 50% 100% repeat fixed; background-size: cover; text-align: center; color: white; } #instructor { background: white url('assets/img/brad-elvis.png') 90% -10px no-repeat; } #featurette h2{ color: white; } #instructor h2{ margin: 0 0 20px; } #instructor .num{ display: table; font-size: 30px; color: white; font-weight: bold; text-align: center; width: 140px; height: 140px; line-height: 24px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; background-color: #dd5638; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility; } #instructor .num .num-content { display: table-cell; vertical-align: middle; } #instructor .num span { display: block; font-size: 20px; font-weight: normal; } #kudos{ text-align: center; } #testimonial{ margin-bottom: 60px; } .testimonial img{ -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%; } #signup { text-align: center; background: url('assets/img/hipster-stuff.jpg') center center repeat fixed; background-size: cover; color: white; padding: 140px 0; } #signup h2{ font-weight: normal; } #signup h2 strong{ border-bottom: solid 2px #dd5638; } #signup .btn{ font-size: 24px; } footer{ background: #3e4249; color: white; padding: 20px 0 10px; font-size: 12px; } footer p{ margin:0; } footera:link, footer a:visited{ color:white; } footer a:hover{ color:#dd5638; } footer li.signup-link a{ color: #dd5638; } footer li.signup-link a:hover{ font-weight: bold; } /*BLOG*/ .post, .widget, #comments{ position:relative; border: solid 1px #ddd; background: white; margin: 0 0 40px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .post header, .post .post-excerpt, .post .post-body, #comments .comments-wrap { padding: 20px; } .post header h1, .post header h3 { margin: 0 0 15px; padding: 0 0 15px; border-bottom: solid 1px #ddd; } .post header h1{ font-size: 24px; } .post-image img{ height: auto; } .post-details { font-size: 12px; width: 90%; } .post-details i.fa{ padding-left: 10px; } .post-details i.fa:first-child{ padding: 0; } /*WIDGETS*/ .widget{ padding: 20px; } .widget h4{ margin 0 0 10px; padding 0 0 10px; border-bottom: solid 1px #ddd; } .widget ul{ list-style: none; margin: 0; padding: 0; } .widget ul li{ margin 0 0 5px; } .widget ul li:hover{ position: relative; left: 1px; } /*COMMENTS*/ .post-comments-badge { height: 70px; width: 70px; position: absolute; top: 25px; right: 20px; border: none; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; background: #79b044; text-align: center; display: table; } .post-comments-badge a { display: table-cell; vertical-align: middle; color: white; font-size: 20px; line-height: 20px; } .post-comments-badge i.fa { display: block; font-size: 15px; padding: 0; margin-bottom: 4px; } .post-comments-badge:hover { background-color: #8bc653; } #comments h3 { text-align: center; } #comments h4 { font-size: 1.3em; } #comments ol { list-style: none; padding: 0; margin: 0; } #comments ol li { background: rgba(0,0,0,0.02); padding: 10px 20px; margin: 10px 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; border: solid 1px rgba(0,0,0,0.03); } #comments ol li ol.children { padding: 0; list-style: none; font-size: 0.96em; } #leave-comment { margin: 40px 0 0; padding: 20px 0 0; border-top: solid 1px #eee; } /*specific wordpress comment style*/ #comments footer{ background: none; color: inherit; } #comments footer a{ color: inherit; } #comments comment-metadata{ margin: 10px 0 0; } /*RESOURCES*/ .resource{ width: 31.33333333%; float: left; margin: 0 3% 40px 0; } .resource:nth-child(3n){ margin-right: 0; } /*Custom ICON Sprites*/ i.ci{ display: inline-block; height: 40px; width: 40px; background: url('assets/img/icon-sprite.png') no-repeat; } .ci.ci-computer{ background-position: 0 0; } .ci.ci-watch{ background-position: -40px 0; } .ci.ci-calendar{ background-position: -80px 0; } .ci.ci-community{ background-position: -120px 0; } .ci.ci-instructor{ background-position: -160px 0; } .ci.ci-device{ background-position: -200px 0; } /*FORMS*/ label{ display: block; font-weight: bold; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"],textarea{ color: #666; border: 1px solid #ccc; border-radius:3px ; -webkit-border-radius:3px ; -moz-border-radius:3px ; display: block; box-sizing: border-box; -webkir-box-sizing: border-box; -moz-box-sizing: border-box; width: 100%; padding: 6px 12px; } input[type="submit"], button[type="submit"]{ display: inline-block; margin-bottom: 0; font-size: 18px; font-weight: bold; line-height: 1.33; text-align: center; white-space: nowrap; vertical-align: middle; cursor: pointer; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; background-image: none; border: none; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; } input[type="submit"]:hover, button[type="submit"]:hover{ outline: none; border: none; background: #aaa; } /*MEDIA QUERIES*/ @media screen and (max-width : 991px) { #instructor .container { background: rgba(255,255,255,0.8); padding: 20px; } } @media screen and (max-width : 782px) { .logged-in .navbar-fixed-top{ top:46px; } } @media screen and (max-width : 768px) { .logo { width: 50%; } #optin p { margin: 0 0 10px; } #featurette iframe { height: 240px; } .resource { width: 48%; margin-right: 2%; min-height: 800px; } } @media screen and (max-width: 600px){ .logged-in .navbar-fixed-top{ top:42px; } } @media screen and (max-width : 568px) { #instructor .num { height: 100px; width: 100px; font-size: 22px; } #instructor .num span { font-size: 16px; } .resource { width: 100%; margin-right: 0; min-height: 0; } }
0.398172
0.061791
@-moz-document url-prefix("http://www.nicovideo.jp/my/top") { .log-res-thumbnail img { height: 0px !important ; } .log-author { width: 40px !important; } .log-author img{ width: 32px !important; height: auto !important; } .log-target-thumbnail { float: left; width: 160px !important; } .log-target-thumbnail img { width: 32px !important; height: auto !important; } .log-target-thumbnail img.video { width: 160px !important; height: auto !important; } .log-target-thumbnail img.seiga_image { height: 120px !important; width: auto !important; max-width: 160px !important; } .log-target-thumbnail img.manga_episode { width: 160px !important; height: auto !important; } .log-footer { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-footer-inner { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-reslist { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-inner{ height: 0px !important; min-height: 0px !important; border: none !important; margin: 0px !important; padding-top: 0px !important; } .log-res-input { font-size: 0px !important; line-height: 0px !important; width: 0px !important; height: 0px !important; min-width: 0px !important; min-height: 0px !important; border: none !important; margin: 0px !important; padding: 0px 0px !important; outline: none !important; } .log-res-counter { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-writeform { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-counter { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-submit { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-submit-button{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-body{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-thumbnail { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicoru-positioned { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicoru-button { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-icon { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-balloon { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-u { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-d { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-messages { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } }
data/usercss/95716.user.css
@-moz-document url-prefix("http://www.nicovideo.jp/my/top") { .log-res-thumbnail img { height: 0px !important ; } .log-author { width: 40px !important; } .log-author img{ width: 32px !important; height: auto !important; } .log-target-thumbnail { float: left; width: 160px !important; } .log-target-thumbnail img { width: 32px !important; height: auto !important; } .log-target-thumbnail img.video { width: 160px !important; height: auto !important; } .log-target-thumbnail img.seiga_image { height: 120px !important; width: auto !important; max-width: 160px !important; } .log-target-thumbnail img.manga_episode { width: 160px !important; height: auto !important; } .log-footer { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-footer-inner { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-reslist { height: 0px !important; font-size: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-inner{ height: 0px !important; min-height: 0px !important; border: none !important; margin: 0px !important; padding-top: 0px !important; } .log-res-input { font-size: 0px !important; line-height: 0px !important; width: 0px !important; height: 0px !important; min-width: 0px !important; min-height: 0px !important; border: none !important; margin: 0px !important; padding: 0px 0px !important; outline: none !important; } .log-res-counter { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-writeform { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-counter { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-submit { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-submit-button{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-body{ height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .log-res-thumbnail { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicoru-positioned { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicoru-button { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-icon { height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-balloon { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-u { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-d { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } .nicorub-messages { font-size: 0px; height: 0px !important; border: none !important; margin: 0px !important; padding: 0px !important; } }
0.123405
0.046921
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); :root{ --china-pink: #e56399ff; --champagne-pink: #e5d4ceff; --burnt-sienna: #de6e4bff; --middle-blue-green: #7fd1b9ff; --deep-taupe: #7a6563ff; --gray-dark: #453F3F; --red-dark: #8F4241; } *{ scroll-behavior: smooth; } /* -------------------------------------------- */ /* Dashboard */ /* -------------------------------------------- */ :root{ --china-pink: #e56399ff; --champagne-pink: #e5d4ceff; --burnt-sienna: #de6e4bff; --middle-blue-green: #7fd1b9ff; --deep-taupe: #7a6563ff; --gray-dark: #453F3F; --red-dark: #981914; } /* styling scrollbars */ ::-webkit-scrollbar { width: 5px; height: 6px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #a5aaad; border-radius: 10px; } ::-webkit-scrollbar-thumb { background: var(--middle-blue-green); border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: #a5aaad; } body { box-sizing: border-box; font-family: 'Poppins', sans-serif; } .text-primary-p { color: #a5aaad; font-size: 14px; font-weight: 700; } .font-bold { font-weight: 700; } .text-title { color: #2e4a66; } .text-lightblue { color: #469cac; } .text-red { color: #cc3d38; } .text-yellow { color: #a98921; } .text-green { color: #3b9668; } .container { display: grid; height: 100vh; grid-template-columns: 0.8fr 1fr 1fr 1fr; grid-template-rows: 0.2fr 3fr; grid-template-areas: "sidebar nav nav nav" "sidebar main main main"; /* grid-gap: 0.2rem; */ background: radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent) 50px 50px, linear-gradient(#A8B1BB 8px, transparent 8px) 0 -4px, linear-gradient(90deg, #A8B1BB 8px, transparent 8px) -4px 0; background-color: slategray; background-size:100px 100px, 100px 100px, 50px 50px, 50px 50px; } .main__title{ grid-column: 2/5; padding: 3em; } .title_table{ text-align: center; padding-bottom: 1.5em; } .main__container{ grid-column: 2/5; padding: 3em; } .navbar { background: var(--deep-taupe); grid-area: nav; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px 0 30px; border-bottom: 1px solid lightgray; } .nav_icon{ display: none; } .nav_icon > i { font-size: 26px; color: #a5aaad; } .navbar__left > h4{ color: var(--champagne-pink); font-size: 1.5em; } .navbar__right { display: flex; justify-content: center; align-items: center; } .navbar__right > a { margin-left: 20px; text-decoration: none; color: var(--champagne-pink); } .navbar__right > a > i { font-size: 16px; border-radius: 50px; padding: 7px; } /* SIDEBAR STARTS HERE */ #sidebar { background: var(--deep-taupe); grid-area: sidebar; overflow-y: auto; padding: 20px; -webkit-transition: all 0.5s ease-in-out; transition: all 1s ease-in-out; } .sidebar__title { display: flex; justify-content: space-between; align-items: center; color: #f3f4f6; margin-bottom: 30px; /* color: #E85B6B; */ } .sidebar__img { display: flex; align-items: center; } .sidebar__title > div > img { width: 210px; object-fit: contain; } .sidebar__title > div > h1 { font-size: 18px; display: inline; } .sidebar__title > i { font-size: 18px; display: none; } .sidebar__menu > h2 { color: #3ea175; font-size: 16px; margin-top: 15px; margin-bottom: 5px; padding: 0 10px; font-weight: 700; } .sidebar__link { color: #f3f4f6; padding: 10px; border-radius: 3px; margin-bottom: 5px; } .sidebar__link > a{ color: var(--champagne-pink); } .active_menu_link { background: var(--burnt-sienna); color: var(--middle-blue-green); } .active_menu_link a { color: var(--middle-blue-green) !important; } .sidebar__link > a { text-decoration: none; color: var(--champagne-pink); font-weight: 700; } .sidebar__link > i { margin-right: 10px; font-size: 18px; } .sidebar__divider{ margin: 2em auto; } .sidebar__role { justify-self: center; color: var(--red-dark); } .sidebar__role { text-decoration: none; color: var(--middle-blue-green); font-weight: 700; text-transform: uppercase; } .sidebar_responsive { display: inline !important; z-index: 9999 !important; left: 0 !important; position: absolute; } /* -------------------------------------------- */ /* Datatables */ /* -------------------------------------------- */ #table_reservacion { width: 100%; } th, td{ text-align: center; } .btn-group { position: relative; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn { display: inline-block; font-weight: 400; color: #212529; text-align: center; } .btn:hover { color: #212529; text-decoration: none; } .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } .btn-primary:hover { color: #fff; background-color: #0069d9; border-color: #0062cc; } .btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; } .btn-danger:hover { color: #fff; background-color: #c82333; border-color: #bd2130; } @media only screen and (max-width: 978px) { .container { grid-template-columns: 1fr; /* grid-template-rows: 0.2fr 2.2fr; */ grid-template-rows: 0.2fr 3fr; grid-template-areas: "nav" "main"; } #sidebar { display: none; } .sidebar__title > i { display: inline; } .nav_icon { display: inline; color: var(--champagne-pink); } .main__container{ grid-column: auto; grid-row: auto; } } @media only screen and (max-width: 855px) { .main__container{ grid-column: auto; grid-row: auto; } } @media only screen and (max-width: 480px) { .navbar__left { display: none; } }
css/styles-control-center.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); :root{ --china-pink: #e56399ff; --champagne-pink: #e5d4ceff; --burnt-sienna: #de6e4bff; --middle-blue-green: #7fd1b9ff; --deep-taupe: #7a6563ff; --gray-dark: #453F3F; --red-dark: #8F4241; } *{ scroll-behavior: smooth; } /* -------------------------------------------- */ /* Dashboard */ /* -------------------------------------------- */ :root{ --china-pink: #e56399ff; --champagne-pink: #e5d4ceff; --burnt-sienna: #de6e4bff; --middle-blue-green: #7fd1b9ff; --deep-taupe: #7a6563ff; --gray-dark: #453F3F; --red-dark: #981914; } /* styling scrollbars */ ::-webkit-scrollbar { width: 5px; height: 6px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #a5aaad; border-radius: 10px; } ::-webkit-scrollbar-thumb { background: var(--middle-blue-green); border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: #a5aaad; } body { box-sizing: border-box; font-family: 'Poppins', sans-serif; } .text-primary-p { color: #a5aaad; font-size: 14px; font-weight: 700; } .font-bold { font-weight: 700; } .text-title { color: #2e4a66; } .text-lightblue { color: #469cac; } .text-red { color: #cc3d38; } .text-yellow { color: #a98921; } .text-green { color: #3b9668; } .container { display: grid; height: 100vh; grid-template-columns: 0.8fr 1fr 1fr 1fr; grid-template-rows: 0.2fr 3fr; grid-template-areas: "sidebar nav nav nav" "sidebar main main main"; /* grid-gap: 0.2rem; */ background: radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent) 50px 50px, linear-gradient(#A8B1BB 8px, transparent 8px) 0 -4px, linear-gradient(90deg, #A8B1BB 8px, transparent 8px) -4px 0; background-color: slategray; background-size:100px 100px, 100px 100px, 50px 50px, 50px 50px; } .main__title{ grid-column: 2/5; padding: 3em; } .title_table{ text-align: center; padding-bottom: 1.5em; } .main__container{ grid-column: 2/5; padding: 3em; } .navbar { background: var(--deep-taupe); grid-area: nav; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px 0 30px; border-bottom: 1px solid lightgray; } .nav_icon{ display: none; } .nav_icon > i { font-size: 26px; color: #a5aaad; } .navbar__left > h4{ color: var(--champagne-pink); font-size: 1.5em; } .navbar__right { display: flex; justify-content: center; align-items: center; } .navbar__right > a { margin-left: 20px; text-decoration: none; color: var(--champagne-pink); } .navbar__right > a > i { font-size: 16px; border-radius: 50px; padding: 7px; } /* SIDEBAR STARTS HERE */ #sidebar { background: var(--deep-taupe); grid-area: sidebar; overflow-y: auto; padding: 20px; -webkit-transition: all 0.5s ease-in-out; transition: all 1s ease-in-out; } .sidebar__title { display: flex; justify-content: space-between; align-items: center; color: #f3f4f6; margin-bottom: 30px; /* color: #E85B6B; */ } .sidebar__img { display: flex; align-items: center; } .sidebar__title > div > img { width: 210px; object-fit: contain; } .sidebar__title > div > h1 { font-size: 18px; display: inline; } .sidebar__title > i { font-size: 18px; display: none; } .sidebar__menu > h2 { color: #3ea175; font-size: 16px; margin-top: 15px; margin-bottom: 5px; padding: 0 10px; font-weight: 700; } .sidebar__link { color: #f3f4f6; padding: 10px; border-radius: 3px; margin-bottom: 5px; } .sidebar__link > a{ color: var(--champagne-pink); } .active_menu_link { background: var(--burnt-sienna); color: var(--middle-blue-green); } .active_menu_link a { color: var(--middle-blue-green) !important; } .sidebar__link > a { text-decoration: none; color: var(--champagne-pink); font-weight: 700; } .sidebar__link > i { margin-right: 10px; font-size: 18px; } .sidebar__divider{ margin: 2em auto; } .sidebar__role { justify-self: center; color: var(--red-dark); } .sidebar__role { text-decoration: none; color: var(--middle-blue-green); font-weight: 700; text-transform: uppercase; } .sidebar_responsive { display: inline !important; z-index: 9999 !important; left: 0 !important; position: absolute; } /* -------------------------------------------- */ /* Datatables */ /* -------------------------------------------- */ #table_reservacion { width: 100%; } th, td{ text-align: center; } .btn-group { position: relative; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn { display: inline-block; font-weight: 400; color: #212529; text-align: center; } .btn:hover { color: #212529; text-decoration: none; } .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } .btn-primary:hover { color: #fff; background-color: #0069d9; border-color: #0062cc; } .btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; } .btn-danger:hover { color: #fff; background-color: #c82333; border-color: #bd2130; } @media only screen and (max-width: 978px) { .container { grid-template-columns: 1fr; /* grid-template-rows: 0.2fr 2.2fr; */ grid-template-rows: 0.2fr 3fr; grid-template-areas: "nav" "main"; } #sidebar { display: none; } .sidebar__title > i { display: inline; } .nav_icon { display: inline; color: var(--champagne-pink); } .main__container{ grid-column: auto; grid-row: auto; } } @media only screen and (max-width: 855px) { .main__container{ grid-column: auto; grid-row: auto; } } @media only screen and (max-width: 480px) { .navbar__left { display: none; } }
0.335242
0.073264
@font-face { font-family: 'Kufi'; src: url('../fonts/DroidKufi-Regular.eot'); src: url('../fonts/DroidKufi-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/DroidKufi-Regular.woff') format('woff'), url('../fonts/DroidKufi-Regular.ttf') format('truetype'), url('../fonts/DroidKufi-Regular.html#AnimalsNormal') format('svg'); } /*************************************************************************************/ body { font-family: 'kufi',Tahoma; } .track-title { text-align: center; margin: 25px 0; } .track-num { padding: 15px 0; } .track-num .form-inline { text-align: center; } .track-num .form-control { border: none; box-shadow: none; outline: none; border-radius: 0; margin-right: 10px; } .track-num button { outline: none; box-shadow: none; border: 1px solid #d40511; border-radius: 0; background-color: red; color: #fff; margin-right: -3px; } .track-num button:hover, .track-num button:focus { border: 1px solid #d40511; color: #d40511; background-color: #fff; } .track-det h3 { margin: 5px 0; font-weight: bold; } .track-det p { font-size: 16px; font-weight: 700; } .track-code, .ship-status, .more-ship-det, .origin { padding: 15px 0; margin: 0 15px; } .success-status, .success-status * { color: #76bd22; } .cust-container { padding: 0 2em; } .check { font-size: 30px; margin-top: 25%; } .det-btns { text-align: left; } .det-btns a { background-color: #f2f2f2; border: 1px solid #ccc; height: 40px; width: 40px; display: inline-block; text-align: center; border-radius: 50%; font-size: 20px; color: #000; padding: 5px 0; margin: 40px 5px 0; } .more-ship-det a { color: #555; } .more-ship-det a i { color: red; margin-right: 5px; } .more-ship-det h4 { font-size: 17px; background-color: #eae8e8; padding: 7px 10px; margin: 0; } .more-ship-det { border-bottom: 2px solid #ccc; } .main-wrap { background-color: #f2f2f2; padding: 10px 20px; } .track-det { background-color: #fff; } .tracking { position: relative; border-bottom: 2px solid #ccc; } .tracking .wrap { padding: 30px 0; } .tracking .shap-item-main { position: absolute; width: 2px; height: 100%; background-color: #ccc; right: -70px; } .tracking .shap-item-main::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; background-color: #76bd22; box-shadow: 0px 0px 0px 3px #76bd22; border: 3px solid #fff; right: -6px; top: 70px; } .more-details-link { position: absolute; bottom: -13px; right: 50%; background-color: red; color: #fff; height: 25px; width: 25px; border-radius: 50%; text-align: center; font-size: 18px; z-index: 999; text-decoration: none; } .more-details-link:focus { color: #fff; } .tracking h3 { font-weight: bold; margin-bottom: 15px; } .tracking .pieces { color: #555; text-decoration: none; cursor: pointer; } .tr-inner { background-color: #f7f7f7; border-bottom: 1px solid #ccc; } .tr-inner span { margin-bottom: 15px; display: block; } .tracking .shap-item { position: absolute; width: 2px; height: 100%; background-color: #ccc; right: -70px; } .tracking .shap-item::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; background-color: #ccc; box-shadow: 0px 0px 0px 3px #ccc; border: 3px solid #fff; right: -6px; top: 70px; } .origin i { color: #76bd22; font-size: 50px; text-align: left; display: block; margin: 5px 48px 0; } .no-content { margin: 0 auto; display: block; } /*------ Responsive ------------------------------------------------------*/ @media only screen and (max-width: 1036px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 10px; } .check {display: none;} } @media only screen and (max-width: 756px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 10px; } .origin i { text-align: right; margin: 10px 0; } .check {display: none;} } @media only screen and (max-width: 540px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 0px; } .track-num .form-control { margin-right: 0; } .origin i { text-align: right; margin: 10px 0; } .check {display: none;} } @media only screen and (-webkit-min-device-pixel-ratio: 2) { } /* Heart Icon --------------------------------------------- */ .site-footer .icon { font-size: 20px; } .site-footer .love .icon { font-size: 12px; margin-left: 2px; margin-right: 2px; } /* end */
public/assets/front/css/style_ar.css
@font-face { font-family: 'Kufi'; src: url('../fonts/DroidKufi-Regular.eot'); src: url('../fonts/DroidKufi-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/DroidKufi-Regular.woff') format('woff'), url('../fonts/DroidKufi-Regular.ttf') format('truetype'), url('../fonts/DroidKufi-Regular.html#AnimalsNormal') format('svg'); } /*************************************************************************************/ body { font-family: 'kufi',Tahoma; } .track-title { text-align: center; margin: 25px 0; } .track-num { padding: 15px 0; } .track-num .form-inline { text-align: center; } .track-num .form-control { border: none; box-shadow: none; outline: none; border-radius: 0; margin-right: 10px; } .track-num button { outline: none; box-shadow: none; border: 1px solid #d40511; border-radius: 0; background-color: red; color: #fff; margin-right: -3px; } .track-num button:hover, .track-num button:focus { border: 1px solid #d40511; color: #d40511; background-color: #fff; } .track-det h3 { margin: 5px 0; font-weight: bold; } .track-det p { font-size: 16px; font-weight: 700; } .track-code, .ship-status, .more-ship-det, .origin { padding: 15px 0; margin: 0 15px; } .success-status, .success-status * { color: #76bd22; } .cust-container { padding: 0 2em; } .check { font-size: 30px; margin-top: 25%; } .det-btns { text-align: left; } .det-btns a { background-color: #f2f2f2; border: 1px solid #ccc; height: 40px; width: 40px; display: inline-block; text-align: center; border-radius: 50%; font-size: 20px; color: #000; padding: 5px 0; margin: 40px 5px 0; } .more-ship-det a { color: #555; } .more-ship-det a i { color: red; margin-right: 5px; } .more-ship-det h4 { font-size: 17px; background-color: #eae8e8; padding: 7px 10px; margin: 0; } .more-ship-det { border-bottom: 2px solid #ccc; } .main-wrap { background-color: #f2f2f2; padding: 10px 20px; } .track-det { background-color: #fff; } .tracking { position: relative; border-bottom: 2px solid #ccc; } .tracking .wrap { padding: 30px 0; } .tracking .shap-item-main { position: absolute; width: 2px; height: 100%; background-color: #ccc; right: -70px; } .tracking .shap-item-main::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; background-color: #76bd22; box-shadow: 0px 0px 0px 3px #76bd22; border: 3px solid #fff; right: -6px; top: 70px; } .more-details-link { position: absolute; bottom: -13px; right: 50%; background-color: red; color: #fff; height: 25px; width: 25px; border-radius: 50%; text-align: center; font-size: 18px; z-index: 999; text-decoration: none; } .more-details-link:focus { color: #fff; } .tracking h3 { font-weight: bold; margin-bottom: 15px; } .tracking .pieces { color: #555; text-decoration: none; cursor: pointer; } .tr-inner { background-color: #f7f7f7; border-bottom: 1px solid #ccc; } .tr-inner span { margin-bottom: 15px; display: block; } .tracking .shap-item { position: absolute; width: 2px; height: 100%; background-color: #ccc; right: -70px; } .tracking .shap-item::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; background-color: #ccc; box-shadow: 0px 0px 0px 3px #ccc; border: 3px solid #fff; right: -6px; top: 70px; } .origin i { color: #76bd22; font-size: 50px; text-align: left; display: block; margin: 5px 48px 0; } .no-content { margin: 0 auto; display: block; } /*------ Responsive ------------------------------------------------------*/ @media only screen and (max-width: 1036px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 10px; } .check {display: none;} } @media only screen and (max-width: 756px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 10px; } .origin i { text-align: right; margin: 10px 0; } .check {display: none;} } @media only screen and (max-width: 540px) { .tracking { padding: 0 10px; } .cust-container { padding: 0 1em; } .main-wrap { padding: 10px 0px; } .track-num .form-control { margin-right: 0; } .origin i { text-align: right; margin: 10px 0; } .check {display: none;} } @media only screen and (-webkit-min-device-pixel-ratio: 2) { } /* Heart Icon --------------------------------------------- */ .site-footer .icon { font-size: 20px; } .site-footer .love .icon { font-size: 12px; margin-left: 2px; margin-right: 2px; } /* end */
0.20268
0.072867
.grayscale .hljs { display: block; overflow-x: auto; padding: 0.5em; color: #333; background: #fff; } .grayscale .hljs-comment, .grayscale .hljs-quote { color: #777; font-style: italic; } .grayscale .hljs-keyword, .grayscale .hljs-selector-tag, .grayscale .hljs-subst { color: #333; font-weight: bold; } .grayscale .hljs-number, .grayscale .hljs-literal { color: #777; } .grayscale .hljs-string, .grayscale .hljs-doctag, .grayscale .hljs-formula { color: #333; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat; } .grayscale .hljs-title, .grayscale .hljs-section, .grayscale .hljs-selector-id { color: #000; font-weight: bold; } .grayscale .hljs-subst { font-weight: normal; } .grayscale .hljs-class .grayscale .hljs-title, .grayscale .hljs-type, .grayscale .hljs-name { color: #333; font-weight: bold; } .grayscale .hljs-tag { color: #333; } .grayscale .hljs-regexp { color: #333; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-symbol, .grayscale .hljs-bullet, .grayscale .hljs-link { color: #000; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-built_in, .grayscale .hljs-builtin-name { color: #000; text-decoration: underline; } .grayscale .hljs-meta { color: #999; font-weight: bold; } .grayscale .hljs-deletion { color: #fff; background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-addition { color: #000; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat; } .grayscale .hljs-emphasis { font-style: italic; } .grayscale .hljs-strong { font-weight: bold; }
src/modified-styles/grayscale.css
.grayscale .hljs { display: block; overflow-x: auto; padding: 0.5em; color: #333; background: #fff; } .grayscale .hljs-comment, .grayscale .hljs-quote { color: #777; font-style: italic; } .grayscale .hljs-keyword, .grayscale .hljs-selector-tag, .grayscale .hljs-subst { color: #333; font-weight: bold; } .grayscale .hljs-number, .grayscale .hljs-literal { color: #777; } .grayscale .hljs-string, .grayscale .hljs-doctag, .grayscale .hljs-formula { color: #333; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat; } .grayscale .hljs-title, .grayscale .hljs-section, .grayscale .hljs-selector-id { color: #000; font-weight: bold; } .grayscale .hljs-subst { font-weight: normal; } .grayscale .hljs-class .grayscale .hljs-title, .grayscale .hljs-type, .grayscale .hljs-name { color: #333; font-weight: bold; } .grayscale .hljs-tag { color: #333; } .grayscale .hljs-regexp { color: #333; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-symbol, .grayscale .hljs-bullet, .grayscale .hljs-link { color: #000; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-built_in, .grayscale .hljs-builtin-name { color: #000; text-decoration: underline; } .grayscale .hljs-meta { color: #999; font-weight: bold; } .grayscale .hljs-deletion { color: #fff; background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat; } .grayscale .hljs-addition { color: #000; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat; } .grayscale .hljs-emphasis { font-style: italic; } .grayscale .hljs-strong { font-weight: bold; }
0.318803
0.223292
1.Preloader 2.Site wrapper 3.Profile 4.Home tab 5.About tab 6.Portfolio tab 7.Blog tab 8.Contact 9.Miscellaneous 10.Mediaqueries /*Preloader*/ .loader { background: #f3f5f8; bottom: 0; height: 100%; left: 0; position: fixed; right: 0; top: 0; width: 100%; z-index: 10000; } .loader-inner { left: 0; position: absolute; top: 50%; width: 100%; text-align: center; transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); } .bounce{ position: relative; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; width: 50px; height: 50px; margin: 100px auto; border-radius: 3em; } .bounce-circle { width: 30px; height: 30px; background-color: #f56c6d; border-radius: 100%; -webkit-animation: sk-scaleout 1.0s infinite ease-in-out; animation: sk-scaleout 1.0s infinite ease-in-out; position: absolute; top: 11px; left: 11px; } @-webkit-keyframes sk-scaleout { 0% { -webkit-transform: scale(0) } 100% { -webkit-transform: scale(1.1); opacity: 0; } } @keyframes sk-scaleout { 0% { -webkit-transform: scale(0); transform: scale(0); } 100% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: 0; } } /*End preloader*/ /*Site wrapper*/ .wrapper { position: relative; } .blurred-content { content: ""; position: fixed; z-index: 999; top: -30px; left: 0; width: 100%; height: 5rem; background: linear-gradient(to bottom, rgba(243,245,248,1) 0%,rgba(243,245,248,.9)100%); -webkit-filter: blur(10px); -moz-filter: blur(10px); -o-filter: blur(10px); -ms-filter: blur(10px); filter: blur(20px); display: none; } .st0{clip-path:url(#SVGID_2_);fill:none;stroke:#E7EAF3;stroke-width:2.0675;stroke-miterlimit:10;} .st1{clip-path:url(#SVGID_4_);fill:none;stroke:#E7EAF3;stroke-width:2.0675;stroke-miterlimit:10;} .st2{clip-path:url(#SVGID_6_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st3{clip-path:url(#SVGID_8_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st4{clip-path:url(#SVGID_10_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st5{clip-path:url(#SVGID_12_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st6{clip-path:url(#SVGID_14_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st7{clip-path:url(#SVGID_16_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st8{clip-path:url(#SVGID_18_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st9{clip-path:url(#SVGID_20_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} #SVGID_1_,#SVGID_3_,#SVGID_5_,#SVGID_7_,#SVGID_9_,#SVGID_11_,#SVGID_13_,#SVGID_15_,#SVGID_17_,#SVGID_19_,#SVGID_21_{overflow: visible;} /*End site wrapper*/ /*Profile*/ .profile-image { position: relative; display: inline-block; border-radius: 50%; padding: 0.5625rem; background-color: #f3f5f8; width: 11.25rem; height: 11.25rem; } .profile-image:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 0; } .profile-image-border { box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; padding: 0.375rem; position: relative; z-index: 2; } .profile-image img { width: 9.375rem; height: 9.375rem; display: inline-block; } mark { color: inherit; padding: 0; background: 0 0; background-position-x: 0px; background-position-y: 0px; background-repeat: repeat; background-size: auto; background-image: linear-gradient(120deg,rgba(245, 108, 109,1) 0,rgba(245, 108, 109,1) 100%); background-repeat: no-repeat; background-size: 100% .28em; background-position: 0 70%; position: relative; } .main-nav ul{ list-style: none; } .main-nav li a{ display: block; padding: 0.5rem 1.5rem; } .main-nav li.active a.active .inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; color: red; } .header-search-form input[type="text"] { background: transparent; color: #ffffff; font-size: 0.8125rem; border: none; width: 100%; text-transform: uppercase; padding: 0.6875rem 1.5rem; font-weight: 600; color: #212529; outline: none; } .header-search-form input[type="text"]:focus { outline: none; } .header-search-form input[type="submit"] { height: 0; opacity: 0; overflow: hidden; padding: 0; width: 0; display: none; } .header-search-form .search-form-icon { color: #ffffff; font-size: 1.375rem; position: absolute; right: 1.5625rem; top: 0.625rem; cursor: pointer; } /*End profile*/ /*Home tab*/ .v-centred{ vertical-align: middle; align-items: center; display: flex; display: -ms-flexbox; -ms-flex-pack: center; justify-content: center; flex-direction: column; height: 100%; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-direction: normal; -moz-box-direction: normal; -webkit-box-orient: horizontal; -moz-box-orient: horizontal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch; -webkit-box-align: center; -moz-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; } /*End home tab*/ /*About tab*/ .title { padding: 0.3125rem 1.5625rem; transform: rotate(0deg); -webkit-transform: rotate(0); position: relative; margin-top: 1rem; box-shadow: 3px 3px 3px #cdcdcd, 3px -3px 3px #fafafa; border-radius: 1rem; background-color: #f3f5f8; text-align: center; text-transform: uppercase; } .vc { display: inline ; } .testimonial-image { position: relative; display: inline-block; border-radius: 50%; padding: 0.625rem; margin-top: -2.375rem; background-color: #f3f5f8; width: 7.1857rem; height: 7.1857rem; } .testimonial-image img { width: 5.3125rem; height: 5.3125rem; display: inline-block; border-radius: 50%; } .testimonial-image-border { box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; padding: 0.3125rem; position: relative; z-index: 2; } .testimonial-image:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 2px; } .testimonial-image:before { content: ""; position: absolute; top: 0; left: 0.125rem; width: 92%; height: 40%; background-color: #f1f3f6; z-index: 1; right: 6px; } ul.info-list li:last-child { border-bottom: 0; } ul.info-list li, ul.info-list li .inf, ul.info-list li .value{ width:auto;border: none;width: 100%; } ul.info-list li .inf { position: relative; color: #212529; font-weight: 600; } ul.info-list li .inf, ul.info-list li .value { display: inline-block; padding: 0.5rem 0; } .progress { display: block; height: 1rem; position: relative; width: 100%; overflow: visible; border-radius: 3rem; background: #f3f5f8; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .skill.des .progress .percentage { background-color: #6c757d; } .skill.dev .progress .percentage { background-color: #f56c6d; } .skill.prs .progress .percentage { background-color: #212529; } .progress .percentage { border-radius: 2em; left: 0.4375rem; position: absolute; top: 50%; height: 0.375rem; transform: translateY(-50%); } .title.des { color: #6c757d; } .title.dev { color: #f56c6d; } .title.prs { color: #212529; } .timeline { position: relative; } .timeline:before { background: #f3f5f8; box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; bottom: 0; content: ""; left: 1.375rem; position: absolute; top: 0.0625rem; width: 0.5rem; height: 100%; border-radius: 3em; } .timeline-content { padding-left: 3.375rem; padding-top: 1.25rem; position: relative; margin-bottom: 0.625rem; } .timeline-content:after { background: #f56c6d; content: ""; height: 0.625rem; left: 1.5625rem; position: absolute; text-align: center; top: 1.5rem; width: 0.25rem; border-radius: 2em; } .timeline-content span.current { color: #f56c6d; background: #f3f5f8; border-radius: 2em; padding: 0 0.75rem; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; font-size: 0.75rem; font-weight: 500; } .v-height-50{ height: 70vh; } .services-steps { position: relative; display: -ms-flexbox; display: flex; -ms-flex-pack: justify; justify-content: space-between; } .service-step-item.active .service-step-title { color:#212529 !important; } .service-step-item { text-align: center; z-index: 2; } .cursor-pointer { cursor: pointer; } .service-step-icon-container{ display: inline-block; padding-bottom: 1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; } .service-step-icon img{ width: 3rem; } .service-step-icon { position: relative; width: 7rem; height: 7rem; border-radius: 50%; margin-left: auto; margin-right: auto; margin-bottom: -1rem; line-height: .7; background-color: #f3f5f8; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .service-step-icon-inner{ position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .service{ cursor: default; } /*End about tab*/ /*Portfolio tab*/ .filter li { display: inline-block; font-size: 0.8125rem; text-transform: uppercase; font-weight: 500; } .filter li:last-child { margin-right: 0; } .filter li a { padding: 0.5rem 1.125rem; display: block; color: #212529; } .filter li a.active { color: #f56c6d; } .item{ position: relative; overflow: hidden; } .disable:before { background-color: #f1f3f6; content: ""; display: block; height: 100%; left: 0; opacity: 0.7; position: absolute; top: 0; width: 100%; z-index: 12; border-radius: 1rem; } .item img{ height: auto; width: 100%; padding: 0.3125rem; } /*End portfolio tab*/ /*Blog tab*/ .embed-video { display: inline-block; position: relative; width: 100%; padding-bottom: 56%; } .embed-video iframe { border: 0 none; bottom: 0; height: 99.6%; left: 0.375rem; position: absolute; top: 0.3125rem; width: 98.6%; border-radius: 1rem; } iframe { width: 100%; border: 0 none; display: inline-block; } .sound-frame { border-radius: 1rem; position: relative; top: 0.3125rem; width: 98.7%; left: 0.3125rem; } .comments-list li:not(:last-child) .comment { margin-bottom: 1.5rem; overflow: hidden; } .avatar-sm { width: 3rem; height: 3rem; } .comment + .comment:before { background: #f3f5f8; box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; bottom: 0; content: ""; left: 20px; position: absolute; top: 0.0625rem; width: 0.5rem; height: 100%; border-radius: 3em; } .comment + .comment { padding-left: 3rem; margin-left: 5%; position: relative; } /*End blog tab*/ /*Contact tab*/ .info-before::after, .info-before:before{ content: none; } .bounce-circle.map-marker{ position: absolute; z-index: 4; top: 45%; left: 45%; width: 1rem; height: 1rem; } .error-Form{ border: 1px solid #f56c6d !important; } #success, #error { display: none; position: relative; } #success h2, #error h2 { color: #33373d; font-size: 0.75rem; left: 0; position: absolute; text-transform: none; top: 1.25rem; } /*End contact tab*/ /*Miscellaneous*/ ::-moz-selection { background: #f56c6d; color: #ffffff; } .bg-primary::selection { color: #f56c6d; background-color: #ffffff; } .gradient-overlay:before { background-color: rgba(52,58,64,.6); position: absolute; top: 0; right: 0; bottom: 0; z-index: 1; width: 100%; height: 100%; content: ""; } a,::before { transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; } .max-width-1{ width: 1.5rem; } .max-width-1-3{ width: 1.3rem; } .max-width-1-4{ width: 1.4rem; } .max-width-1-7{ width: 1.7rem; } .max-width-2-7{ width: 2.7rem; } .max-width-4{ width: 4rem; } .max-width-5{ width: 5rem; } .max-width-2{ width: 2rem; } .max-width-3{ width: 3rem; } .max-width-8{ width: 8rem; } .max-width-9{ width: 9rem; } .max-width-10{ width: 10rem; } .ui-icon-md img{ width: 1.3rem; } .ui-icon-lg img{ width: 1.8rem; } .ui-icon-xl img{ width: 2rem; } .ui-icon-lg-2 img{ width: 2.5rem; } .ui-icon-xxl img{ width: 3rem; } .ui-icon-outer-lg{ width: 4rem; } .ui-icon-md{ width: 3.3rem; height: 3.3rem; } .ui-icon-lg{ width: 4rem; height: 4rem; } .ui-icon-xl{ width: 6rem; height: 6rem; } .ui-icon { position: relative; border-radius: 50%; margin-left: auto; margin-right: auto; line-height: .7; background-color: #f3f5f8; } .ui-icon-inner { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } p{ font-size: 0.9375rem; } .font-size-11 { font-size: .71875rem; } .font-size-12 { font-size: .75rem; } .font-size-13 { font-size:.8125rem; } .font-size-14 { font-size: .875rem; } .font-size-15 { font-size: .9375rem; } .font-size-16 { font-size: 1rem; } .font-size-17 { font-size: 1.0625rem; } .font-size-18 { font-size: 1.125rem; } .font-size-3 { font-size: 3rem; } .font-weight-200 { font-weight: 200; } .font-weight-300 { font-weight: 300; } .font-weight-400 { font-weight: 400; } .font-weight-500 { font-weight: 500; } .font-weight-600 { font-weight: 600; } .font-weight-700 { font-weight: 700; } h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a, .h1 > a, .h2 > a, .h3 > a, .h4 > a, .h5 > a, .h6 > a { color: #212529; } h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover, .h1 > a:hover, .h2 > a:hover, .h3 > a:hover, .h4 > a:hover, .h5 > a:hover, .h6 > a:hover { color: #f56c6d; } .z-index-2{ z-index: 2; } .z-index-3{ z-index: 3; } .scroll-to-top:not(.top) { opacity: 0; display: none; } .scroll-to-top,.scroll-to-top-inner { position: fixed; width: 2.8rem; height: 2.8rem; text-align: center; right: 2.875rem; bottom: 3.6875rem; padding-top: .8rem; z-index: 1022; color: #f56c6d; font-size: 0.75rem; border-radius: 3rem; background-color: #f3f5f8; } .bg-primary-svg { fill: #e25d5d; } .bg-secondary-svg { fill: #fff9f5; } .bg-white-svg{ fill: #ffffff; } .opacity-8{ opacity: 0.8; } .o-hidden{ overflow: hidden; } .form-group label { font-size: 0.9375rem; font-weight: 500; color: #222222; } svg { vertical-align: middle; } section, .section { position: relative; width: 100%; z-index: 4; overflow: hidden; } .spacer-xl-top { padding-top: 2rem; } .spacer-xlg { padding-top: 8rem; padding-bottom: 8rem; } div[class*="col-"].spacer-one-bottom-lg, .spacer-one-bottom-lg{ padding-bottom: 6rem; } div[class*="col-"].spacer-one-top-lg, .spacer-one-top-lg{ padding-top: 6rem; } div[class*="col-"].spacer-double-lg, .spacer-double-lg { padding-top: 6rem; padding-bottom: 6rem; } div[class*="col-"].spacer-one-bottom-md, .spacer-one-bottom-md{ padding-bottom: 5rem; } div[class*="col-"].spacer-one-top-md, .spacer-one-top-md{ padding-top: 5rem; } div[class*="col-"].spacer-double-md, .spacer-double-md { padding-top: 5rem; padding-bottom:5rem; } div[class*="col-"].spacer-one-bottom-sm, .spacer-one-bottom-sm{ padding-bottom: 4rem; } div[class*="col-"].spacer-one-top-sm, .spacer-one-top-sm{ padding-top: 4rem; } div[class*="col-"].spacer-double-sm, .spacer-double-sm { padding-top: 4rem; padding-bottom: 4rem; } div[class*="col-"].spacer-one-bottom-xs, .spacer-one-bottom-xs{ padding-bottom: 3rem; } div[class*="col-"].spacer-one-top-xs, .spacer-one-top-xs{ padding-top: 3rem; } div[class*="col-"].spacer-double-xs, .spacer-double-xs { padding-top: 3rem; padding-bottom: 3rem; } div[class*="col-"].spacer-one-bottom-xxs, .spacer-one-bottom-xxs{ padding-bottom: 1.5rem; } div[class*="col-"].spacer-one-top-xxs, .spacer-one-top-xxs{ padding-top: 1.5rem; } div[class*="col-"].spacer-double-xxs, .spacer-double-xxs { padding-top: 1.5rem; padding-bottom: 1.5rem; } .opacity-5{ opacity: .5; } .shadow{ box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .shadow-inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .radius-1{ border-radius: 1rem; } .radius-3{ border-radius: 3rem; } .radius-2{ border-radius: 2rem; } .radius-5{ border-radius: 5rem; } .mr-n{ margin-left: 0rem; } .btn-round { font-size: 0.75rem; width: 2.5rem; height: 2.5rem; position: relative; padding:0; color: #77838f; background-color: #f3f5f8; } .btn.btn-round:hover{ color: #f56c6d; } .btn-icon-inner { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } svg:not(:root) { overflow: hidden; } .resize-n{ resize: none; } .hover-effect-container { position: absolute; top: -1.25rem; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); transition: 0.4s; } .hover-effect { position: relative; display: block; overflow: hidden; } .hover-effect-icon { display: inline-block; text-align: center; color: #fff; font-size: 0.75rem; } .hover-effect:hover .hover-effect-container { top: 50%; } .hover-effect:before{ position: absolute; top: 0; left: 0; content: ""; width: 100%; height:100%; background-color: rgba(52,58,64,0) } .hover-effect:hover:before{ background-color: rgba(52,58,64,.3) } .inner, .outer, a .inner, a .outer{ transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; } .outer, a .outer{ box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .inner:hover, a:hover .inner, .timeline:hover .inner, .service:hover .inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .outer-sm, a .outer-sm{ box-shadow: 2px 2px 2px #cdcdcd, -2px -2px 2px #fafafa; } .inner-sm:hover{ box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; } .outer:hover, a:hover .outer, .timeline:hover .outer, .service:hover .outer{ box-shadow: 0 0 0 #cdcdcd, -0 -0 0 #fafafa; } .active.inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .active.outer { box-shadow: 0 0 0 #cdcdcd, -0 -0 0 #fafafa; } hr.divider{ position: relative; box-shadow: inset 1.5px 1.5px 1.5px #cdcdcd, inset -1.5px -1.5px 1.5px #fafafa; height: 0.5rem; border-radius: 1em; border:0; } hr.divider-lg{ width: 3.75rem; } hr.divider-md{ width: 2.5rem; } hr.divider-center:after{ left: 50%; top: 50%; transform: translate(-50%,-50%); } hr.divider-left:after{ left: 0.5rem; top: 50%; transform: translateY(-50%); } hr.divider:after { position: absolute; content: ""; height: 0.25rem; background: #f56c6d; width: 50%; border-radius: 3em; } [class*="sticky-lg"][class*="-top"] { top: 1rem; } .sticky-lg-top { position: -webkit-sticky !important; position: sticky !important; top: 0; z-index: 1020; } .parallax .p1 { left: 25%; top: 10%; } .parallax .p2 { left: 7%; top: 30%; } .parallax .p3 { left: 15%; bottom: 30%; } .parallax .p4 { right: 23%; top: 6%; } .parallax .p5 { right: 10%; top: 20%; } .parallax .p6 { right: 20%; bottom: 10%; } .parallax .layer { position: absolute; } .parallax { position: absolute; left: 0; top: 0; height: 100%; width: 100%; } .morphext > .animated { display: inline-block; } svg.svg-icon{ fill:#F56C6D; stroke:#F56C6D; stroke-width:6; stroke-miterlimit:10; } svg.svg-icon.stroke-0{ stroke-width:0; } svg.svg-icon.stroke-12{ stroke-width:12; fill: none; } .my-order-switch-1 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .my-order-switch-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 1; order: 1; } .padding-dy{ padding: 2rem; } /*End Miscellaneous*/ /*Mediaqueries*/ @media (max-width: 991px) { } @media (min-width: 992px) { .blurred-content{ display: block; } .vc{ display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; align-items: center; -webkit-align-items: center; justify-content: center; -webkit-justify-content: center; flex-direction: row; -webkit-flex-direction: row; } .title { transform: rotate(90deg); left: -15px; position: absolute; top: -0.9375rem; } .info-before:before{ content: ""; position: absolute; top: 2.875rem; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 50%; width: 96%; transform: translateX(-50%); height: 65%; border-radius: 1rem; height: 13rem; } .info-before::after { content: ""; position: absolute; top: 3.4375rem; right: 0; bottom: 0; box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 50%; width: 94%; transform: translateX(-50%); height: 59%; border-radius: 1rem; z-index: -1; height: 11.76rem; } .my-order-switch-1 { -webkit-box-ordinal-group: 3; -ms-flex-order: 1; order: 1; } .my-order-switch-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .padding-dy{ padding: 3rem; } ul.info-list li {border-bottom: 1px solid #dee2e6;} ul.info-list li .inf {width: 28%;border-right: 1px solid #dee2e6;} ul.info-list li .value{width: 70%;} ul.info-list li:last-child{border: none;} .timeline-content{padding-left:4rem;} .v-height-50{height:50vh;} .bounce-circle.map-marker{ width: 2.5rem; height: 2.5rem; } @media (max-width: 767.98px) { } @media(min-width:768px){ } @media (max-width: 575px) { h1, .h1{ font-size: 2rem; } h2, .h2{ font-size: 1.875rem } h5, .h5 { font-size: 1.15rem; } } @media (min-width: 1200px) { } /*End mediaqueries*/
HTML/LIGHT THEME/css/main.css
1.Preloader 2.Site wrapper 3.Profile 4.Home tab 5.About tab 6.Portfolio tab 7.Blog tab 8.Contact 9.Miscellaneous 10.Mediaqueries /*Preloader*/ .loader { background: #f3f5f8; bottom: 0; height: 100%; left: 0; position: fixed; right: 0; top: 0; width: 100%; z-index: 10000; } .loader-inner { left: 0; position: absolute; top: 50%; width: 100%; text-align: center; transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); } .bounce{ position: relative; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; width: 50px; height: 50px; margin: 100px auto; border-radius: 3em; } .bounce-circle { width: 30px; height: 30px; background-color: #f56c6d; border-radius: 100%; -webkit-animation: sk-scaleout 1.0s infinite ease-in-out; animation: sk-scaleout 1.0s infinite ease-in-out; position: absolute; top: 11px; left: 11px; } @-webkit-keyframes sk-scaleout { 0% { -webkit-transform: scale(0) } 100% { -webkit-transform: scale(1.1); opacity: 0; } } @keyframes sk-scaleout { 0% { -webkit-transform: scale(0); transform: scale(0); } 100% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: 0; } } /*End preloader*/ /*Site wrapper*/ .wrapper { position: relative; } .blurred-content { content: ""; position: fixed; z-index: 999; top: -30px; left: 0; width: 100%; height: 5rem; background: linear-gradient(to bottom, rgba(243,245,248,1) 0%,rgba(243,245,248,.9)100%); -webkit-filter: blur(10px); -moz-filter: blur(10px); -o-filter: blur(10px); -ms-filter: blur(10px); filter: blur(20px); display: none; } .st0{clip-path:url(#SVGID_2_);fill:none;stroke:#E7EAF3;stroke-width:2.0675;stroke-miterlimit:10;} .st1{clip-path:url(#SVGID_4_);fill:none;stroke:#E7EAF3;stroke-width:2.0675;stroke-miterlimit:10;} .st2{clip-path:url(#SVGID_6_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st3{clip-path:url(#SVGID_8_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st4{clip-path:url(#SVGID_10_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st5{clip-path:url(#SVGID_12_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st6{clip-path:url(#SVGID_14_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st7{clip-path:url(#SVGID_16_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st8{clip-path:url(#SVGID_18_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} .st9{clip-path:url(#SVGID_20_);fill:none;stroke:#F56C6D;stroke-width:2.0675;stroke-miterlimit:10;} #SVGID_1_,#SVGID_3_,#SVGID_5_,#SVGID_7_,#SVGID_9_,#SVGID_11_,#SVGID_13_,#SVGID_15_,#SVGID_17_,#SVGID_19_,#SVGID_21_{overflow: visible;} /*End site wrapper*/ /*Profile*/ .profile-image { position: relative; display: inline-block; border-radius: 50%; padding: 0.5625rem; background-color: #f3f5f8; width: 11.25rem; height: 11.25rem; } .profile-image:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 0; } .profile-image-border { box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; padding: 0.375rem; position: relative; z-index: 2; } .profile-image img { width: 9.375rem; height: 9.375rem; display: inline-block; } mark { color: inherit; padding: 0; background: 0 0; background-position-x: 0px; background-position-y: 0px; background-repeat: repeat; background-size: auto; background-image: linear-gradient(120deg,rgba(245, 108, 109,1) 0,rgba(245, 108, 109,1) 100%); background-repeat: no-repeat; background-size: 100% .28em; background-position: 0 70%; position: relative; } .main-nav ul{ list-style: none; } .main-nav li a{ display: block; padding: 0.5rem 1.5rem; } .main-nav li.active a.active .inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; color: red; } .header-search-form input[type="text"] { background: transparent; color: #ffffff; font-size: 0.8125rem; border: none; width: 100%; text-transform: uppercase; padding: 0.6875rem 1.5rem; font-weight: 600; color: #212529; outline: none; } .header-search-form input[type="text"]:focus { outline: none; } .header-search-form input[type="submit"] { height: 0; opacity: 0; overflow: hidden; padding: 0; width: 0; display: none; } .header-search-form .search-form-icon { color: #ffffff; font-size: 1.375rem; position: absolute; right: 1.5625rem; top: 0.625rem; cursor: pointer; } /*End profile*/ /*Home tab*/ .v-centred{ vertical-align: middle; align-items: center; display: flex; display: -ms-flexbox; -ms-flex-pack: center; justify-content: center; flex-direction: column; height: 100%; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-direction: normal; -moz-box-direction: normal; -webkit-box-orient: horizontal; -moz-box-orient: horizontal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch; -webkit-box-align: center; -moz-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; } /*End home tab*/ /*About tab*/ .title { padding: 0.3125rem 1.5625rem; transform: rotate(0deg); -webkit-transform: rotate(0); position: relative; margin-top: 1rem; box-shadow: 3px 3px 3px #cdcdcd, 3px -3px 3px #fafafa; border-radius: 1rem; background-color: #f3f5f8; text-align: center; text-transform: uppercase; } .vc { display: inline ; } .testimonial-image { position: relative; display: inline-block; border-radius: 50%; padding: 0.625rem; margin-top: -2.375rem; background-color: #f3f5f8; width: 7.1857rem; height: 7.1857rem; } .testimonial-image img { width: 5.3125rem; height: 5.3125rem; display: inline-block; border-radius: 50%; } .testimonial-image-border { box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; padding: 0.3125rem; position: relative; z-index: 2; } .testimonial-image:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 2px; } .testimonial-image:before { content: ""; position: absolute; top: 0; left: 0.125rem; width: 92%; height: 40%; background-color: #f1f3f6; z-index: 1; right: 6px; } ul.info-list li:last-child { border-bottom: 0; } ul.info-list li, ul.info-list li .inf, ul.info-list li .value{ width:auto;border: none;width: 100%; } ul.info-list li .inf { position: relative; color: #212529; font-weight: 600; } ul.info-list li .inf, ul.info-list li .value { display: inline-block; padding: 0.5rem 0; } .progress { display: block; height: 1rem; position: relative; width: 100%; overflow: visible; border-radius: 3rem; background: #f3f5f8; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .skill.des .progress .percentage { background-color: #6c757d; } .skill.dev .progress .percentage { background-color: #f56c6d; } .skill.prs .progress .percentage { background-color: #212529; } .progress .percentage { border-radius: 2em; left: 0.4375rem; position: absolute; top: 50%; height: 0.375rem; transform: translateY(-50%); } .title.des { color: #6c757d; } .title.dev { color: #f56c6d; } .title.prs { color: #212529; } .timeline { position: relative; } .timeline:before { background: #f3f5f8; box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; bottom: 0; content: ""; left: 1.375rem; position: absolute; top: 0.0625rem; width: 0.5rem; height: 100%; border-radius: 3em; } .timeline-content { padding-left: 3.375rem; padding-top: 1.25rem; position: relative; margin-bottom: 0.625rem; } .timeline-content:after { background: #f56c6d; content: ""; height: 0.625rem; left: 1.5625rem; position: absolute; text-align: center; top: 1.5rem; width: 0.25rem; border-radius: 2em; } .timeline-content span.current { color: #f56c6d; background: #f3f5f8; border-radius: 2em; padding: 0 0.75rem; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; font-size: 0.75rem; font-weight: 500; } .v-height-50{ height: 70vh; } .services-steps { position: relative; display: -ms-flexbox; display: flex; -ms-flex-pack: justify; justify-content: space-between; } .service-step-item.active .service-step-title { color:#212529 !important; } .service-step-item { text-align: center; z-index: 2; } .cursor-pointer { cursor: pointer; } .service-step-icon-container{ display: inline-block; padding-bottom: 1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; } .service-step-icon img{ width: 3rem; } .service-step-icon { position: relative; width: 7rem; height: 7rem; border-radius: 50%; margin-left: auto; margin-right: auto; margin-bottom: -1rem; line-height: .7; background-color: #f3f5f8; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .service-step-icon-inner{ position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .service{ cursor: default; } /*End about tab*/ /*Portfolio tab*/ .filter li { display: inline-block; font-size: 0.8125rem; text-transform: uppercase; font-weight: 500; } .filter li:last-child { margin-right: 0; } .filter li a { padding: 0.5rem 1.125rem; display: block; color: #212529; } .filter li a.active { color: #f56c6d; } .item{ position: relative; overflow: hidden; } .disable:before { background-color: #f1f3f6; content: ""; display: block; height: 100%; left: 0; opacity: 0.7; position: absolute; top: 0; width: 100%; z-index: 12; border-radius: 1rem; } .item img{ height: auto; width: 100%; padding: 0.3125rem; } /*End portfolio tab*/ /*Blog tab*/ .embed-video { display: inline-block; position: relative; width: 100%; padding-bottom: 56%; } .embed-video iframe { border: 0 none; bottom: 0; height: 99.6%; left: 0.375rem; position: absolute; top: 0.3125rem; width: 98.6%; border-radius: 1rem; } iframe { width: 100%; border: 0 none; display: inline-block; } .sound-frame { border-radius: 1rem; position: relative; top: 0.3125rem; width: 98.7%; left: 0.3125rem; } .comments-list li:not(:last-child) .comment { margin-bottom: 1.5rem; overflow: hidden; } .avatar-sm { width: 3rem; height: 3rem; } .comment + .comment:before { background: #f3f5f8; box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; bottom: 0; content: ""; left: 20px; position: absolute; top: 0.0625rem; width: 0.5rem; height: 100%; border-radius: 3em; } .comment + .comment { padding-left: 3rem; margin-left: 5%; position: relative; } /*End blog tab*/ /*Contact tab*/ .info-before::after, .info-before:before{ content: none; } .bounce-circle.map-marker{ position: absolute; z-index: 4; top: 45%; left: 45%; width: 1rem; height: 1rem; } .error-Form{ border: 1px solid #f56c6d !important; } #success, #error { display: none; position: relative; } #success h2, #error h2 { color: #33373d; font-size: 0.75rem; left: 0; position: absolute; text-transform: none; top: 1.25rem; } /*End contact tab*/ /*Miscellaneous*/ ::-moz-selection { background: #f56c6d; color: #ffffff; } .bg-primary::selection { color: #f56c6d; background-color: #ffffff; } .gradient-overlay:before { background-color: rgba(52,58,64,.6); position: absolute; top: 0; right: 0; bottom: 0; z-index: 1; width: 100%; height: 100%; content: ""; } a,::before { transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; } .max-width-1{ width: 1.5rem; } .max-width-1-3{ width: 1.3rem; } .max-width-1-4{ width: 1.4rem; } .max-width-1-7{ width: 1.7rem; } .max-width-2-7{ width: 2.7rem; } .max-width-4{ width: 4rem; } .max-width-5{ width: 5rem; } .max-width-2{ width: 2rem; } .max-width-3{ width: 3rem; } .max-width-8{ width: 8rem; } .max-width-9{ width: 9rem; } .max-width-10{ width: 10rem; } .ui-icon-md img{ width: 1.3rem; } .ui-icon-lg img{ width: 1.8rem; } .ui-icon-xl img{ width: 2rem; } .ui-icon-lg-2 img{ width: 2.5rem; } .ui-icon-xxl img{ width: 3rem; } .ui-icon-outer-lg{ width: 4rem; } .ui-icon-md{ width: 3.3rem; height: 3.3rem; } .ui-icon-lg{ width: 4rem; height: 4rem; } .ui-icon-xl{ width: 6rem; height: 6rem; } .ui-icon { position: relative; border-radius: 50%; margin-left: auto; margin-right: auto; line-height: .7; background-color: #f3f5f8; } .ui-icon-inner { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } p{ font-size: 0.9375rem; } .font-size-11 { font-size: .71875rem; } .font-size-12 { font-size: .75rem; } .font-size-13 { font-size:.8125rem; } .font-size-14 { font-size: .875rem; } .font-size-15 { font-size: .9375rem; } .font-size-16 { font-size: 1rem; } .font-size-17 { font-size: 1.0625rem; } .font-size-18 { font-size: 1.125rem; } .font-size-3 { font-size: 3rem; } .font-weight-200 { font-weight: 200; } .font-weight-300 { font-weight: 300; } .font-weight-400 { font-weight: 400; } .font-weight-500 { font-weight: 500; } .font-weight-600 { font-weight: 600; } .font-weight-700 { font-weight: 700; } h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a, .h1 > a, .h2 > a, .h3 > a, .h4 > a, .h5 > a, .h6 > a { color: #212529; } h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover, .h1 > a:hover, .h2 > a:hover, .h3 > a:hover, .h4 > a:hover, .h5 > a:hover, .h6 > a:hover { color: #f56c6d; } .z-index-2{ z-index: 2; } .z-index-3{ z-index: 3; } .scroll-to-top:not(.top) { opacity: 0; display: none; } .scroll-to-top,.scroll-to-top-inner { position: fixed; width: 2.8rem; height: 2.8rem; text-align: center; right: 2.875rem; bottom: 3.6875rem; padding-top: .8rem; z-index: 1022; color: #f56c6d; font-size: 0.75rem; border-radius: 3rem; background-color: #f3f5f8; } .bg-primary-svg { fill: #e25d5d; } .bg-secondary-svg { fill: #fff9f5; } .bg-white-svg{ fill: #ffffff; } .opacity-8{ opacity: 0.8; } .o-hidden{ overflow: hidden; } .form-group label { font-size: 0.9375rem; font-weight: 500; color: #222222; } svg { vertical-align: middle; } section, .section { position: relative; width: 100%; z-index: 4; overflow: hidden; } .spacer-xl-top { padding-top: 2rem; } .spacer-xlg { padding-top: 8rem; padding-bottom: 8rem; } div[class*="col-"].spacer-one-bottom-lg, .spacer-one-bottom-lg{ padding-bottom: 6rem; } div[class*="col-"].spacer-one-top-lg, .spacer-one-top-lg{ padding-top: 6rem; } div[class*="col-"].spacer-double-lg, .spacer-double-lg { padding-top: 6rem; padding-bottom: 6rem; } div[class*="col-"].spacer-one-bottom-md, .spacer-one-bottom-md{ padding-bottom: 5rem; } div[class*="col-"].spacer-one-top-md, .spacer-one-top-md{ padding-top: 5rem; } div[class*="col-"].spacer-double-md, .spacer-double-md { padding-top: 5rem; padding-bottom:5rem; } div[class*="col-"].spacer-one-bottom-sm, .spacer-one-bottom-sm{ padding-bottom: 4rem; } div[class*="col-"].spacer-one-top-sm, .spacer-one-top-sm{ padding-top: 4rem; } div[class*="col-"].spacer-double-sm, .spacer-double-sm { padding-top: 4rem; padding-bottom: 4rem; } div[class*="col-"].spacer-one-bottom-xs, .spacer-one-bottom-xs{ padding-bottom: 3rem; } div[class*="col-"].spacer-one-top-xs, .spacer-one-top-xs{ padding-top: 3rem; } div[class*="col-"].spacer-double-xs, .spacer-double-xs { padding-top: 3rem; padding-bottom: 3rem; } div[class*="col-"].spacer-one-bottom-xxs, .spacer-one-bottom-xxs{ padding-bottom: 1.5rem; } div[class*="col-"].spacer-one-top-xxs, .spacer-one-top-xxs{ padding-top: 1.5rem; } div[class*="col-"].spacer-double-xxs, .spacer-double-xxs { padding-top: 1.5rem; padding-bottom: 1.5rem; } .opacity-5{ opacity: .5; } .shadow{ box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .shadow-inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .radius-1{ border-radius: 1rem; } .radius-3{ border-radius: 3rem; } .radius-2{ border-radius: 2rem; } .radius-5{ border-radius: 5rem; } .mr-n{ margin-left: 0rem; } .btn-round { font-size: 0.75rem; width: 2.5rem; height: 2.5rem; position: relative; padding:0; color: #77838f; background-color: #f3f5f8; } .btn.btn-round:hover{ color: #f56c6d; } .btn-icon-inner { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } svg:not(:root) { overflow: hidden; } .resize-n{ resize: none; } .hover-effect-container { position: absolute; top: -1.25rem; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); transition: 0.4s; } .hover-effect { position: relative; display: block; overflow: hidden; } .hover-effect-icon { display: inline-block; text-align: center; color: #fff; font-size: 0.75rem; } .hover-effect:hover .hover-effect-container { top: 50%; } .hover-effect:before{ position: absolute; top: 0; left: 0; content: ""; width: 100%; height:100%; background-color: rgba(52,58,64,0) } .hover-effect:hover:before{ background-color: rgba(52,58,64,.3) } .inner, .outer, a .inner, a .outer{ transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; } .outer, a .outer{ box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; } .inner:hover, a:hover .inner, .timeline:hover .inner, .service:hover .inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .outer-sm, a .outer-sm{ box-shadow: 2px 2px 2px #cdcdcd, -2px -2px 2px #fafafa; } .inner-sm:hover{ box-shadow: inset 2px 2px 2px #cdcdcd, inset -2px -2px 2px #fafafa; } .outer:hover, a:hover .outer, .timeline:hover .outer, .service:hover .outer{ box-shadow: 0 0 0 #cdcdcd, -0 -0 0 #fafafa; } .active.inner{ box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; } .active.outer { box-shadow: 0 0 0 #cdcdcd, -0 -0 0 #fafafa; } hr.divider{ position: relative; box-shadow: inset 1.5px 1.5px 1.5px #cdcdcd, inset -1.5px -1.5px 1.5px #fafafa; height: 0.5rem; border-radius: 1em; border:0; } hr.divider-lg{ width: 3.75rem; } hr.divider-md{ width: 2.5rem; } hr.divider-center:after{ left: 50%; top: 50%; transform: translate(-50%,-50%); } hr.divider-left:after{ left: 0.5rem; top: 50%; transform: translateY(-50%); } hr.divider:after { position: absolute; content: ""; height: 0.25rem; background: #f56c6d; width: 50%; border-radius: 3em; } [class*="sticky-lg"][class*="-top"] { top: 1rem; } .sticky-lg-top { position: -webkit-sticky !important; position: sticky !important; top: 0; z-index: 1020; } .parallax .p1 { left: 25%; top: 10%; } .parallax .p2 { left: 7%; top: 30%; } .parallax .p3 { left: 15%; bottom: 30%; } .parallax .p4 { right: 23%; top: 6%; } .parallax .p5 { right: 10%; top: 20%; } .parallax .p6 { right: 20%; bottom: 10%; } .parallax .layer { position: absolute; } .parallax { position: absolute; left: 0; top: 0; height: 100%; width: 100%; } .morphext > .animated { display: inline-block; } svg.svg-icon{ fill:#F56C6D; stroke:#F56C6D; stroke-width:6; stroke-miterlimit:10; } svg.svg-icon.stroke-0{ stroke-width:0; } svg.svg-icon.stroke-12{ stroke-width:12; fill: none; } .my-order-switch-1 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .my-order-switch-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 1; order: 1; } .padding-dy{ padding: 2rem; } /*End Miscellaneous*/ /*Mediaqueries*/ @media (max-width: 991px) { } @media (min-width: 992px) { .blurred-content{ display: block; } .vc{ display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; align-items: center; -webkit-align-items: center; justify-content: center; -webkit-justify-content: center; flex-direction: row; -webkit-flex-direction: row; } .title { transform: rotate(90deg); left: -15px; position: absolute; top: -0.9375rem; } .info-before:before{ content: ""; position: absolute; top: 2.875rem; right: 0; bottom: 0; box-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 50%; width: 96%; transform: translateX(-50%); height: 65%; border-radius: 1rem; height: 13rem; } .info-before::after { content: ""; position: absolute; top: 3.4375rem; right: 0; bottom: 0; box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa; border-radius: 50%; z-index: 0; left: 50%; width: 94%; transform: translateX(-50%); height: 59%; border-radius: 1rem; z-index: -1; height: 11.76rem; } .my-order-switch-1 { -webkit-box-ordinal-group: 3; -ms-flex-order: 1; order: 1; } .my-order-switch-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .padding-dy{ padding: 3rem; } ul.info-list li {border-bottom: 1px solid #dee2e6;} ul.info-list li .inf {width: 28%;border-right: 1px solid #dee2e6;} ul.info-list li .value{width: 70%;} ul.info-list li:last-child{border: none;} .timeline-content{padding-left:4rem;} .v-height-50{height:50vh;} .bounce-circle.map-marker{ width: 2.5rem; height: 2.5rem; } @media (max-width: 767.98px) { } @media(min-width:768px){ } @media (max-width: 575px) { h1, .h1{ font-size: 2rem; } h2, .h2{ font-size: 1.875rem } h5, .h5 { font-size: 1.15rem; } } @media (min-width: 1200px) { } /*End mediaqueries*/
0.396886
0.052692
@import url('../css/landing_finance_coder.css'); * { box-sizing: border-box; margin: 0; padding: 0; } /* main { width: 90vw; height: 90vh; display: flex; justify-content: center; align-items: center; } */ #calculadoraMain { background-image: url('../img/matematica.jpeg'); padding: 50px 0; } .section-calculadora { width: 50%; height: 100%; display: flex; flex-direction: column; justify-content: space-around; align-items: center; margin-top: 15px; } #botaoCalcComum { width: auto; height: auto; padding: 2vh 3vw; border-radius: 10px; border-style: none; box-shadow: 2px 2px 10px black; background-image: linear-gradient(rgb(49, 49, 49), black, rgb(49, 49, 49)); color: rgb(204, 204, 204); font-weight: bold; font-size: 1rem; opacity: 75%; } #botaoCalcCient { width: auto; height: auto; padding: 2vh 3vw; border-radius: 10px; border-style: none; box-shadow: 2px 2px 10px black; background-image: linear-gradient(rgb(49, 49, 49), black, rgb(49, 49, 49)); color: rgb(204, 204, 204); font-weight: bold; font-size: 1rem; opacity: 90%; } #calculadoraComum { width: 65%; height: 70%; background-color: #444444f5; display: flex; flex-direction: column; justify-content: space-around; align-items: center; border-radius: 15px; box-shadow: 3px -3px 15px black; } #calculadoraCientifica { width: 65%; height: 70%; background-color: #444444f5; display: flex; flex-direction: column; justify-content: space-around; align-items: center; border-radius: 15px; box-shadow: 3px -3px 15px black; } .disable { pointer-events: none; background-color: rgba(53, 53, 53, 0.95); } #displayCo { width: 80%; height: 10%; background-color: rgb(204, 204, 204); box-shadow: 3px 3px 15px rgb(88, 88, 88); border-radius: 10px; border-width: 2px; border-color: white; display: flex; justify-content: flex-end; align-items: center; padding: 1rem; font-size: 30px; } #displayCi { width: 80%; height: 10%; background-color: rgb(204, 204, 204); box-shadow: 3px 3px 15px rgb(88, 88, 88); border-radius: 10px; border-width: 2px; border-color: white; display: flex; justify-content: flex-end; align-items: center; padding: 1rem; font-size: 30px; } .botoes-calc { width: 80%; display: flex; justify-content: space-between; } .numeros { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; } .numeros button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 26px; } .numeros button:hover { background-color: rgb(146, 146, 146); } .sinais { display: flex; flex-direction: column; justify-content: flex-end; } .sinais button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px 0px 6px 0px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 26px; } .sinais button:hover { background-color: rgb(146, 146, 146); } #cientifica { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; } #cientifica button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px 0px 6px 0px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 22px; } #cientifica button:hover { background-color: rgb(146, 146, 146); } /* aside { width: 4vw; height: 80vh; position: fixed; bottom: 10vh; right: 1vw; } #botoesLetras { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; } #botoesLetras button { width: 80%; height: 5vh; background-color: #138ACE; border-radius: 10px; border-style: none; margin-top: 5vh; color: white; font-weight: bold; } */ footer { width: 100vw; height: 10vh; display: flex; flex-direction: column; justify-content: space-around; align-items: center; box-shadow: -3px -3px 15px rgb(88, 88, 88); }
aula 10/FINANCE_CODER/css/calculadora.css
@import url('../css/landing_finance_coder.css'); * { box-sizing: border-box; margin: 0; padding: 0; } /* main { width: 90vw; height: 90vh; display: flex; justify-content: center; align-items: center; } */ #calculadoraMain { background-image: url('../img/matematica.jpeg'); padding: 50px 0; } .section-calculadora { width: 50%; height: 100%; display: flex; flex-direction: column; justify-content: space-around; align-items: center; margin-top: 15px; } #botaoCalcComum { width: auto; height: auto; padding: 2vh 3vw; border-radius: 10px; border-style: none; box-shadow: 2px 2px 10px black; background-image: linear-gradient(rgb(49, 49, 49), black, rgb(49, 49, 49)); color: rgb(204, 204, 204); font-weight: bold; font-size: 1rem; opacity: 75%; } #botaoCalcCient { width: auto; height: auto; padding: 2vh 3vw; border-radius: 10px; border-style: none; box-shadow: 2px 2px 10px black; background-image: linear-gradient(rgb(49, 49, 49), black, rgb(49, 49, 49)); color: rgb(204, 204, 204); font-weight: bold; font-size: 1rem; opacity: 90%; } #calculadoraComum { width: 65%; height: 70%; background-color: #444444f5; display: flex; flex-direction: column; justify-content: space-around; align-items: center; border-radius: 15px; box-shadow: 3px -3px 15px black; } #calculadoraCientifica { width: 65%; height: 70%; background-color: #444444f5; display: flex; flex-direction: column; justify-content: space-around; align-items: center; border-radius: 15px; box-shadow: 3px -3px 15px black; } .disable { pointer-events: none; background-color: rgba(53, 53, 53, 0.95); } #displayCo { width: 80%; height: 10%; background-color: rgb(204, 204, 204); box-shadow: 3px 3px 15px rgb(88, 88, 88); border-radius: 10px; border-width: 2px; border-color: white; display: flex; justify-content: flex-end; align-items: center; padding: 1rem; font-size: 30px; } #displayCi { width: 80%; height: 10%; background-color: rgb(204, 204, 204); box-shadow: 3px 3px 15px rgb(88, 88, 88); border-radius: 10px; border-width: 2px; border-color: white; display: flex; justify-content: flex-end; align-items: center; padding: 1rem; font-size: 30px; } .botoes-calc { width: 80%; display: flex; justify-content: space-between; } .numeros { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; } .numeros button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 26px; } .numeros button:hover { background-color: rgb(146, 146, 146); } .sinais { display: flex; flex-direction: column; justify-content: flex-end; } .sinais button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px 0px 6px 0px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 26px; } .sinais button:hover { background-color: rgb(146, 146, 146); } #cientifica { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; } #cientifica button { width: 4vw; height: 6vh; border-radius: 10px; border-style: none; font-weight: bold; background-color: rgb(204, 204, 204); margin: 6px 0px 6px 0px; box-shadow: 3px 3px 15px rgb(88, 88, 88); font-size: 22px; } #cientifica button:hover { background-color: rgb(146, 146, 146); } /* aside { width: 4vw; height: 80vh; position: fixed; bottom: 10vh; right: 1vw; } #botoesLetras { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; } #botoesLetras button { width: 80%; height: 5vh; background-color: #138ACE; border-radius: 10px; border-style: none; margin-top: 5vh; color: white; font-weight: bold; } */ footer { width: 100vw; height: 10vh; display: flex; flex-direction: column; justify-content: space-around; align-items: center; box-shadow: -3px -3px 15px rgb(88, 88, 88); }
0.38445
0.100879
body{ margin:0; padding:0; background:#FFFFFF; overflow-x:hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent ugly blue glow on chrome and safari */ a:hover{text-decoration: none; cursor:pointer;} /* Preloader */ .page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;} /* = Blocs -------------------------------------------------------------- */ .bloc{ width:100%; clear:both; background: 50% 50% no-repeat; padding:0 50px; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; position:relative; display:flex; } .bloc .container{ padding-left:0; padding-right:0; } /* Sizes */ .bloc-lg{ padding:100px 50px; } /* = Full Screen Blocs -------------------------------------------------------------- */ .bloc-fill-screen{ min-height:100vh; display: flex; flex-direction: column; padding-top:20px; padding-bottom:20px; } .bloc-fill-screen > .container{ align-self: flex-middle; flex-grow: 1; display: flex; } .bloc-fill-screen > .container > .row{ flex-grow: 1; align-self: center; width:100%; } .bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{ flex-grow: 0; } .bloc-fill-screen .fill-bloc-top-edge{ align-self: flex-start; } .bloc-fill-screen .fill-bloc-bottom-edge{ align-self: flex-end; } /* = Full Width Blocs -------------------------------------------------------------- */ .full-width-bloc{ padding-left:0; padding-right:0; } .full-width-bloc .row{ margin-left:0; margin-right:0; } .full-width-bloc .container{ width:100%; max-width:100%!important; } .full-width-bloc .carousel img{ width:100%; height:auto; } /* Background Styles */ .bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{ -webkit-background-size: auto!important; -moz-background-size: auto!important; -o-background-size: auto!important; background-size: auto!important; } /* Video Background Styles */ .video-bg-container, .bloc-video{ position: absolute; top: 0; bottom: 0; left: 50%; right: -50%; overflow: hidden; transform: translateX(-50%); -webkit-transform:translateX(-50%); } .bloc-video, .video-bg-container iframe{ width: auto; height: auto; min-width: 100%; min-height: 100%; z-index: 0; } /* Background Effects */ .b-parallax{ background-attachment:fixed; } /* Disable Parallax on Mobile Touch Devices */ @media (hover: none) { .b-parallax{ background-attachment:scroll; } } /* Dark theme */ .d-bloc{ color:rgba(255,255,255,.7); } .d-bloc button:hover{ color:rgba(255,255,255,.9); } .d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{ border-color:rgba(255,255,255,.9); } .d-bloc .divider-h span{ border-color:rgba(255,255,255,.2); } .d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{ color:rgba(255,255,255,.6); } .d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{ color:rgba(255,255,255,1); } .d-bloc .navbar-toggle .icon-bar{ background:rgba(255,255,255,1); } .d-bloc .btn-wire,.d-bloc .btn-wire:hover{ color:rgba(255,255,255,1); border-color:rgba(255,255,255,1); } .d-bloc .card{ color:rgba(0,0,0,.5); } .d-bloc .card button:hover{ color:rgba(0,0,0,.7); } .d-bloc .card icon{ border-color:rgba(0,0,0,.7); } .d-bloc .card .divider-h span{ border-color:rgba(0,0,0,.1); } .d-bloc .card .a-btn{ color:rgba(0,0,0,.6); } .d-bloc .card .a-btn:hover{ color:rgba(0,0,0,1); } .d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{ color:rgba(0,0,0,.7); border-color:rgba(0,0,0,.3); } /* Light theme */ .d-bloc .card,.l-bloc{ color:rgba(0,0,0,.5); } .d-bloc .card button:hover,.l-bloc button:hover{ color:rgba(0,0,0,.7); } .l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{ border-color:rgba(0,0,0,.7); } .d-bloc .card .divider-h span,.l-bloc .divider-h span{ border-color:rgba(0,0,0,.1); } .d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{ color:rgba(0,0,0,.6); } .d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{ color:rgba(0,0,0,1); } .l-bloc .navbar-toggle .icon-bar{ color:rgba(0,0,0,.6); } .d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{ color:rgba(0,0,0,.7); border-color:rgba(0,0,0,.3); } /* = NavBar -------------------------------------------------------------- */ .hero .hero-nav{ padding-left:inherit; padding-right:inherit; } /* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link { color: rgb(64, 64, 64); } .btco-menu li > a { padding: 10px 15px; color: #000; } .btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{ background: transparent; outline: 0; } .dropdown-menu .show > .dropdown-toggle::after{ transform: rotate(-90deg); } /* = Bric adjustment margins -------------------------------------------------------------- */ .mg-md{ margin-top:10px; margin-bottom:20px; } /* = Buttons -------------------------------------------------------------- */ .btn-d,.btn-d:hover,.btn-d:focus{ color:#FFF; background:rgba(0,0,0,.3); } /* Prevent ugly blue glow on chrome and safari */ button{ outline: none!important; } .btn-wire{ background:transparent!important; border:2px solid transparent; } .btn-wire:hover{ background:transparent!important; border:2px solid transparent; } .a-block{ width:100%; text-align:left; display: inline-block; } .text-center .a-block{ text-align:center; } /* = Icons -------------------------------------------------------------- */ .icon-md{ font-size:30px!important; } /* = Text & Icon Styles -------------------------------------------------------------- */ .glow-t{ text-shadow:0 0 10px #FFF; } .threeD-t{ text-shadow:0 1px 0 #ccc,0 2px 0 #c9c9c9,0 3px 0 #bbb,0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25),0 20px 20px rgba(0,0,0,.15); } .blockquote{ padding:0 20px; border-left:2px solid; } .blockquote.text-right{ border-left:0; border-right:2px solid; } .card-sq, .card-sq .card-header, .card-sq .card-footer{ border-radius:0; } .card-rd{ border-radius:30px; } .card-rd .card-header{ border-radius:29px 29px 0 0; } .card-rd .card-footer{ border-radius:0 0 29px 29px; } /* ScrollToTop button */ .scrollToTop{ width:40px; height:40px; position:fixed; bottom:20px; right:20px; opacity: 0; z-index: 500; transition: all .3s ease-in-out; } .scrollToTop span{ margin-top: 6px; } .showScrollTop{ font-size: 14px; opacity: 1; } /* = Custom Styling -------------------------------------------------------------- */ h1,h2,h3,h4,h5,h6,p,label,.btn,a{ font-family:"Helvetica"; } .container{ max-width:1140px; } .link-style{ font-family:Lato; line-height:50px; font-size:40px; width:100%; } .h1-style{ width:100%; font-family:"Abril Fatface"; } .h3-style{ font-family:Lato; font-weight:300; } .h1-德宗軸承股份有限公司-style{ font-family:"Droid Sans"; width:37.74%; } .navbar-brand img{ width:100px; height:100px; } .img-style{ width:146px; } .team-card{ min-height:350px; } .h4-style{ width:100%; font-family:"Abril Fatface"; } /* = Colour -------------------------------------------------------------- */ /* Background colour styles */ .bgc-outer-space{ background-color:rgba(66,66,66,0.3); } .bgc-black{ background-color:#000000; } /* Text colour styles */ .tc-black{ color:#000000!important; } .tc-midnight-blue{ color:#101E64!important; } /* Bloc image backgrounds */ .bg-abpic0827{ background-image:url("img/abpic0827.jpg"); } .bg-city-overlay{ background-image:url("img/city-overlay.png"); } /* = Mobile adjustments -------------------------------------------------------------- */ @media (max-width: 1024px) { .bloc{ padding-left: 20px; padding-right: 20px; } .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{ padding-left: 0; padding-right: 0; } } @media (max-width: 991px) { .container{width:100%;} .page-container, #hero-bloc{overflow-x: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */ .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/ .bloc-group, .bloc-group .bloc{display:block;width:100%;} } @media (max-width: 767px) { .page-container{ overflow-x: hidden; position:relative; } .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{ padding-left:0;padding-right:0; } .a-block{ padding:0 10px; } .btn-dwn{ display:none; } .voffset{ margin-top:5px; } .voffset-md{ margin-top:20px; } .voffset-lg{ margin-top:30px; } form{ padding:5px; } .close-lightbox{ display:inline-block; } .blocsapp-device-iphone5{ background-size: 216px 425px; padding-top:60px; width:216px; height:425px; } .blocsapp-device-iphone5 img{ width: 180px; height: 320px; } } @media (max-width: 575px){ .footer-link{ text-align:center; } }
style.css
body{ margin:0; padding:0; background:#FFFFFF; overflow-x:hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent ugly blue glow on chrome and safari */ a:hover{text-decoration: none; cursor:pointer;} /* Preloader */ .page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;} /* = Blocs -------------------------------------------------------------- */ .bloc{ width:100%; clear:both; background: 50% 50% no-repeat; padding:0 50px; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; position:relative; display:flex; } .bloc .container{ padding-left:0; padding-right:0; } /* Sizes */ .bloc-lg{ padding:100px 50px; } /* = Full Screen Blocs -------------------------------------------------------------- */ .bloc-fill-screen{ min-height:100vh; display: flex; flex-direction: column; padding-top:20px; padding-bottom:20px; } .bloc-fill-screen > .container{ align-self: flex-middle; flex-grow: 1; display: flex; } .bloc-fill-screen > .container > .row{ flex-grow: 1; align-self: center; width:100%; } .bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{ flex-grow: 0; } .bloc-fill-screen .fill-bloc-top-edge{ align-self: flex-start; } .bloc-fill-screen .fill-bloc-bottom-edge{ align-self: flex-end; } /* = Full Width Blocs -------------------------------------------------------------- */ .full-width-bloc{ padding-left:0; padding-right:0; } .full-width-bloc .row{ margin-left:0; margin-right:0; } .full-width-bloc .container{ width:100%; max-width:100%!important; } .full-width-bloc .carousel img{ width:100%; height:auto; } /* Background Styles */ .bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{ -webkit-background-size: auto!important; -moz-background-size: auto!important; -o-background-size: auto!important; background-size: auto!important; } /* Video Background Styles */ .video-bg-container, .bloc-video{ position: absolute; top: 0; bottom: 0; left: 50%; right: -50%; overflow: hidden; transform: translateX(-50%); -webkit-transform:translateX(-50%); } .bloc-video, .video-bg-container iframe{ width: auto; height: auto; min-width: 100%; min-height: 100%; z-index: 0; } /* Background Effects */ .b-parallax{ background-attachment:fixed; } /* Disable Parallax on Mobile Touch Devices */ @media (hover: none) { .b-parallax{ background-attachment:scroll; } } /* Dark theme */ .d-bloc{ color:rgba(255,255,255,.7); } .d-bloc button:hover{ color:rgba(255,255,255,.9); } .d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{ border-color:rgba(255,255,255,.9); } .d-bloc .divider-h span{ border-color:rgba(255,255,255,.2); } .d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{ color:rgba(255,255,255,.6); } .d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{ color:rgba(255,255,255,1); } .d-bloc .navbar-toggle .icon-bar{ background:rgba(255,255,255,1); } .d-bloc .btn-wire,.d-bloc .btn-wire:hover{ color:rgba(255,255,255,1); border-color:rgba(255,255,255,1); } .d-bloc .card{ color:rgba(0,0,0,.5); } .d-bloc .card button:hover{ color:rgba(0,0,0,.7); } .d-bloc .card icon{ border-color:rgba(0,0,0,.7); } .d-bloc .card .divider-h span{ border-color:rgba(0,0,0,.1); } .d-bloc .card .a-btn{ color:rgba(0,0,0,.6); } .d-bloc .card .a-btn:hover{ color:rgba(0,0,0,1); } .d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{ color:rgba(0,0,0,.7); border-color:rgba(0,0,0,.3); } /* Light theme */ .d-bloc .card,.l-bloc{ color:rgba(0,0,0,.5); } .d-bloc .card button:hover,.l-bloc button:hover{ color:rgba(0,0,0,.7); } .l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{ border-color:rgba(0,0,0,.7); } .d-bloc .card .divider-h span,.l-bloc .divider-h span{ border-color:rgba(0,0,0,.1); } .d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{ color:rgba(0,0,0,.6); } .d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{ color:rgba(0,0,0,1); } .l-bloc .navbar-toggle .icon-bar{ color:rgba(0,0,0,.6); } .d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{ color:rgba(0,0,0,.7); border-color:rgba(0,0,0,.3); } /* = NavBar -------------------------------------------------------------- */ .hero .hero-nav{ padding-left:inherit; padding-right:inherit; } /* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link { color: rgb(64, 64, 64); } .btco-menu li > a { padding: 10px 15px; color: #000; } .btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{ background: transparent; outline: 0; } .dropdown-menu .show > .dropdown-toggle::after{ transform: rotate(-90deg); } /* = Bric adjustment margins -------------------------------------------------------------- */ .mg-md{ margin-top:10px; margin-bottom:20px; } /* = Buttons -------------------------------------------------------------- */ .btn-d,.btn-d:hover,.btn-d:focus{ color:#FFF; background:rgba(0,0,0,.3); } /* Prevent ugly blue glow on chrome and safari */ button{ outline: none!important; } .btn-wire{ background:transparent!important; border:2px solid transparent; } .btn-wire:hover{ background:transparent!important; border:2px solid transparent; } .a-block{ width:100%; text-align:left; display: inline-block; } .text-center .a-block{ text-align:center; } /* = Icons -------------------------------------------------------------- */ .icon-md{ font-size:30px!important; } /* = Text & Icon Styles -------------------------------------------------------------- */ .glow-t{ text-shadow:0 0 10px #FFF; } .threeD-t{ text-shadow:0 1px 0 #ccc,0 2px 0 #c9c9c9,0 3px 0 #bbb,0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25),0 20px 20px rgba(0,0,0,.15); } .blockquote{ padding:0 20px; border-left:2px solid; } .blockquote.text-right{ border-left:0; border-right:2px solid; } .card-sq, .card-sq .card-header, .card-sq .card-footer{ border-radius:0; } .card-rd{ border-radius:30px; } .card-rd .card-header{ border-radius:29px 29px 0 0; } .card-rd .card-footer{ border-radius:0 0 29px 29px; } /* ScrollToTop button */ .scrollToTop{ width:40px; height:40px; position:fixed; bottom:20px; right:20px; opacity: 0; z-index: 500; transition: all .3s ease-in-out; } .scrollToTop span{ margin-top: 6px; } .showScrollTop{ font-size: 14px; opacity: 1; } /* = Custom Styling -------------------------------------------------------------- */ h1,h2,h3,h4,h5,h6,p,label,.btn,a{ font-family:"Helvetica"; } .container{ max-width:1140px; } .link-style{ font-family:Lato; line-height:50px; font-size:40px; width:100%; } .h1-style{ width:100%; font-family:"Abril Fatface"; } .h3-style{ font-family:Lato; font-weight:300; } .h1-德宗軸承股份有限公司-style{ font-family:"Droid Sans"; width:37.74%; } .navbar-brand img{ width:100px; height:100px; } .img-style{ width:146px; } .team-card{ min-height:350px; } .h4-style{ width:100%; font-family:"Abril Fatface"; } /* = Colour -------------------------------------------------------------- */ /* Background colour styles */ .bgc-outer-space{ background-color:rgba(66,66,66,0.3); } .bgc-black{ background-color:#000000; } /* Text colour styles */ .tc-black{ color:#000000!important; } .tc-midnight-blue{ color:#101E64!important; } /* Bloc image backgrounds */ .bg-abpic0827{ background-image:url("img/abpic0827.jpg"); } .bg-city-overlay{ background-image:url("img/city-overlay.png"); } /* = Mobile adjustments -------------------------------------------------------------- */ @media (max-width: 1024px) { .bloc{ padding-left: 20px; padding-right: 20px; } .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{ padding-left: 0; padding-right: 0; } } @media (max-width: 991px) { .container{width:100%;} .page-container, #hero-bloc{overflow-x: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */ .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/ .bloc-group, .bloc-group .bloc{display:block;width:100%;} } @media (max-width: 767px) { .page-container{ overflow-x: hidden; position:relative; } .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{ padding-left:0;padding-right:0; } .a-block{ padding:0 10px; } .btn-dwn{ display:none; } .voffset{ margin-top:5px; } .voffset-md{ margin-top:20px; } .voffset-lg{ margin-top:30px; } form{ padding:5px; } .close-lightbox{ display:inline-block; } .blocsapp-device-iphone5{ background-size: 216px 425px; padding-top:60px; width:216px; height:425px; } .blocsapp-device-iphone5 img{ width: 180px; height: 320px; } } @media (max-width: 575px){ .footer-link{ text-align:center; } }
0.263884
0.043589
@font-face { font-family: 'PT Sans'; src: local("PT Sans"), local("PTSans-Regular"), url("../fonts/PTSans-Regular.woff") format("woff"); font-weight: normal; font-style: normal; } @font-face { font-family: 'PT Sans'; src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fonts/PTSans-Bold.woff") format("woff"); font-weight: bold; font-style: normal; } html { font-size: 16px; font-size: calc(0.8rem + 0.3vw); } body { font-family: "PT Sans", -apple-system, "Helvetica Neue", "Segoe UI", "Roboto", sans-serif; font-weight: 400; background: #ffffff; color: #1c1d22; margin: 0; line-height: 1.6; min-height: 100vh; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @media (prefers-color-scheme: dark) { body { background: #1c1d22; color: #ffffff; } } b, strong, th { font-weight: 600; } a { color: inherit; text-decoration: inherit; } a:hover { text-decoration: underline; } article a { color: #68f; } header time { color: #8e8e91; } hr { border: 1px solid rgba(142, 142, 145, 0.3); margin: 2em 0; } blockquote { background: rgba(142, 142, 145, 0.06); border-left: 3px solid rgba(142, 142, 145, 0.9); padding: 1px 1.5em; opacity: .75; } blockquote, figure { margin: 1em 0; } img, li { margin: .5em 0; } img { border-radius: 2px; max-width: 100%; height: auto; } table { width: 100%; border-spacing: 1px; box-shadow: 0 0 0 1px rgba(142, 142, 145, 0.12) inset; } th, td { padding: .5em 1em; box-shadow: 0 0 0 1px rgba(142, 142, 145, 0.12); } tr:hover, tr:nth-child(odd) td { background: rgba(142, 142, 145, 0.04); } pre { background: rgba(40, 41, 48, 0.9)!important; color: #ffffff; border-radius: 2px; font-size: .8em; margin: 1.5em 0; padding: .8em 1.2em; overflow-x: auto; } :not(pre) > code { font-size: .9em; background: rgba(142, 142, 145, 0.15); opacity: .7; border-radius: 2px; margin: 0 .1em; padding: .2em .4em; } body > header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; box-shadow: 0 0 0.6em rgba(28, 29, 34, 0.05); border-bottom: 1px solid rgba(142, 142, 145, 0.16); } article header { margin-bottom: 1.5em; } article header h1 { font-size: 1.7em; margin: 0 0 .1em; } nav { margin: .5em -1em; } nav a { margin: .5em 1em; } body > header, body > article { padding: 1.5em; } @media (min-width: 32em) { body > header, body > article { padding: 1.7em calc(38% - 12em); } } .title { font-size: 1.4em; } .archive { font-size: 1.1em; } .archive time { display: inline-block; min-width: 10ch; margin: 0 .2em; } .more { margin: 2em 0 1em; } .more a { border-radius: 2px; border: 1.5px solid #68f; padding: .4em .8em; transition: .2s background, .2s color; } .more a:hover { color: #fff; background: #68f; text-decoration: inherit; }
static/css/minimal.css
@font-face { font-family: 'PT Sans'; src: local("PT Sans"), local("PTSans-Regular"), url("../fonts/PTSans-Regular.woff") format("woff"); font-weight: normal; font-style: normal; } @font-face { font-family: 'PT Sans'; src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fonts/PTSans-Bold.woff") format("woff"); font-weight: bold; font-style: normal; } html { font-size: 16px; font-size: calc(0.8rem + 0.3vw); } body { font-family: "PT Sans", -apple-system, "Helvetica Neue", "Segoe UI", "Roboto", sans-serif; font-weight: 400; background: #ffffff; color: #1c1d22; margin: 0; line-height: 1.6; min-height: 100vh; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @media (prefers-color-scheme: dark) { body { background: #1c1d22; color: #ffffff; } } b, strong, th { font-weight: 600; } a { color: inherit; text-decoration: inherit; } a:hover { text-decoration: underline; } article a { color: #68f; } header time { color: #8e8e91; } hr { border: 1px solid rgba(142, 142, 145, 0.3); margin: 2em 0; } blockquote { background: rgba(142, 142, 145, 0.06); border-left: 3px solid rgba(142, 142, 145, 0.9); padding: 1px 1.5em; opacity: .75; } blockquote, figure { margin: 1em 0; } img, li { margin: .5em 0; } img { border-radius: 2px; max-width: 100%; height: auto; } table { width: 100%; border-spacing: 1px; box-shadow: 0 0 0 1px rgba(142, 142, 145, 0.12) inset; } th, td { padding: .5em 1em; box-shadow: 0 0 0 1px rgba(142, 142, 145, 0.12); } tr:hover, tr:nth-child(odd) td { background: rgba(142, 142, 145, 0.04); } pre { background: rgba(40, 41, 48, 0.9)!important; color: #ffffff; border-radius: 2px; font-size: .8em; margin: 1.5em 0; padding: .8em 1.2em; overflow-x: auto; } :not(pre) > code { font-size: .9em; background: rgba(142, 142, 145, 0.15); opacity: .7; border-radius: 2px; margin: 0 .1em; padding: .2em .4em; } body > header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; box-shadow: 0 0 0.6em rgba(28, 29, 34, 0.05); border-bottom: 1px solid rgba(142, 142, 145, 0.16); } article header { margin-bottom: 1.5em; } article header h1 { font-size: 1.7em; margin: 0 0 .1em; } nav { margin: .5em -1em; } nav a { margin: .5em 1em; } body > header, body > article { padding: 1.5em; } @media (min-width: 32em) { body > header, body > article { padding: 1.7em calc(38% - 12em); } } .title { font-size: 1.4em; } .archive { font-size: 1.1em; } .archive time { display: inline-block; min-width: 10ch; margin: 0 .2em; } .more { margin: 2em 0 1em; } .more a { border-radius: 2px; border: 1.5px solid #68f; padding: .4em .8em; transition: .2s background, .2s color; } .more a:hover { color: #fff; background: #68f; text-decoration: inherit; }
0.406273
0.13134
.wrapper{ display: flex; color: #1c2b40; padding-bottom: 0.5em } .wrapper > span:first-child{ display: flex; flex: 1 } .commit-authored{ margin-top: 0.5em; padding-right: 1em } .other-options{ display: flex } .author{ margin-top: 0.5em; padding-left: 1em } .commit-message{ margin: 1em 0 } .commit-message > div{ border-left: 3px solid rgb(230, 230, 230); color: rgb(204, 204, 204); width: 100%; margin-top: 1em; padding: 0.5em 0 0 1em; min-height: 3em } .commit-message pre { margin: 0; padding: 0; border: none; } .stats{ color: #1c2b40; font-weight: 700 } .file-changed-header{ margin-top: 0; color: "#fff"; border-bottom: 1px solid #e5e5e5; display: flex; border-radius: 0.3vw 0.3vw 0 0; background-color: #2db391 } .file-changed-header p{ color: white; padding:0.5em 1em; width: auto; } .pipeline-details{ display: flex; margin: 1em 1em 1em auto; border: 1px solid #adadad; border-radius: 3px; height: 30px; } .pipeline-details span{ background-color: #e5e5e5; margin-left: 0; padding: 0.5em 1em; } .pipeline-details a{ padding: 0.5em; text-decoration: none; cursor: pointer; border-left: 1px solid #adadad; width: 6em; background-color: #ffffff; transition: background 0.3s ease; } .pipeline-details a:hover{ background-color: #e5e5e5 } .pipeline-modify-details{ border-bottom: 1px solid #e5e5e5; background-color: #e5e5e5; display: flex; } .pipeline-modify-details span{ font-weight: 700; padding-left: 1em } .addition{ color: #00b809 } .deleted{ color: #ff5757 } /* .btn{ margin-left: 1em; } .btn a{ width: auto } */ .btn-background{ background-color: white; } .image-display{ display: flex; justify-content: space-around; } .image-display > div{ display: flex; flex-direction: column } .grey-area{ background-color: #797a79; width: 400px; height: 300px; } .filechange-info{ display: flex; padding: 0.5em } .committer-pic{ height: 1.8em; width: 1.8em; background-color: #fff; display: flex; } .committer-pic > img{ width: 100%; border-radius: 50%; } .alert { color: #fc9403; background-color: rgb(252, 148, 3, 0.3); border: 1px solid transparent; }
web/src/components/views/CommitsDetails/commitDetails.css
.wrapper{ display: flex; color: #1c2b40; padding-bottom: 0.5em } .wrapper > span:first-child{ display: flex; flex: 1 } .commit-authored{ margin-top: 0.5em; padding-right: 1em } .other-options{ display: flex } .author{ margin-top: 0.5em; padding-left: 1em } .commit-message{ margin: 1em 0 } .commit-message > div{ border-left: 3px solid rgb(230, 230, 230); color: rgb(204, 204, 204); width: 100%; margin-top: 1em; padding: 0.5em 0 0 1em; min-height: 3em } .commit-message pre { margin: 0; padding: 0; border: none; } .stats{ color: #1c2b40; font-weight: 700 } .file-changed-header{ margin-top: 0; color: "#fff"; border-bottom: 1px solid #e5e5e5; display: flex; border-radius: 0.3vw 0.3vw 0 0; background-color: #2db391 } .file-changed-header p{ color: white; padding:0.5em 1em; width: auto; } .pipeline-details{ display: flex; margin: 1em 1em 1em auto; border: 1px solid #adadad; border-radius: 3px; height: 30px; } .pipeline-details span{ background-color: #e5e5e5; margin-left: 0; padding: 0.5em 1em; } .pipeline-details a{ padding: 0.5em; text-decoration: none; cursor: pointer; border-left: 1px solid #adadad; width: 6em; background-color: #ffffff; transition: background 0.3s ease; } .pipeline-details a:hover{ background-color: #e5e5e5 } .pipeline-modify-details{ border-bottom: 1px solid #e5e5e5; background-color: #e5e5e5; display: flex; } .pipeline-modify-details span{ font-weight: 700; padding-left: 1em } .addition{ color: #00b809 } .deleted{ color: #ff5757 } /* .btn{ margin-left: 1em; } .btn a{ width: auto } */ .btn-background{ background-color: white; } .image-display{ display: flex; justify-content: space-around; } .image-display > div{ display: flex; flex-direction: column } .grey-area{ background-color: #797a79; width: 400px; height: 300px; } .filechange-info{ display: flex; padding: 0.5em } .committer-pic{ height: 1.8em; width: 1.8em; background-color: #fff; display: flex; } .committer-pic > img{ width: 100%; border-radius: 50%; } .alert { color: #fc9403; background-color: rgb(252, 148, 3, 0.3); border: 1px solid transparent; }
0.601477
0.156395
@charset "utf-8"; /* CSS Document */ /* common styles */ body {background: #f2f2f2; font:13px/20px Tahoma, Geneva, sans-serif; margin:0; padding:0; color:#555; } h1, h2, h3, h4, h5, h6 { font-family:Tahoma, Geneva, sans-serif !important; } /*---Normal link---*/ a { color: #034D68; text-decoration: none; font:13px Tahoma, Geneva, sans-serif; } a:hover, a:active, a:focus { color: #034D68; text-decoration: underline; } input:focus { outline: none; } img { margin:0 auto; display:block; } p { font:13px/18px Tahoma, Geneva, sans-serif; color:#545454; } .sfInputbox { -moz-transition: all 0.3s ease-out 0s; background:#fff; border: 1px solid #aaa; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #999; font-size: 12px; padding:7px 5px; margin:3px 0 0 0; width: 200px; } .sfInputbox:focus { background:#fff; -webkit-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); box-shadow:0 0 8px rgba(0, 0, 0, 0.2); -o-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); -ms-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); border: 1px solid #96b3fc; outline:none; outline:none;} .sfButtonwrapper .sfBtn { margin-right:12px; font-size:16px; color:#fff; border:none; padding:10px 20px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; cursor:pointer; display:inline-block; background: #4a4a4a; } .sfButtonwrapper .sfBtn:hover { background: #419936; color:#fff; text-decoration:none; } .sfinstalbtn { float:right; margin:69px -53px 50px; } .sfinstalbtn .sfBtn { margin-right:12px; font-size:28px; color:#fff; border:none; padding:12px 24px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; cursor:pointer; display:inline-block; background: #36802d; -webkit-box-shadow: 0 0 5px rgba(0,0,0,.5); -moz-box-shadow: 0 0 5px rgba(0,0,0,.5); box-shadow: 0 0 5px rgba(0,0,0,.5); -o-box-shadow: 0 0 5px rgba(0,0,0,.5); -ms-box-shadow: 0 0 5px rgba(0,0,0,.5); -moz-transition:background 0.2s linear; } .sfinstalbtn .sfBtn:hover { background:#419936; color:#fff; text-decoration:none; } .sfinstalbtn .sfBtn:active { background-position:0 -120px; } .sfFormlabel { font-weight:bold; font-size:13px; color:#434343; display:block; white-space:nowrap; } h2 { font-size:28px; color:#0B4B83; margin:0px 0 30px; text-align:center; } h3 { font-size:18px; color:#222; padding-bottom:5px; border-bottom:1px solid #ccc; } #sfInstallWrapper { margin:0 auto; width:750px; position:relative; } .sfLogo h1 { background:url(../images/aspxcommerce.png) no-repeat; background-size:100% auto; width:185px; margin:40px auto; min-height:66px; } #sfInstallWrapper .sfOuter { background:#fff; position:relative; padding:40px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 0 5px rgba(0,0,0,.25); -moz-box-shadow: 0 0 5px rgba(0,0,0,.25); box-shadow: 0 0 5px rgba(0,0,0,.25); -o-box-shadow: 0 0 5px rgba(0,0,0,.25); -ms-box-shadow: 0 0 5px rgba(0,0,0,.25); -moz-transition:background 0.2s linear; } .sfInstallpart { /*padding:30px 50px 0;*/ } /*---Form Wrapper---*/ .sfHelptext { font-size:11px; line-height:18px; padding-top:5px; display:block !important; color:#777; overflow:hidden; } .sfHelptext.sfInline { padding-top:0; color:#1a1a1a; font-size:12px;} table tr td { padding:5px 0; } table tr td table td { padding:0; vertical-align:top; } .sfTemplate { margin:20px 0 0 0; overflow:hidden; } .sfTemplate ul { padding:0; margin:0; } .sfTemplate ul li { float:left; list-style:none; margin:0 15px 15px; width:185px; } .sfTemplate ul li img { width: 185px; height:185px; background:#fff; text-align:center; } .sfTemplate ul li p { color:#4a626e; text-transform:capitalize; font-size:13px; margin-bottom:3px; } .sfSuccess { color:#138240; } .sfError { color:#943c30; display:block; font-size:12px; } .sfInner > .sfError, .sfInner > .sfSuccess { display:block; font:bold 13px/18px Tahoma, Geneva, sans-serif; padding:16px 50px; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; margin-bottom:2px; } .sfInner > .sfError { background:#fadebc url(../images/error.png) no-repeat 16px 14px; } .sfInner > .sfSuccess { background:#89dd94 url(../images/success.png) no-repeat 16px 14px; } .sfCheckBox { float:left; } .sfInline { display:inline; } .sfgap { padding:0 0 0 27px; } .sfgap2 { padding-left:52px; } .sfButtonwrapper { margin:40px 0px; overflow:hidden; border-bottom:1px dashed #ccc; padding:15px 0;} .sfButtonwrapper p { float:left; width:450px; margin:0px; font-weight:normal; font-size:11px; color:#777;} .sfButtonwrapper input.sfBtn { float:right; width:auto;} /* processing page */ .sfloadingDiv { padding:20px 0px;} .sfloadingDiv span, .sfloadingDiv img { margin:10px auto; } .sfloadingDiv span { text-align:left; padding-left:50px; font:bold 12px/18px Tahoma, Geneva, sans-serif; display:block;} .sfmaincontent textarea { border:none; font:bold 12px/30px Tahoma, Geneva, sans-serif; text-transform:capitalize; padding:20px 50px; color:#555;} .sfProcessWrapper .sfButtonwrapper { display:none; } textarea { resize: none;} .sfHelp { top:111px; right:7px; position:absolute; display:inline-block; z-index:999;} .sfHelp a {padding:10px; color:#0B4B83; padding-left:20px; font-size:20px; display:inline-block;} .sfHelp a:hover { text-decoration:none;} table.sfInstalllationTable tr {} table.sfInstalllationTable tr td { vertical-align:top; padding:4px;} /*************************font-icon*******************************************/ @font-face { font-family: "aspx"; src:url("../../Administrator/Templates/Default/css/fonts/aspx.eot"); src:url("../../Administrator/Templates/Default/css/fonts/aspx.eot?#iefix") format("embedded-opentype"), url("../../Administrator/Templates/Default/css/fonts/aspx.woff") format("woff"), url("../../Administrator/Templates/Default/css/fonts/aspx.ttf") format("truetype"), url("../../Administrator/Templates/Default/css/fonts/aspx.svg#aspx") format("svg"); font-weight: normal; font-style: normal; } [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "aspx" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-info:before { content: "\e654"; } .icon-help:before { content: "\e705"; } .icon-close:before { content: "\e614"; } table.sfInstalllationTable tr td .icon-info:before { margin-right:5px; color:#7a7a7a;} p.sfWelcomeText { font-size:18px; font-weight:normal; line-height:28px; text-align:center; margin:0 0 15px;} table.sfSubTable { background:#f3f3f3; padding:20px;} table.sfSubTable tr td { vertical-align:middle;} /*Tooltip*/ i.icon-info { color: #900; text-decoration: none; cursor:help; } i:hover.icon-info { color: red; position: relative; } i.icon-info[data-title]:hover:after { content: attr(data-title); padding: 4px 10px; color: #fff; position: absolute; left: 0; top: 100%; white-space: nowrap; z-index: 999; background:#2a2a2a; font-style:normal; font-size:12px; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; } a.icon-help[data-title]:hover:after { content: attr(data-title); padding: 4px 10px; color: #fff; position: absolute; left: 0; top: -20px; white-space: nowrap; z-index: 999; background:#0B4B83; font-style:normal; font-size:12px; text-decoration:none; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; } /*accordian*/ .accordion-header { background-color: #e6e6e6; border:1px solid #ccc; border-bottom:none; margin-bottom:-1px; padding:10px; font-size:16px; color:#3c3c3c; font-weight:normal; } .active-header { background:#bababa; color:#fff; } .active-header:hover { } .inactive-header { } .inactive-header:hover {background:#f2f2f2; cursor:pointer; } .accordion-content { display: none; padding: 20px; background: #ffffff; border: 1px solid #cccccc; border-top: 0; } a.back.icon-close { position:absolute; top:-18px; right:-18px; display:block; background:#3a3a3a; padding:10px; font-size:18px; color:#fff; cursor:pointer; border-radius:50%; -webkit-border-radius:50%; -ms-border-radius:50%; -o-border-radius:50%;} a.back.icon-close:hover { text-decoration:none; background:#5a5a5a;} .sfInstallationGuide h2 { text-align:left;} .sfInstallationGuide p { line-height:22px; margin:0px 0px 15px;} #accordion-container h2 { margin-bottom:0px;} .sfInstallationGuide .sfOuter { margin-bottom:50px;} .sfHide { display:none;}
SageFrame/Install/css/install.css
@charset "utf-8"; /* CSS Document */ /* common styles */ body {background: #f2f2f2; font:13px/20px Tahoma, Geneva, sans-serif; margin:0; padding:0; color:#555; } h1, h2, h3, h4, h5, h6 { font-family:Tahoma, Geneva, sans-serif !important; } /*---Normal link---*/ a { color: #034D68; text-decoration: none; font:13px Tahoma, Geneva, sans-serif; } a:hover, a:active, a:focus { color: #034D68; text-decoration: underline; } input:focus { outline: none; } img { margin:0 auto; display:block; } p { font:13px/18px Tahoma, Geneva, sans-serif; color:#545454; } .sfInputbox { -moz-transition: all 0.3s ease-out 0s; background:#fff; border: 1px solid #aaa; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #999; font-size: 12px; padding:7px 5px; margin:3px 0 0 0; width: 200px; } .sfInputbox:focus { background:#fff; -webkit-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); box-shadow:0 0 8px rgba(0, 0, 0, 0.2); -o-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); -ms-box-shadow:0 0 8px rgba(0, 0, 0, 0.2); border: 1px solid #96b3fc; outline:none; outline:none;} .sfButtonwrapper .sfBtn { margin-right:12px; font-size:16px; color:#fff; border:none; padding:10px 20px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; cursor:pointer; display:inline-block; background: #4a4a4a; } .sfButtonwrapper .sfBtn:hover { background: #419936; color:#fff; text-decoration:none; } .sfinstalbtn { float:right; margin:69px -53px 50px; } .sfinstalbtn .sfBtn { margin-right:12px; font-size:28px; color:#fff; border:none; padding:12px 24px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; cursor:pointer; display:inline-block; background: #36802d; -webkit-box-shadow: 0 0 5px rgba(0,0,0,.5); -moz-box-shadow: 0 0 5px rgba(0,0,0,.5); box-shadow: 0 0 5px rgba(0,0,0,.5); -o-box-shadow: 0 0 5px rgba(0,0,0,.5); -ms-box-shadow: 0 0 5px rgba(0,0,0,.5); -moz-transition:background 0.2s linear; } .sfinstalbtn .sfBtn:hover { background:#419936; color:#fff; text-decoration:none; } .sfinstalbtn .sfBtn:active { background-position:0 -120px; } .sfFormlabel { font-weight:bold; font-size:13px; color:#434343; display:block; white-space:nowrap; } h2 { font-size:28px; color:#0B4B83; margin:0px 0 30px; text-align:center; } h3 { font-size:18px; color:#222; padding-bottom:5px; border-bottom:1px solid #ccc; } #sfInstallWrapper { margin:0 auto; width:750px; position:relative; } .sfLogo h1 { background:url(../images/aspxcommerce.png) no-repeat; background-size:100% auto; width:185px; margin:40px auto; min-height:66px; } #sfInstallWrapper .sfOuter { background:#fff; position:relative; padding:40px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 0 5px rgba(0,0,0,.25); -moz-box-shadow: 0 0 5px rgba(0,0,0,.25); box-shadow: 0 0 5px rgba(0,0,0,.25); -o-box-shadow: 0 0 5px rgba(0,0,0,.25); -ms-box-shadow: 0 0 5px rgba(0,0,0,.25); -moz-transition:background 0.2s linear; } .sfInstallpart { /*padding:30px 50px 0;*/ } /*---Form Wrapper---*/ .sfHelptext { font-size:11px; line-height:18px; padding-top:5px; display:block !important; color:#777; overflow:hidden; } .sfHelptext.sfInline { padding-top:0; color:#1a1a1a; font-size:12px;} table tr td { padding:5px 0; } table tr td table td { padding:0; vertical-align:top; } .sfTemplate { margin:20px 0 0 0; overflow:hidden; } .sfTemplate ul { padding:0; margin:0; } .sfTemplate ul li { float:left; list-style:none; margin:0 15px 15px; width:185px; } .sfTemplate ul li img { width: 185px; height:185px; background:#fff; text-align:center; } .sfTemplate ul li p { color:#4a626e; text-transform:capitalize; font-size:13px; margin-bottom:3px; } .sfSuccess { color:#138240; } .sfError { color:#943c30; display:block; font-size:12px; } .sfInner > .sfError, .sfInner > .sfSuccess { display:block; font:bold 13px/18px Tahoma, Geneva, sans-serif; padding:16px 50px; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; margin-bottom:2px; } .sfInner > .sfError { background:#fadebc url(../images/error.png) no-repeat 16px 14px; } .sfInner > .sfSuccess { background:#89dd94 url(../images/success.png) no-repeat 16px 14px; } .sfCheckBox { float:left; } .sfInline { display:inline; } .sfgap { padding:0 0 0 27px; } .sfgap2 { padding-left:52px; } .sfButtonwrapper { margin:40px 0px; overflow:hidden; border-bottom:1px dashed #ccc; padding:15px 0;} .sfButtonwrapper p { float:left; width:450px; margin:0px; font-weight:normal; font-size:11px; color:#777;} .sfButtonwrapper input.sfBtn { float:right; width:auto;} /* processing page */ .sfloadingDiv { padding:20px 0px;} .sfloadingDiv span, .sfloadingDiv img { margin:10px auto; } .sfloadingDiv span { text-align:left; padding-left:50px; font:bold 12px/18px Tahoma, Geneva, sans-serif; display:block;} .sfmaincontent textarea { border:none; font:bold 12px/30px Tahoma, Geneva, sans-serif; text-transform:capitalize; padding:20px 50px; color:#555;} .sfProcessWrapper .sfButtonwrapper { display:none; } textarea { resize: none;} .sfHelp { top:111px; right:7px; position:absolute; display:inline-block; z-index:999;} .sfHelp a {padding:10px; color:#0B4B83; padding-left:20px; font-size:20px; display:inline-block;} .sfHelp a:hover { text-decoration:none;} table.sfInstalllationTable tr {} table.sfInstalllationTable tr td { vertical-align:top; padding:4px;} /*************************font-icon*******************************************/ @font-face { font-family: "aspx"; src:url("../../Administrator/Templates/Default/css/fonts/aspx.eot"); src:url("../../Administrator/Templates/Default/css/fonts/aspx.eot?#iefix") format("embedded-opentype"), url("../../Administrator/Templates/Default/css/fonts/aspx.woff") format("woff"), url("../../Administrator/Templates/Default/css/fonts/aspx.ttf") format("truetype"), url("../../Administrator/Templates/Default/css/fonts/aspx.svg#aspx") format("svg"); font-weight: normal; font-style: normal; } [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "aspx" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-info:before { content: "\e654"; } .icon-help:before { content: "\e705"; } .icon-close:before { content: "\e614"; } table.sfInstalllationTable tr td .icon-info:before { margin-right:5px; color:#7a7a7a;} p.sfWelcomeText { font-size:18px; font-weight:normal; line-height:28px; text-align:center; margin:0 0 15px;} table.sfSubTable { background:#f3f3f3; padding:20px;} table.sfSubTable tr td { vertical-align:middle;} /*Tooltip*/ i.icon-info { color: #900; text-decoration: none; cursor:help; } i:hover.icon-info { color: red; position: relative; } i.icon-info[data-title]:hover:after { content: attr(data-title); padding: 4px 10px; color: #fff; position: absolute; left: 0; top: 100%; white-space: nowrap; z-index: 999; background:#2a2a2a; font-style:normal; font-size:12px; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; } a.icon-help[data-title]:hover:after { content: attr(data-title); padding: 4px 10px; color: #fff; position: absolute; left: 0; top: -20px; white-space: nowrap; z-index: 999; background:#0B4B83; font-style:normal; font-size:12px; text-decoration:none; border-radius:3px; -webkit-border-radius:3px; -ms-border-radius:3px; -o-border-radius:3px; } /*accordian*/ .accordion-header { background-color: #e6e6e6; border:1px solid #ccc; border-bottom:none; margin-bottom:-1px; padding:10px; font-size:16px; color:#3c3c3c; font-weight:normal; } .active-header { background:#bababa; color:#fff; } .active-header:hover { } .inactive-header { } .inactive-header:hover {background:#f2f2f2; cursor:pointer; } .accordion-content { display: none; padding: 20px; background: #ffffff; border: 1px solid #cccccc; border-top: 0; } a.back.icon-close { position:absolute; top:-18px; right:-18px; display:block; background:#3a3a3a; padding:10px; font-size:18px; color:#fff; cursor:pointer; border-radius:50%; -webkit-border-radius:50%; -ms-border-radius:50%; -o-border-radius:50%;} a.back.icon-close:hover { text-decoration:none; background:#5a5a5a;} .sfInstallationGuide h2 { text-align:left;} .sfInstallationGuide p { line-height:22px; margin:0px 0px 15px;} #accordion-container h2 { margin-bottom:0px;} .sfInstallationGuide .sfOuter { margin-bottom:50px;} .sfHide { display:none;}
0.195287
0.047736
.gh-canvas { display: grid; grid-template-columns: [full-start] minmax(calc(calc(100% - 1200px) / 2), 1fr) [wide-start] auto [main-start] 720px [main-end] auto [wide-end] minmax(calc(calc(100% - 1200px) / 2), 1fr) [full-end] ; } @media (max-width: 1296px) { .gh-canvas { grid-template-columns: [full-start] 4vw [wide-start] auto [main-start] 720px [main-end] auto [wide-end] 4vw [full-end] ; } } @media (max-width: 778px) { .gh-canvas { grid-template-columns: [full-start] 4vw [wide-start] 0 [main-start] auto [main-end] 0 [wide-end] 4vw [full-end] ; } } .gh-canvas > * { grid-column: main-start / main-end; } .kg-width-wide { grid-column: wide-start / wide-end; } .kg-width-full { grid-column: full-start / full-end; } .kg-width-full img { width: 100%; } /* Content & Typography /* ---------------------------------------------------------- */ .gh-content > * + * { margin-top: 4vmin; } .gh-content > [id] + * { margin-top: 1.5rem; } .gh-content [id]:not(:first-child) { margin: 1.5em 0 0; } .gh-content [id] + .kg-card, .gh-content blockquote + .kg-card { margin-top: 6vmin; } .gh-canvas > blockquote, .gh-canvas > ol, .gh-canvas > ul, .gh-canvas > dl, .gh-canvas > p { font-family: var(--font-serif); font-weight: 400; font-size: 2rem; line-height: 1.6em; } .gh-content > ul, .gh-content > ol, .gh-content > dl { padding-left: 1.9em; } .gh-content hr { margin-top: 6vmin; } .gh-content hr + * { margin-top: 6vmin !important; } .gh-content blockquote { position: relative; font-style: italic; } .gh-content blockquote::before { content: ""; position: absolute; left: -1.5em; top: 0; bottom: 0; width: 0.3rem; background: var(--color-primary); } @media (max-width: 650px) { .gh-canvas blockquote, .gh-canvas ol, .gh-canvas ul, .gh-canvas dl, .gh-canvas p { font-size: 1.8rem; } .gh-content blockquote::before { left: -4vw; } } /* Cards /* ---------------------------------------------------------- */ :not(.kg-card):not([id]) + .kg-card { margin-top: 6vmin; } .kg-card + :not(.kg-card):not([id]) { margin-top: 6vmin; } .kg-card figcaption { padding: 1.5rem 1.5rem 0; text-align: center; color: rgba(0,0,0,0.5); font-weight: 600; font-size: 1.3rem; line-height: 1.4em; } .kg-card figcaption strong { color: rgba(0,0,0,0.8); } .gh-canvas :not(pre) code { vertical-align: middle; padding: 0.15em 0.4em 0.15em; border: #e1eaef 1px solid; font-weight: 400 !important; font-size: 0.9em; line-height: 1em; color: #dc0050; background: #f0f6f9; border-radius: 0.25em; } .gh-canvas > pre { overflow: scroll; padding: 16px 20px; background: rgba(255,255,255,0.8); border-radius: 5px; box-shadow: 0 2px 6px -2px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.4); } .kg-embed-card { display: flex; flex-direction: column; align-items: center; width: 100%; } .kg-image-card img { margin: auto; } /* Galleries /* ---------------------------------------------------------- */ .kg-gallery-card + .kg-gallery-card { margin-top: 0.75em; } .kg-gallery-container { position: relative; } .kg-gallery-row { display: flex; flex-direction: row; justify-content: center; } .kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; } .kg-gallery-row:not(:first-of-type) { margin: 0.75em 0 0 0; } .kg-gallery-image:not(:first-of-type) { margin: 0 0 0 0.75em; } /* Bookmark Cards /* ---------------------------------------------------------- */ .kg-bookmark-card, .kg-bookmark-publisher { position: relative; } .kg-bookmark-container, .kg-bookmark-container:hover { display: flex; flex-wrap: wrap; flex-direction: row-reverse; color: currentColor; background: rgba(255,255,255,0.6); font-family: var(--font-sans-serif); text-decoration: none; border-radius: 5px; box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.4); overflow: hidden; } .kg-bookmark-content { flex-basis: 0; flex-grow: 999; padding: 20px; order: 1; } .kg-bookmark-title { font-weight: 600; font-size: 1.5rem; line-height: 1.3em; } .kg-bookmark-description { display: -webkit-box; max-height: 45px; margin: 0.5em 0 0 0; font-size: 1.4rem; line-height: 1.55em; overflow: hidden; opacity: 0.8; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .kg-bookmark-metadata { margin-top: 20px; } .kg-bookmark-metadata { display: flex; align-items: center; font-weight: 500; font-size: 1.3rem; line-height: 1.3em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .kg-bookmark-description { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; } .kg-bookmark-icon { display: inline-block; width: 16px; height: 16px; } .kg-bookmark-thumbnail { display: flex; flex-basis: 24rem; flex-grow: 1; justify-content: flex-end; } .kg-bookmark-thumbnail img { max-width: 100%; height: auto; vertical-align: bottom; object-fit: cover; } .kg-bookmark-author { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .kg-bookmark-publisher::before { content: "•"; margin: 0 .5em; } /* Card captions /* ---------------------------------------------------------- */ .kg-width-full.kg-card-hascaption { display: grid; grid-template-columns: inherit; } .kg-width-wide.kg-card-hascaption img { grid-column: wide-start / wide-end; } .kg-width-full.kg-card-hascaption img { grid-column: 1 / -1; } .kg-width-full.kg-card-hascaption figcaption { grid-column: main-start / main-end; } /* Tables /* ---------------------------------------------------------- */ .gh-content table { border-collapse: collapse; width: 100%; } .gh-content th { padding: 0.5em 0.8em; text-align: left; font-size: .75em; text-transform: uppercase; } .gh-content td { padding: 0.4em 0.7em; } .gh-content tbody tr:nth-child(2n + 1) { background-color: rgba(0,0,0,0.1); padding: 1px; } .gh-content tbody tr:nth-child(2n + 2) td:last-child { box-shadow: inset 1px 0 rgba(0,0,0,0.1), inset -1px 0 rgba(0,0,0,0.1); } .gh-content tbody tr:nth-child(2n + 2) td { box-shadow: inset 1px 0 rgba(0,0,0,0.1); } .gh-content tbody tr:last-child { border-bottom: 1px solid rgba(0,0,0,.1); }
assets/css/ghost/content.css
.gh-canvas { display: grid; grid-template-columns: [full-start] minmax(calc(calc(100% - 1200px) / 2), 1fr) [wide-start] auto [main-start] 720px [main-end] auto [wide-end] minmax(calc(calc(100% - 1200px) / 2), 1fr) [full-end] ; } @media (max-width: 1296px) { .gh-canvas { grid-template-columns: [full-start] 4vw [wide-start] auto [main-start] 720px [main-end] auto [wide-end] 4vw [full-end] ; } } @media (max-width: 778px) { .gh-canvas { grid-template-columns: [full-start] 4vw [wide-start] 0 [main-start] auto [main-end] 0 [wide-end] 4vw [full-end] ; } } .gh-canvas > * { grid-column: main-start / main-end; } .kg-width-wide { grid-column: wide-start / wide-end; } .kg-width-full { grid-column: full-start / full-end; } .kg-width-full img { width: 100%; } /* Content & Typography /* ---------------------------------------------------------- */ .gh-content > * + * { margin-top: 4vmin; } .gh-content > [id] + * { margin-top: 1.5rem; } .gh-content [id]:not(:first-child) { margin: 1.5em 0 0; } .gh-content [id] + .kg-card, .gh-content blockquote + .kg-card { margin-top: 6vmin; } .gh-canvas > blockquote, .gh-canvas > ol, .gh-canvas > ul, .gh-canvas > dl, .gh-canvas > p { font-family: var(--font-serif); font-weight: 400; font-size: 2rem; line-height: 1.6em; } .gh-content > ul, .gh-content > ol, .gh-content > dl { padding-left: 1.9em; } .gh-content hr { margin-top: 6vmin; } .gh-content hr + * { margin-top: 6vmin !important; } .gh-content blockquote { position: relative; font-style: italic; } .gh-content blockquote::before { content: ""; position: absolute; left: -1.5em; top: 0; bottom: 0; width: 0.3rem; background: var(--color-primary); } @media (max-width: 650px) { .gh-canvas blockquote, .gh-canvas ol, .gh-canvas ul, .gh-canvas dl, .gh-canvas p { font-size: 1.8rem; } .gh-content blockquote::before { left: -4vw; } } /* Cards /* ---------------------------------------------------------- */ :not(.kg-card):not([id]) + .kg-card { margin-top: 6vmin; } .kg-card + :not(.kg-card):not([id]) { margin-top: 6vmin; } .kg-card figcaption { padding: 1.5rem 1.5rem 0; text-align: center; color: rgba(0,0,0,0.5); font-weight: 600; font-size: 1.3rem; line-height: 1.4em; } .kg-card figcaption strong { color: rgba(0,0,0,0.8); } .gh-canvas :not(pre) code { vertical-align: middle; padding: 0.15em 0.4em 0.15em; border: #e1eaef 1px solid; font-weight: 400 !important; font-size: 0.9em; line-height: 1em; color: #dc0050; background: #f0f6f9; border-radius: 0.25em; } .gh-canvas > pre { overflow: scroll; padding: 16px 20px; background: rgba(255,255,255,0.8); border-radius: 5px; box-shadow: 0 2px 6px -2px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.4); } .kg-embed-card { display: flex; flex-direction: column; align-items: center; width: 100%; } .kg-image-card img { margin: auto; } /* Galleries /* ---------------------------------------------------------- */ .kg-gallery-card + .kg-gallery-card { margin-top: 0.75em; } .kg-gallery-container { position: relative; } .kg-gallery-row { display: flex; flex-direction: row; justify-content: center; } .kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; } .kg-gallery-row:not(:first-of-type) { margin: 0.75em 0 0 0; } .kg-gallery-image:not(:first-of-type) { margin: 0 0 0 0.75em; } /* Bookmark Cards /* ---------------------------------------------------------- */ .kg-bookmark-card, .kg-bookmark-publisher { position: relative; } .kg-bookmark-container, .kg-bookmark-container:hover { display: flex; flex-wrap: wrap; flex-direction: row-reverse; color: currentColor; background: rgba(255,255,255,0.6); font-family: var(--font-sans-serif); text-decoration: none; border-radius: 5px; box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.4); overflow: hidden; } .kg-bookmark-content { flex-basis: 0; flex-grow: 999; padding: 20px; order: 1; } .kg-bookmark-title { font-weight: 600; font-size: 1.5rem; line-height: 1.3em; } .kg-bookmark-description { display: -webkit-box; max-height: 45px; margin: 0.5em 0 0 0; font-size: 1.4rem; line-height: 1.55em; overflow: hidden; opacity: 0.8; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .kg-bookmark-metadata { margin-top: 20px; } .kg-bookmark-metadata { display: flex; align-items: center; font-weight: 500; font-size: 1.3rem; line-height: 1.3em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .kg-bookmark-description { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; } .kg-bookmark-icon { display: inline-block; width: 16px; height: 16px; } .kg-bookmark-thumbnail { display: flex; flex-basis: 24rem; flex-grow: 1; justify-content: flex-end; } .kg-bookmark-thumbnail img { max-width: 100%; height: auto; vertical-align: bottom; object-fit: cover; } .kg-bookmark-author { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .kg-bookmark-publisher::before { content: "•"; margin: 0 .5em; } /* Card captions /* ---------------------------------------------------------- */ .kg-width-full.kg-card-hascaption { display: grid; grid-template-columns: inherit; } .kg-width-wide.kg-card-hascaption img { grid-column: wide-start / wide-end; } .kg-width-full.kg-card-hascaption img { grid-column: 1 / -1; } .kg-width-full.kg-card-hascaption figcaption { grid-column: main-start / main-end; } /* Tables /* ---------------------------------------------------------- */ .gh-content table { border-collapse: collapse; width: 100%; } .gh-content th { padding: 0.5em 0.8em; text-align: left; font-size: .75em; text-transform: uppercase; } .gh-content td { padding: 0.4em 0.7em; } .gh-content tbody tr:nth-child(2n + 1) { background-color: rgba(0,0,0,0.1); padding: 1px; } .gh-content tbody tr:nth-child(2n + 2) td:last-child { box-shadow: inset 1px 0 rgba(0,0,0,0.1), inset -1px 0 rgba(0,0,0,0.1); } .gh-content tbody tr:nth-child(2n + 2) td { box-shadow: inset 1px 0 rgba(0,0,0,0.1); } .gh-content tbody tr:last-child { border-bottom: 1px solid rgba(0,0,0,.1); }
0.509764
0.225822
::-webkit-scrollbar { width: 6px; /* for vertical scrollbars */ height: 6px; /* for horizontal scrollbars */ } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 1); } ::-webkit-scrollbar-thumb { background: rgb(84, 85, 99); } body{ font-family: Lato; color: #fff; background-attachment: fixed; background: rgba(234,247,52,1); background: -moz-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(234,247,52,1)), color-stop(27%, rgba(152,245,12,1)), color-stop(82%, rgba(24,189,240,1)), color-stop(100%, rgba(39,179,230,1))); background: -webkit-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -o-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -ms-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: linear-gradient(135deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaf734', endColorstr='#27b3e6', GradientType=1 ); } [type="radio"]:checked + label:after, [type="radio"].with-gap:checked + label:after{ background-color: #2ec866; border-color: #2ec866; } label{ color: #fff; } .ascentGreen{ background: #2ec866; } .correct{ border-radius: 3px; padding: 2px; font-weight: bold; background: #028d38; } .incorrect{ border-radius: 3px; padding: 2px; font-weight: bold; background: #FF533A; } .label{ font-weight: bold; padding: 2px; background: transparent; } .sectionOne { position: relative; height: 100vh; padding: 24px; text-align: center; background: linear-gradient(rgba(24, 26, 45, 0.4), rgba(0, 0, 0, 0.8)) no-repeat center; background-size: 100%; } .footerDiv { color: #fff; position: absolute; width:100%; padding: 1%; bottom: 0; text-align: center; background: rgba(0, 0, 0, 0.45); } .nameModalBody{ position: absolute; width:100%; bottom: 0; padding: 12px; } .customModal{ background: rgba(0, 0, 0, 0.68); height: 320px; } #quizDiv{ color: #fff; } .optionDiv{ width: auto; text-align: center; } .ques{ display: none; } .materialDot{ height: 6px; width: 6px; border-radius: 100%; background: #2ec866; } #resultDiv{ display: none; padding: 24px; width: 50%; } .options{ position: relative; text-align: center; vertical-align: middle; display: inline-block; width: 76px; height: 76px; margin: 4px; border-radius: 50%; background: transparent; border: 1px solid #fff; } .optionBody{ position: absolute; width: 100%; top: 38%; } #userName{ width: 280px } #graphResult{ padding: 24px; width: 100%; text-align: center; } #pieChart{ margin-left: 41%; } @media screen and (max-width: 768px) { #userName{ width: 100%; } #resultDiv{ display: none; padding: 0px; width: 100%; } #pieChart{ margin-left: 36%; } }
public/css/style.css
::-webkit-scrollbar { width: 6px; /* for vertical scrollbars */ height: 6px; /* for horizontal scrollbars */ } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 1); } ::-webkit-scrollbar-thumb { background: rgb(84, 85, 99); } body{ font-family: Lato; color: #fff; background-attachment: fixed; background: rgba(234,247,52,1); background: -moz-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(234,247,52,1)), color-stop(27%, rgba(152,245,12,1)), color-stop(82%, rgba(24,189,240,1)), color-stop(100%, rgba(39,179,230,1))); background: -webkit-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -o-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: -ms-linear-gradient(-45deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); background: linear-gradient(135deg, rgba(234,247,52,1) 0%, rgba(152,245,12,1) 27%, rgba(24,189,240,1) 82%, rgba(39,179,230,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaf734', endColorstr='#27b3e6', GradientType=1 ); } [type="radio"]:checked + label:after, [type="radio"].with-gap:checked + label:after{ background-color: #2ec866; border-color: #2ec866; } label{ color: #fff; } .ascentGreen{ background: #2ec866; } .correct{ border-radius: 3px; padding: 2px; font-weight: bold; background: #028d38; } .incorrect{ border-radius: 3px; padding: 2px; font-weight: bold; background: #FF533A; } .label{ font-weight: bold; padding: 2px; background: transparent; } .sectionOne { position: relative; height: 100vh; padding: 24px; text-align: center; background: linear-gradient(rgba(24, 26, 45, 0.4), rgba(0, 0, 0, 0.8)) no-repeat center; background-size: 100%; } .footerDiv { color: #fff; position: absolute; width:100%; padding: 1%; bottom: 0; text-align: center; background: rgba(0, 0, 0, 0.45); } .nameModalBody{ position: absolute; width:100%; bottom: 0; padding: 12px; } .customModal{ background: rgba(0, 0, 0, 0.68); height: 320px; } #quizDiv{ color: #fff; } .optionDiv{ width: auto; text-align: center; } .ques{ display: none; } .materialDot{ height: 6px; width: 6px; border-radius: 100%; background: #2ec866; } #resultDiv{ display: none; padding: 24px; width: 50%; } .options{ position: relative; text-align: center; vertical-align: middle; display: inline-block; width: 76px; height: 76px; margin: 4px; border-radius: 50%; background: transparent; border: 1px solid #fff; } .optionBody{ position: absolute; width: 100%; top: 38%; } #userName{ width: 280px } #graphResult{ padding: 24px; width: 100%; text-align: center; } #pieChart{ margin-left: 41%; } @media screen and (max-width: 768px) { #userName{ width: 100%; } #resultDiv{ display: none; padding: 0px; width: 100%; } #pieChart{ margin-left: 36%; } }
0.430626
0.074467
body{background: #e1e3da !important;} #gender-select{text-align: center;} #gender-select label { margin: 60px; vertical-align: middle; border-radius: 50%; padding-top: 160px; font-size: 20px; font-weight: 400; } #gender-male-label, #gender-female-label, input[name="gender"]:after, input[name="UserSettingsForm[gender]"]:after { display: inline-block; margin: 60px; border-radius: 50%; color: white; transition: box-shadow 1s, color 1s, opacity 1s; opacity: 0.6; vertical-align: middle; cursor: pointer; } #gender-male-label { background: url(../images/male.png) no-repeat; width: 269px; height: 268px; content: ' '; background-color: transparent !important; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 700; } input[name="gender"], input[name="UserSettingsForm[gender]"] { -webkit-appearance: none; -moz-appearance: none; -o-appearance: none; -ms-appearance: none; appearance: none; outline: none; border-radius: 0; display: none; } input[name="gender"]:after, #gender-select span { vertical-align: middle; } #gender-female-label { background: url(../images/female.png) no-repeat; width: 269px; height: 267px; content: ' '; } #gender-male-label:hover, #gender-female-label:hover, #gender-male-label.checked, #gender-female-label.checked, input[name="gender"]:checked:after, input[name="gender"]:hover:after, input[name="UserSettingsForm[gender]"]:checked:after, input[name="UserSettingsForm[gender]"]:hover:after { box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4); color: rgba(255, 255, 255, 0.6); opacity: 1; } /*#landing{ background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), url(../images/landing-bg-desktop.jpg); } */ .avocado,.back,.beef,.butter,.capers,.cheese,.chicken,.coconut,.egg,.eggs,.female,.fish,.forward-female,.forward-male,.goat-cheese,.ham,.icons,.lamb,.male,.milk,.mushroom,.mushrooms,.nuts,.olives,.onions,.pork,.seafood,.veal { display: inline-block; background: url(../images/icons.png) no-repeat; overflow: hidden; text-indent: -9999px; text-align: left; } .icons { background-position: -2px 0; width: 50px; height: 852px; } .beef { background-position: -2px -854px; width: 40px; height: 29px; } .butter { background-position: -2px -885px; width: 40px; height: 32px; } .cheese { background-position: -2px -919px; width: 40px; height: 26px; } .fish { background-position: -2px -947px; width: 40px; height: 27px; } .goat-cheese { background-position: -2px -976px; width: 40px; height: 29px; } .nuts { background-position: -2px -1007px; width: 40px; height: 21px; } .coconut { background-position: -2px -1030px; width: 39px; height: 32px; } .chicken { background-position: -2px -1064px; width: 37px; height: 32px; } .lamb { background-position: -2px -1098px; } .lamb,.seafood { width: 36px; height: 32px; } .seafood { background-position: -2px -1132px; } .onions { background-position: -2px -1166px; width: 35px; height: 32px; } .ham { background-position: -2px -1200px; width: 34px; height: 32px; } .olives { background-position: -2px -1234px; width: 33px; height: 32px; } .avocado { background-position: -2px -1268px; } .avocado,.milk { width: 32px; height: 32px; } .milk { background-position: -2px -1302px; } .veal { background-position: -2px -1336px; width: 32px; height: 32px; } .capers { background-position: -2px -1370px; width: 31px; height: 32px; } .mushroom,.mushrooms { background-position: -2px -1404px; width: 31px; height: 32px; } .egg,.eggs { background-position: -2px -1438px; width: 26px; height: 32px; } .female { background-position: -2px -1472px; width: 22px; height: 30px; } .male { background-position: -26px -1472px; width: 22px; height: 29px; } .pork { background-position: -26px -1503px; width: 22px; height: 32px; } .back { background-position: -35px -1370px; width: 15px; height: 25px; } .forward-female { background-position: -41px -1064px; width: 9px; height: 15px; } .forward-male { background-position: -41px -1081px; width: 9px; height: 15px; }/*!* Bootstrap v3.4.1 (https://getbootstrap.com/) * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*//*!normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css*/html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary { display: block; } audio,canvas,progress,video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden],template { display: none; } a { background-color: transparent; } a:active,a:hover { outline: 0; } abbr[title] { border-bottom: none; text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; } b,strong { font-weight: 700; } dfn { font-style: italic; } h1 { font-size: 2em; margin: .67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub,sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code,kbd,pre,samp { font-family: monospace,monospace; font-size: 1em; } button,input,optgroup,select,textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button,select { text-transform: none; } button,html input[type=button],input[type=reset],input[type=submit] { -webkit-appearance: button; cursor: pointer; } button[disabled],html input[disabled] { cursor: default; } button::-moz-focus-inner,input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type=checkbox],input[type=radio] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button { height: auto; } input[type=search] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid silver; margin: 0 2px; padding: .35em .625em .75em; } textarea { overflow: auto; } optgroup { font-weight: 700; } table { border-collapse: collapse; border-spacing: 0; } td,th { padding: 0; }/*!Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css*/@media print { *,:after,:before { color: #000!important; text-shadow: none!important; background: 0 0!important; -webkit-box-shadow: none!important; box-shadow: none!important; } a,a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after,a[href^="javascript:"]:after { content: ""; } blockquote,pre { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } img,tr { page-break-inside: avoid; } img { max-width: 100%!important; } h2,h3,p { orphans: 3; widows: 3; } h2,h3 { page-break-after: avoid; } .navbar { display: none; } .btn>.caret,.dropup>.btn>.caret { border-top-color: #000!important; } .label { border: 1px solid #000; } .table { border-collapse: collapse!important; } .table td,.table th { background-color: #fff!important; } .table-bordered td,.table-bordered th { border: 1px solid #ddd!important; } } @font-face { font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularab2e.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularfc81.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularc7ba.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular70ac.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular1d5b.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularb9d6.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg"); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: Glyphicons Halflings; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "*"; } .glyphicon-plus:before { content: "+"; } .glyphicon-eur:before,.glyphicon-euro:before { content: "\20AC"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270F"; } .glyphicon-glass:before { content: "\E001"; } .glyphicon-music:before { content: "\E002"; } .glyphicon-search:before { content: "\E003"; } .glyphicon-heart:before { content: "\E005"; } .glyphicon-star:before { content: "\E006"; } .glyphicon-star-empty:before { content: "\E007"; } .glyphicon-user:before { content: "\E008"; } .glyphicon-film:before { content: "\E009"; } .glyphicon-th-large:before { content: "\E010"; } .glyphicon-th:before { content: "\E011"; } .glyphicon-th-list:before { content: "\E012"; } .glyphicon-ok:before { content: "\E013"; } .glyphicon-remove:before { content: "\E014"; } .glyphicon-zoom-in:before { content: "\E015"; } .glyphicon-zoom-out:before { content: "\E016"; } .glyphicon-off:before { content: "\E017"; } .glyphicon-signal:before { content: "\E018"; } .glyphicon-cog:before { content: "\E019"; } .glyphicon-trash:before { content: "\E020"; } .glyphicon-home:before { content: "\E021"; } .glyphicon-file:before { content: "\E022"; } .glyphicon-time:before { content: "\E023"; } .glyphicon-road:before { content: "\E024"; } .glyphicon-download-alt:before { content: "\E025"; } .glyphicon-download:before { content: "\E026"; } .glyphicon-upload:before { content: "\E027"; } .glyphicon-inbox:before { content: "\E028"; } .glyphicon-play-circle:before { content: "\E029"; } .glyphicon-repeat:before { content: "\E030"; } .glyphicon-refresh:before { content: "\E031"; } .glyphicon-list-alt:before { content: "\E032"; } .glyphicon-lock:before { content: "\E033"; } .glyphicon-flag:before { content: "\E034"; } .glyphicon-headphones:before { content: "\E035"; } .glyphicon-volume-off:before { content: "\E036"; } .glyphicon-volume-down:before { content: "\E037"; } .glyphicon-volume-up:before { content: "\E038"; } .glyphicon-qrcode:before { content: "\E039"; } .glyphicon-barcode:before { content: "\E040"; } .glyphicon-tag:before { content: "\E041"; } .glyphicon-tags:before { content: "\E042"; } .glyphicon-book:before { content: "\E043"; } .glyphicon-bookmark:before { content: "\E044"; } .glyphicon-print:before { content: "\E045"; } .glyphicon-camera:before { content: "\E046"; } .glyphicon-font:before { content: "\E047"; } .glyphicon-bold:before { content: "\E048"; } .glyphicon-italic:before { content: "\E049"; } .glyphicon-text-height:before { content: "\E050"; } .glyphicon-text-width:before { content: "\E051"; } .glyphicon-align-left:before { content: "\E052"; } .glyphicon-align-center:before { content: "\E053"; } .glyphicon-align-right:before { content: "\E054"; } .glyphicon-align-justify:before { content: "\E055"; } .glyphicon-list:before { content: "\E056"; } .glyphicon-indent-left:before { content: "\E057"; } .glyphicon-indent-right:before { content: "\E058"; } .glyphicon-facetime-video:before { content: "\E059"; } .glyphicon-picture:before { content: "\E060"; } .glyphicon-map-marker:before { content: "\E062"; } .glyphicon-adjust:before { content: "\E063"; } .glyphicon-tint:before { content: "\E064"; } .glyphicon-edit:before { content: "\E065"; } .glyphicon-share:before { content: "\E066"; } .glyphicon-check:before { content: "\E067"; } .glyphicon-move:before { content: "\E068"; } .glyphicon-step-backward:before { content: "\E069"; } .glyphicon-fast-backward:before { content: "\E070"; } .glyphicon-backward:before { content: "\E071"; } .glyphicon-play:before { content: "\E072"; } .glyphicon-pause:before { content: "\E073"; } .glyphicon-stop:before { content: "\E074"; } .glyphicon-forward:before { content: "\E075"; } .glyphicon-fast-forward:before { content: "\E076"; } .glyphicon-step-forward:before { content: "\E077"; } .glyphicon-eject:before { content: "\E078"; } .glyphicon-chevron-left:before { content: "\E079"; } .glyphicon-chevron-right:before { content: "\E080"; } .glyphicon-plus-sign:before { content: "\E081"; } .glyphicon-minus-sign:before { content: "\E082"; } .glyphicon-remove-sign:before { content: "\E083"; } .glyphicon-ok-sign:before { content: "\E084"; } .glyphicon-question-sign:before { content: "\E085"; } .glyphicon-info-sign:before { content: "\E086"; } .glyphicon-screenshot:before { content: "\E087"; } .glyphicon-remove-circle:before { content: "\E088"; } .glyphicon-ok-circle:before { content: "\E089"; } .glyphicon-ban-circle:before { content: "\E090"; } .glyphicon-arrow-left:before { content: "\E091"; } .glyphicon-arrow-right:before { content: "\E092"; } .glyphicon-arrow-up:before { content: "\E093"; } .glyphicon-arrow-down:before { content: "\E094"; } .glyphicon-share-alt:before { content: "\E095"; } .glyphicon-resize-full:before { content: "\E096"; } .glyphicon-resize-small:before { content: "\E097"; } .glyphicon-exclamation-sign:before { content: "\E101"; } .glyphicon-gift:before { content: "\E102"; } .glyphicon-leaf:before { content: "\E103"; } .glyphicon-fire:before { content: "\E104"; } .glyphicon-eye-open:before { content: "\E105"; } .glyphicon-eye-close:before { content: "\E106"; } .glyphicon-warning-sign:before { content: "\E107"; } .glyphicon-plane:before { content: "\E108"; } .glyphicon-calendar:before { content: "\E109"; } .glyphicon-random:before { content: "\E110"; } .glyphicon-comment:before { content: "\E111"; } .glyphicon-magnet:before { content: "\E112"; } .glyphicon-chevron-up:before { content: "\E113"; } .glyphicon-chevron-down:before { content: "\E114"; } .glyphicon-retweet:before { content: "\E115"; } .glyphicon-shopping-cart:before { content: "\E116"; } .glyphicon-folder-close:before { content: "\E117"; } .glyphicon-folder-open:before { content: "\E118"; } .glyphicon-resize-vertical:before { content: "\E119"; } .glyphicon-resize-horizontal:before { content: "\E120"; } .glyphicon-hdd:before { content: "\E121"; } .glyphicon-bullhorn:before { content: "\E122"; } .glyphicon-bell:before { content: "\E123"; } .glyphicon-certificate:before { content: "\E124"; } .glyphicon-thumbs-up:before { content: "\E125"; } .glyphicon-thumbs-down:before { content: "\E126"; } .glyphicon-hand-right:before { content: "\E127"; } .glyphicon-hand-left:before { content: "\E128"; } .glyphicon-hand-up:before { content: "\E129"; } .glyphicon-hand-down:before { content: "\E130"; } .glyphicon-circle-arrow-right:before { content: "\E131"; } .glyphicon-circle-arrow-left:before { content: "\E132"; } .glyphicon-circle-arrow-up:before { content: "\E133"; } .glyphicon-circle-arrow-down:before { content: "\E134"; } .glyphicon-globe:before { content: "\E135"; } .glyphicon-wrench:before { content: "\E136"; } .glyphicon-tasks:before { content: "\E137"; } .glyphicon-filter:before { content: "\E138"; } .glyphicon-briefcase:before { content: "\E139"; } .glyphicon-fullscreen:before { content: "\E140"; } .glyphicon-dashboard:before { content: "\E141"; } .glyphicon-paperclip:before { content: "\E142"; } .glyphicon-heart-empty:before { content: "\E143"; } .glyphicon-link:before { content: "\E144"; } .glyphicon-phone:before { content: "\E145"; } .glyphicon-pushpin:before { content: "\E146"; } .glyphicon-usd:before { content: "\E148"; } .glyphicon-gbp:before { content: "\E149"; } .glyphicon-sort:before { content: "\E150"; } .glyphicon-sort-by-alphabet:before { content: "\E151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\E152"; } .glyphicon-sort-by-order:before { content: "\E153"; } .glyphicon-sort-by-order-alt:before { content: "\E154"; } .glyphicon-sort-by-attributes:before { content: "\E155"; } .glyphicon-sort-by-attributes-alt:before { content: "\E156"; } .glyphicon-unchecked:before { content: "\E157"; } .glyphicon-expand:before { content: "\E158"; } .glyphicon-collapse-down:before { content: "\E159"; } .glyphicon-collapse-up:before { content: "\E160"; } .glyphicon-log-in:before { content: "\E161"; } .glyphicon-flash:before { content: "\E162"; } .glyphicon-log-out:before { content: "\E163"; } .glyphicon-new-window:before { content: "\E164"; } .glyphicon-record:before { content: "\E165"; } .glyphicon-save:before { content: "\E166"; } .glyphicon-open:before { content: "\E167"; } .glyphicon-saved:before { content: "\E168"; } .glyphicon-import:before { content: "\E169"; } .glyphicon-export:before { content: "\E170"; } .glyphicon-send:before { content: "\E171"; } .glyphicon-floppy-disk:before { content: "\E172"; } .glyphicon-floppy-saved:before { content: "\E173"; } .glyphicon-floppy-remove:before { content: "\E174"; } .glyphicon-floppy-save:before { content: "\E175"; } .glyphicon-floppy-open:before { content: "\E176"; } .glyphicon-credit-card:before { content: "\E177"; } .glyphicon-transfer:before { content: "\E178"; } .glyphicon-cutlery:before { content: "\E179"; } .glyphicon-header:before { content: "\E180"; } .glyphicon-compressed:before { content: "\E181"; } .glyphicon-earphone:before { content: "\E182"; } .glyphicon-phone-alt:before { content: "\E183"; } .glyphicon-tower:before { content: "\E184"; } .glyphicon-stats:before { content: "\E185"; } .glyphicon-sd-video:before { content: "\E186"; } .glyphicon-hd-video:before { content: "\E187"; } .glyphicon-subtitles:before { content: "\E188"; } .glyphicon-sound-stereo:before { content: "\E189"; } .glyphicon-sound-dolby:before { content: "\E190"; } .glyphicon-sound-5-1:before { content: "\E191"; } .glyphicon-sound-6-1:before { content: "\E192"; } .glyphicon-sound-7-1:before { content: "\E193"; } .glyphicon-copyright-mark:before { content: "\E194"; } .glyphicon-registration-mark:before { content: "\E195"; } .glyphicon-cloud-download:before { content: "\E197"; } .glyphicon-cloud-upload:before { content: "\E198"; } .glyphicon-tree-conifer:before { content: "\E199"; } .glyphicon-tree-deciduous:before { content: "\E200"; } .glyphicon-cd:before { content: "\E201"; } .glyphicon-save-file:before { content: "\E202"; } .glyphicon-open-file:before { content: "\E203"; } .glyphicon-level-up:before { content: "\E204"; } .glyphicon-copy:before { content: "\E205"; } .glyphicon-paste:before { content: "\E206"; } .glyphicon-alert:before { content: "\E209"; } .glyphicon-equalizer:before { content: "\E210"; } .glyphicon-king:before { content: "\E211"; } .glyphicon-queen:before { content: "\E212"; } .glyphicon-pawn:before { content: "\E213"; } .glyphicon-bishop:before { content: "\E214"; } .glyphicon-knight:before { content: "\E215"; } .glyphicon-baby-formula:before { content: "\E216"; } .glyphicon-tent:before { content: "\26FA"; } .glyphicon-blackboard:before { content: "\E218"; } .glyphicon-bed:before { content: "\E219"; } .glyphicon-apple:before { content: "\F8FF"; } .glyphicon-erase:before { content: "\E221"; } .glyphicon-hourglass:before { content: "\231B"; } .glyphicon-lamp:before { content: "\E223"; } .glyphicon-duplicate:before { content: "\E224"; } .glyphicon-piggy-bank:before { content: "\E225"; } .glyphicon-scissors:before { content: "\E226"; } .glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before { content: "\E227"; } .glyphicon-jpy:before,.glyphicon-yen:before { content: "\A5"; } .glyphicon-rub:before,.glyphicon-ruble:before { content: "\20BD"; } .glyphicon-scale:before { content: "\E230"; } .glyphicon-ice-lolly:before { content: "\E231"; } .glyphicon-ice-lolly-tasted:before { content: "\E232"; } .glyphicon-education:before { content: "\E233"; } .glyphicon-option-horizontal:before { content: "\E234"; } .glyphicon-option-vertical:before { content: "\E235"; } .glyphicon-menu-hamburger:before { content: "\E236"; } .glyphicon-modal-window:before { content: "\E237"; } .glyphicon-oil:before { content: "\E238"; } .glyphicon-grain:before { content: "\E239"; } .glyphicon-sunglasses:before { content: "\E240"; } .glyphicon-text-size:before { content: "\E241"; } .glyphicon-text-color:before { content: "\E242"; } .glyphicon-text-background:before { content: "\E243"; } .glyphicon-object-align-top:before { content: "\E244"; } .glyphicon-object-align-bottom:before { content: "\E245"; } .glyphicon-object-align-horizontal:before { content: "\E246"; } .glyphicon-object-align-left:before { content: "\E247"; } .glyphicon-object-align-vertical:before { content: "\E248"; } .glyphicon-object-align-right:before { content: "\E249"; } .glyphicon-triangle-right:before { content: "\E250"; } .glyphicon-triangle-left:before { content: "\E251"; } .glyphicon-triangle-bottom:before { content: "\E252"; } .glyphicon-triangle-top:before { content: "\E253"; } .glyphicon-console:before { content: "\E254"; } .glyphicon-superscript:before { content: "\E255"; } .glyphicon-subscript:before { content: "\E256"; } .glyphicon-menu-left:before { content: "\E257"; } .glyphicon-menu-right:before { content: "\E258"; } .glyphicon-menu-down:before { content: "\E259"; } .glyphicon-menu-up:before { content: "\E260"; } *,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: transparent; } body { font-family: Raleway,sans-serif; font-size: 14px; line-height: 1.6; color: #636b6f; background-color: #f5f8fa; } button,input,select,textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #3097d1; text-decoration: none; } a:focus,a:hover { color: #216a94; text-decoration: underline; } a:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { padding: 4px; line-height: 1.6; background-color: #f5f8fa; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 22px; margin-bottom: 22px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; } .sr-only-focusable:active,.sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role=button] { cursor: pointer; } .h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small { font-weight: 400; line-height: 1; color: #777; } .h1,.h2,.h3,h1,h2,h3 { margin-top: 22px; margin-bottom: 11px; } .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small { font-size: 65%; } .h4,.h5,.h6,h4,h5,h6 { margin-top: 11px; margin-bottom: 11px; } .h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small { font-size: 75%; } .h1,h1 { font-size: 36px; } .h2,h2 { font-size: 30px; } .h3,h3 { font-size: 24px; } .h4,h4 { font-size: 18px; } .h5,h5 { font-size: 14px; } .h6,h6 { font-size: 12px; } p { margin: 0 0 11px; } .lead { margin-bottom: 22px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media(min-width:768px) { .lead { font-size: 21px; } } .small,small { font-size: 85%; } .mark,mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .initialism,.text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #3097d1; } a.text-primary:focus,a.text-primary:hover { color: #2579a9; } .text-success { color: #3c763d; } a.text-success:focus,a.text-success:hover { color: #2b542c; } .text-info { color: #31708f; } a.text-info:focus,a.text-info:hover { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:focus,a.text-warning:hover { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:focus,a.text-danger:hover { color: #843534; } .bg-primary { color: #fff; background-color: #3097d1; } a.bg-primary:focus,a.bg-primary:hover { background-color: #2579a9; } .bg-success { background-color: #dff0d8; } a.bg-success:focus,a.bg-success:hover { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:focus,a.bg-info:hover { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:focus,a.bg-warning:hover { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:focus,a.bg-danger:hover { background-color: #e4b9b9; } .page-header { padding-bottom: 10px; margin: 44px 0 22px; border-bottom: 1px solid #eee; } ol,ul { margin-top: 0; margin-bottom: 11px; } ol ol,ol ul,ul ol,ul ul { margin-bottom: 0; } .list-inline,.list-unstyled { padding-left: 0; list-style: none; } .list-inline { margin-left: -5px; } .list-inline>li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 22px; } dd,dt { line-height: 1.6; } dt { font-weight: 700; } dd { margin-left: 0; } .dl-horizontal dd:after,.dl-horizontal dd:before { display: table; content: " "; } .dl-horizontal dd:after { clear: both; } @media(min-width:768px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[data-original-title],abbr[title] { cursor: help; } .initialism { font-size: 90%; } blockquote { padding: 11px 22px; margin: 0 0 22px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child { margin-bottom: 0; } blockquote .small,blockquote footer,blockquote small { display: block; font-size: 80%; line-height: 1.6; color: #777; } blockquote .small:before,blockquote footer:before,blockquote small:before { content: "\2014 \A0"; } .blockquote-reverse,blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before { content: ""; } .blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after { content: "\A0 \2014"; } address { margin-bottom: 22px; font-style: normal; line-height: 1.6; } code,kbd,pre,samp { font-family: Menlo,Monaco,Consolas,Courier New,monospace; } code { color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } code,kbd { padding: 2px 4px; font-size: 90%; } kbd { color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); } kbd kbd { padding: 0; font-size: 100%; font-weight: 700; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 10.5px; margin: 0 0 11px; font-size: 13px; line-height: 1.6; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .container:after,.container:before { display: table; content: " "; } .container:after { clear: both; } @media(min-width:768px) { .container { width: 750px; } } @media(min-width:992px) { .container { width: 970px; } } @media(min-width:1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .container-fluid:after,.container-fluid:before { display: table; content: " "; } .container-fluid:after { clear: both; } .row { margin-right: -15px; margin-left: -15px; } .row:after,.row:before { display: table; content: " "; } .row:after { clear: both; } .row-no-gutters { margin-right: 0; margin-left: 0; } .row-no-gutters [class*=col-] { padding-right: 0; padding-left: 0; } .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-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-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-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 { float: left; } .col-xs-1 { width: 8.33333333%; } .col-xs-2 { width: 16.66666667%; } .col-xs-3 { width: 25%; } .col-xs-4 { width: 33.33333333%; } .col-xs-5 { width: 41.66666667%; } .col-xs-6 { width: 50%; } .col-xs-7 { width: 58.33333333%; } .col-xs-8 { width: 66.66666667%; } .col-xs-9 { width: 75%; } .col-xs-10 { width: 83.33333333%; } .col-xs-11 { width: 91.66666667%; } .col-xs-12 { width: 100%; } .col-xs-pull-0 { right: auto; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-12 { right: 100%; } .col-xs-push-0 { left: auto; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-3 { left: 25%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-6 { left: 50%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-9 { left: 75%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-12 { left: 100%; } .col-xs-offset-0 { margin-left: 0; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-12 { margin-left: 100%; } @media(min-width:768px) { .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 { float: left; } .col-sm-1 { width: 8.33333333%; } .col-sm-2 { width: 16.66666667%; } .col-sm-3 { width: 25%; } .col-sm-4 { width: 33.33333333%; } .col-sm-5 { width: 41.66666667%; } .col-sm-6 { width: 50%; } .col-sm-7 { width: 58.33333333%; } .col-sm-8 { width: 66.66666667%; } .col-sm-9 { width: 75%; } .col-sm-10 { width: 83.33333333%; } .col-sm-11 { width: 91.66666667%; } .col-sm-12 { width: 100%; } .col-sm-pull-0 { right: auto; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-12 { right: 100%; } .col-sm-push-0 { left: auto; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-3 { left: 25%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-6 { left: 50%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-9 { left: 75%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-12 { left: 100%; } .col-sm-offset-0 { margin-left: 0; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-12 { margin-left: 100%; } } @media(min-width:992px) { .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 { float: left; } .col-md-1 { width: 8.33333333%; } .col-md-2 { width: 16.66666667%; } .col-md-3 { width: 25%; } .col-md-4 { width: 33.33333333%; } .col-md-5 { width: 41.66666667%; } .col-md-6 { width: 50%; } .col-md-7 { width: 58.33333333%; } .col-md-8 { width: 66.66666667%; } .col-md-9 { width: 75%; } .col-md-10 { width: 83.33333333%; } .col-md-11 { width: 91.66666667%; } .col-md-12 { width: 100%; } .col-md-pull-0 { right: auto; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-3 { right: 25%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-6 { right: 50%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-9 { right: 75%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-12 { right: 100%; } .col-md-push-0 { left: auto; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-3 { left: 25%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-6 { left: 50%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-9 { left: 75%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-12 { left: 100%; } .col-md-offset-0 { margin-left: 0; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-12 { margin-left: 100%; } } @media(min-width:1200px) { .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 { float: left; } .col-lg-1 { width: 8.33333333%; } .col-lg-2 { width: 16.66666667%; } .col-lg-3 { width: 25%; } .col-lg-4 { width: 33.33333333%; } .col-lg-5 { width: 41.66666667%; } .col-lg-6 { width: 50%; } .col-lg-7 { width: 58.33333333%; } .col-lg-8 { width: 66.66666667%; } .col-lg-9 { width: 75%; } .col-lg-10 { width: 83.33333333%; } .col-lg-11 { width: 91.66666667%; } .col-lg-12 { width: 100%; } .col-lg-pull-0 { right: auto; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-12 { right: 100%; } .col-lg-push-0 { left: auto; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-3 { left: 25%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-6 { left: 50%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-9 { left: 75%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-12 { left: 100%; } .col-lg-offset-0 { margin-left: 0; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-12 { margin-left: 100%; } } table { background-color: transparent; } table col[class*=col-] { position: static; display: table-column; float: none; } table td[class*=col-],table th[class*=col-] { position: static; display: table-cell; float: none; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; } caption,th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 22px; } .table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th { padding: 8px; line-height: 1.6; vertical-align: top; border-top: 1px solid #ddd; } .table>thead>tr>th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th { border-top: 0; } .table>tbody+tbody { border-top: 2px solid #ddd; } .table .table { background-color: #f5f8fa; } .table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th { padding: 5px; } .table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th { border: 1px solid #ddd; } .table-bordered>thead>tr>td,.table-bordered>thead>tr>th { border-bottom-width: 2px; } .table-striped>tbody>tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active { background-color: #f5f5f5; } .table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover { background-color: #e8e8e8; } .table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success { background-color: #dff0d8; } .table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover { background-color: #d0e9c6; } .table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info { background-color: #d9edf7; } .table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover { background-color: #c4e3f3; } .table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning { background-color: #fcf8e3; } .table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover { background-color: #faf2cc; } .table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger { background-color: #f2dede; } .table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width:767px) { .table-responsive { width: 100%; margin-bottom: 16.5px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive>.table { margin-bottom: 0; } .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th { white-space: nowrap; } .table-responsive>.table-bordered { border: 0; } .table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child { border-left: 0; } .table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child { border-right: 0; } .table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th { border-bottom: 0; } } fieldset { min-width: 0; margin: 0; } fieldset,legend { padding: 0; border: 0; } legend { display: block; width: 100%; margin-bottom: 22px; font-size: 21px; line-height: inherit; color: #333; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 700; } input[type=search] { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; } input[type=checkbox],input[type=radio] { margin: 4px 0 0; margin-top: 1px\9; line-height: normal; } fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled] { cursor: not-allowed; } input[type=file] { display: block; } input[type=range] { display: block; width: 100%; } select[multiple],select[size] { height: auto; } input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { padding-top: 7px; } .form-control,output { display: block; font-size: 14px; line-height: 1.6; color: #555; } .form-control { width: 100%; height: 36px; padding: 6px 12px; background-color: #fff; background-image: none; border: 1px solid #ccd0d2; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; } .form-control:focus { border-color: #98cbe8; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(152,203,232,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(152,203,232,.6); } .form-control::-moz-placeholder { color: #b1b7ba; opacity: 1; } .form-control:-ms-input-placeholder { color: #b1b7ba; } .form-control::-webkit-input-placeholder { color: #b1b7ba; } .form-control::-ms-expand { background-color: transparent; border: 0; } .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled],fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } @media screen and (-webkit-min-device-pixel-ratio:0) { input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control { line-height: 36px; } .input-group-sm>.input-group-btn>input.btn[type=date],.input-group-sm>.input-group-btn>input.btn[type=datetime-local],.input-group-sm>.input-group-btn>input.btn[type=month],.input-group-sm>.input-group-btn>input.btn[type=time],.input-group-sm>input.form-control[type=date],.input-group-sm>input.form-control[type=datetime-local],.input-group-sm>input.form-control[type=month],.input-group-sm>input.form-control[type=time],.input-group-sm>input.input-group-addon[type=date],.input-group-sm>input.input-group-addon[type=datetime-local],.input-group-sm>input.input-group-addon[type=month],.input-group-sm>input.input-group-addon[type=time],.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm { line-height: 30px; } .input-group-lg>.input-group-btn>input.btn[type=date],.input-group-lg>.input-group-btn>input.btn[type=datetime-local],.input-group-lg>.input-group-btn>input.btn[type=month],.input-group-lg>.input-group-btn>input.btn[type=time],.input-group-lg>input.form-control[type=date],.input-group-lg>input.form-control[type=datetime-local],.input-group-lg>input.form-control[type=month],.input-group-lg>input.form-control[type=time],.input-group-lg>input.input-group-addon[type=date],.input-group-lg>input.input-group-addon[type=datetime-local],.input-group-lg>input.input-group-addon[type=month],.input-group-lg>input.input-group-addon[type=time],.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg { line-height: 46px; } } .form-group { margin-bottom: 15px; } .checkbox,.radio { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label { cursor: not-allowed; } .checkbox label,.radio label { min-height: 22px; padding-left: 20px; margin-bottom: 0; font-weight: 400; cursor: pointer; } .checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio] { position: absolute; margin-top: 4px\9; margin-left: -20px; } .checkbox+.checkbox,.radio+.radio { margin-top: -5px; } .checkbox-inline,.radio-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: 400; vertical-align: middle; cursor: pointer; } .checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline { cursor: not-allowed; } .checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline { margin-top: 0; margin-left: 10px; } .form-control-static { min-height: 36px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn { padding-right: 0; padding-left: 0; } .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm { height: 30px; line-height: 30px; } .input-group-sm>.input-group-btn>select.btn[multiple],.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select.form-control[multiple],.input-group-sm>select.input-group-addon[multiple],.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 34px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg { height: 46px; line-height: 46px; } .input-group-lg>.input-group-btn>select.btn[multiple],.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select.form-control[multiple],.input-group-lg>select.input-group-addon[multiple],.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 40px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 45px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 36px; height: 36px; line-height: 36px; text-align: center; pointer-events: none; } .form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label~.form-control-feedback { top: 27px; } .has-feedback label.sr-only~.form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #a4aaae; } @media(min-width:768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn { width: auto; } .form-inline .input-group>.form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .checkbox,.form-inline .radio { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .checkbox label,.form-inline .radio label { padding-left: 0; } .form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .checkbox,.form-horizontal .radio { min-height: 29px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } .form-horizontal .form-group:after,.form-horizontal .form-group:before { display: table; content: " "; } .form-horizontal .form-group:after { clear: both; } @media(min-width:768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media(min-width:768px) { .form-horizontal .form-group-lg .control-label { padding-top: 11px; font-size: 18px; } } @media(min-width:768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; padding: 6px 12px; font-size: 14px; line-height: 1.6; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.focus,.btn:focus,.btn:hover { color: #636b6f; text-decoration: none; } .btn.active,.btn:active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } .btn.disabled,.btn[disabled],fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); opacity: .65; -webkit-box-shadow: none; box-shadow: none; } a.btn.disabled,fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #636b6f; background-color: #fff; border-color: #ccc; } .btn-default.focus,.btn-default:focus { color: #636b6f; background-color: #e6e5e5; border-color: #8c8c8c; } .btn-default:hover { color: #636b6f; background-color: #e6e5e5; border-color: #adadad; } .btn-default.active,.btn-default:active,.open>.btn-default.dropdown-toggle { color: #636b6f; background-color: #e6e5e5; background-image: none; border-color: #adadad; } .btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover { color: #636b6f; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #636b6f; } .btn-primary { background-color: #3097d1; border-color: #2a88bd; } .btn-primary.focus,.btn-primary:focus { color: #fff; background-color: #2579a9; border-color: #133d55; } .btn-primary:hover { color: #fff; background-color: #2579a9; border-color: #1f648b; } .btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle { color: #fff; background-color: #2579a9; background-image: none; border-color: #1f648b; } .btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover { color: #fff; background-color: #1f648b; border-color: #133d55; } .btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover { background-color: #3097d1; border-color: #2a88bd; } .btn-primary .badge { color: #3097d1; background-color: #fff; } .btn-success { color: #fff; background-color: #2ab27b; border-color: #259d6d; } .btn-success.focus,.btn-success:focus { color: #fff; background-color: #20895e; border-color: #0d3625; } .btn-success:hover { color: #fff; background-color: #20895e; border-color: #196c4b; } .btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle { color: #fff; background-color: #20895e; background-image: none; border-color: #196c4b; } .btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover { color: #fff; background-color: #196c4b; border-color: #0d3625; } .btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover { background-color: #2ab27b; border-color: #259d6d; } .btn-success .badge { color: #2ab27b; background-color: #fff; } .btn-info { color: #fff; background-color: #8eb4cb; border-color: #7da8c3; } .btn-info.focus,.btn-info:focus { color: #fff; background-color: #6b9dbb; border-color: #3d6983; } .btn-info:hover { color: #fff; background-color: #6b9dbb; border-color: #538db0; } .btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle { color: #fff; background-color: #6b9dbb; background-image: none; border-color: #538db0; } .btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover { color: #fff; background-color: #538db0; border-color: #3d6983; } .btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover { background-color: #8eb4cb; border-color: #7da8c3; } .btn-info .badge { color: #8eb4cb; background-color: #fff; } .btn-warning { color: #fff; background-color: #cbb956; border-color: #c5b143; } .btn-warning.focus,.btn-warning:focus { color: #fff; background-color: #b6a338; border-color: #685d20; } .btn-warning:hover { color: #fff; background-color: #b6a338; border-color: #9b8a30; } .btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle { color: #fff; background-color: #b6a338; background-image: none; border-color: #9b8a30; } .btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover { color: #fff; background-color: #9b8a30; border-color: #685d20; } .btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover { background-color: #cbb956; border-color: #c5b143; } .btn-warning .badge { color: #cbb956; background-color: #fff; } .btn-danger { color: #fff; background-color: #bf5329; border-color: #aa4a24; } .btn-danger.focus,.btn-danger:focus { color: #fff; background-color: #954120; border-color: #411c0e; } .btn-danger:hover { color: #fff; background-color: #954120; border-color: #78341a; } .btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle { color: #fff; background-color: #954120; background-image: none; border-color: #78341a; } .btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover { color: #fff; background-color: #78341a; border-color: #411c0e; } .btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover { background-color: #bf5329; border-color: #aa4a24; } .btn-danger .badge { color: #bf5329; background-color: #fff; } .btn-link { font-weight: 400; color: #3097d1; border-radius: 0; } .btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover { border-color: transparent; } .btn-link:focus,.btn-link:hover { color: #216a94; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover { color: #777; text-decoration: none; } .btn-group-lg>.btn,.btn-lg { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-group-sm>.btn,.btn-sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-group-xs>.btn,.btn-xs { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block+.btn-block { margin-top: 5px; } input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height,visibility; transition-property: height,visibility; -webkit-transition-duration: .35s; transition-duration: .35s; -webkit-transition-timing-function: ease; transition-timing-function: ease; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid\9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown,.dropup { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); box-shadow: 0 6px 12px rgba(0,0,0,.175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 10px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu>li>a { display: block; padding: 3px 20px; clear: both; font-weight: 400; line-height: 1.6; color: #333; white-space: nowrap; } .dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover { color: #fff; text-decoration: none; background-color: #3097d1; outline: 0; } .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover { color: #777; } .dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .open>.dropdown-menu { display: block; } .open>a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.6; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right>.dropdown-menu { right: 0; left: auto; } .dropup .caret,.navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid\9; } .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media(min-width:768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } } .btn-group,.btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group-vertical>.btn,.btn-group>.btn { position: relative; float: left; } .btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover { z-index: 2; } .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar:after,.btn-toolbar:before { display: table; content: " "; } .btn-toolbar:after { clear: both; } .btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group { float: left; } .btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group { margin-left: 5px; } .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group>.btn:first-child { margin-left: 0; } .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group>.btn-group { float: left; } .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { border-radius: 0; } .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle { outline: 0; } .btn-group>.btn+.dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-group-lg>.btn .caret,.btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after { clear: both; } .btn-group-vertical>.btn-group>.btn { float: none; } .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical>.btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical>.btn:first-child:not(:last-child) { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical>.btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { border-radius: 0; } .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified>.btn,.btn-group-justified>.btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified>.btn-group .btn { width: 100%; } .btn-group-justified>.btn-group .dropdown-menu { left: auto; } [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio] { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*=col-] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group .form-control:focus { z-index: 3; } .input-group-addon,.input-group-btn,.input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon,.input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: 400; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccd0d2; border-radius: 4px; } .input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type=checkbox],.input-group-addon input[type=radio] { margin-top: 0; } .input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { font-size: 0; white-space: nowrap; } .input-group-btn,.input-group-btn>.btn { position: relative; } .input-group-btn>.btn+.btn { margin-left: -1px; } .input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover { z-index: 2; } .input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group { margin-right: -1px; } .input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav:after,.nav:before { display: table; content: " "; } .nav:after { clear: both; } .nav>li,.nav>li>a { position: relative; display: block; } .nav>li>a { padding: 10px 15px; } .nav>li>a:focus,.nav>li>a:hover { text-decoration: none; background-color: #eee; } .nav>li.disabled>a { color: #777; } .nav>li.disabled>a:focus,.nav>li.disabled>a:hover { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open>a,.nav .open>a:focus,.nav .open>a:hover { background-color: #eee; border-color: #3097d1; } .nav .nav-divider { height: 1px; margin: 10px 0; overflow: hidden; background-color: #e5e5e5; } .nav>li>a>img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs>li { float: left; margin-bottom: -1px; } .nav-tabs>li>a { margin-right: 2px; line-height: 1.6; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs>li>a:hover { border-color: #eee #eee #ddd; } .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover { color: #555; cursor: default; background-color: #f5f8fa; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-pills>li { float: left; } .nav-pills>li>a { border-radius: 4px; } .nav-pills>li+li { margin-left: 2px; } .nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover { color: #fff; background-color: #3097d1; } .nav-stacked>li { float: none; } .nav-stacked>li+li { margin-top: 2px; margin-left: 0; } .nav-justified,.nav-tabs.nav-justified { width: 100%; } .nav-justified>li,.nav-tabs.nav-justified>li { float: none; } .nav-justified>li>a,.nav-tabs.nav-justified>li>a { margin-bottom: 5px; text-align: center; } .nav-justified>.dropdown .dropdown-menu { top: auto; left: auto; } @media(min-width:768px) { .nav-justified>li,.nav-tabs.nav-justified>li { display: table-cell; width: 1%; } .nav-justified>li>a,.nav-tabs.nav-justified>li>a { margin-bottom: 0; } } .nav-tabs-justified,.nav-tabs.nav-justified { border-bottom: 0; } .nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover { border: 1px solid #ddd; } @media(min-width:768px) { .nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover { border-bottom-color: #f5f8fa; } } .tab-content>.tab-pane { display: none; } .tab-content>.active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 22px; border: 1px solid transparent; } .navbar:after,.navbar:before { display: table; content: " "; } .navbar:after { clear: both; } @media(min-width:768px) { .navbar { border-radius: 4px; } } .navbar-header:after,.navbar-header:before { display: table; content: " "; } .navbar-header:after { clear: both; } @media(min-width:768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1); box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1); -webkit-overflow-scrolling: touch; } .navbar-collapse:after,.navbar-collapse:before { display: table; content: " "; } .navbar-collapse:after { clear: both; } .navbar-collapse.in { overflow-y: auto; } @media(min-width:768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block!important; height: auto!important; padding-bottom: 0; overflow: visible!important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-bottom,.navbar-fixed-top { position: fixed; right: 0; left: 0; z-index: 1030; } .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse { max-height: 340px; } @media(max-device-width:480px) and (orientation:landscape) { .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse { max-height: 200px; } } @media(min-width:768px) { .navbar-fixed-bottom,.navbar-fixed-top { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header { margin-right: -15px; margin-left: -15px; } @media(min-width:768px) { .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media(min-width:768px) { .navbar-static-top { border-radius: 0; } } .navbar-brand { float: left; height: 50px; padding: 14px 15px; font-size: 18px; line-height: 22px; } .navbar-brand:focus,.navbar-brand:hover { text-decoration: none; } .navbar-brand>img { display: block; } @media(min-width:768px) { .navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-right: 15px; margin-top: 8px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar+.icon-bar { margin-top: 4px; } @media(min-width:768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7px -15px; } .navbar-nav>li>a { padding-top: 10px; padding-bottom: 10px; line-height: 22px; } @media(max-width:767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu>li>a { line-height: 22px; } .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover { background-image: none; } } @media(min-width:768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav>li { float: left; } .navbar-nav>li>a { padding-top: 14px; padding-bottom: 14px; } } .navbar-form { padding: 10px 15px; margin: 7px -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1); box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1); } @media(min-width:768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn { width: auto; } .navbar-form .input-group>.form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .checkbox,.navbar-form .radio { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .checkbox label,.navbar-form .radio label { padding-left: 0; } .navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media(max-width:767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media(min-width:768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav>li>.dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 7px; margin-bottom: 7px; } .btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs,.navbar-text { margin-top: 14px; margin-bottom: 14px; } @media(min-width:768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media(min-width:768px) { .navbar-left { float: left!important; } .navbar-right { float: right!important; margin-right: -15px; } .navbar-right~.navbar-right { margin-right: 0; } } .navbar-default { background-color: #fff; border-color: #d3e0e9; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover { color: #5e5d5d; background-color: transparent; } .navbar-default .navbar-nav>li>a,.navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover { color: #333; background-color: transparent; } .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover { color: #555; background-color: #eee; } .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover { color: #ccc; background-color: transparent; } .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover { color: #555; background-color: #eee; } @media(max-width:767px) { .navbar-default .navbar-nav .open .dropdown-menu>li>a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover { color: #555; background-color: #eee; } .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover { color: #ccc; background-color: transparent; } } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse,.navbar-default .navbar-form { border-color: #d3e0e9; } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:focus,.navbar-default .btn-link:hover { color: #333; } .navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #090909; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover { color: #fff; background-color: #090909; } .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover { color: #444; background-color: transparent; } .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover { color: #fff; background-color: #090909; } @media(max-width:767px) { .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { border-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover { color: #fff; background-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover { color: #444; background-color: transparent; } } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover { color: #fff; } .navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover { color: #444; } .breadcrumb { padding: 8px 15px; margin-bottom: 22px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb>li { display: inline-block; } .breadcrumb>li+li:before { padding: 0 5px; color: #ccc; content: "/\A0"; } .breadcrumb>.active { color: #777; } .pagination { display: inline-block; padding-left: 0; margin: 22px 0; border-radius: 4px; } .pagination>li { display: inline; } .pagination>li>a,.pagination>li>span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.6; color: #3097d1; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover { z-index: 2; color: #216a94; background-color: #eee; border-color: #ddd; } .pagination>li:first-child>a,.pagination>li:first-child>span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination>li:last-child>a,.pagination>li:last-child>span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover { z-index: 3; color: #fff; cursor: default; background-color: #3097d1; border-color: #3097d1; } .pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg>li>a,.pagination-lg>li>span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm>li>a,.pagination-sm>li>span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 22px 0; text-align: center; list-style: none; } .pager:after,.pager:before { display: table; content: " "; } .pager:after { clear: both; } .pager li { display: inline; } .pager li>a,.pager li>span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li>a:focus,.pager li>a:hover { text-decoration: none; background-color: #eee; } .pager .next>a,.pager .next>span { float: right; } .pager .previous>a,.pager .previous>span { float: left; } .pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } a.label:focus,a.label:hover { color: #fff; text-decoration: none; cursor: pointer; } .label-default { background-color: #777; } .label-default[href]:focus,.label-default[href]:hover { background-color: #5e5e5e; } .label-primary { background-color: #3097d1; } .label-primary[href]:focus,.label-primary[href]:hover { background-color: #2579a9; } .label-success { background-color: #2ab27b; } .label-success[href]:focus,.label-success[href]:hover { background-color: #20895e; } .label-info { background-color: #8eb4cb; } .label-info[href]:focus,.label-info[href]:hover { background-color: #6b9dbb; } .label-warning { background-color: #cbb956; } .label-warning[href]:focus,.label-warning[href]:hover { background-color: #b6a338; } .label-danger { background-color: #bf5329; } .label-danger[href]:focus,.label-danger[href]:hover { background-color: #954120; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-group-xs>.btn .badge,.btn-xs .badge { top: 0; padding: 1px 5px; } .list-group-item.active>.badge,.nav-pills>.active>a>.badge { color: #3097d1; background-color: #fff; } .list-group-item>.badge { float: right; } .list-group-item>.badge+.badge { margin-right: 5px; } .nav-pills>li>a>.badge { margin-left: 3px; } a.badge:focus,a.badge:hover { color: #fff; text-decoration: none; cursor: pointer; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; background-color: #eee; } .jumbotron,.jumbotron .h1,.jumbotron h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron>hr { border-top-color: #d5d5d5; } .container-fluid .jumbotron,.container .jumbotron { padding-right: 15px; padding-left: 15px; border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width:768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container-fluid .jumbotron,.container .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron .h1,.jumbotron h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 22px; line-height: 1.6; background-color: #f5f8fa; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail>img,.thumbnail a>img { display: block; max-width: 100%; height: auto; margin-right: auto; margin-left: auto; } .thumbnail .caption { padding: 9px; color: #636b6f; } a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover { border-color: #3097d1; } .alert { padding: 15px; margin-bottom: 22px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: 700; } .alert>p,.alert>ul { margin-bottom: 0; } .alert>p+p { margin-top: 5px; } .alert-dismissable,.alert-dismissible { padding-right: 35px; } .alert-dismissable .close,.alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { 0% { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { 0% { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 22px; margin-bottom: 22px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1); box-shadow: inset 0 1px 2px rgba(0,0,0,.1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 22px; color: #fff; text-align: center; background-color: #3097d1; -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); -webkit-transition: width .6s ease; transition: width .6s ease; } .progress-bar-striped,.progress-striped .progress-bar { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); background-size: 40px 40px; } .progress-bar.active,.progress.active .progress-bar { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #2ab27b; } .progress-striped .progress-bar-success { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-info { background-color: #8eb4cb; } .progress-striped .progress-bar-info { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-warning { background-color: #cbb956; } .progress-striped .progress-bar-warning { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-danger { background-color: #bf5329; } .progress-striped .progress-bar-danger { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media,.media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right,.media>.pull-right { padding-left: 10px; } .media-left,.media>.pull-left { padding-right: 10px; } .media-body,.media-left,.media-right { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #d3e0e9; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text { color: #777; } .list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover { z-index: 2; color: #fff; background-color: #3097d1; border-color: #3097d1; } .list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small { color: inherit; } .list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text { color: #d7ebf6; } a.list-group-item,button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover { color: #555; text-decoration: none; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success,button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info,button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning,button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger,button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 22px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05); box-shadow: 0 1px 1px rgba(0,0,0,.05); } .panel-body { padding: 15px; } .panel-body:after,.panel-body:before { display: table; content: " "; } .panel-body:after { clear: both; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading>.dropdown .dropdown-toggle,.panel-title { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; } .panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #d3e0e9; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.list-group,.panel>.panel-collapse>.list-group { margin-bottom: 0; } .panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child { border-top-width: 0; } .panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table { margin-bottom: 0; } .panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption { padding-right: 15px; padding-left: 15px; } .panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child { border-top-left-radius: 3px; } .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child { border-top-right-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body { border-top: 1px solid #ddd; } .panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th { border-top: 0; } .panel>.table-bordered,.panel>.table-responsive>.table-bordered { border: 0; } .panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child { border-left: 0; } .panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child { border-right: 0; } .panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th { border-bottom: 0; } .panel>.table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 22px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel+.panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body { border-top: 1px solid #d3e0e9; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer+.panel-collapse .panel-body { border-bottom: 1px solid #d3e0e9; } .panel-default { border-color: #d3e0e9; } .panel-default>.panel-heading { color: #333; background-color: #fff; border-color: #d3e0e9; } .panel-default>.panel-heading+.panel-collapse>.panel-body { border-top-color: #d3e0e9; } .panel-default>.panel-heading .badge { color: #fff; background-color: #333; } .panel-default>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #d3e0e9; } .panel-primary { border-color: #3097d1; } .panel-primary>.panel-heading { color: #fff; background-color: #3097d1; border-color: #3097d1; } .panel-primary>.panel-heading+.panel-collapse>.panel-body { border-top-color: #3097d1; } .panel-primary>.panel-heading .badge { color: #3097d1; background-color: #fff; } .panel-primary>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #3097d1; } .panel-success { border-color: #d6e9c6; } .panel-success>.panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success>.panel-heading+.panel-collapse>.panel-body { border-top-color: #d6e9c6; } .panel-success>.panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info>.panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info>.panel-heading+.panel-collapse>.panel-body { border-top-color: #bce8f1; } .panel-info>.panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning>.panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning>.panel-heading+.panel-collapse>.panel-body { border-top-color: #faebcc; } .panel-warning>.panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger>.panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger>.panel-heading+.panel-collapse>.panel-body { border-top-color: #ebccd1; } .panel-danger>.panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); box-shadow: inset 0 1px 1px rgba(0,0,0,.05); } .well blockquote { border-color: #ddd; border-color: rgba(0,0,0,.15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:focus,.close:hover { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { padding: 0; cursor: pointer; background: 0 0; border: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .modal,.modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translateY(-25%); transform: translateY(-25%); -webkit-transition: -webkit-transform .3s ease-out; transition: -webkit-transform .3s ease-out; transition: transform .3s ease-out; transition: transform .3s ease-out,-webkit-transform .3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0); transform: translate(0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0,0,0,.2); border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5); box-shadow: 0 3px 9px rgba(0,0,0,.5); outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header:after,.modal-header:before { display: table; content: " "; } .modal-header:after { clear: both; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.6; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer:after,.modal-footer:before { display: table; content: " "; } .modal-footer:after { clear: both; } .modal-footer .btn+.btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn+.btn { margin-left: -1px; } .modal-footer .btn-block+.btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media(min-width:768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5); box-shadow: 0 5px 15px rgba(0,0,0,.5); } .modal-sm { width: 300px; } } @media(min-width:992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: Raleway,sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; line-break: auto; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; font-size: 12px; filter: alpha(opacity=0); opacity: 0; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; } .tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow { bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { left: 5px; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: Raleway,sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; line-break: auto; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; font-size: 14px; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); box-shadow: 0 5px 10px rgba(0,0,0,.2); } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover>.arrow { border-width: 11px; } .popover>.arrow,.popover>.arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover>.arrow:after { content: ""; border-width: 10px; } .popover.top>.arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0,0,0,.25); border-bottom-width: 0; } .popover.top>.arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right>.arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0,0,0,.25); border-left-width: 0; } .popover.right>.arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom>.arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0,0,0,.25); } .popover.bottom>.arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left>.arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0,0,0,.25); } .popover.left>.arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .carousel,.carousel-inner { position: relative; } .carousel-inner { width: 100%; overflow: hidden; } .carousel-inner>.item { position: relative; display: none; -webkit-transition: left .6s ease-in-out; transition: left .6s ease-in-out; } .carousel-inner>.item>a>img,.carousel-inner>.item>img { display: block; max-width: 100%; height: auto; line-height: 1; } @media(-webkit-transform-3d),(transform-3d) { .carousel-inner>.item { -webkit-transition: -webkit-transform .6s ease-in-out; transition: -webkit-transform .6s ease-in-out; transition: transform .6s ease-in-out; transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner>.item.active.right,.carousel-inner>.item.next { -webkit-transform: translate3d(100%,0,0); transform: translate3d(100%,0,0); left: 0; } .carousel-inner>.item.active.left,.carousel-inner>.item.prev { -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); left: 0; } .carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right { -webkit-transform: translateZ(0); transform: translateZ(0); left: 0; } } .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev { display: block; } .carousel-inner>.active { left: 0; } .carousel-inner>.next,.carousel-inner>.prev { position: absolute; top: 0; width: 100%; } .carousel-inner>.next { left: 100%; } .carousel-inner>.prev { left: -100%; } .carousel-inner>.next.left,.carousel-inner>.prev.right { left: 0; } .carousel-inner>.active.left { left: -100%; } .carousel-inner>.active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0,0,0,.6); background-color: transparent; filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001))); background-image: linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5))); background-image: linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1); background-repeat: repeat-x; } .carousel-control:focus,.carousel-control:hover { color: #fff; text-decoration: none; outline: 0; filter: alpha(opacity=90); opacity: .9; } .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev { left: 50%; margin-left: -10px; } .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next { right: 50%; margin-right: -10px; } .carousel-control .icon-next,.carousel-control .icon-prev { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: "\2039"; } .carousel-control .icon-next:before { content: "\203A"; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000\9; background-color: transparent; border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0,0,0,.6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width:768px) { .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev { width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev { margin-left: -10px; } .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next { margin-right: -10px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:after,.clearfix:before { display: table; content: " "; } .clearfix:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right!important; } .pull-left { float: left!important; } .hide { display: none!important; } .show { display: block!important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none!important; } .affix { position: fixed; } @-ms-viewport { width:device-width; } .visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block { display: none!important; } @media(max-width:767px) { .visible-xs { display: block!important; } table.visible-xs { display: table!important; } tr.visible-xs { display: table-row!important; } td.visible-xs,th.visible-xs { display: table-cell!important; } } @media(max-width:767px) { .visible-xs-block { display: block!important; } } @media(max-width:767px) { .visible-xs-inline { display: inline!important; } } @media(max-width:767px) { .visible-xs-inline-block { display: inline-block!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm { display: block!important; } table.visible-sm { display: table!important; } tr.visible-sm { display: table-row!important; } td.visible-sm,th.visible-sm { display: table-cell!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-block { display: block!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-inline { display: inline!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-inline-block { display: inline-block!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md { display: block!important; } table.visible-md { display: table!important; } tr.visible-md { display: table-row!important; } td.visible-md,th.visible-md { display: table-cell!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-block { display: block!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-inline { display: inline!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-inline-block { display: inline-block!important; } } @media(min-width:1200px) { .visible-lg { display: block!important; } table.visible-lg { display: table!important; } tr.visible-lg { display: table-row!important; } td.visible-lg,th.visible-lg { display: table-cell!important; } } @media(min-width:1200px) { .visible-lg-block { display: block!important; } } @media(min-width:1200px) { .visible-lg-inline { display: inline!important; } } @media(min-width:1200px) { .visible-lg-inline-block { display: inline-block!important; } } @media(max-width:767px) { .hidden-xs { display: none!important; } } @media(min-width:768px) and (max-width:991px) { .hidden-sm { display: none!important; } } @media(min-width:992px) and (max-width:1199px) { .hidden-md { display: none!important; } } @media(min-width:1200px) { .hidden-lg { display: none!important; } } .visible-print { display: none!important; } @media print { .visible-print { display: block!important; } table.visible-print { display: table!important; } tr.visible-print { display: table-row!important; } td.visible-print,th.visible-print { display: table-cell!important; } } .visible-print-block { display: none!important; } @media print { .visible-print-block { display: block!important; } } .visible-print-inline { display: none!important; } @media print { .visible-print-inline { display: inline!important; } } .visible-print-inline-block { display: none!important; } @media print { .visible-print-inline-block { display: inline-block!important; } } @media print { .hidden-print { display: none!important; } } body { overflow-x: hidden; } .product-labels { text-align: right; } .product-labels div { display: inline; margin-right: 13px; font-weight: 600; text-transform: uppercase; } .product-labels .like { color: #42ba4f; } .product-labels .dislike { color: #de4432; } .fancy-radio .actions { position: absolute; right: 25px; top: 20px; font-size: 24px; } .fancy-radio .actions .fa-check-circle { margin-right: 20px; } .fancy-radio .actions .fa-check-circle.active { color: #42ba4f; } .fancy-radio .actions .fa-times-circle.active { color: #de4432; } .upsell-success { text-align: center; max-width: 750px; margin: 0 auto; } .upsell-success h3 span { color: #ff3464; } .upsell-success h5 { font-size: 24px; line-height: 24px; color: #21bb21; } .upsell-success h6 { margin-top: 20px; font-size: 24px; line-height: 24px; } .upsell-success .nutritionist-headline { font-family: Lato; font-style: normal; font-weight: 700; font-size: 24px; line-height: 32px; text-align: center; color: #1d1d1d; max-width: 80%; margin: 20px auto; margin-top: 75px; } .upsell-success .get-nutritionist { text-align: center; } .upsell-success .success-msg.nutritionist { max-width: 500px; margin: 0 auto; } .upsell-success .survey-results { font-family: Lato; font-style: normal; font-weight: 600; font-size: 16px; line-height: 24px; max-width: 500px; margin: 0 auto; } .upsell-success .survey-results span { font-weight: 900; font-size: 46px; line-height: 55px; color: #56468f; margin-left: 10px; margin-right: 10px; } .upsell-success .who-data { font-size: 16px; line-height: 24px; color: #1d1d1d; background: #c4c4c426; padding: 20px; max-width: 500px; margin: 30px auto; padding-top: 40px; } .upsell-success .who-data p { margin-bottom: 20px; } .upsell-success .unique-offer { font-weight: 600; color: #ff2e63; text-align: center; margin-top: 20px; } .upsell-success .additional-info.nutritionist { max-width: 500px; text-align: left; margin: 20px auto; } .upsell-success .upsell-benefits { margin-top: 30px; margin-bottom: 30px; text-align: left; } .upsell-success .upsell-benefits.nutritionist { max-width: 500px; margin: 30px auto; } .upsell-success .upsell-benefits ul { padding-left: 0; } .upsell-success .upsell-benefits li { margin-bottom: 10px; font-size: 16px; list-style: none; } .upsell-success .upsell-benefits li i { color: #ff3464; font-weight: 700; font-size: 18px; margin-right: 5px; } .upsell-success .b-form.m-short { margin: 0 auto; } .upsell-success .btn-skip { font-size: 16px; color: #555; text-decoration: underline; display: block; margin-top: 20px; } .upsell-success .offer { font-size: 18px; margin-top: 30px; background: #f5f5f5; border-radius: 15px; padding: 15px; } .upsell-success .offer .old-price { font-size: 18px!important; } .upsell-success .offer .highlighted { color: #56468f; } .upsell-success .additional-info { margin-top: 30px; margin-bottom: 30px; font-size: 16px; color: #555; } .btn-female:hover,.btn-male:hover { background: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); } .btn-primary.active,.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary.focus,.btn-primary:active,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.btn-primary:focus,.btn-primary:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,.open>.btn-primary.dropdown-toggle,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover { background-color: #ff3464; } .btn-primary:focus { outline: none!important; } body { font-family: Karla,Montserrat,Arial; font-display: swap; background: #fff; color: #444; width: 100%; margin: 0; } .terms p { font-size: 15px; line-height: 19px; } .terms-table td { padding: 5px; } .payment-disclaimer { max-width: 400px; padding: 15px; text-align: left; padding-bottom: 0; font-size: 14px; line-height: 22px; padding-top: 10px; } .progress-bar { width: 100%; background: rgba(86,70,143,.4); } .progress-bar,.progress-bar .progress { height: 5px; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; border: 0; } .progress-bar .progress { width: 12.5%; background: #56468f; } .navbar-brand { float: none; margin: 0 auto; text-align: center; max-width: 200px; display: block; } @media only screen and (min-width:1025px) { .navbar-brand { position: relative; } } .navbar-brand>img { margin: 0 auto; max-height: 45px; } .fancy-radio { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -7px rgba(0,0,0,.2); box-shadow: 0 4px 11px -7px rgba(0,0,0,.2); opacity: .7; cursor: pointer; position: relative; padding: 20px; color: #444; font-family: Karla,Montserrat; padding-right: 40px; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-bottom: 15px; } .fancy-radio .status { -webkit-transform: rotate(180deg); transform: rotate(180deg); border-radius: 9px 0 0 9px; background-color: #c3c3c3; position: absolute; right: 0; top: 0; height: 100%; width: 30px; z-index: 1; } .fancy-radio .status-icon { color: #fff; z-index: 2; font-size: 24px; font-weight: 600; text-align: center; position: absolute; right: 10px; top: 50%; margin-top: -10px; } .fancy-radio.active { -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); color: #ff3464; opacity: 1; } .fancy-radio.active .status { background-color: #56468f; } .fancy-radio.active .status-icon { position: absolute; right: 8px; top: 50%; margin-top: -12px; } .step { padding: 10px; padding-bottom: 25px; } .step .question { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; margin-top: 20px; margin-bottom: 20px; } .btn-primary { border-radius: 22px; text-align: center; display: block; width: 100%; background-color: #ff3464; -webkit-box-shadow: 0 4px 11px -2px #ff3464; box-shadow: 0 4px 11px -2px #ff3464; color: #fff; font-size: 20px; border: 0; font-weight: 700; outline: none; margin-top: 25px; letter-spacing: .68px; padding: 12px; line-height: 23px; } .btn-primary.scroll-btn { max-width: 250px; } .units-toggler { background: #e4e5e7; padding: 25px; margin-left: -15px; margin-right: -15px; text-align: center; margin-left: -25px; width: calc(100% + 50px); margin-top: -10px; } @media only screen and (max-width:640px) { .units-toggler { display: -webkit-box; display: -ms-flexbox; display: flex; } } .units-toggler .btn { border: 1px solid #444; opacity: .28; width: 43%; border-radius: 22px; -webkit-box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); color: #444; font-family: Karla,Montserrat; font-size: 18px; font-weight: 700; letter-spacing: .61px; line-height: 22px; text-align: center; outline: none!important; padding: 10px; margin-right: 5px; } .units-toggler .btn:last-child { margin-right: 0; margin-left: 5px; } @media only screen and (max-width:640px) { .units-toggler .btn { width: 100%; } } .units-toggler .btn.active { color: #ff3464; opacity: 1; border: 0; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); } .input-holder { position: relative; margin-bottom: 30px; } .input-holder input.has-error { border-bottom: 1px solid red!important; } .input-holder input { width: 100%; display: block; -webkit-box-shadow: none; box-shadow: none; border: 0; border-bottom: 1px solid #e4e5e7; opacity: .7; color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; padding: 6px; outline: none!important; } .input-holder input:focus { border-bottom: 1px solid #56468f; opacity: 1; } .input-holder .units { position: absolute; right: 0; width: 90px; color: #ff3464; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; text-align: right; top: 5px; } .fancy-radio.with-icon { padding-left: 65px; } .fancy-radio.with-icon .icon { max-height: 32px; position: absolute; top: 50%; background-size: contain; left: 10px; margin-top: -16px; height: 40px; text-align: center; width: 40px; } .fancy-radio.with-icon .icon i,.fancy-radio.with-icon .icon img { max-width: 100%; max-height: 100%; -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: .43; } .fancy-radio.with-icon.active .icon i,.fancy-radio.with-icon.active .icon img { -webkit-filter: grayscale(0); filter: grayscale(0); opacity: 1; } .results-box { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin: 0; position: relative; overflow: hidden; height: 100%; } .results-box .heading { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; position: absolute; top: 15px; left: 15px; } .step.results { background: url(../images/results-bg-mobile.jpg) no-repeat; background-position: 100% 0; background-size: 70%; margin-left: -15px; margin-right: -15px; } .results-logo { margin-left: 5px; max-height: 55px; text-align: left; margin-bottom: 40px; margin-top: 30px; max-width: 175px; } .step.results h3 { color: #444; font-family: Karla,Montserrat; font-size: 34px; display: block; font-weight: 700; max-width: 240px; letter-spacing: 1.19px; margin: 25px 15px; line-height: 46px; } .step.results p.subheading { width: 240px; margin-left: 15px; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } .step.results .scroll-btn { margin-left: 15px; margin-top: 50px; margin-bottom: 40px; } .btn-back { position: absolute; left: 10px; top: 50%; cursor: pointer; } .subheader { overflow: hidden; } .subheader,nav { display: none; } #my-plan nav { display: block; } .step { display: none; } .step.active { display: block; } #landing { background: url(../images/landing-bg1b26.jpg) no-repeat; background-size: contain; background-position: top; background-color: #fff; margin-left: -15px; margin-right: -15px; padding: 15px; } @media only screen and (min-width:1025px) { #landing .container { position: relative; } } #billing .success-msg { margin-top: 20px; margin-bottom: 60px; font-size: 16px; } .question-description { margin-top: -15px; margin-bottom: 25px; } #billing { background: url(../images/billing-bg.jpg) no-repeat; background-size: contain; background-position: top; background-color: #fff; margin-left: -15px; display: none; overflow-x: hidden; margin-right: -15px; padding: 15px; } #billing h3 { color: #444; font-family: Lato; font-size: 29px; font-weight: 700; letter-spacing: .98px; line-height: 35px; } #billing .regular-logo { max-width: 125px; margin-top: 10px; } #billing .pricing { margin-top: 50px; font-size: 54px; line-height: 93px; } #billing .old-price,#billing .pricing { color: #56468f; font-family: Karla,Montserrat; text-align: center; letter-spacing: 1.19px; } #billing .old-price { font-size: 32px; margin-top: -10px; text-decoration: line-through; margin-bottom: 30px; } #billing .container { padding: 15px; } #billing .btn-payment { width: 80%; max-width: 270px; margin: 20px auto; } #billing .payment-providers span { margin-top: 35px; display: block; margin-bottom: 15px; } #billing .payment-providers { text-align: center; } #billing .payment-providers img { max-width: 100%; margin-bottom: 20px; } .covered { background-color: #ff34640d; padding: 25px; margin-left: -15px; margin-right: -15px; } .covered .heading { opacity: .58; color: #444; font-family: Lato; font-size: 15px; letter-spacing: .51px; line-height: 18px; text-align: center; } #billing .limited-offer { color: #ff3464; font-size: 17px; font-weight: 700; letter-spacing: .58px; line-height: 20px; margin-bottom: 40px; } #billing .card-inputs { display: none; } #billing .card-inputs.active { display: block; max-width: 450px; width: 100%; margin: 0 auto; margin-top: 20px; } #billing .payment-options,.covered-logos { margin-top: 25px; } .covered-logos { text-align: center; } @media only screen and (min-width:640px) { .covered-logos { margin-top: 5px; } } .covered img { width: 30%; margin: 4px; max-width: 160px; } #billing .benefits ul { color: #ff3464; } #billing .benefits ul span { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; } #landing .regular-logo { max-width: 125px; margin-top: 5px; } #landing h1 { color: #ff3464; font-family: Lato,Montserrat; font-size: 40px; font-weight: 900; letter-spacing: 1.36px; margin-top: 180px; display: block; /*max-width: 400px;*/ line-height: 46px; } @media only screen and (max-width:640px) { #landing h1 { max-width: 285px; } } #landing.men h1,#landing.over40 h1,#landing.women h1 { color: #444; font-family: Lato,Montserrat; font-size: 40px; font-weight: 900; letter-spacing: 1.36px; line-height: 43px; display: block; max-width: 285px; margin-top: 40px; } .subheader-text { color: #ff3464; font-family: Karla,Montserrat; font-size: 20px; font-weight: 700; display: block; max-width: 240px; letter-spacing: .68px; margin-top: 20px; margin-bottom: 30px; } #landing.men .btn-male { margin-top: 0!important; margin-left: 0!important; } #landing.over40 .gender-description { margin-top: -10px; } #landing .gender-description { color: #444; margin-top: 40px; font-family: Lato,Montserrat; font-size: 20px; margin-bottom: 15px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .gender-buttons .icon { position: absolute; display: block; left: 15px; top: 10px; height: 30px; } .gender-buttons .icon img { max-height: 100%; } .gender-buttons .forward { position: absolute; right: 15px; top: 50%; margin-top: -7px; } .btn-female { -webkit-box-shadow: 0 4px 11px -2px rgba(255,52,100,.5); box-shadow: 0 4px 11px -2px rgba(255,52,100,.5); color: #ff3464; display: block; } .btn-female,.btn-male { border-radius: 9px; background-color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; outline: none!important; text-align: center; position: relative; margin-top: 15px; padding: 15px; width: 100%; } .btn-male { -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); color: #56468f; } .copyright { opacity: .7; color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 20px; text-align: center; text-transform: uppercase; } .links { padding: 15px; margin-top: 25px; } .links a { opacity: .7; color: #444; font-size: 15px; display: block; letter-spacing: .51px; line-height: 22px; } .footer-logo { max-width: 115px; margin: 40px auto; display: block; } .btn-get-plan { margin-left: 5%; margin-right: 5%; width: 90%; margin-bottom: 25px; } .btn-get-plan.es,.btn-get-plan.la,.btn-get-plan.mx { font-size: 16px; } .summary h3 { margin-bottom: 5px!important; margin-top: 60px!important; } .bmi-scale .scale-title { padding-top: 15px; padding-bottom: 15px; text-align: center; font-family: Lato; font-size: 13px; letter-spacing: .44px; } .bmi-scale .first { padding-right: 0; } .bmi-scale .second { padding-left: 0; padding-right: 0; } .bmi-scale .third { padding-left: 0; } .bmi-scale .active .scale-title { color: #56468f; } .bmi-scale>div.active { background: #f6f5f9; } .bmi-scale>div { padding-top: 100px; text-align: center; } .bmi-scale .scale-result { color: #ff3464; height: 36px; font-family: Karla,Montserrat; font-size: 30px; letter-spacing: 1.02px; line-height: 36px; text-align: center; } .bmi-scale .separator { margin-top: 14px; height: 3px; margin-bottom: 2px; width: 100%; background: #f6f6f6; } .bmi-scale .separatro span { display: none; } .bmi-scale .active .separator { position: relative; margin-top: 12px; height: 7px; margin-bottom: 0; width: 100%; background: #56468f; } .bmi-scale .active .separator span { width: 22px; background-color: #ff3464; -webkit-box-shadow: 0 2px 4px 0 #ff3464; box-shadow: 0 2px 4px 0 #ff3464; display: block; height: 22px; border-radius: 50%; position: absolute; top: -8px; left: 50%; margin-left: -11px; } .box-data { padding: 20px; } .summary-container .footer-heading { font-size: 28px; } .box-data .box-title { color: #444; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } .results-box#meals img { padding-top: 35px; margin: 10px auto; display: block; margin-top: 30px; } .box-data .box-result { color: #ff3464; font-family: Lato; font-size: 15px; font-weight: 300; letter-spacing: .51px; line-height: 18px; margin-top: 5px; } .box-data .box-info { color: #444; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } #nutritional-value img { margin-top: 80px; max-width: 100%; width: 100%; margin-bottom: 15px; } #body-parts .box-data { padding-right: 50px; padding-top: 35px; } #body-parts .parts { text-align: right; padding-right: 25px; } #intake .calories { text-align: center; margin-top: 60px; } #intake .daily-norm { color: #56468f; font-size: 16px; letter-spacing: .81px; line-height: 18px; font-weight: 400; position: absolute; width: 100%; text-align: center; top: 130px; } #intake .daily-norm span { display: block; font-weight: 700; } .cr { clear: left; } #water { padding-top: 60px; } #water .water-intake { background: url(../images/water-intake.svg) no-repeat; min-height: 150px; background-size: cover; width: 100%; padding-top: 60px; color: #fff; font-family: Karla,Montserrat; font-size: 23px; font-weight: 700; letter-spacing: .81px; line-height: 27px; text-align: center; } #achievable img { margin-top: 60px; width: 70%; margin-left: 15%; } #energy-level img,#reduce-risks img { width: 110%; margin-top: 60px; margin-left: -15px; } #achievable .weight-value { color: #56468f; font-family: Karla,Montserrat; font-size: 34px; letter-spacing: .81px; line-height: 28px; width: 100%; top: 165px; } #achievable .weight-value,.meal-count { font-weight: 600; text-align: center; position: absolute; } .meal-count { width: 120px; left: 50%; top: 50%; margin-top: -30px; margin-left: -60px; color: #ff3464; } .meal-count span { color: #ff3464; text-align: center; display: block; font-size: 36px; line-height: 36px; font-weight: 700; } #email-value { margin-top: 20px; } .error-msg { text-align: center; margin-top: 25px; color: #ff3464; display: none; } #reduce-risks .box-data { padding-top: 0; } #my-plan .week-data { opacity: .9; color: #56468f; font-family: Karla,Montserrat; line-height: 48px; font-size: 22px; letter-spacing: .75px; text-align: center; } #my-plan .week-data span { font-weight: 700; } #my-plan .meal { border-radius: 9px; min-height: 100px; width: 100%; padding: 10px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } #my-plan .meal-photo { max-width: 80px; float: left; } #my-plan .meal .meal-time { color: #ff3464; font-family: Karla,Montserrat; font-size: 13px; font-weight: 700; letter-spacing: .41px; line-height: 15px; } #my-plan .meal .meal-title { opacity: .9; color: #444; font-family: Karla,Montserrat; font-size: 13px; letter-spacing: .37px; line-height: 16px; margin-top: 5px; } #my-plan .meal-data { margin: 10px; padding-left: 10px; padding-right: 30px; } @media only screen and (max-width:570px) { #my-plan .meal-data { padding-left: 5px; } } #my-plan .meal { margin-bottom: 15px; position: relative; } #my-plan .meal .arrow-icon { position: absolute; right: 0; text-align: center; top: 0; width: 34px; line-height: 100px; height: 100%; border-left: 1px solid #f6f6f6; } #my-plan .meal .arrow-icon img { opacity: .5; } #my-plan .week-days { text-align: center; padding: 10px; border-bottom: 1px solid #f6f6f6; margin-top: -25px; margin-bottom: 25px; } #my-plan .week-days a { display: inline-block; padding: 2px 17px; opacity: .3; color: #444; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 17px; text-align: center; } #my-plan .week-days a:hover { text-decoration: none; } #my-plan .week-days a.active { color: #ff3464; font-family: Karla,Montserrat; font-size: 16px; text-decoration: none; opacity: 1; font-weight: 700; letter-spacing: .68px; line-height: 20px; } #my-plan .week-days a span { height: 6px; width: 6px; display: block; border-radius: 50%; margin: 0 auto; margin-top: 5px; background-color: #c6c6c6; } #my-plan .week-days a.active span { background-color: #ff3464; } #my-plan nav>container { position: relative; } #my-plan .week-nav { position: absolute; right: 15px; top: 15px; } #my-plan .helper { position: absolute; cursor: pointer; z-index: 999; left: 15px; top: 15px; } #cc-modal .modal-title { font-weight: 700; } #cc-modal .modal-title h4 { font-size: 16px; } #cc-modal img { width: 100%; max-width: 400px; margin: 20px auto; margin-top: 10px; display: block; } #cc-modal .final-price { font-size: 16px; margin-left: 5px; display: -webkit-box; display: -ms-flexbox; display: flex; } #cc-modal .final-price .e-special,#cc-modal .final-price span { margin-left: 5px; color: #ff3464; } #cc-modal .final-price span { font-weight: 700; } #cc-modal .cc-error { margin-left: 5px; margin-top: 10px; color: red; border: 1px dotted red; padding: 10px; display: none; } .week-next,.week-prev { cursor: pointer; } .week-prev { margin-right: 15px; } .plan .week { display: none; } .plan .week.active { display: block; } .plan .day { display: none; } .plan .day.active { display: block; } #recipe-modal .modal-body { padding: 0; } #recipe-modal img { -webkit-border-top-left-radius: 9px; -webkit-border-top-right-radius: 9px; -moz-border-radius-topleft: 9px; -moz-border-radius-topright: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; max-width: 100%; } #recipe-modal .recipe-title { opacity: .7; color: #ff3464; font-family: Karla,Montserrat; font-size: 18px; font-weight: 700; letter-spacing: .47px; line-height: 22px; margin-bottom: 15px; } #recipe-modal .instructions { opacity: .7; color: #444; font-family: Karla,Montserrat; font-size: 14px; line-height: 18px; text-align: left; margin-top: 10px; font-weight: 300; } #recipe-modal .wrapper { padding: 15px; } .day .meals .meal { cursor: pointer; } #recipe-modal .preparation-time { text-align: right; opacity: .4; color: #444; font-family: Karla,Montserrat; font-size: 13px; font-weight: 700; letter-spacing: .37px; line-height: 15px; } #recipe-modal .calories { color: #56468f; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 16px; } #recipe-modal .recipe-data { border-top: 1px solid #ebebeb; margin: 15px -15px; padding-top: 15px; border-bottom: 1px solid #ebebeb; padding-bottom: 15px; } #recipe-modal .nutrients { color: #56468f; padding-right: 30px; font-family: Karla,Montserrat; } #recipe-modal .ingredients { padding-left: 30px; } .ingredients .highlight { color: red; } #recipe-modal .recipe-photo { position: relative; } #recipe-modal .close-recipe { position: absolute; top: 15px; color: #d2d0d0; font-size: 54px; line-height: 54px; right: 15px; cursor: pointer; } #recipe-modal .actions { margin-top: 15px; } #info-modal h4 { font-weight: 700; } #recipe-modal .ingredients-disclaimer { margin-left: 15px; margin-bottom: 15px; } #recipe-modal .ingredients-disclaimer span { color: red; } .womenshealth { max-width: 150px; margin: 15px auto; margin-top: 5px; display: block; } .featured-in { text-align: center; margin-top: 25px; font-weight: 600; } #landing.men .featured-in { margin-top: 15px; } #landing.men .womenshealth { margin-bottom: 30px; } .replace-recipe { margin-top: 5px; padding: 3px 10px; } #landing.women { background: url(../images/kw-bg-mobile1b26.jpg?v2) no-repeat!important; background-position: 100% 0!important; background-size: contain!important; } #landing.men,#landing.women { margin-left: -15px; margin-right: -15px; padding: 15px; } #landing.men { background: url(../images/km-bg-mobile1b26.jpg?v2) no-repeat!important; background-position: 100% 0!important; background-size: contain!important; } #landing .gender-buttons { margin-bottom: 30px; } .btn-female,.btn-male { display: inline-block; max-width: 280px; } .btn-male { margin-left: 15px; } @media only screen and (max-width:640px) { .btn-male { margin-left: 0; } } .copyright { margin-top: 50px; } #billing { margin-top: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 0; } .btn-get-plan-holder { padding-top: 10px; padding-bottom: 30px; } #billing .old-price,#billing .pricing { text-align: left; } #billing .payment-providers span { font-size: 16px; } #billing .payment-providers { text-align: left; } .btn-get-plan { clear: both; } .btn-primary.scroll-btn { max-width: 250px!important; } #billing .card-inputs.active { margin-left: 0!important; } .desktop-container { max-width: 600px; margin: 0 auto; width: 100%; margin-top: 0!important; border-radius: 9px; background-color: #fff; margin-bottom: 50px; } .desktop-container .container { width: 100%; } .desktop-container .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand { margin-left: 0!important; } #expired-modal .modal-content,#locked-modal .modal-content,#upsell-modal .modal-content { background: url(../images/locked-popup-bg-desktop.jpg) #fff no-repeat!important; padding-bottom: 200px!important; background-size: contain!important; background-position: bottom!important; } #expired-modal h1 { font-size: 24px; font-weight: 600; } #expired-modal p { font-size: 16px!important; } .recipe-container,.shopping-list-container { padding-bottom: 10px!important; } #billing .pricing-block .old-price,#billing .pricing-block .pricing { text-align: center!important; } .pricing-block { max-width: 420px; } .plan-preview-mobile { display: none!important; } .plan-preview-desktop { max-width: 100%!important; } #get-plan-btn-mobile,.plan-preview-desktop { display: block!important; } .footer-container .footer-description { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } @media(min-width:1000px) { #prequiz h1 { margin-top: 30px!important; } #prequiz #landing { max-width: 600px; margin: 20px auto!important; } } #prequiz #landing { background: #fff!important; } #prequiz h1 { max-width: 100%; font-size: 32px; line-height: 42px; margin-top: 30px; } #prequiz .btn-green { border-radius: 30.5px; background: #53b353!important; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 15px; width: 100%; max-width: 600px; font-size: 16px; font-weight: 600; margin-top: 25px; } #prequiz .btn-green:hover { opacity: .9; } #prequiz .quiz-benefits ul { padding-left: 0; margin-top: 25px; } #prequiz .quiz-benefits li { list-style: none; margin-bottom: 15px; } #prequiz .quiz-benefits i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; top: 2px; } #prequiz .quiz-benefits strong { display: inline-block; font-size: 16px; margin-left: 5px; } #prequiz .quiz-benefits p { font-size: 15px; line-height: 18px; } .summary-container { background: url(../images/footer_bg_desktop.jpg) no-repeat!important; background-size: contain!important; background-position: 100% 108%!important; } .flavor-option { width: 30%!important; display: inline-block!important; } .supplements .product-features { margin-top: 30px; } .product-price { width: 100%; } #landing.over40 { background: url(../images/o40-bg-mobile.jpg?v2) no-repeat!important; background-position: 0 15%!important; background-size: 100%!important; margin-left: -15 px; margin-right: -15px; padding: 15px; } #landing.men h1,#landing.over40 h1 { font-size: 36px; max-width: 380px!important; } #landing.men .subheader-text,#landing.over40 .subheader-text { color: #56468f; max-width: 180px!important; } #landing .landing-footer { background: #fff; } #landing.over40 .btn-male { margin-bottom: 30px; } .mobile-only { display: block; } @media only screen and (min-width:1000px) { #landing { /*background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important;*/ background: url(../images/home-bg.png) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } #landing.women { background: url(../images/kw-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; background-position: 100% 0!important; } #landing.men,#landing.women { width: 100%; margin: 0!important; padding: 0!important; } #landing.men { background: url(../images/km-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; background-position: 100% 0!important; } #landing.over40 .btn-male { margin-bottom: 0; } #landing.over40 { background: url(../images/o40-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } .featured-in { text-align: left; } .mobile-only { display: none; } .womenshealth { max-width: 150px; margin: 15px 0; display: block; } #my-plan { background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } #my-plan .meal-data,#recipe-modal .modal-dialog { max-width: 400px; } #my-plan .desktop-container { width: 100%; max-width: 640px; margin: 0 auto; border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin-top: 75px!important; margin-bottom: 70px; } .results,body.desktop-bg { /*background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important;*/ background: url(../images/home-second.png) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } .btn-get-plan { width: 90%; max-width: 400px; margin-left: 0; margin-top: 20px; font-size: 20px; } #landing .container { padding: 15px; } #landing h1 { margin-top: 120px; } #landing .gender-buttons { margin-bottom: 30px; } .btn-female,.btn-male { display: inline-block; max-width: 240px; } .copyright { margin-top: 50px; } #billing { background: 0 0; } #landing.men h1,#landing.over40 h1 { max-width: 320px!important; } #landing.men .subheader-text,#landing.over40 .subheader-text { max-width: 280px!important; } #billing .with-bg { background: url(../images/billing-bg-desktop.jpg?v2) no-repeat; background-size: 50%; background-position: 100% 0; } #billing { margin-top: 0; padding-top: 0; } .covered img { width: auto!important; margin: 15px; } .btn-get-plan-holder { padding-top: 10px; padding-bottom: 30px; } #billing .benefits ul span { font-size: 18px; line-height: 24px; } #billing .btn-payment { max-width: 400px; margin: 20px; margin-left: 0; } #billing .old-price,#billing .pricing { text-align: left; } #billing .payment-providers span { font-size: 16px; } #billing .payment-providers { text-align: left; } .btn-get-plan { clear: both; } .btn-primary.scroll-btn { max-width: 250px!important; } #billing .payment-providers img { max-width: 400px; } #billing .card-inputs.active { margin-left: 0!important; } .desktop-container { max-width: 600px; margin: 0 auto; width: 600px; margin-top: 100px!important; border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin-bottom: 50px; } .desktop-container .container { width: 100%; } .desktop-container .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand { margin-left: 0!important; } #locked-modal .modal-content,#upsell-modal .modal-content { background: url(../images/locked-popup-bg-desktop.jpg) #fff no-repeat!important; padding-bottom: 200px!important; background-size: contain!important; background-position: bottom!important; } .shopping-list-container { display: none; } .recipe-container,.shopping-list-container { padding-bottom: 10px!important; } #billing .pricing-block .old-price,#billing .pricing-block .pricing { text-align: center!important; } .pricing-block { max-width: 420px; } .plan-preview-mobile { display: none!important; } .plan-preview-desktop { max-width: 100%!important; display: block!important; } #get-plan-btn-mobile { display: none!important; } .footer-content #get-plan-btn { display: block!important; } .summary-container .footer-heading { color: #444; font-family: Lato; font-size: 50px; font-weight: 700; letter-spacing: 1.7px; line-height: 60px; } .footer-container .footer-content { padding-left: 30px; padding-top: 50px; } .footer-container .footer-description { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } .summary-container { width: 100%; background: url(../images/footer_bg_desktop.jpg?v2) no-repeat!important; background-size: contain!important; background-position: 100% 108%!important; } .flavor-option { width: 30%!important; display: inline-block!important; margin-right: 2%; margin-top: 10px; text-align: left; outline: none!important; height: 40px; position: relative; } .flavor-option,.flavor-option.active { background: #fff; font-family: Karla,Montserrat; border-radius: 9px; border: 1px solid #f5f5f5; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; } .flavor-option.active { color: #ff3464!important; background-color: #fff; } .supplements .product-features { margin-top: 30px; margin-bottom: 40px; } .product-price { width: 100%; margin-left: -15px; margin-bottom: 10px; } .supplements .product-photo { margin-top: 30px; } .price-desktop { display: block!important; } .price-mobile { display: none!important; } } #my-plan { overflow-x: hidden; width: 100%; } #locked-modal h1 { font-family: Lato; font-weight: 600; font-size: 28px; } #locked-modal p { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 20px; } #locked-modal .modal-content { background: url(../images/locked-popup-bg.png); padding-bottom: 200px; background-size: cover; } .shopping-list { padding: 10px; } .shopping-list-title { font-size: 24px; text-align: left; margin-left: 10px; font-weight: 700; } .shopping-list .checkbox { margin-top: 5px; margin-bottom: 5px; cursor: pointer; } .shopping-list-print { margin-top: 10px; margin-bottom: 25px; margin-left: 5px; } .shopping-list-container { display: none; padding-bottom: 50px; } .recipe-container { padding-bottom: 50px; } .tabs-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; -webkit-box-shadow: 0 4px 11px 4px rgba(86,70,143,.3); box-shadow: 0 4px 11px 4px rgba(86,70,143,.3); margin-left: 0!important; margin-right: 0!important; } .tabs-nav .tab-item { color: #56468f; font-family: Karla,Montserrat; text-align: center; cursor: pointer; font-size: 13px; letter-spacing: .44px; line-height: 15px; font-weight: 400; height: 50px; line-height: 50px; border-top: 3px solid #fff; } .tabs-nav .tab-item.active { font-weight: 700; border-top: 3px solid #56468f; border-left: 1px solid #ebebeb; border-right: 1px solid #ebebeb; margin-left: -1px; margin-right: -1px; } .tab-item img { margin-right: 5px; } .pricing-block { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); padding: 15px; margin-top: 30px; margin-bottom: 30px; position: relative; overflow: hidden; } .pricing-block .disclaimer { color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; text-align: center; } #billing .pricing-block .pricing { margin-top: 15px; } .pricing-block .rating-block { text-align: center; border-top: 1px solid #f6f6f6; padding-top: 10px; margin-top: -20px; } .pricing-block .rating-block i { color: #56468f; } .pricing-block .rating-block a { opacity: .72; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 14px; text-decoration: underline; } #billing.active { display: block!important; } #reviews-modal .modal-content { padding: 15px; position: relative; } #reviews-modal .btn-primary { font-size: 18px!important; margin-top: 10px!important; } #reviews-modal .close-modal { position: absolute; right: 15px; top: 15px; font-size: 28px; cursor: pointer; } .reviews-title { color: #444; font-family: Lato; font-size: 29px; font-weight: 700; letter-spacing: .98px; line-height: 35px; } .reviews-count { font-family: Karla,Montserrat; margin-bottom: 15px; letter-spacing: .41px; line-height: 14px; } .review-line,.reviews-count { color: #56468f; font-size: 12px; } .review-line .inactive { opacity: .5; } .review-author { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .review-item { border-bottom: 1px solid #f6f6f6; padding-bottom: 10px; margin-top: 15px; } .review-score { opacity: 1; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 16px; } .b-actions { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-bottom: 10px; margin-top: 25px; } .b-actions .btn-primary { margin: 0; font-size: 14px; width: auto; min-width: 32%; font-weight: 300; } .b-actions .btn-primary b { font-weight: 700; } .plan-lookup { font-size: 16px; padding: 8px!important; margin-top: 15px; } .plan-recovery .regular-logo { max-width: 120px; margin-top: 20px; } .has-error { border-color: #e97866!important; outline: 0!important; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px hsla(8,75%,66%,.6)!important; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px hsla(8,75%,66%,.6)!important; } .plan-status { padding-top: 15px; display: none; padding-bottom: 15px; border-top: 1px dotted #ebebeb; margin-top: 15px; border-bottom: 1px solid #ebebeb; } .copyright .disclaimer { margin-top: 10px; font-size: 12px; } .footer-container { margin-top: 40px; } .summary-container { width: 100%; background: url(../images/footer_bg_mobile.jpg) no-repeat; background-size: contain; background-position: 0 100%; } .plan-preview-mobile { max-width: 100%; } .footer-content #get-plan-btn,.plan-preview-desktop { display: none; } .footer-heading { color: #444; font-family: Lato; font-size: 36px; font-weight: 700; letter-spacing: 1.7px; line-height: 36px; margin-top: 5px; } .footer-description { font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } .footer-description,.supplements h5 { color: #444; font-family: Karla,Montserrat; } .supplements h5 { font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .supplements .product-features { margin-top: 15px; margin-bottom: 40px; } .supplements .product-features>div>div { padding: 15px; } .btn-buy-now { max-width: 400px; margin-bottom: 40px; } .supplements .product-photo { position: relative; margin-bottom: 30px; } .supplements .product-photo img { max-width: 320px; } .step.results.supplements h3 { max-width: 350px; margin-bottom: 0; margin-left: 0; margin-top: 0; } .step.results.supplements h3 span { color: #444; font-family: Karla,Montserrat; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .product-options { max-width: 600px; } .product-features i { color: #ff3464!important; } .product-price { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -7px rgba(0,0,0,.5); box-shadow: 0 4px 11px -7px rgba(0,0,0,.5); color: #56468f; font-family: Karla,Montserrat; margin-left: -15px; font-size: 35px; margin-top: 10px; border: 1px solid #f5f5f5; border-top: 0; letter-spacing: 1.39px; line-height: 41px; padding-bottom: 10px; text-align: center; } .product-price .line { margin-bottom: 10px; height: 6px; -webkit-border-top-left-radius: 9px; -webkit-border-top-right-radius: 9px; -moz-border-radius-topleft: 9px; -moz-border-radius-topright: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; width: 100%; background: #ff3464; } .product-rating { margin-left: 0; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 14px; margin-bottom: 10px; } .product-flavors { padding-left: 15px; } .flavor-option { width: 100%; display: block; margin-right: 2%; margin-top: 10px; text-align: left; outline: none!important; height: 40px; position: relative; } .flavor-option,.flavor-option.active { background: #fff; font-family: Karla,Montserrat; border-radius: 9px; border: 1px solid #f5f5f5; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; } .flavor-option.active { color: #ff3464!important; background-color: #fff; } .flavor-option span { position: absolute; height: 40px; width: 40px; top: 0; right: 0; text-align: center; background-color: #e4e5e7; -webkit-border-top-right-radius: 9px; -webkit-border-bottom-right-radius: 9px; -moz-border-radius-topright: 9px; -moz-border-radius-bottomright: 9px; border-top-right-radius: 9px; border-bottom-right-radius: 9px; line-height: 40px; color: #fff; font-weight: 700; font-size: 18px; } .price-desktop { display: none; } .price-mobile { display: block; position: absolute; bottom: -5px; right: 30px; margin-bottom: 10px; } .flavor-option.active span { background: #56468f; } .product-price { width: 200px; margin-left: 0; } .braintree-sheet { border: 0!important; } .braintree-sheet__header { display: none!important; } .braintree-sheet__content--form .braintree-form__field-group .braintree-form__field .braintree-form__hosted-field { border: 0; border-bottom: 1px solid #e4e5e7; } [data-braintree-id=expiration-date-field-group] label,[data-braintree-id=number-field-group] label { width: 100%; } [data-braintree-id=card-sheet-header] { border: 0!important; } [data-braintree-id=toggle] { display: none; } #braintree-checkout .input-holder .braintree-form__label { margin-bottom: 5px; } #braintree-checkout .input-holder label { width: 100%; color: #000; display: block; font-size: 14px; font-weight: 400; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; line-height: 1.4; margin-left: 5px; } #braintree-checkout .input-holder { margin-bottom: 15px; width: 100%; padding-right: 5px; } #braintree-checkout .input-holder input { font-weight: 400; padding-top: 10px; padding-bottom: 10px; font-size: 16px; } .braintree-sheet__content--form { padding: 0!important; } .braintree-placeholder { display: none; } #card-holder.with-error { border-color: #ca2a2a!important; } .braintree-form__field-error { margin-bottom: 10px!important; color: #ca2a2a; display: none; font-size: 13px; line-height: 1.4; margin: 5px 0; padding: 0; } .b-contacts { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: auto; } @media only screen and (max-width:570px) { .b-contacts { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } .b-contacts .b-contacts-contacts { width: 50%; } .b-contacts .b-contacts-contacts .text-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; } .b-contacts .b-contacts-contacts .text-wrapper .col-6:last-child { padding-left: 30px; } .b-contacts .b-contacts-contacts .text-wrapper strong { font-weight: 700; font-size: 16px; margin-top: 10px; display: inline-block; } .b-contacts .b-contacts-form { padding-top: 60px; padding-bottom: 30px; } .b-contacts .b-contacts-form label { margin-top: 10px; } .b-contacts .b-contacts-form .btn-next-step { max-width: 200px; } #billing .btn-payment.btn-es,#billing .btn-payment.btn-la,#billing .btn-payment.btn-mx { font-size: 18px; width: 90%!important; max-width: 280px!important; } .plan-disclaimer { font-style: italic; padding-bottom: 15px; font-size: 13px; } .b-slides--slide { margin-bottom: 30px; -webkit-box-shadow: 3px 4px 16px #efefef; box-shadow: 3px 4px 16px #efefef; border-radius: 15px; padding: 13px 20px 10px; background: #fff; } .b-slides--slide .b-avatar { display: -webkit-box; display: -ms-flexbox; display: flex; } .b-slides--slide .b-avatar img { max-width: 50px; } .b-slides--slide .b-avatar .e-title { font-size: 15px; margin: 0; font-weight: 700; padding-top: 3px; } .b-slides--slide .b-avatar .e-subtitle { font-size: 12px; } .b-slides--slide .e-text { margin-top: 10px; } .b-slides--slide .b-social { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; margin-top: 20px; } .b-slides--slide .b-social .e-icon { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 10px; } .b-slides--slide .b-social .e-icon .number { font-size: 12px; margin: 0; padding-left: 5px; } .b-slides--slide .b-avatar-image { margin-right: 10px; } .b-slides { margin-top: 30px; margin-bottom: 30px; margin-left: -130px; width: calc(100% + 250px); } @media only screen and (max-width:900px) { .b-slides { width: 100%; margin: 0; margin-top: 50px; } } .b-slides .slick-slide { margin-right: 15px; } .step .slick-dots { padding-left: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-top: 15px; margin-bottom: 70px; } .step .slick-dots li { margin-left: 10px; margin-right: 10px; list-style-type: none; } .step .slick-dots li button { border: 20px; background: #56468f; opacity: .5; border-radius: 40px; height: 12px; width: 12px; text-indent: 1010px; padding: 0; margin: 0; } .step .slick-dots li button:focus { outline: none; } .step .slick-dots li.slick-active button { opacity: 1; } .e-emailsuggestion { color: red; cursor: pointer; } .b-form.m-short { max-width: 390px; margin-bottom: 40px; } p.c-mb-0 { margin-bottom: 0; } .m-error { border: 1px solid red!important; } .m-success { color: green; } input.m-error { border: 1px solid red; } .is-disabled { opacity: .5; pointer-events: none; } .intake-disclaimer { margin-top: 5px; font-size: 11px; font-style: italic; } .e-termsconditions { padding-left: 10px; padding-top: 10px; margin-bottom: -10px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .e-termsconditions label { cursor: pointer; padding-left: 10px; line-height: 18px; } .e-termsconditions .error-msg { width: 100%; text-align: left; margin: 0; } #billing .payment-options { margin-top: 15px; } @media only screen and (max-width:640px) { #billing .btn-payment { max-width: 100%; margin-right: 0; margin-left: 0; width: 100%; } } .b-text.m-terms { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 30px; max-height: 530px; overflow: scroll; } @media only screen and (max-width:640px) { .b-text.m-terms { padding: 30px 10px; } } @media only screen and (max-width:640px) { .b-text.m-terms ol,.b-text.m-terms ul { padding-left: 25px; } } .b-text.m-terms ol li p { margin-bottom: 5px!important; } @media only screen and (max-width:640px) { .b-text.m-terms td p { margin-left: 10px!important; } } .b-text.m-terms p[align=JUSTIFY] { margin-left: 60px!important; } @media only screen and (max-width:640px) { .b-text.m-terms p[align=JUSTIFY] { margin-left: 60px!important; } } .story-block { margin-top: 20px; } .story-block .story-img { max-width: 375px; width: 100%; margin: 0 auto; display: block; } .story-info { background: #fff; display: block; width: calc(100% - 16px); max-width: 355px; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); margin: 0 auto; margin-top: -30px; position: relative; -webkit-border-bottom-right-radius: 10px; -webkit-border-bottom-left-radius: 10px; -moz-border-radius-bottomright: 10px; -moz-border-radius-bottomleft: 10px; border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; border-top: 1px solid #ebebeb; } .story-info .weight-entry { padding: 15px; font-weight: 600; } .story-info .weight-entry span { display: inline-block; margin-left: 5px; color: #ff3464; } .story-info .graph { padding: 0; border-top: 1px solid #ebebeb; padding-top: 10px; } .story-info .graph img { max-width: 100%; } #landing.story-landing .gender-description.mobile-only { display: none; } #landing.story-landing .gender-description.desktop-only { display: block; } #landing.story-landing h1 { margin-top: 50px!important; font-size: 34px!important; max-width: 320px!important; } .discount-ribbon { width: 153px; height: 34px; top: 20px; right: -55px; position: absolute; display: block; background: #ff2e63; color: #333; font-size: 16px; color: #fff; text-align: center; line-height: 34px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); font-weight: 700; padding-right: 15px; } @media only screen and (min-width:768px) { .story-block { margin-left: -10px; } } @media only screen and (min-width:768px) and (min-width:640px) { .story-block { margin-left: 0; } } @media only screen and (min-width:768px) { .story-block .story-img { margin-left: 0; } .story-block .story-info { margin-left: 10px; } .story-scroll { display: none; } } @media only screen and (max-width:767px) { #landing.story-landing { background: url(../images/results-bg-mobile.jpg) no-repeat; background-position: 100% 0; background-size: 70%; } #landing.story-landing .gender-description.desktop-only { display: none!important; } #landing.story-landing .gender-description.mobile-only { display: block!important; } .story-landing h1 { margin-top: 70px!important; } .story-scroll { display: block; margin-bottom: 25px; } #landing.story-landing .gender-description { padding-left: 15px; margin-top: 30px; margin-bottom: 5px; } .story-landing .gender-buttons { margin: 0 auto; padding-left: 10px; padding-right: 10px; } .story-landing .gender-buttons .btn { max-width: 380px; } } #terms_and_conditions { margin-top: 1px!important; } @media only screen and (max-width:640px) { #terms_and_conditions_modal_eu .close,#terms_and_conditions_modal_us .close { right: 10px!important; top: 5px!important; color: #000!important; } } #my-plan .e-heading { margin-top: 20px; margin-bottom: -15px; text-align: center; } @media only screen and (max-width:640px) { #my-plan .b-actions { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #my-plan .b-actions .btn-primary { margin-right: 5px; margin-left: 5px; } @media only screen and (max-width:640px) { #my-plan .b-actions .btn-primary { margin-bottom: 10px; } } .is-pulsing { border-radius: 50%; -webkit-box-shadow: 0 0 0 #f9838f; box-shadow: 0 0 0 #f9838f; -webkit-animation: pulse 2s infinite; animation: pulse 2s infinite; } @-webkit-keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(249,131,143,.4); box-shadow: 0 0 0 0 rgba(249,131,143,.4); } 70% { -webkit-box-shadow: 0 0 0 10px transparent; box-shadow: 0 0 0 10px transparent; } to { -webkit-box-shadow: 0 0 0 0 transparent; box-shadow: 0 0 0 0 transparent; } } @keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(249,131,143,.4); box-shadow: 0 0 0 0 rgba(249,131,143,.4); } 70% { -webkit-box-shadow: 0 0 0 10px transparent; box-shadow: 0 0 0 10px transparent; } to { -webkit-box-shadow: 0 0 0 0 transparent; box-shadow: 0 0 0 0 transparent; } } .email-description { font-size: 15px; display: none; } .email-promise { padding: 10px; color: #8c8c8c; display: none; font-size: 13px; line-height: 22px; margin-top: 10px; } #bmi-risks .e-heading { text-align: center; font-size: 22px; max-width: 285px; margin: auto; padding-top: 20px; padding-bottom: 15px; line-height: 28px; font-weight: 700; } #bmi-risks ul { max-width: 240px; margin: 0 auto; margin-bottom: 25px; font-size: 16px; font-family: Lato,Montserrat; line-height: 30px; font-weight: 700; color: #ff3464; } #bmi-risks ul li span { font-weight: 400; color: #444; } .e-rating svg polygon { fill: #56468f; } .benefits-description { font-size: 16px; margin-top: 30px; } #landing.keto_v3 { background: url(../images/keto_3/bg_image.jpg) no-repeat; background-position: 95% 0; background-size: 50%; } #landing.keto_v3 .e-img img { width: 100%; } #landing.keto_v3 .b-stats { margin-left: -7px; width: calc(100% + 15px); display: -webkit-box; display: -ms-flexbox; display: flex; margin-top: 30px; } @media only screen and (max-width:640px) { #landing.keto_v3 .b-stats { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 20px; } } #landing.keto_v3 .btn-action { width: 100%; background: #56468f; -webkit-box-shadow: 0 4px 11px -2px #56468f; box-shadow: 0 4px 11px -2px #56468f; color: #fff; padding-top: 12px; padding-bottom: 12px; max-width: 300px; } #landing.keto_v3 .btn-action:focus { outline: none; } @media only screen and (max-width:640px) { #landing.keto_v3 .btn-action { max-width: 100%; } } #landing.keto_v3 .e-title { max-width: 310px; font-size: 30px; color: #ff3464; letter-spacing: 1.02px; font-weight: 700; margin-bottom: 20px; } @media only screen and (max-width:640px) { #landing.keto_v3 .e-title { margin-bottom: 10px; } } #landing.keto_v3 .e-img-stats { margin-top: 15px; max-width: 360px; } #landing.keto_v3 h1 { margin-top: 25px; font-size: 30px; line-height: 42px; font-weight: 700; } #landing.keto_v3 .gender-description { margin-top: 20px; margin-bottom: 10px; } @media only screen and (max-width:640px) { #landing.keto_v3 .gender-buttons .btn { width: 100%; max-width: 100%; } } @media only screen and (min-width:768px) { #landing.dynamic { background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } } @media only screen and (max-width:767px) { #landing.dynamic { background-position: 0 -30px!important; } } @media only screen and (max-width:767px) { #landing { background-position: 0 -35px!important; } } #landing.dynamic h1 { max-width: 390px!important; font-size: 51px!important; line-height: 62px; } .results-box .e-title { font-size: 25px; padding-top: 15px; } .results-box .e-subtitle,.results-box .e-title { font-weight: 700; padding-left: 15px; padding-right: 15px; } .results-box .e-subtitle { font-size: 10px; } .results-box .e-number { color: #ff3464; } #cholesterol_level { background: url(../images/widgets/cholesterol.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #cholesterol_level { background-size: cover; } } #succesrate_level { background: url(../images/widgets/success.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #succesrate_level { background-size: cover; } } #blood_level { background: url(../images/widgets/blood.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #blood_level { background-size: cover; } } #sugar_level { background: url(../images/widgets/sugar.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #sugar_level { background-size: cover; } } .summary .row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .summary .column { margin-bottom: 20px; } @media only screen and (max-width:900px) { .summary .column { width: 50%; } } @media only screen and (max-width:640px) { .summary .column { width: 100%; } } .btn-secondary,.e-btn-primary { color: #fff; min-height: 65px; } .btn-secondary .icon,.e-btn-primary .icon { top: 0; bottom: 0; margin: auto; left: 20px; } .btn-secondary .e-icon-person,.e-btn-primary .e-icon-person { height: 25px; } .btn-secondary .e-icon-arrow,.e-btn-primary .e-icon-arrow { right: 20px; left: auto; height: 14px; } .e-btn-primary { background: #ff3464; } .e-btn-primary,.e-btn-primary:hover { -webkit-transition: all .5s; transition: all .5s; } .e-btn-primary:hover { background: rgba(255,52,100,.7); color: #fff; } .btn-secondary { background: #56468f; } .btn-secondary,.btn-secondary:hover { -webkit-transition: all .5s; transition: all .5s; } .btn-secondary:hover { background: rgba(86,70,143,.7); color: #fff; } #landing.dynamic.dynamic-bgfeatured_mobile h1,#landing.dynamic.dynamic-bgfeatured h1 { max-width: 300px!important; font-size: 50px!important; line-height: 58px; margin-top: 80px; } @media only screen and (max-width:640px) { #landing.dynamic.dynamic-bgfeatured_mobile h1,#landing.dynamic.dynamic-bgfeatured h1 { margin-top: 0; font-size: 31px!important; line-height: 38px; } } @media only screen and (max-width:1124px) { .dynamic-bgfeatured .container,.dynamic-bgfeatured_mobile .container { width: 100%; } } .dynamic-bgfeatured .b-header,.dynamic-bgfeatured_mobile .b-header { padding-top: 15px; padding-left: 25px; padding-right: 25px; position: relative; z-index: 1; } @media only screen and (max-width:640px) { .dynamic-bgfeatured .b-header,.dynamic-bgfeatured_mobile .b-header { text-align: center; background-image: -webkit-gradient(linear,left top,left bottom,from(#eee),color-stop(0,#fff),color-stop(99%,hsla(0,0%,100%,0))); background-image: linear-gradient(-180deg,#eee,#fff 0,hsla(0,0%,100%,0) 99%); min-height: 130px; } } #landing.dynamic-bgfeatured { background: 0 0!important; } #landing.dynamic-bgfeatured,#landing.dynamic-bgfeatured_mobile { position: relative; padding: 0; margin-left: 0; margin-right: 0; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured_mobile { background: 0 0!important; } } #landing.dynamic-bgfeatured .col-6,#landing.dynamic-bgfeatured_mobile .col-6 { width: 50%; } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .gender-description,#landing.dynamic-bgfeatured_mobile .gender-description { margin-top: 25px; } } #landing.dynamic-bgfeatured .e-content,#landing.dynamic-bgfeatured_mobile .e-content { max-width: 330px; width: 40%; padding-left: 25px; } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .e-content,#landing.dynamic-bgfeatured_mobile .e-content { max-width: 100%; width: 100%; display: inline-block; padding: 20px; margin-top: 120px; } } #landing.dynamic-bgfeatured .gender-description,#landing.dynamic-bgfeatured_mobile .gender-description { margin-bottom: 0; } #landing.dynamic-bgfeatured .gender-buttons .btn,#landing.dynamic-bgfeatured_mobile .gender-buttons .btn { width: 100%; max-width: 100%; margin-left: 0; } #landing.dynamic-bgfeatured .container,#landing.dynamic-bgfeatured_mobile .container { min-height: 100vh; padding: 0; } #landing.dynamic-bgfeatured .e-bgfeatured { width: 60%; float: right; min-height: 100%; height: 100vh; position: absolute; right: 0; top: 0; bottom: 0; background-size: cover!important; background-position: 50%!important; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured .e-bgfeatured { width: 50%; } } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .e-bgfeatured { bottom: auto; height: auto; min-height: 240px; width: 100%; } } #landing.dynamic-bgfeatured_mobile .e-bgfeatured { width: 60%; float: right; min-height: 100%; height: 100vh; position: absolute; right: 0; top: 0; bottom: 0; background-size: cover!important; background-position: 50%!important; display: none; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured_mobile .e-bgfeatured { width: 50%; } } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured_mobile .e-bgfeatured { display: block; bottom: auto; height: auto; min-height: 240px; width: 100%; } } .story-5#landing.story-landing .gender-description,.story-6#landing.story-landing .gender-description { padding-left: 0; } .story-5#landing .gender-description,.story-6#landing .gender-description { margin-bottom: 0; margin-top: 35px; } @media only screen and (max-width:640px) { .story-5#landing.story-landing,.story-6#landing.story-landing { background-position: 100% 0!important; } } .story-5 #landing.story-landing h1,.story-6 #landing.story-landing h1 { line-height: 42px; } .story-5 .e-subtitle,.story-6 .e-subtitle { max-width: 290px; line-height: 18px; } .story-5 .story-scroll,.story-6 .story-scroll { max-width: 325px; border-radius: 9px; margin-top: 15px; display: block; font-size: 15px; min-height: 56px; } @media only screen and (max-width:640px) { .story-5 .story-scroll,.story-6 .story-scroll { max-width: 100%; } } .story-5 .e-image,.story-6 .e-image { min-height: 350px; } .story-5 .story-block,.story-6 .story-block { max-width: 325px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-shadow: 0 4px 11px rgba(86,70,143,.5); box-shadow: 0 4px 11px rgba(86,70,143,.5); border-radius: 10px 10px 10px 10px; overflow: hidden; margin-top: 30px; margin-left: 0; } @media only screen and (max-width:640px) { .story-5 .story-block,.story-6 .story-block { max-width: 100%; } } .story-5 .story-block .e-header,.story-6 .story-block .e-header { position: relative; background: #fff; width: 100%; min-height: 65px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .story-5 .story-block .e-image,.story-6 .story-block .e-image { position: relative; min-height: 250px; background-size: 110%!important; background-position: 50%!important; display: inline-block!important; width: 100%; } .story-5 .story-block .story-info,.story-6 .story-block .story-info { margin: 0; width: 100%; padding: 0; border: none; -webkit-box-shadow: none; box-shadow: none; } .story-5 .story-block .weight-entry,.story-6 .story-block .weight-entry { text-align: center; font-weight: 700; padding-bottom: 2px; } .story-5 .story-block .weight-entry .e-number,.story-6 .story-block .weight-entry .e-number { font-size: 20px; color: #ff3464; line-height: 24px; } .story-5 .story-block .e-measurement,.story-6 .story-block .e-measurement { font-size: 12px; } .story-5 .gender-buttons,.story-6 .gender-buttons { display: -webkit-box; display: -ms-flexbox; display: flex; } @media only screen and (max-width:640px) { .story-5 .gender-buttons,.story-6 .gender-buttons { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding: 0; } } .story-6 .container { position: relative; } .story-6 .story-scroll { position: absolute; top: 0; right: 14px; max-width: 130px; min-height: 47px; } .story-6#landing.story-landing h1 { margin-top: 25px!important; font-size: 34px!important; max-width: 100%!important; line-height: 40px; } .story-6 .story-block { margin-top: 25px; -webkit-box-shadow: none; box-shadow: none; border-radius: 0; background: #fff; } .story-6 .e-description { max-height: 160px; overflow: hidden; position: relative; padding: 15px 20px; } @media only screen and (max-width:640px) { .story-6 .e-description { padding: 0; padding-top: 15px; } } .story-6 .e-description:before { content: ""; background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff)); background: linear-gradient(-180deg,hsla(0,0%,100%,0),#fff); width: 100%; position: absolute; height: 100px; bottom: 0; left: 0; right: 0; } .story-6 .e-description.is-open { max-height: none; } .story-6 .e-description.is-open:before { background: 0 0; } .story-6 .e-image { border-radius: 10px; } .story-6#landing .gender-description { margin-top: 20px; } .e-btn-simple { font-size: 19px; text-decoration: underline; font-weight: 700; color: #ff3464; position: relative; background: 0 0; border: none; } .e-btn-readmore { top: -10px; } .paypal-btn { background-color: #3b7bbf!important; -webkit-box-shadow: 0 4px 11px -2px #3b7bbf; box-shadow: 0 4px 11px -2px #3b7bbf; margin-top: 15px; margin-bottom: 30px; } .paypal-btn i { color: #fff!important; } .paypal-btn:hover { background-color: #3b7bbf!important; -webkit-box-shadow: 0 4px 11px -2px #3b7bbf; box-shadow: 0 4px 11px -2px #3b7bbf; } .info-slide .info-heading { text-align: center; font-size: 24px; line-height: 32px; padding-top: 10px; padding-bottom: 10px; font-weight: 600; } .info-slide .subheading { text-align: center; font-size: 20px; line-height: 28px; margin-top: 10px; margin-bottom: 30px; } .info-slide .subheading span { color: #ff3464; font-weight: 700; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .product-composition,.m-billing--v6.m-billing--v7 .user-reviews { text-align: center; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block { max-width: 650px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .success-story { text-align: center; padding-top: 25px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .success-story .block-content { margin: auto; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .story-block { margin-bottom: 20px; } } .m-billing--v6.m-billing--v7 .story-info { max-width: none!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .keto-benefits { max-width: 660px; margin: auto; } } .m-billing--v6.m-billing--v7 .success-story .block-content { max-width: 410px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .story-info { margin-left: 0; margin-right: 0; max-width: 100%; width: 100%; padding: 15px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .b-mainprice { text-align: center; } } .m-billing--v6.m-billing--v7 .block-content { width: 100%; } .m-billing--v6.m-billing--v7 .regular-logo { display: block!important; } @media only screen and (max-width:640px) { .m-billing--v6.m-billing--v7 .regular-logo { margin: auto; margin-top: 10px; } } .m-billing--v6.m-billing--v7 .pricing-block { border-bottom: 0!important; } .m-billing--v6.m-billing--v7 .block-content img { max-width: 100%; } .m-billing--v6.m-billing--v7 .covered { margin-top: 30px; margin-bottom: 10px; padding-top: 40px; padding-bottom: 40px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .covered { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); } } .m-billing--v6.m-billing--v7 .covered .heading { color: #000; font-weight: 700; text-decoration: underline; } .m-billing--v6.m-billing--v7 .value-proposition { display: block; margin-top: 15px; font-weight: 400; text-transform: uppercase; } .m-billing--v6.m-billing--v7 .value-proposition span { color: #ff3464; } .m-billing--v6.m-billing--v7 .product-composition h3 { display: block; font-size: 24px; margin-bottom: 15px; } .m-billing--v6.m-billing--v7 .product-composition img.e-book { max-width: 50%; } .m-billing--v6.m-billing--v7 .product-composition p { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; margin-top: 15px; margin-bottom: 50px; letter-spacing: .51px; line-height: 18px; text-align: center; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .e-feature { max-width: 330px; margin: auto; margin-bottom: 5px; font-size: 20px; } } .m-billing--v6.m-billing--v7 .disclaimer { color: #56468f; font-size: 30px!important; font-weight: 700; letter-spacing: 1.02px!important; line-height: 36px!important; text-align: center; text-decoration: underline; margin-bottom: 7px!important; padding-bottom: 0!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .disclaimer { min-height: 0; padding-bottom: 10px!important; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .e-notice-bg { margin-top: 10px; text-align: center; padding-top: 10px; padding-bottom: 10px; } } .m-billing--v6.m-billing--v7 .disclaimer2 { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; text-align: center; margin-bottom: 20px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .disclaimer2 { margin-bottom: 10px; margin-top: 15px; } } .m-billing--v6.m-billing--v7 .cta-btn { font-size: 18px!important; font-weight: 600!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; max-width: 300px; margin-bottom: 20px; margin-top: 0; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .block-content { text-align: center; } } .m-billing--v6.m-billing--v7 .selling-points { padding-top: 30px; padding-bottom: 30px; } .m-billing--v6.m-billing--v7 .selling-points img { margin-top: 15px; margin-bottom: 15px; } .m-billing--v6.m-billing--v7 .selling-points img.gym-icon { max-width: 45%; } .m-billing--v6.m-billing--v7 .selling-points p { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; margin-top: 15px; margin-bottom: 30px; text-align: center; } .m-billing--v6.m-billing--v7 .block-content .moneyback { max-width: 50%; } .m-billing--v6.m-billing--v7 .moneyback-description { margin-top: 20px; font-size: 12px; } .m-billing--v6.m-billing--v7 .what-you-get { margin-left: -15px; margin-right: -15px; margin-bottom: 30px; background: #56468f; padding: 15px; } .m-billing--v6.m-billing--v7 .what-you-get h2 { color: #fff!important; } .m-billing--v6.m-billing--v7 .user-reviews { margin-top: 30px; margin-bottom: 60px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .user-reviews img { max-width: 400px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .block-content .moneyback { max-width: 200px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .faq { max-width: 600px; margin: auto; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .moneyback-description { max-width: 400px; margin: auto; margin-top: 20px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .payment-providers { text-align: center!important; } } .m-billing--v6.m-billing--v7 h2 { color: #1a1e27; font-size: 30px; font-weight: 700; line-height: 37px; margin-bottom: 25px; margin-top: 25px; text-align: center; text-decoration: underline; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 h2 { text-align: center; } } .m-billing--v6.m-billing--v7 h2 span { color: #ff3464; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .limited-offer { text-align: center; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block { margin: auto; } } .payment-separator { width: 100%; text-align: center; border-bottom: 1px solid #ebebeb; line-height: .1em; margin: 25px 0; } .payment-separator span { background: #fff; padding: 0 10px; } @media only screen and (min-width:769px) { .m-billing--v6 .desktop-review { display: block; float: left; margin-left: 40px; width: 450px; text-align: left; } .m-billing--v6 .desktop-review .heading { color: #1a1e27; font-size: 42px; font-weight: 700; line-height: 50px; margin-top: 30px; margin-bottom: 10px; } .m-billing--v6 .desktop-review p { display: block!important; } .m-billing--v6 .scroll-back-btn { width: 100%; max-width: 600px; outline: none; border-radius: 30.5px; text-align: center; color: #fff; font-size: 22px; border: 0; margin: 20px auto; display: block; font-weight: 600; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; } .m-billing--v6 .scroll-back-btn:hover { background: #bf3144!important; } .m-billing--v6 .opacity-bg { background: hsla(0,0%,100%,.8); width: 100%; } .m-billing--v6 .with-bg { background-size: 45%!important; } .m-billing--v6 .desktop-billing-container { width: 90%; max-width: 900px; text-align: center; } .m-billing--v6 .desktop-billing-container h3 { font-size: 50px!important; font-weight: 900!important; letter-spacing: 1.38px!important; line-height: 64px!important; text-align: center; } .m-billing--v6 .desktop-billing-container .payment-options { display: none; } .m-billing--v6 .desktop-billing-container .pricing-block.is-active .cta-btn { background: #ff3464!important; } .m-billing--v6 .desktop-billing-container .pricing-block.second .b-mainprice { margin-top: 45px!important; } .m-billing--v6 .desktop-billing-container .community-box { border-radius: 9px; background-color: #fff; width: 100%; max-width: 320px; margin: 30px auto; padding: 20px; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); } .m-billing--v6 .desktop-billing-container .community-box .stars,.m-billing--v6 .desktop-billing-container .community-box span { color: #ff3464; } .m-billing--v6 .desktop-billing-container .limited-offer { display: block; opacity: .8; color: #fff!important; margin-bottom: 5px!important; margin-top: 20px!important; padding: 10px!important; font-size: 18px!important; border-radius: 5px; background-color: #ff3464; width: 100%; } .m-billing--v6 .desktop-billing-container .limited-offer span { text-decoration: underline; } .m-billing--v6 .desktop-billing-container .review-block { display: inline-block; vertical-align: top; width: 28%; margin-right: 5%; text-align: left; } .m-billing--v6 .desktop-billing-container .review-block .desktop-hidden { display: none; } .m-billing--v6 .desktop-billing-container .review-block .name span { font-weight: 600; opacity: .5; margin-right: 10px; } .m-billing--v6 .desktop-billing-container .review-block .name i { color: #ff3464; } .m-billing--v6 .desktop-billing-container .review-block .headline { margin-top: 10px; font-weight: 600; font-style: italic; } .m-billing--v6 .desktop-billing-container .review-block img { max-width: 30px; margin-right: 7px; border-radius: 50%; } .m-billing--v6 .desktop-billing-container .faq h4 { text-align: center; color: #444; font-size: 42px; font-weight: 700; line-height: 50px; } .m-billing--v6 .desktop-billing-container .faq .question-block { display: inline-block; text-align: left; width: 28%; margin-right: 5%; vertical-align: top; } .m-billing--v6 .desktop-billing-container .faq .question-block .question { font-weight: 600; margin-top: 10px; } .m-billing--v6 .desktop-billing-container .success-story.male-110 { min-height: 440px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-110 { min-height: 400px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-60 { min-height: 385px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-70,.m-billing--v6 .desktop-billing-container .success-story.female-80,.m-billing--v6 .desktop-billing-container .success-story.female-90,.m-billing--v6 .desktop-billing-container .success-story.female-100 { min-height: 410px!important; } .m-billing--v6 .desktop-billing-container .success-story { background: #ff346414; border-radius: 9px; padding: 15px 30px; min-height: 320px; margin-top: 30px; margin-bottom: 30px; } .m-billing--v6 .desktop-billing-container .success-story h4 { display: none; } .m-billing--v6 .desktop-billing-container .success-story .story-block { margin-left: 0; margin-bottom: 20px; float: left; width: 320px; } .m-billing--v6 .desktop-billing-container .success-story .story-block img { width: 100%; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-info { width: 100%; padding: 10px; margin-left: 0!important; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-name { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-details span { color: #ff3464; } .m-billing--v6 .desktop-billing-container .success-story p { display: none; } .m-billing--v6 .desktop-billing-container .pricing-block { border-radius: 9px; background-color: #fff; border: 0!important; width: 47%; float: right; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); padding-bottom: 30px; } .m-billing--v6 .desktop-billing-container .pricing-block .block-content { width: 100%; max-width: 360px; } .m-billing--v6 .desktop-billing-container .pricing-block .e-notice-bg.discount { background: #56468f; color: #fff; } .m-billing--v6 .desktop-billing-container .pricing-block .e-heading { display: none!important; } .m-billing--v6 .desktop-billing-container .pricing-block .cta-btn { width: 80%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .m-billing--v6 .desktop-billing-container .pricing-block .disclaimer { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; background: #fff!important; text-align: center; } .m-billing--v6 .desktop-billing-container .pricing-block.first { float: left; } .m-billing--v6 .desktop-billing-container .reviews { clear: both; } .m-billing--v6 .desktop-billing-container .reviews h4 { text-align: center; color: #444; font-size: 42px; font-weight: 700; line-height: 50px; } } @media only screen and (max-width:767px) { .m-billing--v6 { background: #fff!important; } .m-billing--v6 .desktop-review { display: none; } .m-billing--v6 .keto-benefits ul { padding-left: 0; margin-top: 20px; } .m-billing--v6 .keto-benefits li { list-style: none; color: #252a34; font-size: 15px; font-weight: 700; text-align: left; letter-spacing: .51px; line-height: 18px; margin-bottom: 15px; } .m-billing--v6 .keto-benefits li i { font-size: 18px; font-weight: 700; color: #ff2e63; } .m-billing--v6 h3 { display: none; } .m-billing--v6 h4 { color: #1a1e27; font-size: 22px; margin-bottom: 15px; margin-top: 25px; font-weight: 700; line-height: 26px; } .m-billing--v6 .story-block { position: relative; margin-bottom: 50px; } .m-billing--v6 .story-block img { max-width: 100%; } .m-billing--v6 .story-block .story-info { background: #fff; position: absolute; bottom: -30px; text-align: center; left: 0; width: 100%; padding: 10px; } .m-billing--v6 .story-block .story-info .story-name { font-weight: 600; margin-bottom: 5px; } .m-billing--v6 .story-block .story-info span { color: #ff3464; } .m-billing--v6 .scroll-back-btn { width: 100%; outline: none; border-radius: 30.5px; text-align: center; color: #fff; font-size: 22px; border: 0; margin-top: 20px; margin-bottom: 20px; font-weight: 600; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; } .m-billing--v6 .scroll-back-btn:hover { background: #bf3144!important; } .m-billing--v6 .community-box { font-size: 15px; padding: 15px; border-radius: 9px; background-color: #fff; text-align: center; margin-bottom: 30px; -webkit-box-shadow: 0 4px 11px -3px rgba(86,70,143,.3); box-shadow: 0 4px 11px -3px rgba(86,70,143,.3); } .m-billing--v6 .community-box i { color: #ff3464; font-size: 16px; display: inline-block; margin-bottom: 5px; } .m-billing--v6 .community-box span { color: #ff3464; } .m-billing--v6 .review-block { margin-bottom: 30px; } .m-billing--v6 .review-block img { max-width: 30px; margin-right: 7px; border-radius: 50%; } .m-billing--v6 .review-block .name { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .review-block .name span { opacity: .5; display: inline-block; margin-right: 10px; } .m-billing--v6 .review-block .name i { color: #ff3464; font-size: 16px; } .m-billing--v6 .review-block .headline { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-style: italic; font-weight: 700; letter-spacing: .51px; line-height: 18px; margin-top: 10px; margin-bottom: 5px; } .m-billing--v6 .review-block .content { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: 1px; line-height: 18px; } .m-billing--v6 .limited-offer { background: #ff3464; color: #fff!important; font-size: 22px!important; font-weight: 700!important; letter-spacing: .75px!important; line-height: 26px!important; padding: 15px; margin: -15px; margin-bottom: 0!important; text-align: center; } .m-billing--v6 .limited-offer span { text-decoration: underline; } .m-billing--v6 .payment-options { display: none; } .m-billing--v6 .pricing-block.is-active .cta-btn { background: #ff3464!important; } .m-billing--v6 .pricing-block.is-active .cta-btn:hover { background: #bf3144!important; } .m-billing--v6 .faq .block-content,.m-billing--v6 .reviews .block-content,.m-billing--v6 .success-story .block-content { text-align: left!important; } .m-billing--v6 .faq p.question { font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .block-content { max-width: 300px; margin: 0 auto; text-align: center; width: 100%; } .m-billing--v6 .pricing-block { border: 0!important; border-radius: 0!important; padding-bottom: 30px!important; border-bottom: 15px solid #f6f6f9!important; -webkit-box-shadow: none!important; box-shadow: none!important; } .m-billing--v6 .pricing-block .e-heading { display: none!important; } .m-billing--v6 .pricing-block .e-footer { border: 0!important; } .m-billing--v6 .pricing-block .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .m-billing--v6 .pricing-block .cta-btn:hover { background: #b7b5b5; } .m-billing--v6 .pricing-block .e-feature i { color: #ff3464!important; font-weight: 700; margin-right: 5px; } .m-billing--v6 .pricing-block .disclaimer { color: #56468f!important; font-size: 20px; font-weight: 700; padding-top: 0!important; letter-spacing: .68px; line-height: 23px; text-align: center; background: 0 0!important; } .m-billing--v6 .e-notice-bg.discount { background-color: #56468f!important; color: #fff!important; margin: 10px; opacity: .8; } .m-billing--v6 .regular-logo { display: none; } } .m-billing--v5 .pricing-block { position: relative; overflow: initial; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0; } .m-billing--v5 .pricing-block.is-active { border-radius: 10px; border: 1px solid #56468f; } .m-billing--v5 .pricing-block .e-heading { text-align: center; margin: auto; text-transform: uppercase; background: #ff3464; color: #fff; border-radius: 20px; left: 0; right: 0; top: -10px; z-index: 1; position: relative; display: inline-block; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; } .m-billing--v5 .pricing-block .e-notice-bg { background: #fcecf0; color: #ff3464; } .m-billing--v5 .pricing-block .e-notice,.m-billing--v5 .pricing-block .e-notice-bg { display: inline-block; width: auto; text-transform: uppercase; font-size: 15px; padding-left: 10px; padding-right: 10px; border-radius: 5px; font-weight: 700; } .m-billing--v5 .pricing-block .e-footer { width: 100%; text-align: center; border-top: 1px solid #f6f6f6; padding-top: 10px; margin-top: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-bottom: 10px; } .m-billing--v5 .pricing-block .e-footer .e-text { margin: 0; padding-left: 5px; opacity: .6; } .m-billing--v5 .pricing-block .e-footer .e-price-old { color: #ff3464; text-decoration: line-through; } .m-billing--v5 .pricing-block .e-feature { margin-top: 6px; margin-bottom: 6px; margin-left: 0; text-align: left; width: 100%; padding-left: 15px; } .m-billing--v5 .pricing-block .e-feature .e-notice-bg { margin-right: 5px; } .m-billing--v5 .pricing-block .disclaimer { background: #aa9cdf; padding: 16px; color: #fff; border-radius: 9px 9px 0 0; text-transform: uppercase; width: 100%; margin-bottom: 10px; padding-top: 18px; padding-bottom: 17px; position: relative; } .m-billing--v5 .pricing-block .disclaimer svg { position: absolute; left: 20px; top: 0; bottom: 0; margin: auto; opacity: .5; } .m-billing--v5 .pricing-block.is-active .disclaimer { background: #56468f; } .m-billing--v5 .pricing-block.is-active .disclaimer svg { opacity: 1; } .m-billing--v5#billing .pricing-block .pricing { margin: 0; line-height: 58px; } .m-billing--v5 .b-mainprice { line-height: 32px; margin-top: 11px; } .m-billing--v5 .b-mainprice .e-currency { font-size: 30px; } .m-billing--v5 .b-mainprice .e-price { font-size: 50px; } .m-billing--v5 .b-mainprice .e-duration { font-size: 15px; max-width: 50px; display: inline-block; line-height: 18px; font-weight: 700; } .m-billing--v5#billing .payment-providers { text-align: center; } @media only screen and (min-width:640px) { .b-moneybackguarantee { text-align: center; margin-top: 20px; } } .b-moneyback { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 15px; } .b-moneyback .e-img { max-width: 130px; width: 100%; padding-left: 20px; } .b-moneyback .e-img img { width: 100%; } .b-moneyback p { max-width: 250px; width: 100%; padding-left: 10px; padding-top: 10px; padding-right: 20px; font-size: 12px; } @media only screen and (min-width:728px) { .gpay-test #billing .payment-options { text-align: left; } .gpay-test .gpay-placeholder { position: relative; margin-right: 10px; top: 6px; } .gpay-test .gpay-placeholder div button { width: 300px!important; } .gpay-test .payment-options .btn-card,.gpay-test .payment-options .btn-paypal,.gpay-test .payment-options div { display: inline-block!important; max-width: 300px!important; } } .gpay-test .payment-options .btn-payment { font-size: 16px; margin: 12px auto!important; border-radius: 10px; padding: 10px!important; } .gpay-test .gpay-button { width: 100%!important; outline: none!important; border-radius: 10px; } .gpay-test .gpay-placeholder .processing { color: #fff!important; background-image: none!important; font-size: 16px!important; padding-top: 8px!important; } .gpay-test .e-termsconditions { margin-bottom: 0; } .upsell-popup { position: absolute; display: none; top: 0; left: 0; width: 100%; background: url(../images/upsell-bg.png) #fff no-repeat; background-size: contain; text-align: center; padding: 30px 0; } .upsell-popup .block-content { width: 100%; max-width: 320px; margin: 0 auto; } .upsell-popup .main-description { margin-bottom: 15px; } .upsell-popup .main-description span { font-weight: 600; } .upsell-popup .people-count { color: #ff3c6f; font-family: Karla,Montserrat; font-size: 65px; font-weight: 700; letter-spacing: .51px; line-height: 76px; text-align: center; } .upsell-popup .regular-logo { max-width: 150px; margin: 30px auto; margin-bottom: 15px; width: 100%; } .upsell-popup h4 { color: #56468f; font-family: Karla,Montserrat; margin-bottom: 20px; text-transform: uppercase; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .upsell-popup .complete-upsell { background: #23c363!important; } .upsell-popup .complete-upsell,.upsell-popup .complete-upsell:hover { -webkit-box-shadow: 0 4px 11px -2px #23c363!important; box-shadow: 0 4px 11px -2px #23c363!important; } .upsell-popup .complete-upsell:hover { background: #44da80!important; } .upsell-popup .cart-info { padding: 15px; text-align: left; } .upsell-popup .cart-info .cart-total { float: left; margin-top: 20px; color: #444; font-family: Karla,Montserrat; margin-bottom: 20px; font-size: 20px; letter-spacing: .68px; line-height: 23px; } .upsell-popup .cart-info .cart-item { border-bottom: 1px solid #f6f6f9; min-height: 34px; padding: 5px; margin-bottom: 5px; } .upsell-popup .cart-info .cart-item .item-title { float: left; font-weight: 700; } .upsell-popup .cart-info .cart-item .item-title,.upsell-popup .cart-info .cart-item .pricing { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; } .upsell-popup .cart-info .cart-item .pricing { float: right; } .upsell-popup .cart-info .cart-item .pricing span { text-decoration: line-through; opacity: .5; } .upsell-popup .cart-info .cart-discount { float: right; color: #ff3464; font-family: Karla,Montserrat; margin-top: 20px; margin-bottom: 20px; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 23px; } .upsell-popup .cart-info .cart-discount span { text-decoration: line-through; } .upsell-popup .upsell-products { text-align: left; padding: 15px; border-top: 12px solid #f6f6f9; border-bottom: 12px solid #f6f6f9; } .upsell-popup .upsell-products h4 { margin-bottom: 20px; } .upsell-popup .upsell-products .product-item.active img { border: 1px solid #ff3464!important; } .upsell-popup .upsell-products .product-item { display: -webkit-box; display: -ms-flexbox; display: flex; border-top: 1px solid #ebebeb; padding-top: 10px; padding-bottom: 10px; } .upsell-popup .upsell-products .product-item .photo { width: 90px; margin-right: 10px; } .upsell-popup .upsell-products .product-item .photo img { width: 90px; border: 1px solid #ebebeb; border-radius: 5px; } .upsell-popup .upsell-products .product-item .description { padding-top: 2px; } .upsell-popup .upsell-products .product-item .description .price { float: left; color: #444; font-family: Karla,Montserrat; font-size: 18px; letter-spacing: .79px; line-height: 23px; margin-top: 5px; } .upsell-popup .upsell-products .product-item .description .price span { color: #ff3464; display: inline-block; margin-left: 5px; font-size: 15px; letter-spacing: 1.19px; line-height: 18px; text-decoration: line-through; } .upsell-popup .upsell-products .product-item .description .action { float: right; } .upsell-popup .upsell-products .product-item .description .action button { outline: none!important; border: 1px solid #ff3464; color: #ff3464; border-radius: 30.5px; background-color: #fff; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); } .upsell-popup .upsell-products .product-item .description .action button.added,.upsell-popup .upsell-products .product-item .description .action button:hover { color: #fff; background: #ff3464; } .upsell-popup .upsell-products .product-item.first { border-top: 0!important; } .b-checklist { list-style-type: none; margin-left: 15px; } .b-checklist li { font-size: 15px; margin-bottom: 10px; position: relative; padding-left: 5px; } .b-checklist li:before { content: ""; width: 20px; height: 20px; position: absolute; left: -30px; top: 0; bottom: 0; margin: auto; background: url(../images/icons/list-checkbox.png); background-size: contain; background-position: 50%; background-repeat: no-repeat; } .e-quate { font-style: italic; font-size: 15px; margin-top: 10px; } @media only screen and (min-width:640px) { .e-quate { max-width: 400px; } } #landing.landing-v5 { background-position: 160px -125px!important; } #landing.landing-v5 .b-intro { margin-top: 30px; } #landing.landing-v5 .b-intro .e-title { max-width: 90%; margin-left: 0; } #landing.landing-v5 .b-content { margin-bottom: 40px; margin-top: 20px; } #landing.landing-v5 .e-title { font-weight: 700; font-family: Lato; margin: auto; line-height: 38px; margin-bottom: 15px; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-title { max-width: 420px; margin-left: 0; } } #landing.landing-v5 .e-title .e-special { color: #ff3464; } #landing.landing-v5 .e-title.m-center { text-align: center; max-width: 80%; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-title.m-center { margin-left: 0; text-align: left; } } #landing.landing-v5 .e-text { font-weight: 700; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-text { max-width: 530px; } } #landing.landing-v5 .b-content img { max-width: 100%; margin-bottom: 15px; margin-top: 10px; -webkit-box-shadow: 0 0 11px rgba(86,70,143,.2); box-shadow: 0 0 11px rgba(86,70,143,.2); border-radius: 7px; } @media only screen and (min-width:640px) { #landing.landing-v5 .b-content img { max-width: 420px; } } #landing.landing-v5 .b-quate { background: #56468f; color: #fff; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); margin-bottom: 40px; } #landing.landing-v5 .b-quate p { max-width: 300px; margin: auto; text-align: center; font-size: 20px; line-height: 24px; padding-top: 80px; padding-bottom: 40px; font-style: italic; position: relative; } #landing.landing-v5 .b-quate p:before { content: ""; background: url(../images/icons/quates.png); width: 40px; height: 40px; margin: auto; position: absolute; background-size: contain; background-repeat: no-repeat; background-position: 50%; left: 0; right: 0; top: 30px; } #landing.landing-v5 .gender-description { text-align: center; margin-top: 0; margin-bottom: 0; } @media only screen and (min-width:640px) { #landing.landing-v5 .gender-description { text-align: left; } } #landing.landing-v5 .gender-buttons .btn { min-height: 50px; } @media only screen and (max-width:640px) { #landing.landing-v5 .gender-buttons .btn { max-width: 100%; } } #landing.landing-v5 .gender-buttons .btn .e-icon-person { left: 24%; } .results-2 { padding: 0; } @media only screen and (max-width:640px) { .results-2 { padding: 10px; } } .results-2 .results-logo { margin-left: 0; max-width: 120px; margin-bottom: 10px; margin-top: 15px; } .results-2 h3 { font-size: 32px; font-weight: 700; color: #ff3464; } .results-2 .subheading { font-size: 25px; line-height: 28px; font-weight: 700; } .results-2 .b-result--firstweek { max-width: 370px; margin-top: 40px; } .results-2 .b-result--firstweek .b-stats--header { padding: 20px; padding-bottom: 10px; } @media only screen and (max-width:640px) { .results-2 .b-result--firstweek .b-stats--header { padding-bottom: 15px; } } .results-2 .b-result--firstweek .b-stats--header img { max-width: 100%; } .results-2 .b-result--firstweek .b-stats--footer { text-align: center; } .results-2 .b-result--firstweek .b-stats--footer .e-special { font-size: 33px; } .results-2 .b-result--firstweek .b-stats--footer .e-special span { font-size: 75px; line-height: 75px; } .results-2 .b-result--firstweek .b-stats--footer p { font-size: 23px; text-align: center; padding-bottom: 10px; margin-top: -5px; } .results-2 .b-result--weight { margin-top: 20px; position: relative; max-width: 370px; } .results-2 .b-result--weight img { max-width: 100%; -webkit-box-shadow: 0 0 11px rgba(86,70,143,.2); box-shadow: 0 0 11px rgba(86,70,143,.2); border-radius: 7px; } .results-2 .b-result--weight .b-stats { position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-height: 212px; text-align: center; } .results-2 .b-result--weight .b-stats .b-stats--header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 190px; margin: auto; padding-top: 40px; padding-bottom: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 27px; font-weight: 700; color: #ff3464; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats .b-stats--header { padding-top: 6%; } } .results-2 .b-result--weight .b-stats .b-stats--header p { margin: 0; opacity: .4; } .results-2 .b-result--weight .b-stats .b-stats--header .e-special { font-size: 73px; line-height: 73px; opacity: 1; } .results-2 .b-result--weight .b-stats .b-stats--middle { font-size: 18px; margin-top: -5px; } .results-2 .b-result--weight .b-stats .b-stats--footer { font-size: 20px; font-weight: 700; padding-top: 5px; } .results-2 .b-result--weight .b-months { position: absolute; left: 0; right: 0; bottom: 0; max-height: 190px; text-align: center; top: 41%; max-width: 290px; margin: auto; margin-top: 10px; font-size: 20px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-months { max-width: 270px; margin-top: 0; top: 42%; } } @media only screen and (max-width:360px) { .results-2 .b-result--weight .b-months { top: 40%; padding-left: 20px; padding-right: 20px; max-width: 270px; } } .results-2 .b-result--weight .b-stats--header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .results-2 .b-result--weight .b-stats--header p:last-child { margin-right: 10px; } .results-2 .b-result--weight .b-stats--results { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; min-height: 180px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats--results { min-height: 160px; } } .results-2 .b-result--weight .b-stats--results .b-stats--results--from,.results-2 .b-result--weight .b-stats--results .b-stats--results--to { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 33px; line-height: 26px; } .results-2 .b-result--weight .b-stats--results .b-stats--results--from span,.results-2 .b-result--weight .b-stats--results .b-stats--results--to span { font-size: 13px; } .results-2 .b-result--weight .b-stats--results .b-stats--results--from { font-size: 23px; margin-left: 0; margin-top: 10px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats--results .b-stats--results--from { margin-top: 0; } } .results-2 .b-result--weight .b-stats--results .b-stats--results--to { color: #ff3464; margin-top: auto; margin-bottom: 10px; margin-right: 2px; } @media only screen and (max-width:360px) { .results-2 .b-result--weight .b-stats--results .b-stats--results--to { margin-bottom: 30px; } } .results-2 .b-result--text { margin-top: 40px; max-width: 370px; text-align: center; padding-top: 20px; padding-bottom: 20px; } .results-2 .b-result--text .b-stats--header { font-size: 73px; font-weight: 700; color: #ff3464; line-height: 73px; } .results-2 .b-result--text .b-stats--footer { font-size: 23px; max-width: 240px; margin: auto; line-height: 28px; padding-top: 10px; } .results-2 .b-result { -webkit-box-shadow: 0 0 11px rgba(86,70,143,.29); box-shadow: 0 0 11px rgba(86,70,143,.29); border-radius: 9px; } .results-2 .b-result .e-special { color: #ff3464; font-size: 27px; font-weight: 700; } .results-2 .btn-primary.scroll-btn { max-width: 370px!important; } .results-2 .summary { margin-top: 40px; } .results-2 .summary h2 { margin-bottom: 20px; } .results-2 .summary .col-12 { margin-bottom: 30px; } @media only screen and (max-width:640px) { .results-2 .summary .col-12 { width: 100%; } } .results-2 #bmi .e-row { height: 33.33333%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 20px; border-bottom: 1px solid #e0e0e0; } .results-2 #bmi .e-row:last-child { border-bottom: none; } .results-2 #bmi .e-row .e-value { text-transform: uppercase; font-size: 23px; color: #ff3464; display: none; } .results-2 #bmi .e-row .e-number { font-size: 43px; font-weight: 700; } .results-2 #bmi .e-row .e-name { font-size: 23px; font-weight: 700; margin-left: auto; } .results-2 #bmi .e-row.is-selected { background: rgba(86,70,143,.1); } .results-2 #bmi .e-row.is-selected .e-value { display: block; } .results-2 #intake { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .results-2 #intake img { max-width: 250px; margin-top: 15px; } .results-2 #intake .e-heading { font-size: 23px; padding-top: 15px; } .results-2 #intake .e-value { font-size: 43px; font-weight: 700; color: #ff3464; line-height: 40px; } .results-2 #intake .e-measurement { font-size: 18px; } .results-2 #intake .daily-norm { position: relative; top: 0; font-size: 43px; line-height: 43px; color: #ff3464; } .results-2 #body-parts img { max-width: 100%; } .results-2 #body-parts .e-heading { text-align: center; font-size: 23px; max-width: 200px; margin: auto; padding-top: 20px; padding-bottom: 15px; line-height: 24px; font-weight: 700; } .results-2 #meals img { max-width: 80px; margin: auto; } .results-2 #meals .meal-count { margin-top: 10px; top: 42%; } .results-2 #meals .meal-count span { font-size: 73px; } .results-2 #meals p { text-align: center; font-size: 22px; max-width: 180px; margin: auto; line-height: 26px; margin-top: 40px; margin-bottom: 30px; font-weight: 700; } .results-2 .covered { background-color: rgba(86,70,143,.1); } .results-2 .b-ourpromise { position: relative; } .results-2 .b-ourpromise img { position: absolute; max-width: 130px; bottom: 10px; right: auto; left: 200px; } .results-2 .b-ourpromise h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; margin-top: 40px; } .results-2 .b-ourpromise .e-text { font-size: 20px; font-weight: 300; font-style: italic; font-family: Karla,Montserrat; line-height: 26px; } .results-2 .b-ourpromise .e-heading { font-size: 20px; font-weight: 700; margin-bottom: 0; margin-top: 20px; } .results-2 .b-ourpromise .e-subtitle { font-size: 20px; margin-top: -5px; } @media only screen and (max-width:640px) { .results-2 .btn-next-step { width: 100%; margin: 0; margin-top: 20px; } } .results-2 .b-blocks-featured { padding-top: 10px; padding-bottom: 5px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } .results-2 .b-blocks-featured .b-result { width: 100%; margin-top: 0; min-height: 215px; } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured .b-result { margin-bottom: 30px; } } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured .scroll-btn { margin-top: 0; } } .results-3 .b-logo { text-align: center; padding-top: 10px; } @media only screen and (max-width:360px) { .results-3 .b-ourpromise img { max-width: 90px; bottom: 14px; } } .results-3 .covered { position: relative; } .results-3 .covered:before { content: ""; background: url(../images/landing-bg-desktop.jpg?v2); background-size: contain; position: absolute; right: -24%; height: 600px; width: 100%; top: -280%; z-index: 0; opacity: .2; } @media only screen and (max-width:640px) { .results-3 .covered:before { display: none; } } .results-3 .covered:after { content: ""; background: url(../images/landing-bg-desktop.jpg?v2); background-size: contain; position: absolute; left: -32%; height: 600px; width: 60%; top: -610%; z-index: 0; opacity: .2; background-repeat: no-repeat; -webkit-transform: rotate(110deg); transform: rotate(110deg); } @media only screen and (max-width:640px) { .results-3 .covered:after { display: none; } } @media only screen and (max-width:640px) { .results-3 { padding: 0; } } .results-3 .summary-container:before { content: ""; background: url(../images/bg-mealplate.png); background-size: cover; position: absolute; right: -10px; height: 600px; width: 400px; top: 0; } .results-3 .results-box#meals img { padding-top: 5px; margin-top: -10px; } .results-3 .subheading { font-size: 28px; } @media only screen and (max-width:640px) { .results-3 .subheading { font-size: 24px; } } .results-3 .btn-get-plan { max-width: 600px; margin: auto; margin-top: 25px; margin-bottom: 30px; } .results-3 .covered-logos { margin-top: 17px; } .results-3 .covered-logos img { max-width: 150px; margin-left: 5%; margin-right: 5%; } @media only screen and (max-width:1124px) { .results-3 .covered-logos img { margin-left: 2%; margin-right: 2%; } } @media only screen and (max-width:640px) { .results-3 .covered-logos img { margin-left: 1%; margin-right: 1%; } } .results-3 .covered-logos img:nth-child(2) { max-width: 220px; } .results-3 .covered { margin-top: 30px; } .results-3 .covered .heading { margin-top: 20px; color: #444; opacity: 1; font-size: 23px; font-weight: 300; } @media only screen and (max-width:640px) { .results-3 .covered .heading { font-size: 18px; } } .results-3 .container { max-width: 830px; width: 100%; position: relative; z-index: 1; } .results-3 .btn-primary.scroll-btn { max-width: 570px!important; margin: auto; margin-top: 40px; } @media only screen and (max-width:640px) { .results-3 .btn-primary.scroll-btn { margin-top: 0; } } .results-3 #intake .e-heading { font-weight: 700; text-align: center; max-width: 80%; } .results-3 #meals .meal-count { position: relative; } .results-3 #meals .meal-count span { font-size: 93px; } .results-3 #meals p { margin-bottom: 30px; font-weight: 700; margin-top: 55px; } .results-3 .summary { margin-top: 50px; } @media only screen and (max-width:640px) { .results-3 .summary { margin-top: 40px; } } @media only screen and (max-width:1124px) { .results-3 .summary .col-md-6 { width: 50%; } } @media only screen and (max-width:640px) { .results-3 .summary .col-md-6 { width: 100%; } } .results-3 .summary h2 { font-size: 36px; margin-bottom: 30px; font-weight: 700; } .results-3 .b-result--weight .b-stats--results .b-stats--results--from { margin-top: 1px; } .results-3 .b-result--text .b-stats--footer { margin-top: 15px; margin-bottom: 25px; } .results-3 .b-result--firstweek .b-stats--footer .e-special { margin-top: 10px; margin-bottom: 10px; } .results-3 .b-result--firstweek .b-stats--header { max-width: 380px; padding-top: 10px; } .results-3 .b-result--firstweek .b-stats--footer .e-special span { font-size: 90px; } .results-3 .b-result--firstweek .b-stats--footer p { margin-bottom: 0; } .results-3 .b-result--text .b-stats--header { margin-top: auto; font-size: 90px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; line-height: 12px; } .results-3 .b-result--text .b-stats--header span { font-size: 34px; } .results-3 h3 { font-size: 70px; max-width: 610px; margin-top: 10px; } @media only screen and (max-width:640px) { .results-3 h3 { font-size: 38px; } } .results-3 .b-blocks-featured { padding-top: 30px; } @media only screen and (max-width:640px) { .results-3 .b-blocks-featured { padding-top: 10px; } } .results-3 .b-blocks-featured .b-result--weight { margin-bottom: 30px; } .results-3 .b-blocks-featured .b-result--firstweek,.results-3 .b-blocks-featured .b-result--text { max-width: calc(50% - 15px); min-height: 260px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } @media only screen and (max-width:640px) { .results-3 .b-blocks-featured .b-result--firstweek,.results-3 .b-blocks-featured .b-result--text { width: 100%; max-width: 100%; } } .results-3 .b-result.b-result--weight { max-width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 40px; background: #fff; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight { margin-bottom: 30px; } } .results-3 .b-result.b-result--weight .b-stats .b-stats--header { max-width: 90%; width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; overflow: hidden; padding-bottom: 10px; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:first-child { position: relative; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:first-child:before { content: ""; background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),to(#fff)); background-image: linear-gradient(90deg,hsla(0,0%,100%,0),#fff); top: -20px; bottom: -20px; width: 80px; position: absolute; -webkit-transform: rotate(180deg); transform: rotate(180deg); left: -10px; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:last-child { position: relative; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:last-child:before { content: ""; background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),to(#fff)); background-image: linear-gradient(90deg,hsla(0,0%,100%,0),#fff); top: -20px; bottom: -20px; width: 80px; position: absolute; right: -10px; } .results-3 .b-result.b-result--weight .b-stats { background: #fff; position: relative; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: 200px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .results-3 .b-result.b-result--weight .b-stats--header { padding-top: 15px; margin-top: auto; margin-bottom: 0; max-width: none; } .results-3 .b-result.b-result--weight .b-stats--header p { margin-left: 5%; margin-right: 5%; } .results-3 .b-result.b-result--weight .b-stats--header .e-special { margin-left: 5%; margin-right: 5%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .results-3 .b-result.b-result--weight .b-stats--header .e-special span { font-size: 18px; line-height: 12px; color: #444; font-weight: 300; } .results-3 .b-result.b-result--weight .b-stats--footer { margin-bottom: auto; padding-top: 10px; font-size: 24px; } .results-3 .b-result.b-result--weight .b-months { position: relative; background: rgba(255,52,100,.1); max-width: 100%; margin: 0; max-height: none; } .results-3 .b-result.b-result--weight .b-months:before { content: ""; background: url(../images/b-results-graph.png); position: absolute; left: 0; right: 0; width: 100%; min-height: 200px; background-size: cover; bottom: -5px; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight .b-months:before { background-position: 50%; } } .results-3 .b-result.b-result--weight .b-months .b-stats--header,.results-3 .b-result.b-result--weight .b-months .b-stats--results { max-width: 320px; margin: auto; } .results-3 .b-result.b-result--weight .b-months .b-stats--header { padding-top: 20px; max-width: 335px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results { min-height: 230px; padding-bottom: 50px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results--from { position: relative; left: 10px; } @media only screen and (max-width:360px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--from { margin-top: 18px; } } .results-3 .b-result.b-result--weight .b-months .b-stats--results--from:before { content: ""; position: absolute; left: 0; right: 0; margin: auto; width: 17px; background: #ff3464; height: 17px; border-radius: 20px; top: 50px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { position: relative; margin-bottom: 18px; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { margin-bottom: 15px; } } @media only screen and (max-width:360px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { margin-bottom: 20px; } } .results-3 .b-result.b-result--weight .b-months .b-stats--results--to:before { content: ""; position: absolute; left: 0; right: 0; margin: auto; width: 17px; background: #ff3464; height: 17px; border-radius: 20px; top: 50px; } .b-testimonial--single { max-width: 340px; -webkit-box-shadow: 0 0 10px rgba(86,70,143,.29); box-shadow: 0 0 10px rgba(86,70,143,.29); border-radius: 9px; margin-bottom: 40px; overflow: hidden; } @media only screen and (max-width:640px) { .b-testimonial--single { max-width: 100%; } } .b-testimonial--single .b-testimonial--single--image { position: relative; height: 300px; overflow: hidden; } .b-testimonial--single .b-testimonial--single--image img { margin-top: -40px; } @media only screen and (max-width:640px) { .b-testimonial--single .b-testimonial--single--image img { width: 100%; } } .b-testimonial--single .b-testimonial--single--image .e-play { position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; max-width: 60px; } .b-testimonial--single .b-testimonial--single--description .e-title { text-align: center; font-weight: 700; font-size: 16px; margin-bottom: 0!important; line-height: 24px!important; margin-top: 10px!important; } .b-testimonial--single .b-testimonial--single--description .e-subtitle { text-align: center; padding-bottom: 5px; font-size: 16px; margin-bottom: 0; } .b-testimonial--single .b-testimonial--single--description .e-text { padding: 15px; padding-top: 3px; padding-bottom: 5px; text-align: center; } .b-testimonial--single .b-testimonial--single--description .e-special { color: #ff3464; } #billing.success-v2 { background: 0 0; } @media only screen and (max-width:640px) { #billing.success-v2 { padding: 0; margin: 0; } } #billing.success-v2 .copyright { margin-top: 50px; padding-bottom: 30px; } @media only screen and (max-width:640px) { #billing.success-v2 { padding: 0; } } #billing.success-v2 .b-intro { padding-top: 20px; } #billing.success-v2 .b-intro .e-title { font-size: 55px; color: #ff3464; } @media only screen and (max-width:640px) { #billing.success-v2 .b-intro .e-title { text-align: center; } } #billing.success-v2 .b-orderdetails { padding-top: 20px; display: inline-block; width: 100%; } #billing.success-v2 .b-orderdetails .e-title { font-size: 20px; color: #ff3464; font-weight: 700; } #billing.success-v2 .b-orderdetails--details { width: 100%; display: inline-block; } #billing.success-v2 .b-orderdetails--details p { font-size: 16px; font-weight: 700; border-bottom: 1px solid #eee; padding-bottom: 10px; } #billing.success-v2 .b-finaloffer { background: rgba(86,70,143,.1); margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); margin-top: 20px; } #billing.success-v2 .b-finaloffer .b-finaloffer--inner { max-width: 970px; margin: auto; padding-left: 15px; padding-right: 15px; } @media only screen and (min-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner { text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } } #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-title { font-size: 20px; color: red; text-transform: uppercase; margin-bottom: 0; font-weight: 700; line-height: 20px; padding-top: 25px; max-width: 350px; text-align: center; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-title { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-subtitle { font-size: 17px; color: #56468f; font-weight: 700; max-width: 350px; text-align: center; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-subtitle { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-offer { background: #fff; border-radius: 10px; padding: 20px; text-align: center; max-width: 350px; width: 100%; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-offer { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-offer p { font-size: 16px; font-weight: 700; } #billing.success-v2 .b-finaloffer .b-offer .e-text--uppercase { font-size: 18px; font-weight: 300; margin: 0; margin-top: 10px; } #billing.success-v2 .b-finaloffer .b-offer .e-special { color: #ff3464; margin-bottom: 0; } #billing.success-v2 .b-finaloffer .b-offer .btn-primary { margin-top: 15px; margin-bottom: 5px; } #billing.success-v2 .container { padding-bottom: 0; } @media only screen and (max-width:640px) { #billing.success-v2 .container { padding: 0; margin: 0; padding-left: 15px; padding-right: 15px; } } #billing.success-v2 .e-link { text-decoration: underline; margin-top: 10px; display: inline-block; margin-bottom: 30px; color: #000; font-size: 16px; width: 100%; text-align: center; max-width: 350px; } @media only screen and (max-width:640px) { #billing.success-v2 .e-link { max-width: 100%; } } #landing.landing-v7 .b-testimonial--single .b-testimonial--single--image { height: 250px; } #landing.landing-v7 .b-testimonial--single { margin-bottom: 20px; overflow: hidden; margin-top: 50px; } #landing.landing-v7 .b-testimonial--single:first-child { margin-top: 0; } #landing.landing-v7 .b-content { margin-bottom: 30px; } .info-slide h3 { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; } .info-slide p { font-size: 15px; } .info-slide ul { margin-bottom: 10px; margin-top: 10px; list-style: none; padding-left: 0; } .info-slide ul li { line-height: 24px; margin-bottom: 10px; font-size: 15px; } .info-slide ul li i { font-weight: 900; margin-right: 5px; color: #56468f; } .workouts-enabled .week-data { margin: auto; position: absolute; left: 0; right: 0; height: 50px; } .workouts-enabled .week-nav { left: 0!important; right: 0!important; margin: auto; max-width: 150px; padding-top: 2px; } .workouts-enabled .mainNavbar .container,.workouts-enabled .week-nav { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .workouts-enabled .mainNavbar .container { min-height: 50px; width: 100%; } .workouts-enabled .e-productlist { max-width: 20px; margin-left: auto; position: absolute; right: 15px; top: 0; bottom: 0; margin: auto; height: 30px; } .workouts-enabled .helper { top: 12px; } .tabs-nav .tab-item { text-decoration: none; } .b-plan-body { max-height: 75vh; overflow-y: scroll; display: none; min-width: 100%; margin-bottom: 50px; } .b-plan-body.is-active { display: block; } .pricing-block .e-extraoption { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .pricing-block .e-checkbox--simple { width: 20px; height: 20px; margin: 0; position: relative; } .pricing-block .e-checkbox--simple svg path { fill: #ff3464; } .pricing-block .e-extraoption label { font-size: 14px; padding-left: 10px; padding-top: 8px; cursor: pointer; } .pricing-block .e-checkbox { position: relative; border: none; border-radius: 30px; display: inline-block; height: 20px; width: 20px; cursor: pointer; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin-top: 0; } .pricing-block .e-checkbox:before { content: ""; background: #fff; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 1; pointer-events: none; border: 2px solid #ff3464; } .pricing-block .e-checkbox:checked+svg { opacity: 1; display: block; } .pricing-block .e-checkbox--simple svg { position: absolute; left: 0; bottom: 0; top: 0; right: 0; margin: auto; display: none; pointer-events: none; width: 15px; height: 15px; z-index: 1; opacity: 0; } .navbar-fixed { position: fixed; top: 0; left: 0; right: 0; height: 60px; background: #56468e; z-index: 2; -webkit-box-shadow: 0 3px 16px 3px hsla(0,0%,50%,.41); box-shadow: 0 3px 16px 3px hsla(0,0%,50%,.41); -webkit-transition: all .5s; transition: all .5s; top: -90px; } .navbar-fixed .navbar-fixed--inner { padding-left: 25px; padding-right: 25px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; } @media only screen and (max-width:640px) { .navbar-fixed .navbar-fixed--inner { padding-left: 15px; padding-right: 15px; } } .navbar-fixed .limited-offer { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .58px; line-height: 20px; margin-bottom: 40px; margin: auto; margin-right: 0; margin-right: 20px; } @media only screen and (max-width:1124px) { .navbar-fixed .limited-offer { font-size: 13px; } } @media only screen and (max-width:900px) { .navbar-fixed .limited-offer { display: none; } } @media only screen and (max-width:640px) { .navbar-fixed .limited-offer { display: none; } } .navbar-fixed .regular-logo { max-width: 130px; padding: 10px; } .navbar-fixed .select-plan-3 { outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 8px 15px; background: #ff3464!important; margin-bottom: 0; margin-top: 0; font-size: 13px; } @media only screen and (max-width:360px) { .navbar-fixed .select-plan-3 { padding: 8px 10px; } } .b-basedonyour { max-width: 430px; color: #56468e; text-align: center; border-bottom: 4px solid rgba(86,70,142,.2); margin: auto; margin-bottom: 30px; } .b-basedonyour p { font-size: 22px; margin-bottom: 5px; } .b-basedonyour h4 { margin-top: 0; color: #56468e; font-size: 32px; font-weight: 700; } #billing.m-checkout--11 .e-intro-title { text-align: center; font-size: 58px; font-weight: 700; } #billing.m-checkout--11 .e-intro-title span { color: #ff3464; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .e-intro-title { display: none; } } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .user-reviews:before { content: ""; background: 0 0; position: relative; } } #billing.m-checkout--11 .container .limited-offer { max-width: 650px; margin: 20px auto 40px; background-color: #ff3464; min-height: 50px; color: #fff; border-radius: 10px; padding-top: 15px; font-size: 20px; font-weight: 300; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .limited-offer { margin: 20px -20px 0; } } #billing.m-checkout--11 .container .limited-offer .is-pulsing { text-decoration: underline; } #billing.m-checkout--11 .container .pricing-block { border: none; -webkit-box-shadow: 0 0 10px rgba(86,70,143,.29); box-shadow: 0 0 10px rgba(86,70,143,.29); margin-bottom: 40px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .pricing-block { padding-bottom: 0; margin-bottom: 10px; } } #billing.m-checkout--11 .container .pricing-block .disclaimer { color: #57478f; background: 0 0; text-decoration: none; } #billing.m-checkout--11 .container .pricing-block .disclaimer .e-title { margin-bottom: 0; } #billing.m-checkout--11 .container .pricing-block .disclaimer .e-subtitle { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; text-align: center; margin-bottom: 20px; text-transform: none; margin-top: 5px; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .pricing-block .disclaimer .e-subtitle { margin-bottom: 0; } } #billing.m-checkout--11 .container .pricing-block ul { font-size: 21px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .pricing-block ul { font-size: 15px; padding: 0; margin: 0; } } #billing.m-checkout--11 .container .pricing-block ul li { list-style-type: none; } #billing.m-checkout--11 .container .pricing-block .e-notice-bg { background: #796ba6; color: #fff; letter-spacing: .07em; padding-top: 0; padding-bottom: 0; } #billing.m-checkout--11 .container .covered .heading { text-decoration: none; font-size: 16px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .story-block { margin-top: 0; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media { margin-top: 20px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media img { max-width: 300px; margin: auto; } } #billing.m-checkout--11 .container .main-container { width: 90%; margin: auto; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .main-container .success-story h4 { display: none; } } #billing.m-checkout--11 .container .main-container .success-story .block-content { margin-top: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; max-width: 85%; margin: auto; margin-bottom: 40px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content { margin-bottom: 0; max-width: 410px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side { width: 40%; border-radius: 10px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side { width: 100%; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side .image-heading-media { display: none; } } #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side img { border-top-left-radius: 10px; border-top-right-radius: 10px; } #billing.m-checkout--11 .container .main-container .success-story .right-side { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 40%; text-align: left; position: relative; margin: auto 0 auto 30px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .right-side { width: 100%; margin: auto; } } #billing.m-checkout--11 .container .main-container .success-story .right-side h3 { margin-bottom: 30px; letter-spacing: .08em; font-size: 35px; line-height: normal; } #billing.m-checkout--11 .container .main-container .success-story .right-side p { font-size: 15px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .product-composition { display: none; } } #billing.m-checkout--11 .container .main-container .product-composition .block-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; width: 80%; margin: auto; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .left-side { width: 50%; position: relative; margin: auto; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .left-side h3 { font-size: 45px; letter-spacing: .08em; text-align: left; line-height: normal; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .right-side { width: 50%; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .right-side img { max-height: 450px; } #billing.m-checkout--11 .container .main-container .keto-benefits { max-width: 800px; margin: auto; padding-top: 30px; margin-bottom: 60px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .keto-benefits { padding-top: 10px; } } #billing.m-checkout--11 .container .main-container .keto-benefits .block-content ul { list-style-type: none; font-size: 17px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .keto-benefits .block-content ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .product-composition-media .block-content-media { display: none; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media .block-content-media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media .block-content-media h3 { display: block; text-align: center; max-width: 310px; margin: auto; margin-bottom: 20px; margin-top: 20px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .payment-providers span { margin-top: 0; } } #billing.m-checkout--11 .container .faq { max-width: 100%; margin: auto; margin-top: 60px; margin-bottom: 50px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq { margin-top: 40px; margin-bottom: 40px; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items { margin-top: 40px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items p { width: 30%; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items p { width: 100%; margin-top: 20px; margin-top: 5px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items p p:first-child { margin-top: 0; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items p span { font-weight: 700; font-size: 15px; color: #ff3464; padding-bottom: 5px; display: inline-block; } #billing.m-checkout--11 .container .payment-providers { margin-bottom: 50px; } #billing.m-checkout--11 .container .user-reviews { max-width: 950px; margin: auto; margin-bottom: 70px; } #billing.m-checkout--11 .container .user-reviews .block-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .user-reviews .block-content { max-width: 95%; padding-top: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .user-reviews .block-content img { width: 80%; margin: auto; max-height: 115px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .user-reviews .block-content img { width: 100%; margin-bottom: 20px; } } #billing.m-checkout--11 .la-check:before { color: #ff3464; } .select-payment-method .cc-form { display: none; } .select-payment-method .gpay-button.long { width: 100%!important; height: 44px; line-height: 44px; } .select-payment-method .btn-primary { font-size: 18px!important; margin-bottom: 0!important; border-radius: 5px!important; margin-top: 15px; } .select-payment-method .btn-primary:hover { opacity: .85; } html:lang(ar) #billing .regular-logo { margin: 10px auto!important; } html:lang(ar) #billing.m-checkout--11 .main-container .keto-benefits .block-content ul .e-feature .fa-check:before,html:lang(ar) #billing.m-checkout--11 .main-container .keto-benefits .block-content ul .e-feature .fas:before { right: -31px!important; left: auto!important; } html:lang(ar) .pricing-options .pricing-option .option-title { margin-left: 25px; } html:lang(ar) .benefits-listed .e-feature i { margin-left: 5px; } @media only screen and (min-width:1025px) { html:lang(ar) .recover-plan { left: 25px!important; right: auto!important; } html:lang(ar) #landing { background: 0 0!important; } html:lang(ar) #landing h1 { margin-top: 120px!important; } } html:lang(ar) .modal-header { display: block!important; } html:lang(ar) .modal-header .close { float: left!important; } html:lang(ar) .modal-header h4.modal-title { float: right!important; } html:lang(ar) #landing { background: 0 0!important; } html:lang(ar) #landing h1 { margin-top: 120px!important; } html:lang(ar) .results-2 #bmi .e-row .e-value { font-size: 18px!important; } html:lang(ar) .results-2 .b-ourpromise .e-text,html:lang(ar) .results-2 .b-ourpromise h2,html:lang(ar) .results-3 .subheading,html:lang(ar) .results-3 .summary h2,html:lang(ar) .results-3 h3 { text-align: right!important; } html:lang(ar) .input-holder .units { left: 0!important; right: auto!important; } html:lang(es) #billing.m-checkout--11 .pricing-block .e-feature { max-width: 450px; } .tabs-nav svg { vertical-align: middle!important; margin-right: 5px!important; } .b-achievegoals { position: relative; } .b-achievegoals .b-achievegoals-header { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; font-size: 25px; font-weight: 700; position: absolute; right: 0; top: 37px; left: 0; } @media only screen and (max-width:640px) { .b-achievegoals .b-achievegoals-header { top: 10%; font-size: 23px; } } .b-achievegoals .b-achievegoals-header-month.is-active { color: #ff3364; } @media only screen and (min-width:1025px) { .navbar-brand .btn-back+.regular-logo { margin-left: 40px; } } .confirmation-description { padding: 15px; font-size: 16px; } #dynamic-landing.youtube-landing { min-height: 100vh; background: url(../images/landings/youtube-desktop.jpg)!important; background-size: cover!important; } #dynamic-landing.youtube-landing h1 { max-width: 500px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing { background: url(../images/landings/youtube-mobile.png) #f4f4f4 no-repeat!important; background-size: contain!important; } #dynamic-landing.youtube-landing h1 { margin-top: 150px!important; margin-bottom: 25px; } } #dynamic-landing.youtube-landing .cta-label { font-family: Karla; font-style: normal; text-transform: uppercase; font-weight: 700; font-size: 16px; line-height: 30px; letter-spacing: .04em; color: #000; opacity: .6; } #dynamic-landing.youtube-landing .code-input { background: #fff; border: 1px solid #d3d3d3; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 10px; margin-top: 15px; margin-bottom: 15px; outline: none!important; font-size: 16px; line-height: 16px; color: #000; min-width: 300px; border-radius: 12px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing .code-input { width: 100%; } } #dynamic-landing.youtube-landing .code-input-holder { position: relative; } #dynamic-landing.youtube-landing .code-input-holder .status-icon { position: absolute; top: 20px; color: #24af32; left: 270px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing .code-input-holder .status-icon { left: auto; right: 15px; } } #dynamic-landing.youtube-landing .code-input-holder .status-icon i { font-family: FontAwesome; font-size: 20px; font-style: normal; } #dynamic-landing.youtube-landing .code-input-holder .status-icon.error { color: #dc0000; } #dynamic-landing.youtube-landing .code-input-holder .code-error { background: #f82c2c40; padding: 10px 15px; color: #dc0000; border-radius: 10px; margin-bottom: 15px; display: none; } @media only screen and (min-width:1025px) { #dynamic-landing.youtube-landing .code-input-holder .code-error { max-width: 300px; } } .alt-measurements select { display: block; width: 100%; background: #fff; border: 0; border-bottom: 1px solid #ebebeb; padding: 10px; font-size: 16px; } .payment-loader { display: none; padding: 30px; text-align: center; } .payment-loader img { width: auto!important; } #paypal-button { width: 100%; background: 0 0; border: none; margin-top: 15px; } #paypal-button .zoid-outlet { width: 100%!important; } #adyen-checkout img { height: 26px!important; width: 40px!important; margin: auto!important; } @media only screen and (max-width:640px) { .adyen-checkout__payment-method,.adyen-checkout__payment-method--dotpay { max-height: 70px; } .adyen-checkout__payment-method--dotpay .adyen-checkout__payment-method__name { font-size: 14px; width: 175px; display: inline-block; margin-top: -5px; } .adyen-checkout__payment-method--dotpay .adyen-checkout__input-wrapper { max-width: 270px; } } .adyen-checkout__button { background: #ff3464!important; } @media only screen and (max-width:640px) { .subscriptions-no .option-title { font-size: 17px!important; line-height: 24px!important; font-weight: 600!important; } .subscriptions-no .billing-period { margin-top: 5px!important; font-weight: 400!important; } .subscriptions-no .option-price { position: relative; left: 10px; } .subscriptions-no .option-price div { min-width: 80px; } } .plan-selection.subscriptions.full-price .pricing-option .option-price { padding-top: 40px!important; font-size: 36px!important; padding-left: 5px!important; } .plan-selection.subscriptions.full-price .billing-period { margin-top: 2px!important; line-height: 20px!important; } .flex-block { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 800px; margin: 0 auto; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } @media only screen and (max-width:640px) { .flex-block.alternative .plan-selection { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; padding-top: 0!important; } } .flex-block .plan-selection { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding: 15px; -ms-flex-preferred-size: 50%; flex-basis: 50%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } @media only screen and (max-width:640px) { .flex-block .plan-selection { -ms-flex-preferred-size: 100%; flex-basis: 100%; } } .flex-block .plan-selection h3 { margin-top: 0!important; font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; } .flex-block .benefits-listed { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding: 15px; padding-left: 25px; -ms-flex-preferred-size: 50%; flex-basis: 50%; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } @media only screen and (max-width:640px) { .flex-block .benefits-listed { -ms-flex-preferred-size: 100%; flex-basis: 100%; } } .plan-selection.subscriptions .pricing-option { min-height: 120px; } .plan-selection.subscriptions .pricing-option .option-price { padding-top: 22px!important; } .plan-selection.subscriptions .pricing-option .old-price { margin-top: 0!important; } .summary-header-scroll { margin-top: -5px!important; padding: 8px 25px!important; } .final-price.subscription { display: block!important; } .period.period-eu { margin: 0!important; } .pricing-options { margin-top: 20px; margin-bottom: 20px; } .pricing-options .pricing-option { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: stretch; -ms-flex-pack: stretch; justify-content: stretch; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; cursor: pointer; position: relative; border: 2px solid rgba(68,68,68,.243635); -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 4px; padding: 20px; margin-bottom: 20px; } .pricing-options .pricing-option.single-month .option-price { padding-top: 10px!important; } .pricing-options .pricing-option.single-month .per-week { top: 35px!important; } .pricing-options .pricing-option .per-week { position: absolute; font-size: 11px; top: 48px; left: 0; min-width: 100%; width: 80px; text-align: center; } .pricing-options .pricing-option .tick { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-top: 10px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .pricing-options .pricing-option .tick i { width: 30px; height: 30px; background: rgba(68,68,68,.104977); display: block; text-align: center; border-radius: 50%; } .pricing-options .pricing-option .tick i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #fff; font-size: 19px; position: relative; top: 1px; left: -1px; } .pricing-options .pricing-option .discount { position: absolute; width: 70%; left: 15%; bottom: -10px; font-family: Karla,Montserrat; font-style: normal; font-weight: 700; font-size: 14px; padding: 3px; line-height: 18px; text-align: center; letter-spacing: .508928px; text-transform: uppercase; color: #fff; background: #56468f; border-radius: 6px; } @media(max-width:350px) { .pricing-options .pricing-option .discount { width: 90%!important; left: 5%!important; } } .pricing-options .pricing-option .option-title { -webkit-box-flex: 3; -ms-flex: 3; flex: 3; font-family: Karla,Montserrat; font-style: normal; font-weight: 400; font-size: 22px; line-height: 27px; letter-spacing: -.2px; color: #444; } .pricing-options .pricing-option .option-title .billing-period { margin-top: -2px; font-size: 12px; opacity: .7; } @media only screen and (max-width:360px) { .pricing-options .pricing-option .option-title .billing-period { line-height: 16px; margin-top: 2px; } } .pricing-options .pricing-option .option-price { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; font-family: Karla,Montserrat; font-style: normal; -ms-flex-item-align: stretch; align-self: stretch; font-weight: 400; font-size: 30px; padding-top: 15px; position: relative; line-height: 35px; text-align: center; letter-spacing: 1.1875px; color: #444; } .pricing-options .pricing-option .option-price .old-price { position: absolute; top: 2px; font-family: Karla,Montserrat; font-style: normal; font-weight: 400; width: 100%; font-size: 18px!important; line-height: 22px!important; text-align: center!important; letter-spacing: 1.1875px!important; color: #444!important; mix-blend-mode: normal!important; opacity: .5; } .pricing-options .pricing-option.active { border: 2px solid #786ba5; } .pricing-options .pricing-option.active .tick i { background: #ff3464; } #downsell-modal { text-align: center; } #downsell-modal .btn-deny { font-size: 16px; color: #555; text-decoration: underline; display: block; margin-top: 20px; } #downsell-modal .modal-body { padding: 20px; padding-top: 40px; } #downsell-modal .savings-label { background: #56468f; color: #fff; padding: 2px 5px; max-width: 250px; margin: 5px auto; border-radius: 10px; text-transform: uppercase; font-weight: 600; } #downsell-modal .downsell-offer { font-size: 16px; margin-bottom: 20px; margin-top: 20px; line-height: 24px; } #downsell-modal .offer-details { font-size: 16px; line-height: 24px; } #downsell-modal .heading { font-weight: 700; font-family: Lato,Montserrat; color: #ff3464; font-size: 32px; } #downsell-modal .downsell-timer { font-size: 36px; margin: 10px 0; } .plan-disclaimer { font-style: normal; font-weight: 700; font-size: 15px; line-height: 18px; text-align: center; letter-spacing: .508928px; color: #56468f; } .secure-payment { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; text-align: center; -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .secure-payment.custom-test { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; } @media only screen and (max-width:640px) { .secure-payment { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; -ms-flex-preferred-size: 100%; flex-basis: 100%; margin-bottom: 30px; margin-top: -10px; } } .secure-payment img { max-width: 70%; } h1.custom-test { display: block!important; } @media only screen and (max-width:640px) { h1.custom-test { font-size: 36px!important; } } @media only screen and (max-width:640px) { h2.custom-test { display: none!important; } } .payment-info { text-align: center; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; -ms-flex-preferred-size: 50%; flex-basis: 50%; } @media only screen and (max-width:640px) { .payment-info { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; -ms-flex-preferred-size: 100%; flex-basis: 100%; margin-bottom: 40px; } } @media only screen and (max-width:640px) { .payment-info.upgraded { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; } } .payment-info h3 { font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; margin-top: 0!important; } .payment-info .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background: #ff3464!important; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .payment-info .cta-btn.green-cta { background: #21ce3e!important; } .payment-info .cta-btn:hover { opacity: .85; } @media only screen and (min-width:640px) { .payment-info .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; max-width: 300px; margin-bottom: 20px; margin-top: 0; } .payment-info .cta-btn.green-cta { background: #21ce3e!important; } } .payment-info #braintree-checkout { background: #f5f5f5; padding: 25px; border-radius: 10px; } .payment-info #braintree-checkout #braintree-submit-button { max-width: 100%; width: 100%; } .payment-info #braintree-checkout .braintree-card.braintree-form.braintree-sheet { background: #f5f5f5!important; } .payment-info #braintree-checkout .braintree-form__field { background: #fff!important; } .benefits-listed h3 { font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; margin-top: 0!important; } .benefits-listed ul { margin-top: 30px; margin-bottom: 30px; padding-left: 10px; } @media only screen and (max-width:640px) { .benefits-listed ul { padding-left: 0; } } .benefits-listed li { list-style: none; } .benefits-listed .feature-description { display: none; } .benefits-listed.v2 .e-feature { font-size: 18px!important; font-weight: 700!important; } .benefits-listed.v2 .e-feature .feature-description { display: block; color: #8e8e8e!important; font-size: 14px!important; margin-top: 5px; font-weight: 400!important; } .benefits-listed .e-feature { margin-top: 6px; margin-bottom: 6px; margin-left: 0; text-align: left; font-family: Karla,Montserrat; font-style: normal; font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .508928px; width: 100%; padding-left: 10px; } .benefits-listed .e-feature .fa-check:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; } .benefits-listed .e-feature .e-notice-bg { margin-right: 5px; } .benefits-listed .e-feature i { color: #ff3464!important; font-weight: 700; margin-right: 5px; } #braintree-checkout { text-align: left; } #landing.landing-0916 { background-position: 160px -125px!important; text-align: left; } @media only screen and (min-width:640px) { #landing.landing-0916 { background-size: contain!important; background-position: 100%!important; } } #landing.landing-0916 h1 { margin-top: 25px; font-size: 32px; max-width: 340px; line-height: 40px; color: #444; } @media only screen and (min-width:640px) { #landing.landing-0916 h1 { padding-top: 100px; font-size: 48px; max-width: 510px; margin: auto; text-align: center; line-height: 64px; padding-bottom: 10px; } } #landing.landing-0916 h1 span { color: #ff3464; } #landing.landing-0916 .copyright,#landing.landing-0916 .footer-logo,#landing.landing-0916 .links { display: none; } #landing.landing-0916 .gender-description { text-align: center; margin-top: 20px; } @media only screen and (min-width:640px) { #landing.landing-0916 .gender-description { margin-top: 30px; } } @media only screen and (min-width:640px) { #landing.landing-0916 .gender-buttons { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } } #landing.landing-0916 .btn-borders { max-width: 170px; min-height: 160px; border-radius: 40px; margin: auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; position: relative; width: 100%; height: 100%; overflow: hidden; margin-top: 20px; background: 0 0; } @media only screen and (min-width:640px) { #landing.landing-0916 .btn-borders { margin: 10px; max-width: 210px; min-height: 205px; } } @media only screen and (max-width:360px) { #landing.landing-0916 .btn-borders { margin-top: 10px; } } #landing.landing-0916 .btn-borders[data-gender=male] .btn-borders-inner { background: #56468f; } #landing.landing-0916 .btn-borders[data-gender=male]:before { content: ""; background: rgba(86,70,142,.2); -webkit-animation: 4s pulse-layer-3 infinite; animation: 4s pulse-layer-3 infinite; } #landing.landing-0916 .btn-borders[data-gender=male]:after { content: ""; background: rgba(86,70,142,.3); -webkit-animation: 4s pulse-layer-4 infinite; animation: 4s pulse-layer-4 infinite; } #landing.landing-0916 .btn-borders .btn-borders-inner { font-size: 25px; background: #ff3464; position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; z-index: 1; border-radius: 35px; } #landing.landing-0916 .btn-borders .btn-borders-icon,#landing.landing-0916 .btn-borders .btn-borders-icon img { width: 45px; height: 45px; } #landing.landing-0916 .btn-borders:before { content: ""; background: rgba(255,51,100,.2); position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50px; -webkit-animation: 4s pulse-layer-1 infinite; animation: 4s pulse-layer-1 infinite; } #landing.landing-0916 .btn-borders:after { content: ""; background: rgba(255,51,100,.35); position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; border-radius: 40px; -webkit-animation: 4s pulse-layer-2 infinite; animation: 4s pulse-layer-2 infinite; } #landing.landing-0916 .btn-borders .icon { position: relative; left: 0; right: 0; top: 0; } @media only screen and (min-width:640px) { html[lang=de] #landing.landing-0916 h1,html[lang=fr] #landing.landing-0916 h1 { padding-top: 60px; max-width: 570px; } } @-webkit-keyframes pulse-layer-1 { 0% { background: rgba(255,51,100,.05); } 50% { background: rgba(255,51,100,.25); } to { background: rgba(255,51,100,.05); } } @keyframes pulse-layer-1 { 0% { background: rgba(255,51,100,.05); } 50% { background: rgba(255,51,100,.25); } to { background: rgba(255,51,100,.05); } } @-webkit-keyframes pulse-layer-2 { 0% { background: rgba(255,51,100,.1); } 50% { background: rgba(255,51,100,.35); } to { background: rgba(255,51,100,.1); } } @keyframes pulse-layer-2 { 0% { background: rgba(255,51,100,.1); } 50% { background: rgba(255,51,100,.35); } to { background: rgba(255,51,100,.1); } } @-webkit-keyframes pulse-layer-3 { 0% { background: rgba(86,70,142,.25); } 50% { background: rgba(86,70,142,.05); } to { background: rgba(86,70,142,.25); } } @keyframes pulse-layer-3 { 0% { background: rgba(86,70,142,.25); } 50% { background: rgba(86,70,142,.05); } to { background: rgba(86,70,142,.25); } } @-webkit-keyframes pulse-layer-4 { 0% { background: rgba(86,70,142,.35); } 50% { background: rgba(86,70,142,.1); } to { background: rgba(86,70,142,.35); } } @keyframes pulse-layer-4 { 0% { background: rgba(86,70,142,.35); } 50% { background: rgba(86,70,142,.1); } to { background: rgba(86,70,142,.35); } } .email-holder label { width: 98%; } .email-holder label .braintree-form__label { font-size: 14px; font-weight: 600; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; line-height: 1.4; margin-left: 5px; margin-bottom: 5px; } .email-holder label input { font-weight: 400!important; } .email-holder label input.with-error { border-bottom: 1px solid #ca2a2a; } .email-holder label .email-error { padding-top: 5px; font-weight: 400; margin-left: 5px; color: #ca2a2a; display: none; } #email-modal .modal-title { font-weight: 700; } #email-modal p { padding-bottom: 10px; font-size: 15px; } html[lang=de] #landing h1 { max-width: 330px; } .b-form-email .input-holder { margin-bottom: 20px; } .b-form-email .error-msg { margin-bottom: 15px; margin-top: -5px; text-align: left; margin-left: 5px; } .b-form-email .b-input { margin-left: 5px; } .promo-checkbox { font-weight: 400!important; cursor: pointer; display: inline; } html[lang=fr] #landing h1 { max-width: 440px; } .replace-recipe { background-color: #56468f!important; border-color: #312363!important; } .replace-recipe:hover { opacity: .9; } #alternatives-modal .modal-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: .3rem; border-top-right-radius: .3rem; } #alternatives-modal .modal-header h4 { font-weight: 700; font-size: 20px; } #alternatives-modal .modal-header .close { margin-top: -2px; margin: -1rem -1rem -1rem auto; padding: 15px; } .alternative-loader { padding: 30px; display: none; text-align: center; } .btn-print-recipe { border: 0!important; background-color: #ff3464; color: #fff; } .btn-print-recipe:hover { background-color: #ff3464!important; opacity: .9; } #recipe-modal .btn { display: block; padding: 10px 40px; margin-bottom: 8px; font-size: 15px; text-align: center; border-radius: 6px; } #recipe-modal .btn.replace-recipe { color: #fff; } .alternative-recipe { min-height: 120px; border-bottom: 1px solid #ebebeb; margin-bottom: 15px; } .alternative-recipe img { margin-top: 10px; margin-right: 15px; } .alternative-recipe .recipe-title { opacity: 1; color: #444; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 20px; margin-bottom: 5px; } .alternative-recipe .recipe-kcal { color: #56468f; letter-spacing: .47px; display: inline-block; margin-right: 20px; } .alternative-recipe .recipe-kcal,.alternative-recipe .recipe-preparation { font-family: Karla,Montserrat; font-size: 13px; font-weight: 400; line-height: 15px; } .alternative-recipe .recipe-preparation { opacity: .4; color: #444; letter-spacing: .37px; } .alternative-recipe button { background-color: #ff3464; color: #fff; padding: 7px 30px; border: 0; border-radius: 6px; margin-top: 5px; } .alternative-recipe button:hover { opacity: .9; } .alternative-recipe:last-of-type { border: 0!important; } .question-description .highlight { color: #ff3464; font-weight: 600; } @media only screen and (min-width:728px) { .dessert-sample { display: inline-block; max-width: 49%; background: #fff!important; } } .upsell-reasoning { font-size: 16px; line-height: 24px; margin-top: 15px; margin-bottom: 15px; } .dessert-benefits { margin: 30px auto!important; max-width: 300px!important; } .sample-recipes .dessert-sample { background: #f5f5f5; padding: 20px; text-align: center; } .sample-recipes .dessert-sample:nth-child(2n) { background: #fff!important; } .sample-recipes .dessert-sample .dessert-title { color: #56468f; font-weight: 700; font-size: 18px; font-family: Karla; margin-bottom: 10px; } .sample-recipes .dessert-sample .dessert-photo { border-radius: 10px; max-width: 280px; } .sample-recipes .dessert-sample .dessert-photo img { width: 100%; border-radius: 10px; } .sticky-button { background: #5f4aa9eb; padding: 15px 10px; position: fixed; width: 100%; bottom: 0; text-align: center; left: 0; z-index: 10; } .sticky-button .offer-countdown { color: #fff; font-size: 24px; margin-right: 15px; } .sticky-button .offer-countdown span { font-weight: 700; text-decoration: underline; } @media only screen and (max-width:640px) { .sticky-button .offer-countdown { font-size: 18px!important; display: block; margin-right: 0!important; margin-bottom: 10px; } } .sticky-scroll { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; font-size: 16px; line-height: 19px; text-transform: capitalize; border: 0; padding: 15px; max-width: 500px; margin: 0 auto; display: block; text-align: center; color: #fff; } @media only screen and (min-width:1025px) { .sticky-scroll { display: inline-block; } } .sticky-scroll:hover { opacity: .9; } .fuel-success-body { background: #f9f9f9; } .fuel-success-body .success-img { max-width: 350px!important; } @media only screen and (min-width:1025px) { .fuel-checkout { background: #f9f9f9; } } .fuel-checkout .upsell-logo { margin-top: 10px!important; } .fuel-checkout .checkout-block { background: #fff; } @media only screen and (min-width:1025px) { .fuel-checkout .checkout-block { max-width: 700px!important; margin: 20px auto!important; } .fuel-checkout .checkout-block .multiple-flavours { max-width: 400px; margin: 0 auto; display: block; } .fuel-checkout .checkout-block .flavour-holder { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-checkout .checkout-block .flavour-holder .flavour { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 45%; flex-basis: 45%; } .fuel-checkout .checkout-block .flavour-holder .flavour-separator { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 10%; flex-basis: 10%; height: 20px; } .fuel-checkout .checkout-block .container { max-width: 100%; } .fuel-checkout .checkout-block .order-details { -webkit-border-top-left-radius: 15px; -webkit-border-top-right-radius: 15px; -moz-border-radius-topleft: 15px; -moz-border-radius-topright: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; } } .fuel-checkout .checkout-block img { max-width: 100%; } .fuel-checkout .checkout-block .plan-title { font-weight: 700; font-size: 24px; line-height: 29px; margin-top: 15px; margin-bottom: 30px; color: #222; } .fuel-checkout .checkout-block .single-flavour { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 20px 0; } @media only screen and (min-width:1025px) { .fuel-checkout .checkout-block .single-flavour { width: 320px; } } .fuel-checkout .checkout-block .oops { padding-top: 30px; text-align: center; } .fuel-checkout .checkout-block .oops span { display: block; padding-top: 5px; font-weight: 700; font-size: 40px; line-height: 48px; } .fuel-checkout .checkout-block .out-of-stock { font-weight: 700; font-size: 18px; line-height: 26px; text-align: center; color: #222; padding: 15px; opacity: .8; } .fuel-checkout .checkout-block .update-stock { font-weight: 500; margin: 30px 0; font-size: 16px; text-align: center; line-height: 24px; color: #222; } .fuel-checkout .checkout-block .update-stock span { color: #ff3464; font-weight: 600; } .fuel-checkout .checkout-block .flavour-box { text-align: center; border: 1px solid #c4c4c4; border-radius: 10px; cursor: pointer; -ms-flex-preferred-size: 45%; flex-basis: 45%; padding: 15px; } .fuel-checkout .checkout-block .flavour-box.selected { border: 1px solid #4d369f; } .fuel-checkout .checkout-block .flavour-box span { display: block; font-weight: 600; font-size: 16px; margin-top: 10px; } .fuel-checkout .checkout-block .select-flavour { font-size: 16px; font-weight: 600; line-height: 20px; color: #222; opacity: .7; } .fuel-checkout .checkout-block .flavour-qty { background: rgba(34,34,34,.1); border-radius: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-checkout .checkout-block .flavour-qty div { -ms-flex-preferred-size: 15%; flex-basis: 15%; } .fuel-checkout .checkout-block .flavour-qty .count { font-size: 18px; line-height: 42px; text-align: center; } .fuel-checkout .checkout-block .flavour-qty .add,.fuel-checkout .checkout-block .flavour-qty .subtract { background: #4d369f; border-radius: 10px; width: 42px; height: 42px; text-align: center; line-height: 42px; color: #fff; font-weight: 700; font-size: 24px; cursor: pointer; } .fuel-checkout .checkout-block .pink-box { padding: 15px; font-weight: 700; font-size: 16px; line-height: 19px; text-transform: uppercase; margin-bottom: 10px; } .fuel-checkout .checkout-block .pink-box.flavor-headline { margin: 10px -15px; } .fuel-checkout .checkout-block select#state { background: rgba(34,34,34,.07); border-radius: 10px; -webkit-box-shadow: none!important; box-shadow: none!important; height: 48px!important; border: 0; border-color: none; } .fuel-checkout .checkout-block select#state.has-error { border: 1px solid; } .fuel-checkout .checkout-block label { font-weight: 700; cursor: pointer; font-size: 16px; margin-top: 20px; margin-bottom: 10px; line-height: 20px; } .fuel-checkout .checkout-block input { background: rgba(34,34,34,.07); border-radius: 10px; border: 0; padding: 8px 15px; -webkit-box-shadow: none!important; box-shadow: none!important; height: 48px!important; } .fuel-checkout .checkout-block input.has-error { border: 1px solid red; } .fuel-checkout .checkout-block .order-button { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; margin-top: 20px; font-size: 16px; line-height: 19px; text-transform: capitalize; display: block; text-align: center; border: 0; padding: 15px; margin-bottom: 20px; color: #fff; } .fuel-upsell { text-align: left; font-style: normal; padding-bottom: 90px; } .fuel-upsell.v2 .get-ketosis h4 { max-width: 600px; margin: 0 auto; font-size: 32px!important; line-height: 42px!important; } .fuel-upsell.v2 .why-works { text-align: center; } .fuel-upsell.v2 .why-works ul { list-style: none; font-size: 16px; line-height: 24px; margin: 30px auto; text-align: left; width: 100%; max-width: 700px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works ul { padding-left: 0!important; } } .fuel-upsell.v2 .why-works h4 { text-align: center!important; margin-top: 35px!important; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works h4 { text-align: left!important; } } .fuel-upsell.v2 .why-works .no-sugar { font-weight: 600; font-size: 16px; text-align: center; margin-bottom: 30px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works .no-sugar { text-align: left; } } .fuel-upsell.v2 .like-fuel,.fuel-upsell.v2 .you-choose { font-weight: 400; font-size: 16px; line-height: 26px; width: 100%; max-width: 760px; margin: 30px auto; margin-top: 0; } .fuel-upsell.v2 .to-achieve { font-size: 16px; line-height: 26px; margin: 30px auto; font-weight: 400; margin-top: 10px; } .fuel-upsell.v2 .to-achieve span { color: #ff3464; } .fuel-upsell.v2 .our-offer { font-weight: 700; font-size: 24px; color: #ff3464; line-height: 32px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .our-offer { font-size: 16px; line-height: 24px; text-align: left; margin-bottom: -10px; } } .fuel-upsell.v2 .no-matter { font-size: 20px; line-height: 30px; text-align: center; max-width: 600px; margin: 30px auto; font-weight: 600; } .fuel-upsell.v2 .no-matter span { color: #ff3464; } .fuel-upsell.v2 .more-value { font-weight: 700; font-size: 24px; line-height: 30px; text-align: center; color: #000; max-width: 700px; margin: 30px auto; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .more-value { text-align: left; } } .fuel-upsell.v2 .more-value span { color: #ff3464; } .fuel-upsell.v2 .product-photo { text-align: center; padding: 40px; } .fuel-upsell.v2 .product-photo img { max-width: 450px; width: 80%; } .fuel-upsell img { max-width: 100%; } .fuel-upsell h1 { margin-top: 30px; font-weight: 900; text-align: left!important; font-size: 30px; line-height: 36px; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell h1 { text-align: center!important; font-size: 40px!important; line-height: 48px!important; } } .fuel-upsell .grey-box { background: #c4c4c41a; padding: 25px 0; } .fuel-upsell .violet-box { background: #4d369fc7; color: #fff; padding: 25px 0; } .fuel-upsell .violet-box h4 { color: #fff!important; margin-bottom: 20px; } .fuel-upsell .violet-box p { font-size: 16px; line-height: 24px; } .fuel-upsell .pink-box { background: #ff3464cf; color: #fff; padding: 25px 0; } .fuel-upsell h4 { font-weight: 700; font-size: 24px; line-height: 26px; color: #000; text-align: left!important; } .fuel-upsell p.slogan { font-size: 16px; line-height: 24px; text-align: left; font-weight: 600; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell p.slogan { font-size: 24px!important; text-align: center!important; line-height: 24px!important; } } .fuel-upsell .main-screen { position: relative; } .fuel-upsell .main-screen .fact-box { display: none; } @media only screen and (min-width:1025px) { .fuel-upsell .main-screen .fact-box { display: block!important; position: absolute; background: #ff5d83; border-radius: 14px; padding: 15px; width: 280px; bottom: 110px; text-align: left; right: -200px; color: #fff; } } .fuel-upsell .main-screen .fact-box h3 { margin-top: 0!important; font-weight: 800; font-size: 24px; line-height: 26px; color: #fff!important; } .fuel-upsell .main-screen .fact-box .description { font-size: 16px; line-height: 24px; } .fuel-upsell .product-image { margin-bottom: 50px; margin-top: 30px; } .fuel-upsell .product-image img { max-width: 100%; } @media only screen and (min-width:1025px) { .fuel-upsell .product-image img { max-width: 480px; margin-top: 20px; } } .fuel-upsell .fact { display: block; color: #fff!important; } .fuel-upsell .fact h3 { font-weight: 800!important; font-size: 24px!important; color: #fff!important; margin-top: 0!important; line-height: 26px!important; } .fuel-upsell .fact .description { font-weight: 400; font-size: 16px; line-height: 24px; } @media only screen and (min-width:1025px) { .fuel-upsell .fact { display: none; } } .fuel-upsell .better-results { text-align: center; font-weight: 700; font-size: 24px; line-height: 26px; color: #000; padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .better-results { background: #c4c4c459; padding: 40px 0!important; } } .fuel-upsell .better-results span { color: #4d369f; font-weight: 800; font-size: 38px; margin-right: 7px; line-height: 46px; letter-spacing: .02em; } @media only screen and (min-width:1025px) { .fuel-upsell .better-results span { font-size: 60px!important; margin-right: 12px!important; line-height: 72px!important; } } .fuel-upsell .looking-to .product-description { font-weight: 400; font-size: 16px; text-align: left; line-height: 24px; } .fuel-upsell .looking-to .product-description span { letter-spacing: .03em; color: #ff3464; font-weight: 600; text-decoration: underline; } @media only screen and (min-width:1025px) { .fuel-upsell .looking-to { padding: 40px 0!important; } } @media only screen and (min-width:1025px) { .fuel-upsell .looking-to .container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 1000px!important; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .looking-to .container .left-side,.fuel-upsell .looking-to .container .right-side { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; } } .fuel-upsell .flavours { padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .flavours { padding: 40px 0!important; text-align: center!important; } .fuel-upsell .flavours h4 { text-align: center!important; font-size: 40px!important; line-height: 48px!important; margin-bottom: 40px!important; } } .fuel-upsell .flavours img { max-width: 100%; margin: 20px 0; } .fuel-upsell .flavours .properties { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .flavours .properties .prop { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; font-weight: 400; font-size: 16px; line-height: 19px; text-align: center; margin-bottom: 30px; } @media only screen and (min-width:1025px) { .fuel-upsell .flavours .properties .prop { -ms-flex-preferred-size: 25%; flex-basis: 25%; } } .fuel-upsell .flavours .properties .prop span { display: block; font-weight: 700; font-size: 46px; line-height: 55px; margin-bottom: 5px; color: #4d369f; } .fuel-upsell .get-ketosis { padding: 25px 0; } .fuel-upsell .get-ketosis .shortcut { font-weight: 700; font-size: 16px; line-height: 19px; letter-spacing: .03em; text-transform: uppercase; margin: 25px 0; color: #000; opacity: .5; -ms-flex-preferred-size: 10%; flex-basis: 10%; } @media only screen and (min-width:1025px) { .fuel-upsell .get-ketosis h4 { font-size: 40px!important; text-align: center!important; margin-bottom: 40px!important; margin-top: 40px!important; line-height: 30px!important; } } @media only screen and (min-width:1025px) { .fuel-upsell .get-ketosis .type-holder { -ms-flex-pack: distribute; justify-content: space-around; display: -webkit-box; display: -ms-flexbox; display: flex; } } .fuel-upsell .get-ketosis .ketosis-type { -ms-flex-preferred-size: 35%; flex-basis: 35%; } .fuel-upsell .get-ketosis .type-title { font-weight: 700; font-size: 20px; margin: 25px 0; line-height: 24px; color: #000; } .fuel-upsell .get-ketosis .type-title span { display: inline-block; background: #ff346436; color: #ff3464; border-radius: 50%; margin-right: 10px; width: 30px; height: 30px; text-align: center; line-height: 30px; } .fuel-upsell .get-ketosis ul { margin-left: 20px; color: #ff3464; } .fuel-upsell .get-ketosis ul li { margin-bottom: 5px; } .fuel-upsell .get-ketosis ul span { color: #000; font-size: 16px; line-height: 24px; } @media only screen and (min-width:1025px) { .fuel-upsell .get-straight .container { max-width: 750px!important; } .fuel-upsell .get-straight .container h4 { margin: 35px 0!important; font-size: 40px!important; text-align: center!important; line-height: 30px!important; } } .fuel-upsell .choose-method p,.fuel-upsell .effortless p,.fuel-upsell .fuel-benefits p,.fuel-upsell .get-straight p,.fuel-upsell .nutritionist p,.fuel-upsell .side-effects p,.fuel-upsell .sold-out p { font-weight: 400; font-size: 16px; line-height: 26px; margin-top: 10px; margin-bottom: 20px; } .fuel-upsell .choose-method p span,.fuel-upsell .effortless p span,.fuel-upsell .fuel-benefits p span,.fuel-upsell .get-straight p span,.fuel-upsell .nutritionist p span,.fuel-upsell .side-effects p span,.fuel-upsell .sold-out p span { color: #ff3464; font-weight: 600; } .fuel-upsell .choose-method .container,.fuel-upsell .effortless .container,.fuel-upsell .overshadow .container,.fuel-upsell .side-effects .container,.fuel-upsell .sold-out .container { max-width: 800px; } .fuel-upsell .side-effects .problem-list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-top: 40px; } .fuel-upsell .side-effects .problem-list .problem { text-align: center; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; margin-bottom: 40px; -ms-flex-item-align: end; align-self: flex-end; } @media only screen and (min-width:1025px) { .fuel-upsell .side-effects .problem-list .problem { -ms-flex-preferred-size: 25%!important; flex-basis: 25%!important; } } .fuel-upsell .side-effects .problem-list .problem span { font-weight: 700; font-size: 16px; line-height: 24px; display: block; margin-top: 10px; } .fuel-upsell .side-effects ul li { font-size: 16px; color: #ff3464; line-height: 26px; } .fuel-upsell .side-effects ul li span { color: #444; } .fuel-upsell .fuel-benefits { padding: 25px 0; } .fuel-upsell .fuel-benefits .container { max-width: 800px!important; } .fuel-upsell .fuel-benefits img { margin: 20px 0; } .fuel-upsell .fuel-benefits .highlighted { color: #ff3464; font-weight: 600; margin-bottom: 0; } .fuel-upsell .fuel-benefits span.violet { color: #4d369f; } .fuel-upsell .fuel-benefits ul { padding-left: 20px; } .fuel-upsell .fuel-benefits ul li { color: #ff3464; font-size: 16px; line-height: 24px; margin-bottom: 5px; } .fuel-upsell .fuel-benefits ul li span { color: #4d4d4d; } .fuel-upsell .use-it { padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .container { max-width: 100%!important; } .fuel-upsell .use-it h4 { font-size: 40px!important; line-height: 48px!important; margin: 40px auto!important; text-align: center!important; } .fuel-upsell .use-it .upsell-benefits { max-width: 650px; margin: 30px auto!important; } } .fuel-upsell .use-it .use-cases { margin: 35px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .use-cases { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } } .fuel-upsell .use-it .use-cases .case { text-align: left; color: #000; margin-bottom: 25px; clear: both; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .use-cases .case { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 18%; flex-basis: 18%; text-align: center; } .fuel-upsell .use-it .use-cases .case img { display: block; float: none!important; margin: 10px auto!important; } .fuel-upsell .use-it .use-cases .case .reason { max-width: 200px!important; margin: 0 auto!important; } } .fuel-upsell .use-it .use-cases .case img { float: left; margin-right: 25px; width: 45px; padding-bottom: 10px; padding-top: 5px; } .fuel-upsell .use-it .use-cases .case .title { font-weight: 700; font-size: 16px; line-height: 19px; } .fuel-upsell .use-it .use-cases .case .reason { margin-top: 10px; font-weight: 400; font-size: 16px; line-height: 24px; } .fuel-upsell .use-it .product-image { margin-bottom: 0!important; } .fuel-upsell .btn-skip { font-size: 15px; line-height: 18px; display: block; margin: 20px 0; text-align: center; width: 100%; -webkit-text-decoration-line: underline; text-decoration-line: underline; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell .btn-skip { font-size: 18px!important; margin: 60px 0!important; } } .fuel-upsell .offer-plans .plan-holder { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder { max-width: 1200px; margin: 0 auto; } .fuel-upsell .offer-plans .plan-holder .regular { padding-top: 55px!important; } } .fuel-upsell .offer-plans .plan-holder .most-popular-heading { font-weight: 900; font-size: 16px; line-height: 19px; text-transform: uppercase; color: #fff; text-align: center; margin-bottom: 15px; } .fuel-upsell .offer-plans .plan-holder .plan { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 100%; flex-basis: 100%; padding: 20px; background: #c4c4c41a; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan { -ms-flex-preferred-size: 30%; flex-basis: 30%; background: 0 0; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box { background: #fff; position: relative; text-align: left!important; border-radius: 10px; padding: 35px 25px; -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.1); box-shadow: 0 4px 20px rgba(0,0,0,.1); } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box { height: 280px; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box img { position: absolute; right: 25px; bottom: 90px; opacity: .8; } @media only screen and (max-width:640px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box img { right: 25px!important; bottom: 100px!important; width: 60px; height: 60px; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-title { font-size: 24px; line-height: 29px; font-weight: 600; color: #222; opacity: .8; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price { font-weight: 600; font-size: 16px; margin-top: 20px; color: #222; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price sup { top: -15px; font-size: 25px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price span { font-weight: 900; margin-left: 4px; margin-right: 5px; font-size: 46px; line-height: 55px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; margin-top: 20px; font-size: 16px; line-height: 19px; text-transform: capitalize; border: 0; padding: 15px; color: #fff; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta { position: absolute; bottom: 20px; left: 10%; width: 80%; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta:hover { opacity: .9; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .total-price { font-size: 16px; line-height: 26px; color: #222; margin: 15px 0; opacity: .5; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .save-label { position: absolute; top: 25px; right: 25px; background: #00c85c; border-radius: 8px; padding: 8px 15px; color: #fff; font-weight: 600; font-size: 14px; text-align: center; line-height: 17px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .save-label.blue { background: #00b6ef!important; } .fuel-upsell .offer-plans .plan-holder .plan.most-popular { background: #ff3464cf; } @media only screen and (min-width:1025px) { .fuel-upsell .nutritionist { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .nutritionist .photo { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 40%; flex-basis: 40%; } } .fuel-upsell .nutritionist .promise { padding: 20px; color: #000; font-style: italic; } @media only screen and (min-width:1025px) { .fuel-upsell .nutritionist .promise { -ms-flex-preferred-size: 60%; flex-basis: 60%; } } .fuel-upsell .nutritionist .promise .position { font-weight: 700; font-size: 16px; font-style: normal; line-height: 30px; } .fuel-upsell .nutritionist .promise .fullname { font-weight: 700; font-style: normal; font-size: 20px; line-height: 30px; } .upsell-new { font-family: Lato; } .upsell-new h3 { margin-top: 70px; font-style: normal; font-weight: 900; font-size: 32px; line-height: 38px; letter-spacing: .0084em; color: #000; text-align: left; } .upsell-new h3.secondary { margin-top: 30px; } .upsell-new h3 span { color: #ff2e63; } .upsell-new .upsell-logo { max-width: 125px; margin-top: 30px; } .upsell-new .success-msg p { text-align: left; font-family: Lato; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: .0084em; margin-bottom: 20px; } .upsell-new .additional-info span { font-weight: 600; color: #56468f; } .upsell-new .reviews { margin-top: 30px; margin-bottom: 30px; } .upsell-new .reviews .review { margin-bottom: 30px; } .upsell-new .reviews .review .review-thumbnail { display: inline-block; width: 20%; vertical-align: top; max-width: 75px; } .upsell-new .reviews .review .review-thumbnail img { max-width: 100%; border-radius: 50%; } .upsell-new .reviews .review .review-data { display: inline-block; width: 75%; text-align: left; padding-left: 15px; } .upsell-new .reviews .review .review-data .name { font-style: normal; font-weight: 700; font-size: 16px; line-height: 19px; color: #000; margin: 10px 0; } .upsell-new .reviews .review .review-data .review-text { font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: .0084em; color: #1d1d1d; } .upsell-new .offer { background: #fff; border-radius: 30px; max-width: 400px; margin: 30px auto; font-family: Lato; -webkit-box-shadow: 0 0 15px 4px rgba(0,0,0,.05); box-shadow: 0 0 15px 4px rgba(0,0,0,.05); position: relative; } .upsell-new .offer .current-price { font-style: normal; font-weight: 900; color: #ff2e63; padding-top: 50px; font-size: 46px; line-height: 55px; } .upsell-new .offer .old-price { font-style: normal; margin-top: 10px; font-weight: 400; font-size: 14px!important; line-height: 20px; letter-spacing: .84px; color: #1d1d1d; mix-blend-mode: normal; opacity: .6; } .upsell-new .offer .old-price span { text-decoration: line-through; } .upsell-new .offer .separator { background: #000; mix-blend-mode: normal; width: 80%; height: 1px; margin: 15px auto; opacity: .08; } .upsell-new .offer .opportunity { font-style: normal; font-weight: 700; text-transform: uppercase; } .upsell-new .offer .not-available-again,.upsell-new .offer .opportunity { font-size: 14px; line-height: 24px; text-align: center; letter-spacing: .84px; color: #1d1d1d; } .upsell-new .offer .discount { left: 0; top: 25px; position: absolute; color: #fff; background: #56468f; font-family: Lato; font-style: normal; font-weight: 700; text-transform: uppercase; font-size: 14px; line-height: 24px; padding: 1px 15px; border-radius: 0 100px 100px 0; } .upsell-new .offer-timer { text-align: left; font-family: Lato; font-style: normal; font-weight: 900; font-size: 24px; line-height: 32px; margin-top: 15px; letter-spacing: .0084em; color: #1d1d1d; } .upsell-new .offer-timer span { color: #56468f; } .upsell-new .act-fast { margin-top: 15px; text-align: left; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; color: #1d1d1d; } .upsell-new .act-fast,.upsell-progress { font-family: Lato; letter-spacing: .0084em; } .upsell-progress { margin: 30px auto; margin-bottom: 60px; position: relative; color: #000; } .upsell-progress .bar { position: relative; width: 100%; height: 3px; background: #c4c4c4; } .upsell-progress .bar .filler { width: 50%; height: 3px; position: absolute; left: 0; top: 0; background: #ff2e63; } .upsell-progress .bar .start { left: -1px; } .upsell-progress .bar .current,.upsell-progress .bar .start { width: 10px; height: 10px; background: #ff2e63; border-radius: 50%; position: absolute; top: -4px; } .upsell-progress .bar .current { left: 50%; margin-left: -5px; } .upsell-progress .bar .finish { width: 10px; height: 10px; background: #c4c4c4; border-radius: 50%; position: absolute; right: -1px; top: -4px; } .upsell-progress .starting-status { left: 0; text-align: left; } .upsell-progress .current-status,.upsell-progress .starting-status { position: absolute; color: #ff3464; top: 15px; font-size: 12px; line-height: 16px; } .upsell-progress .current-status { left: 50%; text-align: center; margin-left: -20px; } .upsell-progress .finish-status { position: absolute; right: 0; top: 15px; text-align: right; font-size: 12px; line-height: 16px; } .quiz-loader .b-logo { text-align: center; margin-bottom: 60px; } .quiz-loader .loader-wrapper { padding: 40px; } .quiz-loader .c-progress-bar { min-height: 6px; width: 100%; display: inline-block; margin-top: 0; background: rgba(255,46,99,.2); position: absolute; top: 0; z-index: 1; border-radius: 10px; overflow: hidden; } @media only screen and (max-width:640px) { .quiz-loader .c-progress-bar { display: block; } } .quiz-loader .c-progress-bar .c-progress-bar--process { height: 100%; position: absolute; left: 0; background: #ff2e63; width: 8.33333%; border-radius: 10px; } .quiz-loader .e-progressbar { width: 100%; height: 4px; border-radius: 5px; position: relative; background: rgba(86,70,143,.4); margin: auto; } .quiz-loader .e-progressbar .e-progressbar--mesure { height: 100%; background: #56468f; position: absolute; top: 0; left: 0; bottom: 0; right: 0; border-radius: 10px; width: 0; } .quiz-loader .e-progressbar .e-progressbar--percentage { position: absolute; left: 0; right: 0; top: -43px; margin: auto; width: 100px; font-weight: 500; color: #ff3464; text-align: center; font-size: 24px; } .quiz-loader .e-progress-status-inner p { display: none; } .quiz-loader .e-progress-status { text-align: center; width: 100%; padding-top: 20px; margin: auto; margin-top: 30px; color: #1a1e27; opacity: .5; } .quiz-loader .b-progressbar { max-width: 280px; } .quiz-loader .b-progressbar img { max-width: 100%; } .quiz-loader .b-progressbar-title { font-size: 18px; text-align: center; margin-top: 10px; color: #56468f; } .summary-container .b-quotes { width: 100%; display: block; text-align: center; margin-bottom: 30px; } .loved-foods-heading,.summary-container .summary-quote { font-size: 24px; font-family: Lato,Montserrat; } .loved-foods-heading { text-align: center; font-weight: 700; margin-top: 10px; } #selected_foods i { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: .43; } .loved-foods { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 15px; } .loved-foods .food-item { margin-bottom: 15px; -ms-flex-preferred-size: 33%; flex-basis: 33%; text-align: center; } @media only screen and (min-width:1000px) and (max-width:1200px) { .background { z-index: -1; right: -150px!important; } } @media only screen and (min-width:900px) and (max-width:1000px) { #dynamic-landing .background { z-index: -1; right: -300px!important; } #dynamic-landing h1 { font-size: 42px!important; } #dynamic-landing footer a { margin-right: 25px!important; } } @media only screen and (min-width:500px) and (max-width:767px) { #dynamic-landing .background { padding-top: 250px!important; } #dynamic-landing h1 { margin-top: 70px!important; } } @media only screen and (max-width:767px) { #dynamic-landing .landing-logo { margin-top: 20px!important; } #dynamic-landing .holiday-heading { margin-top: -160px!important; } #dynamic-landing .background { z-index: -1; background: url(../images/landings/5-mobile.png)!important; background-size: cover!important; position: relative!important; margin-top: 20px!important; padding-top: 200px!important; opacity: .15!important; } #dynamic-landing .background .shape-desktop { display: none; } #dynamic-landing .background .shape-mobile { display: block; margin-bottom: -150px; } #dynamic-landing h1 { font-size: 32px!important; line-height: 38px!important; margin-top: -120px!important; } #dynamic-landing .gender-selection { margin-top: 60px!important; } #dynamic-landing .gender-buttons a { display: block; margin-left: 0!important; width: 100%; max-width: 100%!important; } #dynamic-landing footer { margin-top: 90px!important; } #dynamic-landing footer a { display: block; text-align: center; margin-bottom: 15px; } #dynamic-landing footer .disclaimer { text-align: center; } #dynamic-landing .mobile-separator { width: 100%; height: 2px; background: #fff; display: block!important; position: absolute; left: 0; bottom: -1px; } } @media only screen and (min-width:768px) and (max-width:900px) { #dynamic-landing .background { z-index: -1; right: -360px!important; top: -25px; } #dynamic-landing h1 { font-size: 42px!important; } #dynamic-landing footer a { margin-right: 25px!important; } } #dynamic-landing { position: relative; } #dynamic-landing .background { background: url(../images/landings/5-desktop.png); position: absolute; right: 0; opacity: .6; top: 0; background-size: contain; } #dynamic-landing .mobile-separator { display: none; } #dynamic-landing .shape-mobile { display: none; width: 100%; margin-bottom: -1px; } #dynamic-landing .landing-logo { max-width: 125px; margin-top: 30px; } #dynamic-landing h1 { font-family: Lato; font-style: normal; font-weight: 900; margin-top: 120px; font-size: 46px; line-height: 55px; color: #1d1d1d; } #dynamic-landing .gender-buttons a { border-radius: 9px; text-align: left; padding: 18px; height: 60px; font-family: Lato; font-style: normal; font-weight: 900; position: relative; font-size: 18px; line-height: 24px; letter-spacing: .508928px; color: #fff!important; } #dynamic-landing .gender-buttons a img { position: absolute; right: 16px; top: 22px; } #dynamic-landing .gender-buttons .btn-female { background: #ff3464; -webkit-box-shadow: 0 4px 11px rgba(255,52,100,.5); box-shadow: 0 4px 11px rgba(255,52,100,.5); } #dynamic-landing .gender-buttons .btn-female:hover { text-decoration: none; opacity: .9; } #dynamic-landing .gender-buttons .btn-male { background: #56468f; -webkit-box-shadow: 0 4px 11px rgba(86,70,143,.5); box-shadow: 0 4px 11px rgba(86,70,143,.5); } #dynamic-landing .gender-buttons .btn-male:hover { text-decoration: none; opacity: .9; } #dynamic-landing footer { margin-top: 195px; margin-bottom: 50px; } #dynamic-landing footer a { font-family: Lato; font-style: normal; font-weight: 700; font-size: 16px; line-height: 24px; color: #1d1d1d; margin-right: 40px; } #dynamic-landing footer .disclaimer { font-family: Lato; font-style: normal; font-weight: 400; font-size: 13px; opacity: .3; line-height: 16px; margin-top: 20px; color: #000; } #dynamic-landing p.landing-description { font-family: Lato; max-width: 420px; margin-top: 10px; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; } #dynamic-landing p.gender-selection { font-family: Lato; font-style: normal; font-weight: 700; font-size: 20px; line-height: 24px; margin-top: 20px; } @media only screen and (min-width:900px) { .loved-foods-heading { margin-bottom: 20px; } } @media only screen and (min-width:500px) and (max-width:1000px) { #landing { background: #fff!important; } #landing h1 { margin-top: 30px!important; } } .mcwidget-checkbox { position: relative; left: -10px; } .mcwidget-checkbox>div { text-align: left!important; } .gender-disclaimer { margin-top: 15px; max-width: 80%; padding: 10px; color: #504648; } .sales-pitch { font-size: 18px; font-family: Lato; line-height: 1.5; text-align: center; max-width: 600px; margin: 30px auto; margin-top: 10px; } .plan-benefits { font-size: 16px; margin-bottom: 30px; } .plan-benefits li,.plan-benefits ul { list-style: none; padding-left: 0; max-width: 350px; margin: 0 auto; } .plan-benefits i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; } .landing2020 { position: relative; } .landing2020 .badge2020 { position: absolute; top: 15px; right: 0; width: 200px; height: 150px; background: url(../images/newYear.png) no-repeat; background-size: contain; } @media only screen and (min-width:1025px) { .landing2020 .badge2020 { display: none; } } .buy-get { font-size: 20px; font-weight: 600; color: #000; font-family: Lato; } .buy-get span { color: #ff3464!important; } #upsell-modal .modal-content { padding-bottom: 100px!important; } @media only screen and (min-width:1025px) { #upsell-modal .modal-content { padding-bottom: 150px!important; } } #upsell-modal .b-form { margin: 0 auto; } #upsell-modal h2.modal-title { font-weight: 700; font-size: 24px; float: left; } #upsell-modal h3 { margin-top: 0!important; } #upsell-modal .btn-primary { margin: 0 auto; } #upsell-modal .btn-primary:hover { opacity: .9; } #upsell-modal .price-block { background: #fff; border-radius: 30px; max-width: 400px; margin: 30px auto; font-family: Lato; text-align: center; -webkit-box-shadow: 0 0 15px 4px rgba(0,0,0,.05); box-shadow: 0 0 15px 4px rgba(0,0,0,.05); position: relative; } #upsell-modal .price-block .current-price { font-style: normal; font-weight: 900; color: #ff2e63; padding-top: 50px; font-size: 46px; line-height: 55px; } #upsell-modal .price-block .old-price { font-style: normal; margin-top: 10px; font-weight: 400; font-size: 14px!important; line-height: 20px; letter-spacing: .84px; color: #1d1d1d; mix-blend-mode: normal; opacity: .6; } #upsell-modal .price-block .opportunity { font-style: normal; font-weight: 700; font-size: 14px; line-height: 24px; text-align: center; text-transform: uppercase; letter-spacing: .84px; color: #1d1d1d; } #upsell-modal .price-block .not-available-again { font-size: 14px; line-height: 24px; text-align: center; letter-spacing: .84px; color: #1d1d1d; padding-bottom: 10px; } #upsell-modal .price-block .separator { background: #000; mix-blend-mode: normal; width: 80%; height: 1px; margin: 15px auto; opacity: .08; } #upsell-modal .price-block .discount { left: 0; top: 25px; position: absolute; color: #fff; background: #56468f; font-family: Lato; font-style: normal; font-weight: 700; text-transform: uppercase; font-size: 14px; line-height: 24px; padding: 1px 15px; border-radius: 0 100px 100px 0; } #upsell-modal .btn-skip { color: #444; text-align: center; display: block; margin-top: 15px; text-decoration: underline; font-size: 16px; } #upsell-modal ul { list-style: none; padding-left: 0; margin: 20px 0; } #upsell-modal ul li { list-style: none; } #upsell-modal ul i { font-weight: 700; color: #ff3464; margin-right: 5px; } .target-weight-warning { margin-bottom: 30px; padding: 15px; margin-top: -10px; border: 2px solid #ff3464; background: #ff34641f; font-size: 13px; } @media only screen and (max-width:640px) { .benefits-mxn { margin-top: 15px; } } @media only screen and (max-width:640px) { .plan-selection.upgraded { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; margin-top: -20px!important; } } .benefits-listed.upgraded { margin-top: 15px; } #prequiz #landing .container { max-width: 600px!important; } .reviews-sticky { width: 100%; height: 60px; position: fixed; top: 0; left: 0; background: #fff; z-index: 9999; } @media only screen and (min-width:1025px) { .recover-plan { position: absolute; width: 285px; top: 5px; right: 25px; } } .recover-plan a { font-size: 16px!important; padding: 10px!important; } .plan-recovery h1 { font-weight: 600; margin-bottom: 30px; } .freebie-offer { position: fixed; bottom: 0; left: 0; background: #ff3464d9; width: 100%; z-index: 3; color: #fff; padding: 10px; text-align: center; font-weight: 600; } .what-you-get-block { display: none; } .what-you-get-block h2 { font-size: 22px!important; text-transform: uppercase; font-weight: 700; margin-bottom: 0!important; } @media only screen and (min-width:1025px) { .what-you-get-block .what-you-get { display: -webkit-box; display: -ms-flexbox; display: flex; padding-top: 15px; } } .what-you-get-block .what-you-get img { width: 550px; max-width: 100%; } .what-you-get-block .what-you-get .feature { margin-bottom: 15px; } .what-you-get-block .what-you-get .feature strong { display: block; margin-bottom: 5px; } @media only screen and (max-width:640px) { .plan-selection.plans-mxn { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; margin-top: -20px!important; } } .plan-selection.plans-mxn .pricing-options .pricing-option .option-price .old-price { font-size: 16px!important; } .plan-selection.plans-mxn .option-price { left: 10px; font-size: 26px!important; } .plan-selection.plans-mxn .option-price span { font-size: 16px!important; margin-right: 3px!important; } .plan-selection.plans-mxn .option-title { font-size: 20px!important; position: relative; left: 5px; } .plans-pln .pricing-options .pricing-option .discount,.plans-rub .pricing-options .pricing-option .discount { font-size: 12px!important; } .plans-pln .pricing-options .pricing-option .option-title,.plans-rub .pricing-options .pricing-option .option-title { font-size: 18px!important; } #billing.m-checkout--11 .e-intro-title { margin: 0 auto; max-width: 750px; } .m-billing--v6.m-billing--v7 h2 { margin: 25px auto; max-width: 750px; } .quiz-disclaimer { margin-top: 25px; font-size: 12px; line-height: 16px; } .upsell-new h3.secondary strong { color: #ff2e63; } .why-works ul { list-style: none; font-size: 16px; line-height: 24px; } .why-works ul li { margin-bottom: 5px; } .why-works i { color: #ff3464; font-weight: 700; font-size: 18px; margin-right: 5px; } @media only screen and (max-width:640px) { .adyen-checkout__input--large { width: 280px!important; } } @media only screen and (max-width:380px) { .adyen-checkout__input--large { width: 250px!important; } } @media only screen and (max-width:640px) { .adyen-checkout__input--small { width: 120px!important; } } @media only screen and (max-width:380px) { .adyen-checkout__input--small { width: 110px!important; } } .btn-secondary.cancel-trial { border-radius: 22px; text-align: center; display: block; width: 100%; color: #fff; font-size: 20px; border: 0; font-weight: 700; outline: none; margin-top: 15px; letter-spacing: .68px; padding: 12px; line-height: 23px; line-height: normal; min-height: auto; } .bhb-upsell .product-info .container { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 60px 20px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .container { display: block; } } .bhb-upsell .product-info .packshot { -ms-flex-preferred-size: 40%; flex-basis: 40%; text-align: center; } .bhb-upsell .product-info .bhb-info { -ms-flex-preferred-size: 46%; flex-basis: 46%; text-align: left; } .bhb-upsell .product-info .bhb-info h2 { font-weight: 700!important; text-align: left!important; font-size: 40px!important; margin-bottom: 15px; line-height: 49px!important; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info h2 { font-size: 30px!important; line-height: 36px!important; } } .bhb-upsell .product-info .bhb-info .subheading { font-weight: 700; font-size: 24px; margin-bottom: 30px; line-height: 32px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info .subheading { font-size: 16px; line-height: 24px; } } .bhb-upsell .product-info .bhb-info .bhb-benefit { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 20px; } .bhb-upsell .product-info .bhb-info .bhb-benefit .benefit-title { font-weight: 500; font-size: 20px; line-height: 24px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info .bhb-benefit .benefit-title { font-size: 16px; line-height: 24px; } } .bhb-upsell .product-info .bhb-info .bhb-benefit .icon { background: #ff346436; color: #ff3464; border-radius: 50%; margin-right: 10px; width: 48px; height: 48px; font-size: 24px; line-height: 48px; text-align: center; } .bhb-upsell .key-benefits { background: #f3f4f8; padding: 60px 20px; } .bhb-upsell .key-benefits h2 { font-weight: 700; font-size: 40px; line-height: 36px; margin-bottom: 40px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .key-benefits h2 { font-weight: 700; font-size: 24px; line-height: 29px; } } .bhb-upsell .key-benefits .benefit-list { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 900px; margin: 0 auto; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .bhb-upsell .key-benefits .benefit-list { display: block; } } .bhb-upsell .key-benefits .benefit-list .key-benefit { -ms-flex-preferred-size: 48%; flex-basis: 48%; background: #fff; -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.05); box-shadow: 0 4px 20px rgba(0,0,0,.05); border-radius: 10px; margin-bottom: 30px; padding: 30px; } .bhb-upsell .key-benefits .benefit-list .key-benefit img { margin-bottom: 15px; } .bhb-upsell .key-benefits .benefit-list .key-benefit strong { font-size: 18px; display: block; margin-bottom: 10px; line-height: 30px; } .bhb-upsell .key-benefits .benefit-list .key-benefit p { font-size: 16px; line-height: 30px; opacity: .8; } .bhb-upsell hr { margin-top: 15px; margin-bottom: 15px; } .bhb-upsell .bhb-product { margin: 30px auto; display: block; max-width: 70%!important; } .bhb-upsell .summary-item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 400; font-size: 16px; line-height: 20px; } .bhb-upsell .summary-item .discount { color: #f70d0d; } .bhb-upsell .summary-item.total { font-weight: 700; font-size: 24px; margin-bottom: 30px; line-height: 29px; } .bhb-upsell .get-bhb { padding: 60px 20px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb { padding: 40px 0; } } .bhb-upsell .get-bhb img { max-width: 620px; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb img { max-width: 100%; margin-bottom: 30px; } } .bhb-upsell .get-bhb h2 { font-weight: 700; font-size: 40px; line-height: 36px; margin-bottom: 40px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb h2 { font-size: 30px; line-height: 36px; text-align: left; } } .bhb-upsell .offer-plans { padding-bottom: 30px; } .bhb-upsell .benefit-bullets { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 900px; margin: 20px auto; } @media only screen and (max-width:640px) { .bhb-upsell .benefit-bullets { display: block; } } .bhb-upsell .benefit-bullets .bullet { -ms-flex-preferred-size: 47%; flex-basis: 47%; color: #ff3464; } .bhb-upsell .benefit-bullets .bullet li { margin-bottom: 15px; } .bhb-upsell .benefit-bullets .bullet span { font-weight: 400; font-size: 18px; opacity: .8; color: #222; line-height: 26px; } .bhb-upsell .info-block { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } @media only screen and (max-width:640px) { .bhb-upsell .info-block { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .bhb-upsell .info-block p { font-size: 16px!important; line-height: 24px!important; } .bhb-upsell .info-block .info-content { margin-left: 0; margin-right: 0!important; padding: 15px; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } .bhb-upsell .info-block.reversed { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .bhb-upsell .info-block.reversed .info-content { margin-right: 0; margin-left: 110px; } @media only screen and (max-width:640px) { .bhb-upsell .info-block.reversed .info-content { margin-left: 0; padding: 15px; -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } @media only screen and (max-width:640px) { .bhb-upsell .info-block .info-photo { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } } .bhb-upsell .info-block .info-content { max-width: 600px; margin-right: 110px; } .bhb-upsell .info-block h3 { font-weight: 700; font-size: 40px; line-height: 49px; margin-bottom: 35px; } @media only screen and (max-width:640px) { .bhb-upsell .info-block h3 { font-weight: 700; margin-top: 35px!important; font-size: 24px; line-height: 29px; } } .bhb-upsell .info-block p { font-size: 20px; line-height: 28px; mix-blend-mode: normal; opacity: .8; margin-bottom: 30px; } .bhb-upsell .promise-points { background: #f3f4f8; padding: 60px 20px; padding-bottom: 40px; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points { padding: 40px 0; } } .bhb-upsell .promise-points h2 { font-weight: 700; font-size: 40px; line-height: 48px; max-width: 580px; margin: 0 auto; margin-bottom: 50px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points h2 { font-size: 24px; line-height: 32px; text-align: left; } } .bhb-upsell .promise-points .promises { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 800px; margin: 20px auto; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points .promises { display: block; } } .bhb-upsell .promise-points .promises .promise { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 40px; -ms-flex-preferred-size: 45%; flex-basis: 45%; } .bhb-upsell .promise-points .promises .promise .promise-icon { width: 48px; height: 48px; border-radius: 50%; line-height: 48px; text-align: center; background: #e9edf3; margin-right: 30px; } .bhb-upsell .promise-points .promises .promise .promise-title { font-weight: 500; font-size: 18px; line-height: 24px; opacity: .8; -ms-flex-preferred-size: 70%; flex-basis: 70%; }
assets/frontend/css/landing - Copy.css
body{background: #e1e3da !important;} #gender-select{text-align: center;} #gender-select label { margin: 60px; vertical-align: middle; border-radius: 50%; padding-top: 160px; font-size: 20px; font-weight: 400; } #gender-male-label, #gender-female-label, input[name="gender"]:after, input[name="UserSettingsForm[gender]"]:after { display: inline-block; margin: 60px; border-radius: 50%; color: white; transition: box-shadow 1s, color 1s, opacity 1s; opacity: 0.6; vertical-align: middle; cursor: pointer; } #gender-male-label { background: url(../images/male.png) no-repeat; width: 269px; height: 268px; content: ' '; background-color: transparent !important; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 700; } input[name="gender"], input[name="UserSettingsForm[gender]"] { -webkit-appearance: none; -moz-appearance: none; -o-appearance: none; -ms-appearance: none; appearance: none; outline: none; border-radius: 0; display: none; } input[name="gender"]:after, #gender-select span { vertical-align: middle; } #gender-female-label { background: url(../images/female.png) no-repeat; width: 269px; height: 267px; content: ' '; } #gender-male-label:hover, #gender-female-label:hover, #gender-male-label.checked, #gender-female-label.checked, input[name="gender"]:checked:after, input[name="gender"]:hover:after, input[name="UserSettingsForm[gender]"]:checked:after, input[name="UserSettingsForm[gender]"]:hover:after { box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4); color: rgba(255, 255, 255, 0.6); opacity: 1; } /*#landing{ background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), url(../images/landing-bg-desktop.jpg); } */ .avocado,.back,.beef,.butter,.capers,.cheese,.chicken,.coconut,.egg,.eggs,.female,.fish,.forward-female,.forward-male,.goat-cheese,.ham,.icons,.lamb,.male,.milk,.mushroom,.mushrooms,.nuts,.olives,.onions,.pork,.seafood,.veal { display: inline-block; background: url(../images/icons.png) no-repeat; overflow: hidden; text-indent: -9999px; text-align: left; } .icons { background-position: -2px 0; width: 50px; height: 852px; } .beef { background-position: -2px -854px; width: 40px; height: 29px; } .butter { background-position: -2px -885px; width: 40px; height: 32px; } .cheese { background-position: -2px -919px; width: 40px; height: 26px; } .fish { background-position: -2px -947px; width: 40px; height: 27px; } .goat-cheese { background-position: -2px -976px; width: 40px; height: 29px; } .nuts { background-position: -2px -1007px; width: 40px; height: 21px; } .coconut { background-position: -2px -1030px; width: 39px; height: 32px; } .chicken { background-position: -2px -1064px; width: 37px; height: 32px; } .lamb { background-position: -2px -1098px; } .lamb,.seafood { width: 36px; height: 32px; } .seafood { background-position: -2px -1132px; } .onions { background-position: -2px -1166px; width: 35px; height: 32px; } .ham { background-position: -2px -1200px; width: 34px; height: 32px; } .olives { background-position: -2px -1234px; width: 33px; height: 32px; } .avocado { background-position: -2px -1268px; } .avocado,.milk { width: 32px; height: 32px; } .milk { background-position: -2px -1302px; } .veal { background-position: -2px -1336px; width: 32px; height: 32px; } .capers { background-position: -2px -1370px; width: 31px; height: 32px; } .mushroom,.mushrooms { background-position: -2px -1404px; width: 31px; height: 32px; } .egg,.eggs { background-position: -2px -1438px; width: 26px; height: 32px; } .female { background-position: -2px -1472px; width: 22px; height: 30px; } .male { background-position: -26px -1472px; width: 22px; height: 29px; } .pork { background-position: -26px -1503px; width: 22px; height: 32px; } .back { background-position: -35px -1370px; width: 15px; height: 25px; } .forward-female { background-position: -41px -1064px; width: 9px; height: 15px; } .forward-male { background-position: -41px -1081px; width: 9px; height: 15px; }/*!* Bootstrap v3.4.1 (https://getbootstrap.com/) * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*//*!normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css*/html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary { display: block; } audio,canvas,progress,video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden],template { display: none; } a { background-color: transparent; } a:active,a:hover { outline: 0; } abbr[title] { border-bottom: none; text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; } b,strong { font-weight: 700; } dfn { font-style: italic; } h1 { font-size: 2em; margin: .67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub,sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code,kbd,pre,samp { font-family: monospace,monospace; font-size: 1em; } button,input,optgroup,select,textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button,select { text-transform: none; } button,html input[type=button],input[type=reset],input[type=submit] { -webkit-appearance: button; cursor: pointer; } button[disabled],html input[disabled] { cursor: default; } button::-moz-focus-inner,input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type=checkbox],input[type=radio] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button { height: auto; } input[type=search] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid silver; margin: 0 2px; padding: .35em .625em .75em; } textarea { overflow: auto; } optgroup { font-weight: 700; } table { border-collapse: collapse; border-spacing: 0; } td,th { padding: 0; }/*!Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css*/@media print { *,:after,:before { color: #000!important; text-shadow: none!important; background: 0 0!important; -webkit-box-shadow: none!important; box-shadow: none!important; } a,a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after,a[href^="javascript:"]:after { content: ""; } blockquote,pre { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } img,tr { page-break-inside: avoid; } img { max-width: 100%!important; } h2,h3,p { orphans: 3; widows: 3; } h2,h3 { page-break-after: avoid; } .navbar { display: none; } .btn>.caret,.dropup>.btn>.caret { border-top-color: #000!important; } .label { border: 1px solid #000; } .table { border-collapse: collapse!important; } .table td,.table th { background-color: #fff!important; } .table-bordered td,.table-bordered th { border: 1px solid #ddd!important; } } @font-face { font-family:Glyphicons Halflings;src:url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularab2e.eot?f4769f9bdb7466be65088239c12046d1);src:url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularfc81.eot?f4769f9bdb7466be65088239c12046d1?#iefix) format("embedded-opentype"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularc7ba.woff2?448c34a56d699c29117adc64c43affeb) format("woff2"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular70ac.woff?fa2772327f55d8198301fdb8bcfc8158) format("woff"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular1d5b.ttf?e18bbf611f2a2e43afc071aa2f4e1512) format("truetype"),url(../fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regularb9d6.svg?89889688147bd7575d6327160d64e760#glyphicons_halflingsregular) format("svg"); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: Glyphicons Halflings; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "*"; } .glyphicon-plus:before { content: "+"; } .glyphicon-eur:before,.glyphicon-euro:before { content: "\20AC"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270F"; } .glyphicon-glass:before { content: "\E001"; } .glyphicon-music:before { content: "\E002"; } .glyphicon-search:before { content: "\E003"; } .glyphicon-heart:before { content: "\E005"; } .glyphicon-star:before { content: "\E006"; } .glyphicon-star-empty:before { content: "\E007"; } .glyphicon-user:before { content: "\E008"; } .glyphicon-film:before { content: "\E009"; } .glyphicon-th-large:before { content: "\E010"; } .glyphicon-th:before { content: "\E011"; } .glyphicon-th-list:before { content: "\E012"; } .glyphicon-ok:before { content: "\E013"; } .glyphicon-remove:before { content: "\E014"; } .glyphicon-zoom-in:before { content: "\E015"; } .glyphicon-zoom-out:before { content: "\E016"; } .glyphicon-off:before { content: "\E017"; } .glyphicon-signal:before { content: "\E018"; } .glyphicon-cog:before { content: "\E019"; } .glyphicon-trash:before { content: "\E020"; } .glyphicon-home:before { content: "\E021"; } .glyphicon-file:before { content: "\E022"; } .glyphicon-time:before { content: "\E023"; } .glyphicon-road:before { content: "\E024"; } .glyphicon-download-alt:before { content: "\E025"; } .glyphicon-download:before { content: "\E026"; } .glyphicon-upload:before { content: "\E027"; } .glyphicon-inbox:before { content: "\E028"; } .glyphicon-play-circle:before { content: "\E029"; } .glyphicon-repeat:before { content: "\E030"; } .glyphicon-refresh:before { content: "\E031"; } .glyphicon-list-alt:before { content: "\E032"; } .glyphicon-lock:before { content: "\E033"; } .glyphicon-flag:before { content: "\E034"; } .glyphicon-headphones:before { content: "\E035"; } .glyphicon-volume-off:before { content: "\E036"; } .glyphicon-volume-down:before { content: "\E037"; } .glyphicon-volume-up:before { content: "\E038"; } .glyphicon-qrcode:before { content: "\E039"; } .glyphicon-barcode:before { content: "\E040"; } .glyphicon-tag:before { content: "\E041"; } .glyphicon-tags:before { content: "\E042"; } .glyphicon-book:before { content: "\E043"; } .glyphicon-bookmark:before { content: "\E044"; } .glyphicon-print:before { content: "\E045"; } .glyphicon-camera:before { content: "\E046"; } .glyphicon-font:before { content: "\E047"; } .glyphicon-bold:before { content: "\E048"; } .glyphicon-italic:before { content: "\E049"; } .glyphicon-text-height:before { content: "\E050"; } .glyphicon-text-width:before { content: "\E051"; } .glyphicon-align-left:before { content: "\E052"; } .glyphicon-align-center:before { content: "\E053"; } .glyphicon-align-right:before { content: "\E054"; } .glyphicon-align-justify:before { content: "\E055"; } .glyphicon-list:before { content: "\E056"; } .glyphicon-indent-left:before { content: "\E057"; } .glyphicon-indent-right:before { content: "\E058"; } .glyphicon-facetime-video:before { content: "\E059"; } .glyphicon-picture:before { content: "\E060"; } .glyphicon-map-marker:before { content: "\E062"; } .glyphicon-adjust:before { content: "\E063"; } .glyphicon-tint:before { content: "\E064"; } .glyphicon-edit:before { content: "\E065"; } .glyphicon-share:before { content: "\E066"; } .glyphicon-check:before { content: "\E067"; } .glyphicon-move:before { content: "\E068"; } .glyphicon-step-backward:before { content: "\E069"; } .glyphicon-fast-backward:before { content: "\E070"; } .glyphicon-backward:before { content: "\E071"; } .glyphicon-play:before { content: "\E072"; } .glyphicon-pause:before { content: "\E073"; } .glyphicon-stop:before { content: "\E074"; } .glyphicon-forward:before { content: "\E075"; } .glyphicon-fast-forward:before { content: "\E076"; } .glyphicon-step-forward:before { content: "\E077"; } .glyphicon-eject:before { content: "\E078"; } .glyphicon-chevron-left:before { content: "\E079"; } .glyphicon-chevron-right:before { content: "\E080"; } .glyphicon-plus-sign:before { content: "\E081"; } .glyphicon-minus-sign:before { content: "\E082"; } .glyphicon-remove-sign:before { content: "\E083"; } .glyphicon-ok-sign:before { content: "\E084"; } .glyphicon-question-sign:before { content: "\E085"; } .glyphicon-info-sign:before { content: "\E086"; } .glyphicon-screenshot:before { content: "\E087"; } .glyphicon-remove-circle:before { content: "\E088"; } .glyphicon-ok-circle:before { content: "\E089"; } .glyphicon-ban-circle:before { content: "\E090"; } .glyphicon-arrow-left:before { content: "\E091"; } .glyphicon-arrow-right:before { content: "\E092"; } .glyphicon-arrow-up:before { content: "\E093"; } .glyphicon-arrow-down:before { content: "\E094"; } .glyphicon-share-alt:before { content: "\E095"; } .glyphicon-resize-full:before { content: "\E096"; } .glyphicon-resize-small:before { content: "\E097"; } .glyphicon-exclamation-sign:before { content: "\E101"; } .glyphicon-gift:before { content: "\E102"; } .glyphicon-leaf:before { content: "\E103"; } .glyphicon-fire:before { content: "\E104"; } .glyphicon-eye-open:before { content: "\E105"; } .glyphicon-eye-close:before { content: "\E106"; } .glyphicon-warning-sign:before { content: "\E107"; } .glyphicon-plane:before { content: "\E108"; } .glyphicon-calendar:before { content: "\E109"; } .glyphicon-random:before { content: "\E110"; } .glyphicon-comment:before { content: "\E111"; } .glyphicon-magnet:before { content: "\E112"; } .glyphicon-chevron-up:before { content: "\E113"; } .glyphicon-chevron-down:before { content: "\E114"; } .glyphicon-retweet:before { content: "\E115"; } .glyphicon-shopping-cart:before { content: "\E116"; } .glyphicon-folder-close:before { content: "\E117"; } .glyphicon-folder-open:before { content: "\E118"; } .glyphicon-resize-vertical:before { content: "\E119"; } .glyphicon-resize-horizontal:before { content: "\E120"; } .glyphicon-hdd:before { content: "\E121"; } .glyphicon-bullhorn:before { content: "\E122"; } .glyphicon-bell:before { content: "\E123"; } .glyphicon-certificate:before { content: "\E124"; } .glyphicon-thumbs-up:before { content: "\E125"; } .glyphicon-thumbs-down:before { content: "\E126"; } .glyphicon-hand-right:before { content: "\E127"; } .glyphicon-hand-left:before { content: "\E128"; } .glyphicon-hand-up:before { content: "\E129"; } .glyphicon-hand-down:before { content: "\E130"; } .glyphicon-circle-arrow-right:before { content: "\E131"; } .glyphicon-circle-arrow-left:before { content: "\E132"; } .glyphicon-circle-arrow-up:before { content: "\E133"; } .glyphicon-circle-arrow-down:before { content: "\E134"; } .glyphicon-globe:before { content: "\E135"; } .glyphicon-wrench:before { content: "\E136"; } .glyphicon-tasks:before { content: "\E137"; } .glyphicon-filter:before { content: "\E138"; } .glyphicon-briefcase:before { content: "\E139"; } .glyphicon-fullscreen:before { content: "\E140"; } .glyphicon-dashboard:before { content: "\E141"; } .glyphicon-paperclip:before { content: "\E142"; } .glyphicon-heart-empty:before { content: "\E143"; } .glyphicon-link:before { content: "\E144"; } .glyphicon-phone:before { content: "\E145"; } .glyphicon-pushpin:before { content: "\E146"; } .glyphicon-usd:before { content: "\E148"; } .glyphicon-gbp:before { content: "\E149"; } .glyphicon-sort:before { content: "\E150"; } .glyphicon-sort-by-alphabet:before { content: "\E151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\E152"; } .glyphicon-sort-by-order:before { content: "\E153"; } .glyphicon-sort-by-order-alt:before { content: "\E154"; } .glyphicon-sort-by-attributes:before { content: "\E155"; } .glyphicon-sort-by-attributes-alt:before { content: "\E156"; } .glyphicon-unchecked:before { content: "\E157"; } .glyphicon-expand:before { content: "\E158"; } .glyphicon-collapse-down:before { content: "\E159"; } .glyphicon-collapse-up:before { content: "\E160"; } .glyphicon-log-in:before { content: "\E161"; } .glyphicon-flash:before { content: "\E162"; } .glyphicon-log-out:before { content: "\E163"; } .glyphicon-new-window:before { content: "\E164"; } .glyphicon-record:before { content: "\E165"; } .glyphicon-save:before { content: "\E166"; } .glyphicon-open:before { content: "\E167"; } .glyphicon-saved:before { content: "\E168"; } .glyphicon-import:before { content: "\E169"; } .glyphicon-export:before { content: "\E170"; } .glyphicon-send:before { content: "\E171"; } .glyphicon-floppy-disk:before { content: "\E172"; } .glyphicon-floppy-saved:before { content: "\E173"; } .glyphicon-floppy-remove:before { content: "\E174"; } .glyphicon-floppy-save:before { content: "\E175"; } .glyphicon-floppy-open:before { content: "\E176"; } .glyphicon-credit-card:before { content: "\E177"; } .glyphicon-transfer:before { content: "\E178"; } .glyphicon-cutlery:before { content: "\E179"; } .glyphicon-header:before { content: "\E180"; } .glyphicon-compressed:before { content: "\E181"; } .glyphicon-earphone:before { content: "\E182"; } .glyphicon-phone-alt:before { content: "\E183"; } .glyphicon-tower:before { content: "\E184"; } .glyphicon-stats:before { content: "\E185"; } .glyphicon-sd-video:before { content: "\E186"; } .glyphicon-hd-video:before { content: "\E187"; } .glyphicon-subtitles:before { content: "\E188"; } .glyphicon-sound-stereo:before { content: "\E189"; } .glyphicon-sound-dolby:before { content: "\E190"; } .glyphicon-sound-5-1:before { content: "\E191"; } .glyphicon-sound-6-1:before { content: "\E192"; } .glyphicon-sound-7-1:before { content: "\E193"; } .glyphicon-copyright-mark:before { content: "\E194"; } .glyphicon-registration-mark:before { content: "\E195"; } .glyphicon-cloud-download:before { content: "\E197"; } .glyphicon-cloud-upload:before { content: "\E198"; } .glyphicon-tree-conifer:before { content: "\E199"; } .glyphicon-tree-deciduous:before { content: "\E200"; } .glyphicon-cd:before { content: "\E201"; } .glyphicon-save-file:before { content: "\E202"; } .glyphicon-open-file:before { content: "\E203"; } .glyphicon-level-up:before { content: "\E204"; } .glyphicon-copy:before { content: "\E205"; } .glyphicon-paste:before { content: "\E206"; } .glyphicon-alert:before { content: "\E209"; } .glyphicon-equalizer:before { content: "\E210"; } .glyphicon-king:before { content: "\E211"; } .glyphicon-queen:before { content: "\E212"; } .glyphicon-pawn:before { content: "\E213"; } .glyphicon-bishop:before { content: "\E214"; } .glyphicon-knight:before { content: "\E215"; } .glyphicon-baby-formula:before { content: "\E216"; } .glyphicon-tent:before { content: "\26FA"; } .glyphicon-blackboard:before { content: "\E218"; } .glyphicon-bed:before { content: "\E219"; } .glyphicon-apple:before { content: "\F8FF"; } .glyphicon-erase:before { content: "\E221"; } .glyphicon-hourglass:before { content: "\231B"; } .glyphicon-lamp:before { content: "\E223"; } .glyphicon-duplicate:before { content: "\E224"; } .glyphicon-piggy-bank:before { content: "\E225"; } .glyphicon-scissors:before { content: "\E226"; } .glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before { content: "\E227"; } .glyphicon-jpy:before,.glyphicon-yen:before { content: "\A5"; } .glyphicon-rub:before,.glyphicon-ruble:before { content: "\20BD"; } .glyphicon-scale:before { content: "\E230"; } .glyphicon-ice-lolly:before { content: "\E231"; } .glyphicon-ice-lolly-tasted:before { content: "\E232"; } .glyphicon-education:before { content: "\E233"; } .glyphicon-option-horizontal:before { content: "\E234"; } .glyphicon-option-vertical:before { content: "\E235"; } .glyphicon-menu-hamburger:before { content: "\E236"; } .glyphicon-modal-window:before { content: "\E237"; } .glyphicon-oil:before { content: "\E238"; } .glyphicon-grain:before { content: "\E239"; } .glyphicon-sunglasses:before { content: "\E240"; } .glyphicon-text-size:before { content: "\E241"; } .glyphicon-text-color:before { content: "\E242"; } .glyphicon-text-background:before { content: "\E243"; } .glyphicon-object-align-top:before { content: "\E244"; } .glyphicon-object-align-bottom:before { content: "\E245"; } .glyphicon-object-align-horizontal:before { content: "\E246"; } .glyphicon-object-align-left:before { content: "\E247"; } .glyphicon-object-align-vertical:before { content: "\E248"; } .glyphicon-object-align-right:before { content: "\E249"; } .glyphicon-triangle-right:before { content: "\E250"; } .glyphicon-triangle-left:before { content: "\E251"; } .glyphicon-triangle-bottom:before { content: "\E252"; } .glyphicon-triangle-top:before { content: "\E253"; } .glyphicon-console:before { content: "\E254"; } .glyphicon-superscript:before { content: "\E255"; } .glyphicon-subscript:before { content: "\E256"; } .glyphicon-menu-left:before { content: "\E257"; } .glyphicon-menu-right:before { content: "\E258"; } .glyphicon-menu-down:before { content: "\E259"; } .glyphicon-menu-up:before { content: "\E260"; } *,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: transparent; } body { font-family: Raleway,sans-serif; font-size: 14px; line-height: 1.6; color: #636b6f; background-color: #f5f8fa; } button,input,select,textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #3097d1; text-decoration: none; } a:focus,a:hover { color: #216a94; text-decoration: underline; } a:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { padding: 4px; line-height: 1.6; background-color: #f5f8fa; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 22px; margin-bottom: 22px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; } .sr-only-focusable:active,.sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role=button] { cursor: pointer; } .h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small { font-weight: 400; line-height: 1; color: #777; } .h1,.h2,.h3,h1,h2,h3 { margin-top: 22px; margin-bottom: 11px; } .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small { font-size: 65%; } .h4,.h5,.h6,h4,h5,h6 { margin-top: 11px; margin-bottom: 11px; } .h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small { font-size: 75%; } .h1,h1 { font-size: 36px; } .h2,h2 { font-size: 30px; } .h3,h3 { font-size: 24px; } .h4,h4 { font-size: 18px; } .h5,h5 { font-size: 14px; } .h6,h6 { font-size: 12px; } p { margin: 0 0 11px; } .lead { margin-bottom: 22px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media(min-width:768px) { .lead { font-size: 21px; } } .small,small { font-size: 85%; } .mark,mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .initialism,.text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #3097d1; } a.text-primary:focus,a.text-primary:hover { color: #2579a9; } .text-success { color: #3c763d; } a.text-success:focus,a.text-success:hover { color: #2b542c; } .text-info { color: #31708f; } a.text-info:focus,a.text-info:hover { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:focus,a.text-warning:hover { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:focus,a.text-danger:hover { color: #843534; } .bg-primary { color: #fff; background-color: #3097d1; } a.bg-primary:focus,a.bg-primary:hover { background-color: #2579a9; } .bg-success { background-color: #dff0d8; } a.bg-success:focus,a.bg-success:hover { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:focus,a.bg-info:hover { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:focus,a.bg-warning:hover { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:focus,a.bg-danger:hover { background-color: #e4b9b9; } .page-header { padding-bottom: 10px; margin: 44px 0 22px; border-bottom: 1px solid #eee; } ol,ul { margin-top: 0; margin-bottom: 11px; } ol ol,ol ul,ul ol,ul ul { margin-bottom: 0; } .list-inline,.list-unstyled { padding-left: 0; list-style: none; } .list-inline { margin-left: -5px; } .list-inline>li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 22px; } dd,dt { line-height: 1.6; } dt { font-weight: 700; } dd { margin-left: 0; } .dl-horizontal dd:after,.dl-horizontal dd:before { display: table; content: " "; } .dl-horizontal dd:after { clear: both; } @media(min-width:768px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[data-original-title],abbr[title] { cursor: help; } .initialism { font-size: 90%; } blockquote { padding: 11px 22px; margin: 0 0 22px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child { margin-bottom: 0; } blockquote .small,blockquote footer,blockquote small { display: block; font-size: 80%; line-height: 1.6; color: #777; } blockquote .small:before,blockquote footer:before,blockquote small:before { content: "\2014 \A0"; } .blockquote-reverse,blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before { content: ""; } .blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after { content: "\A0 \2014"; } address { margin-bottom: 22px; font-style: normal; line-height: 1.6; } code,kbd,pre,samp { font-family: Menlo,Monaco,Consolas,Courier New,monospace; } code { color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } code,kbd { padding: 2px 4px; font-size: 90%; } kbd { color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); } kbd kbd { padding: 0; font-size: 100%; font-weight: 700; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 10.5px; margin: 0 0 11px; font-size: 13px; line-height: 1.6; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .container:after,.container:before { display: table; content: " "; } .container:after { clear: both; } @media(min-width:768px) { .container { width: 750px; } } @media(min-width:992px) { .container { width: 970px; } } @media(min-width:1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .container-fluid:after,.container-fluid:before { display: table; content: " "; } .container-fluid:after { clear: both; } .row { margin-right: -15px; margin-left: -15px; } .row:after,.row:before { display: table; content: " "; } .row:after { clear: both; } .row-no-gutters { margin-right: 0; margin-left: 0; } .row-no-gutters [class*=col-] { padding-right: 0; padding-left: 0; } .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-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-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-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 { float: left; } .col-xs-1 { width: 8.33333333%; } .col-xs-2 { width: 16.66666667%; } .col-xs-3 { width: 25%; } .col-xs-4 { width: 33.33333333%; } .col-xs-5 { width: 41.66666667%; } .col-xs-6 { width: 50%; } .col-xs-7 { width: 58.33333333%; } .col-xs-8 { width: 66.66666667%; } .col-xs-9 { width: 75%; } .col-xs-10 { width: 83.33333333%; } .col-xs-11 { width: 91.66666667%; } .col-xs-12 { width: 100%; } .col-xs-pull-0 { right: auto; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-12 { right: 100%; } .col-xs-push-0 { left: auto; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-3 { left: 25%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-6 { left: 50%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-9 { left: 75%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-12 { left: 100%; } .col-xs-offset-0 { margin-left: 0; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-12 { margin-left: 100%; } @media(min-width:768px) { .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 { float: left; } .col-sm-1 { width: 8.33333333%; } .col-sm-2 { width: 16.66666667%; } .col-sm-3 { width: 25%; } .col-sm-4 { width: 33.33333333%; } .col-sm-5 { width: 41.66666667%; } .col-sm-6 { width: 50%; } .col-sm-7 { width: 58.33333333%; } .col-sm-8 { width: 66.66666667%; } .col-sm-9 { width: 75%; } .col-sm-10 { width: 83.33333333%; } .col-sm-11 { width: 91.66666667%; } .col-sm-12 { width: 100%; } .col-sm-pull-0 { right: auto; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-12 { right: 100%; } .col-sm-push-0 { left: auto; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-3 { left: 25%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-6 { left: 50%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-9 { left: 75%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-12 { left: 100%; } .col-sm-offset-0 { margin-left: 0; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-12 { margin-left: 100%; } } @media(min-width:992px) { .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 { float: left; } .col-md-1 { width: 8.33333333%; } .col-md-2 { width: 16.66666667%; } .col-md-3 { width: 25%; } .col-md-4 { width: 33.33333333%; } .col-md-5 { width: 41.66666667%; } .col-md-6 { width: 50%; } .col-md-7 { width: 58.33333333%; } .col-md-8 { width: 66.66666667%; } .col-md-9 { width: 75%; } .col-md-10 { width: 83.33333333%; } .col-md-11 { width: 91.66666667%; } .col-md-12 { width: 100%; } .col-md-pull-0 { right: auto; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-3 { right: 25%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-6 { right: 50%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-9 { right: 75%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-12 { right: 100%; } .col-md-push-0 { left: auto; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-3 { left: 25%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-6 { left: 50%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-9 { left: 75%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-12 { left: 100%; } .col-md-offset-0 { margin-left: 0; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-12 { margin-left: 100%; } } @media(min-width:1200px) { .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 { float: left; } .col-lg-1 { width: 8.33333333%; } .col-lg-2 { width: 16.66666667%; } .col-lg-3 { width: 25%; } .col-lg-4 { width: 33.33333333%; } .col-lg-5 { width: 41.66666667%; } .col-lg-6 { width: 50%; } .col-lg-7 { width: 58.33333333%; } .col-lg-8 { width: 66.66666667%; } .col-lg-9 { width: 75%; } .col-lg-10 { width: 83.33333333%; } .col-lg-11 { width: 91.66666667%; } .col-lg-12 { width: 100%; } .col-lg-pull-0 { right: auto; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-12 { right: 100%; } .col-lg-push-0 { left: auto; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-3 { left: 25%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-6 { left: 50%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-9 { left: 75%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-12 { left: 100%; } .col-lg-offset-0 { margin-left: 0; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-12 { margin-left: 100%; } } table { background-color: transparent; } table col[class*=col-] { position: static; display: table-column; float: none; } table td[class*=col-],table th[class*=col-] { position: static; display: table-cell; float: none; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; } caption,th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 22px; } .table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th { padding: 8px; line-height: 1.6; vertical-align: top; border-top: 1px solid #ddd; } .table>thead>tr>th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th { border-top: 0; } .table>tbody+tbody { border-top: 2px solid #ddd; } .table .table { background-color: #f5f8fa; } .table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th { padding: 5px; } .table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th { border: 1px solid #ddd; } .table-bordered>thead>tr>td,.table-bordered>thead>tr>th { border-bottom-width: 2px; } .table-striped>tbody>tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active { background-color: #f5f5f5; } .table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover { background-color: #e8e8e8; } .table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success { background-color: #dff0d8; } .table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover { background-color: #d0e9c6; } .table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info { background-color: #d9edf7; } .table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover { background-color: #c4e3f3; } .table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning { background-color: #fcf8e3; } .table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover { background-color: #faf2cc; } .table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger { background-color: #f2dede; } .table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width:767px) { .table-responsive { width: 100%; margin-bottom: 16.5px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive>.table { margin-bottom: 0; } .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th { white-space: nowrap; } .table-responsive>.table-bordered { border: 0; } .table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child { border-left: 0; } .table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child { border-right: 0; } .table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th { border-bottom: 0; } } fieldset { min-width: 0; margin: 0; } fieldset,legend { padding: 0; border: 0; } legend { display: block; width: 100%; margin-bottom: 22px; font-size: 21px; line-height: inherit; color: #333; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: 700; } input[type=search] { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; } input[type=checkbox],input[type=radio] { margin: 4px 0 0; margin-top: 1px\9; line-height: normal; } fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled] { cursor: not-allowed; } input[type=file] { display: block; } input[type=range] { display: block; width: 100%; } select[multiple],select[size] { height: auto; } input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { padding-top: 7px; } .form-control,output { display: block; font-size: 14px; line-height: 1.6; color: #555; } .form-control { width: 100%; height: 36px; padding: 6px 12px; background-color: #fff; background-image: none; border: 1px solid #ccd0d2; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; } .form-control:focus { border-color: #98cbe8; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(152,203,232,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(152,203,232,.6); } .form-control::-moz-placeholder { color: #b1b7ba; opacity: 1; } .form-control:-ms-input-placeholder { color: #b1b7ba; } .form-control::-webkit-input-placeholder { color: #b1b7ba; } .form-control::-ms-expand { background-color: transparent; border: 0; } .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled],fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } @media screen and (-webkit-min-device-pixel-ratio:0) { input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control { line-height: 36px; } .input-group-sm>.input-group-btn>input.btn[type=date],.input-group-sm>.input-group-btn>input.btn[type=datetime-local],.input-group-sm>.input-group-btn>input.btn[type=month],.input-group-sm>.input-group-btn>input.btn[type=time],.input-group-sm>input.form-control[type=date],.input-group-sm>input.form-control[type=datetime-local],.input-group-sm>input.form-control[type=month],.input-group-sm>input.form-control[type=time],.input-group-sm>input.input-group-addon[type=date],.input-group-sm>input.input-group-addon[type=datetime-local],.input-group-sm>input.input-group-addon[type=month],.input-group-sm>input.input-group-addon[type=time],.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm { line-height: 30px; } .input-group-lg>.input-group-btn>input.btn[type=date],.input-group-lg>.input-group-btn>input.btn[type=datetime-local],.input-group-lg>.input-group-btn>input.btn[type=month],.input-group-lg>.input-group-btn>input.btn[type=time],.input-group-lg>input.form-control[type=date],.input-group-lg>input.form-control[type=datetime-local],.input-group-lg>input.form-control[type=month],.input-group-lg>input.form-control[type=time],.input-group-lg>input.input-group-addon[type=date],.input-group-lg>input.input-group-addon[type=datetime-local],.input-group-lg>input.input-group-addon[type=month],.input-group-lg>input.input-group-addon[type=time],.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg { line-height: 46px; } } .form-group { margin-bottom: 15px; } .checkbox,.radio { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label { cursor: not-allowed; } .checkbox label,.radio label { min-height: 22px; padding-left: 20px; margin-bottom: 0; font-weight: 400; cursor: pointer; } .checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio] { position: absolute; margin-top: 4px\9; margin-left: -20px; } .checkbox+.checkbox,.radio+.radio { margin-top: -5px; } .checkbox-inline,.radio-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: 400; vertical-align: middle; cursor: pointer; } .checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline { cursor: not-allowed; } .checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline { margin-top: 0; margin-left: 10px; } .form-control-static { min-height: 36px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn { padding-right: 0; padding-left: 0; } .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm { height: 30px; line-height: 30px; } .input-group-sm>.input-group-btn>select.btn[multiple],.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select.form-control[multiple],.input-group-sm>select.input-group-addon[multiple],.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 34px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg { height: 46px; line-height: 46px; } .input-group-lg>.input-group-btn>select.btn[multiple],.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select.form-control[multiple],.input-group-lg>select.input-group-addon[multiple],.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 40px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 45px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 36px; height: 36px; line-height: 36px; text-align: center; pointer-events: none; } .form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label~.form-control-feedback { top: 27px; } .has-feedback label.sr-only~.form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #a4aaae; } @media(min-width:768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn { width: auto; } .form-inline .input-group>.form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .checkbox,.form-inline .radio { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .checkbox label,.form-inline .radio label { padding-left: 0; } .form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .checkbox,.form-horizontal .radio { min-height: 29px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } .form-horizontal .form-group:after,.form-horizontal .form-group:before { display: table; content: " "; } .form-horizontal .form-group:after { clear: both; } @media(min-width:768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media(min-width:768px) { .form-horizontal .form-group-lg .control-label { padding-top: 11px; font-size: 18px; } } @media(min-width:768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; padding: 6px 12px; font-size: 14px; line-height: 1.6; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.focus,.btn:focus,.btn:hover { color: #636b6f; text-decoration: none; } .btn.active,.btn:active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } .btn.disabled,.btn[disabled],fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); opacity: .65; -webkit-box-shadow: none; box-shadow: none; } a.btn.disabled,fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #636b6f; background-color: #fff; border-color: #ccc; } .btn-default.focus,.btn-default:focus { color: #636b6f; background-color: #e6e5e5; border-color: #8c8c8c; } .btn-default:hover { color: #636b6f; background-color: #e6e5e5; border-color: #adadad; } .btn-default.active,.btn-default:active,.open>.btn-default.dropdown-toggle { color: #636b6f; background-color: #e6e5e5; background-image: none; border-color: #adadad; } .btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover { color: #636b6f; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #636b6f; } .btn-primary { background-color: #3097d1; border-color: #2a88bd; } .btn-primary.focus,.btn-primary:focus { color: #fff; background-color: #2579a9; border-color: #133d55; } .btn-primary:hover { color: #fff; background-color: #2579a9; border-color: #1f648b; } .btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle { color: #fff; background-color: #2579a9; background-image: none; border-color: #1f648b; } .btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover { color: #fff; background-color: #1f648b; border-color: #133d55; } .btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover { background-color: #3097d1; border-color: #2a88bd; } .btn-primary .badge { color: #3097d1; background-color: #fff; } .btn-success { color: #fff; background-color: #2ab27b; border-color: #259d6d; } .btn-success.focus,.btn-success:focus { color: #fff; background-color: #20895e; border-color: #0d3625; } .btn-success:hover { color: #fff; background-color: #20895e; border-color: #196c4b; } .btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle { color: #fff; background-color: #20895e; background-image: none; border-color: #196c4b; } .btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover { color: #fff; background-color: #196c4b; border-color: #0d3625; } .btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover { background-color: #2ab27b; border-color: #259d6d; } .btn-success .badge { color: #2ab27b; background-color: #fff; } .btn-info { color: #fff; background-color: #8eb4cb; border-color: #7da8c3; } .btn-info.focus,.btn-info:focus { color: #fff; background-color: #6b9dbb; border-color: #3d6983; } .btn-info:hover { color: #fff; background-color: #6b9dbb; border-color: #538db0; } .btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle { color: #fff; background-color: #6b9dbb; background-image: none; border-color: #538db0; } .btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover { color: #fff; background-color: #538db0; border-color: #3d6983; } .btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover { background-color: #8eb4cb; border-color: #7da8c3; } .btn-info .badge { color: #8eb4cb; background-color: #fff; } .btn-warning { color: #fff; background-color: #cbb956; border-color: #c5b143; } .btn-warning.focus,.btn-warning:focus { color: #fff; background-color: #b6a338; border-color: #685d20; } .btn-warning:hover { color: #fff; background-color: #b6a338; border-color: #9b8a30; } .btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle { color: #fff; background-color: #b6a338; background-image: none; border-color: #9b8a30; } .btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover { color: #fff; background-color: #9b8a30; border-color: #685d20; } .btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover { background-color: #cbb956; border-color: #c5b143; } .btn-warning .badge { color: #cbb956; background-color: #fff; } .btn-danger { color: #fff; background-color: #bf5329; border-color: #aa4a24; } .btn-danger.focus,.btn-danger:focus { color: #fff; background-color: #954120; border-color: #411c0e; } .btn-danger:hover { color: #fff; background-color: #954120; border-color: #78341a; } .btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle { color: #fff; background-color: #954120; background-image: none; border-color: #78341a; } .btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover { color: #fff; background-color: #78341a; border-color: #411c0e; } .btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover { background-color: #bf5329; border-color: #aa4a24; } .btn-danger .badge { color: #bf5329; background-color: #fff; } .btn-link { font-weight: 400; color: #3097d1; border-radius: 0; } .btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover { border-color: transparent; } .btn-link:focus,.btn-link:hover { color: #216a94; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover { color: #777; text-decoration: none; } .btn-group-lg>.btn,.btn-lg { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-group-sm>.btn,.btn-sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-group-xs>.btn,.btn-xs { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block+.btn-block { margin-top: 5px; } input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height,visibility; transition-property: height,visibility; -webkit-transition-duration: .35s; transition-duration: .35s; -webkit-transition-timing-function: ease; transition-timing-function: ease; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid\9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown,.dropup { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); box-shadow: 0 6px 12px rgba(0,0,0,.175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 10px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu>li>a { display: block; padding: 3px 20px; clear: both; font-weight: 400; line-height: 1.6; color: #333; white-space: nowrap; } .dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover { color: #fff; text-decoration: none; background-color: #3097d1; outline: 0; } .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover { color: #777; } .dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .open>.dropdown-menu { display: block; } .open>a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.6; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right>.dropdown-menu { right: 0; left: auto; } .dropup .caret,.navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid\9; } .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media(min-width:768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } } .btn-group,.btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group-vertical>.btn,.btn-group>.btn { position: relative; float: left; } .btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover { z-index: 2; } .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar:after,.btn-toolbar:before { display: table; content: " "; } .btn-toolbar:after { clear: both; } .btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group { float: left; } .btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group { margin-left: 5px; } .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group>.btn:first-child { margin-left: 0; } .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group>.btn-group { float: left; } .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { border-radius: 0; } .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle { outline: 0; } .btn-group>.btn+.dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-group-lg>.btn .caret,.btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after { clear: both; } .btn-group-vertical>.btn-group>.btn { float: none; } .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical>.btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical>.btn:first-child:not(:last-child) { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical>.btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { border-radius: 0; } .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified>.btn,.btn-group-justified>.btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified>.btn-group .btn { width: 100%; } .btn-group-justified>.btn-group .dropdown-menu { left: auto; } [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio] { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*=col-] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group .form-control:focus { z-index: 3; } .input-group-addon,.input-group-btn,.input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon,.input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: 400; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccd0d2; border-radius: 4px; } .input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type=checkbox],.input-group-addon input[type=radio] { margin-top: 0; } .input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { font-size: 0; white-space: nowrap; } .input-group-btn,.input-group-btn>.btn { position: relative; } .input-group-btn>.btn+.btn { margin-left: -1px; } .input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover { z-index: 2; } .input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group { margin-right: -1px; } .input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav:after,.nav:before { display: table; content: " "; } .nav:after { clear: both; } .nav>li,.nav>li>a { position: relative; display: block; } .nav>li>a { padding: 10px 15px; } .nav>li>a:focus,.nav>li>a:hover { text-decoration: none; background-color: #eee; } .nav>li.disabled>a { color: #777; } .nav>li.disabled>a:focus,.nav>li.disabled>a:hover { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open>a,.nav .open>a:focus,.nav .open>a:hover { background-color: #eee; border-color: #3097d1; } .nav .nav-divider { height: 1px; margin: 10px 0; overflow: hidden; background-color: #e5e5e5; } .nav>li>a>img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs>li { float: left; margin-bottom: -1px; } .nav-tabs>li>a { margin-right: 2px; line-height: 1.6; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs>li>a:hover { border-color: #eee #eee #ddd; } .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover { color: #555; cursor: default; background-color: #f5f8fa; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-pills>li { float: left; } .nav-pills>li>a { border-radius: 4px; } .nav-pills>li+li { margin-left: 2px; } .nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover { color: #fff; background-color: #3097d1; } .nav-stacked>li { float: none; } .nav-stacked>li+li { margin-top: 2px; margin-left: 0; } .nav-justified,.nav-tabs.nav-justified { width: 100%; } .nav-justified>li,.nav-tabs.nav-justified>li { float: none; } .nav-justified>li>a,.nav-tabs.nav-justified>li>a { margin-bottom: 5px; text-align: center; } .nav-justified>.dropdown .dropdown-menu { top: auto; left: auto; } @media(min-width:768px) { .nav-justified>li,.nav-tabs.nav-justified>li { display: table-cell; width: 1%; } .nav-justified>li>a,.nav-tabs.nav-justified>li>a { margin-bottom: 0; } } .nav-tabs-justified,.nav-tabs.nav-justified { border-bottom: 0; } .nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover { border: 1px solid #ddd; } @media(min-width:768px) { .nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover { border-bottom-color: #f5f8fa; } } .tab-content>.tab-pane { display: none; } .tab-content>.active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 22px; border: 1px solid transparent; } .navbar:after,.navbar:before { display: table; content: " "; } .navbar:after { clear: both; } @media(min-width:768px) { .navbar { border-radius: 4px; } } .navbar-header:after,.navbar-header:before { display: table; content: " "; } .navbar-header:after { clear: both; } @media(min-width:768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1); box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1); -webkit-overflow-scrolling: touch; } .navbar-collapse:after,.navbar-collapse:before { display: table; content: " "; } .navbar-collapse:after { clear: both; } .navbar-collapse.in { overflow-y: auto; } @media(min-width:768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block!important; height: auto!important; padding-bottom: 0; overflow: visible!important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-bottom,.navbar-fixed-top { position: fixed; right: 0; left: 0; z-index: 1030; } .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse { max-height: 340px; } @media(max-device-width:480px) and (orientation:landscape) { .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse { max-height: 200px; } } @media(min-width:768px) { .navbar-fixed-bottom,.navbar-fixed-top { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header { margin-right: -15px; margin-left: -15px; } @media(min-width:768px) { .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media(min-width:768px) { .navbar-static-top { border-radius: 0; } } .navbar-brand { float: left; height: 50px; padding: 14px 15px; font-size: 18px; line-height: 22px; } .navbar-brand:focus,.navbar-brand:hover { text-decoration: none; } .navbar-brand>img { display: block; } @media(min-width:768px) { .navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-right: 15px; margin-top: 8px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar+.icon-bar { margin-top: 4px; } @media(min-width:768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7px -15px; } .navbar-nav>li>a { padding-top: 10px; padding-bottom: 10px; line-height: 22px; } @media(max-width:767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu>li>a { line-height: 22px; } .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover { background-image: none; } } @media(min-width:768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav>li { float: left; } .navbar-nav>li>a { padding-top: 14px; padding-bottom: 14px; } } .navbar-form { padding: 10px 15px; margin: 7px -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1); box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1); } @media(min-width:768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn { width: auto; } .navbar-form .input-group>.form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .checkbox,.navbar-form .radio { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .checkbox label,.navbar-form .radio label { padding-left: 0; } .navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media(max-width:767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media(min-width:768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav>li>.dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 7px; margin-bottom: 7px; } .btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs,.navbar-text { margin-top: 14px; margin-bottom: 14px; } @media(min-width:768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media(min-width:768px) { .navbar-left { float: left!important; } .navbar-right { float: right!important; margin-right: -15px; } .navbar-right~.navbar-right { margin-right: 0; } } .navbar-default { background-color: #fff; border-color: #d3e0e9; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover { color: #5e5d5d; background-color: transparent; } .navbar-default .navbar-nav>li>a,.navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover { color: #333; background-color: transparent; } .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover { color: #555; background-color: #eee; } .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover { color: #ccc; background-color: transparent; } .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover { color: #555; background-color: #eee; } @media(max-width:767px) { .navbar-default .navbar-nav .open .dropdown-menu>li>a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover { color: #555; background-color: #eee; } .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover { color: #ccc; background-color: transparent; } } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse,.navbar-default .navbar-form { border-color: #d3e0e9; } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:focus,.navbar-default .btn-link:hover { color: #333; } .navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #090909; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover { color: #fff; background-color: #090909; } .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover { color: #444; background-color: transparent; } .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover { color: #fff; background-color: #090909; } @media(max-width:767px) { .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { border-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover { color: #fff; background-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover { color: #444; background-color: transparent; } } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover { color: #fff; } .navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover { color: #444; } .breadcrumb { padding: 8px 15px; margin-bottom: 22px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb>li { display: inline-block; } .breadcrumb>li+li:before { padding: 0 5px; color: #ccc; content: "/\A0"; } .breadcrumb>.active { color: #777; } .pagination { display: inline-block; padding-left: 0; margin: 22px 0; border-radius: 4px; } .pagination>li { display: inline; } .pagination>li>a,.pagination>li>span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.6; color: #3097d1; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover { z-index: 2; color: #216a94; background-color: #eee; border-color: #ddd; } .pagination>li:first-child>a,.pagination>li:first-child>span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination>li:last-child>a,.pagination>li:last-child>span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover { z-index: 3; color: #fff; cursor: default; background-color: #3097d1; border-color: #3097d1; } .pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg>li>a,.pagination-lg>li>span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm>li>a,.pagination-sm>li>span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 22px 0; text-align: center; list-style: none; } .pager:after,.pager:before { display: table; content: " "; } .pager:after { clear: both; } .pager li { display: inline; } .pager li>a,.pager li>span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li>a:focus,.pager li>a:hover { text-decoration: none; background-color: #eee; } .pager .next>a,.pager .next>span { float: right; } .pager .previous>a,.pager .previous>span { float: left; } .pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } a.label:focus,a.label:hover { color: #fff; text-decoration: none; cursor: pointer; } .label-default { background-color: #777; } .label-default[href]:focus,.label-default[href]:hover { background-color: #5e5e5e; } .label-primary { background-color: #3097d1; } .label-primary[href]:focus,.label-primary[href]:hover { background-color: #2579a9; } .label-success { background-color: #2ab27b; } .label-success[href]:focus,.label-success[href]:hover { background-color: #20895e; } .label-info { background-color: #8eb4cb; } .label-info[href]:focus,.label-info[href]:hover { background-color: #6b9dbb; } .label-warning { background-color: #cbb956; } .label-warning[href]:focus,.label-warning[href]:hover { background-color: #b6a338; } .label-danger { background-color: #bf5329; } .label-danger[href]:focus,.label-danger[href]:hover { background-color: #954120; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-group-xs>.btn .badge,.btn-xs .badge { top: 0; padding: 1px 5px; } .list-group-item.active>.badge,.nav-pills>.active>a>.badge { color: #3097d1; background-color: #fff; } .list-group-item>.badge { float: right; } .list-group-item>.badge+.badge { margin-right: 5px; } .nav-pills>li>a>.badge { margin-left: 3px; } a.badge:focus,a.badge:hover { color: #fff; text-decoration: none; cursor: pointer; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; background-color: #eee; } .jumbotron,.jumbotron .h1,.jumbotron h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron>hr { border-top-color: #d5d5d5; } .container-fluid .jumbotron,.container .jumbotron { padding-right: 15px; padding-left: 15px; border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width:768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container-fluid .jumbotron,.container .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron .h1,.jumbotron h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 22px; line-height: 1.6; background-color: #f5f8fa; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail>img,.thumbnail a>img { display: block; max-width: 100%; height: auto; margin-right: auto; margin-left: auto; } .thumbnail .caption { padding: 9px; color: #636b6f; } a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover { border-color: #3097d1; } .alert { padding: 15px; margin-bottom: 22px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: 700; } .alert>p,.alert>ul { margin-bottom: 0; } .alert>p+p { margin-top: 5px; } .alert-dismissable,.alert-dismissible { padding-right: 35px; } .alert-dismissable .close,.alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { 0% { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { 0% { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 22px; margin-bottom: 22px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1); box-shadow: inset 0 1px 2px rgba(0,0,0,.1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 22px; color: #fff; text-align: center; background-color: #3097d1; -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); -webkit-transition: width .6s ease; transition: width .6s ease; } .progress-bar-striped,.progress-striped .progress-bar { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); background-size: 40px 40px; } .progress-bar.active,.progress.active .progress-bar { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #2ab27b; } .progress-striped .progress-bar-success { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-info { background-color: #8eb4cb; } .progress-striped .progress-bar-info { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-warning { background-color: #cbb956; } .progress-striped .progress-bar-warning { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .progress-bar-danger { background-color: #bf5329; } .progress-striped .progress-bar-danger { background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media,.media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right,.media>.pull-right { padding-left: 10px; } .media-left,.media>.pull-left { padding-right: 10px; } .media-body,.media-left,.media-right { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #d3e0e9; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text { color: #777; } .list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover { z-index: 2; color: #fff; background-color: #3097d1; border-color: #3097d1; } .list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small { color: inherit; } .list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text { color: #d7ebf6; } a.list-group-item,button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover { color: #555; text-decoration: none; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success,button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info,button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning,button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger,button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 22px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05); box-shadow: 0 1px 1px rgba(0,0,0,.05); } .panel-body { padding: 15px; } .panel-body:after,.panel-body:before { display: table; content: " "; } .panel-body:after { clear: both; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading>.dropdown .dropdown-toggle,.panel-title { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; } .panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #d3e0e9; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.list-group,.panel>.panel-collapse>.list-group { margin-bottom: 0; } .panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child { border-top-width: 0; } .panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table { margin-bottom: 0; } .panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption { padding-right: 15px; padding-left: 15px; } .panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child { border-top-left-radius: 3px; } .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child { border-top-right-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body { border-top: 1px solid #ddd; } .panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th { border-top: 0; } .panel>.table-bordered,.panel>.table-responsive>.table-bordered { border: 0; } .panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child { border-left: 0; } .panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child { border-right: 0; } .panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th { border-bottom: 0; } .panel>.table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 22px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel+.panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body { border-top: 1px solid #d3e0e9; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer+.panel-collapse .panel-body { border-bottom: 1px solid #d3e0e9; } .panel-default { border-color: #d3e0e9; } .panel-default>.panel-heading { color: #333; background-color: #fff; border-color: #d3e0e9; } .panel-default>.panel-heading+.panel-collapse>.panel-body { border-top-color: #d3e0e9; } .panel-default>.panel-heading .badge { color: #fff; background-color: #333; } .panel-default>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #d3e0e9; } .panel-primary { border-color: #3097d1; } .panel-primary>.panel-heading { color: #fff; background-color: #3097d1; border-color: #3097d1; } .panel-primary>.panel-heading+.panel-collapse>.panel-body { border-top-color: #3097d1; } .panel-primary>.panel-heading .badge { color: #3097d1; background-color: #fff; } .panel-primary>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #3097d1; } .panel-success { border-color: #d6e9c6; } .panel-success>.panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success>.panel-heading+.panel-collapse>.panel-body { border-top-color: #d6e9c6; } .panel-success>.panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info>.panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info>.panel-heading+.panel-collapse>.panel-body { border-top-color: #bce8f1; } .panel-info>.panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning>.panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning>.panel-heading+.panel-collapse>.panel-body { border-top-color: #faebcc; } .panel-warning>.panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger>.panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger>.panel-heading+.panel-collapse>.panel-body { border-top-color: #ebccd1; } .panel-danger>.panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger>.panel-footer+.panel-collapse>.panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); box-shadow: inset 0 1px 1px rgba(0,0,0,.05); } .well blockquote { border-color: #ddd; border-color: rgba(0,0,0,.15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:focus,.close:hover { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { padding: 0; cursor: pointer; background: 0 0; border: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .modal,.modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translateY(-25%); transform: translateY(-25%); -webkit-transition: -webkit-transform .3s ease-out; transition: -webkit-transform .3s ease-out; transition: transform .3s ease-out; transition: transform .3s ease-out,-webkit-transform .3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0); transform: translate(0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0,0,0,.2); border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5); box-shadow: 0 3px 9px rgba(0,0,0,.5); outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header:after,.modal-header:before { display: table; content: " "; } .modal-header:after { clear: both; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.6; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer:after,.modal-footer:before { display: table; content: " "; } .modal-footer:after { clear: both; } .modal-footer .btn+.btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn+.btn { margin-left: -1px; } .modal-footer .btn-block+.btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media(min-width:768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5); box-shadow: 0 5px 15px rgba(0,0,0,.5); } .modal-sm { width: 300px; } } @media(min-width:992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: Raleway,sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; line-break: auto; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; font-size: 12px; filter: alpha(opacity=0); opacity: 0; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; } .tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow { bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { left: 5px; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: Raleway,sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; line-break: auto; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; font-size: 14px; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); box-shadow: 0 5px 10px rgba(0,0,0,.2); } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover>.arrow { border-width: 11px; } .popover>.arrow,.popover>.arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover>.arrow:after { content: ""; border-width: 10px; } .popover.top>.arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0,0,0,.25); border-bottom-width: 0; } .popover.top>.arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right>.arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0,0,0,.25); border-left-width: 0; } .popover.right>.arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom>.arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0,0,0,.25); } .popover.bottom>.arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left>.arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0,0,0,.25); } .popover.left>.arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .carousel,.carousel-inner { position: relative; } .carousel-inner { width: 100%; overflow: hidden; } .carousel-inner>.item { position: relative; display: none; -webkit-transition: left .6s ease-in-out; transition: left .6s ease-in-out; } .carousel-inner>.item>a>img,.carousel-inner>.item>img { display: block; max-width: 100%; height: auto; line-height: 1; } @media(-webkit-transform-3d),(transform-3d) { .carousel-inner>.item { -webkit-transition: -webkit-transform .6s ease-in-out; transition: -webkit-transform .6s ease-in-out; transition: transform .6s ease-in-out; transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner>.item.active.right,.carousel-inner>.item.next { -webkit-transform: translate3d(100%,0,0); transform: translate3d(100%,0,0); left: 0; } .carousel-inner>.item.active.left,.carousel-inner>.item.prev { -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); left: 0; } .carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right { -webkit-transform: translateZ(0); transform: translateZ(0); left: 0; } } .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev { display: block; } .carousel-inner>.active { left: 0; } .carousel-inner>.next,.carousel-inner>.prev { position: absolute; top: 0; width: 100%; } .carousel-inner>.next { left: 100%; } .carousel-inner>.prev { left: -100%; } .carousel-inner>.next.left,.carousel-inner>.prev.right { left: 0; } .carousel-inner>.active.left { left: -100%; } .carousel-inner>.active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0,0,0,.6); background-color: transparent; filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001))); background-image: linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5))); background-image: linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1); background-repeat: repeat-x; } .carousel-control:focus,.carousel-control:hover { color: #fff; text-decoration: none; outline: 0; filter: alpha(opacity=90); opacity: .9; } .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev { left: 50%; margin-left: -10px; } .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next { right: 50%; margin-right: -10px; } .carousel-control .icon-next,.carousel-control .icon-prev { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: "\2039"; } .carousel-control .icon-next:before { content: "\203A"; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000\9; background-color: transparent; border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0,0,0,.6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width:768px) { .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev { width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev { margin-left: -10px; } .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next { margin-right: -10px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:after,.clearfix:before { display: table; content: " "; } .clearfix:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right!important; } .pull-left { float: left!important; } .hide { display: none!important; } .show { display: block!important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none!important; } .affix { position: fixed; } @-ms-viewport { width:device-width; } .visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block { display: none!important; } @media(max-width:767px) { .visible-xs { display: block!important; } table.visible-xs { display: table!important; } tr.visible-xs { display: table-row!important; } td.visible-xs,th.visible-xs { display: table-cell!important; } } @media(max-width:767px) { .visible-xs-block { display: block!important; } } @media(max-width:767px) { .visible-xs-inline { display: inline!important; } } @media(max-width:767px) { .visible-xs-inline-block { display: inline-block!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm { display: block!important; } table.visible-sm { display: table!important; } tr.visible-sm { display: table-row!important; } td.visible-sm,th.visible-sm { display: table-cell!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-block { display: block!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-inline { display: inline!important; } } @media(min-width:768px) and (max-width:991px) { .visible-sm-inline-block { display: inline-block!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md { display: block!important; } table.visible-md { display: table!important; } tr.visible-md { display: table-row!important; } td.visible-md,th.visible-md { display: table-cell!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-block { display: block!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-inline { display: inline!important; } } @media(min-width:992px) and (max-width:1199px) { .visible-md-inline-block { display: inline-block!important; } } @media(min-width:1200px) { .visible-lg { display: block!important; } table.visible-lg { display: table!important; } tr.visible-lg { display: table-row!important; } td.visible-lg,th.visible-lg { display: table-cell!important; } } @media(min-width:1200px) { .visible-lg-block { display: block!important; } } @media(min-width:1200px) { .visible-lg-inline { display: inline!important; } } @media(min-width:1200px) { .visible-lg-inline-block { display: inline-block!important; } } @media(max-width:767px) { .hidden-xs { display: none!important; } } @media(min-width:768px) and (max-width:991px) { .hidden-sm { display: none!important; } } @media(min-width:992px) and (max-width:1199px) { .hidden-md { display: none!important; } } @media(min-width:1200px) { .hidden-lg { display: none!important; } } .visible-print { display: none!important; } @media print { .visible-print { display: block!important; } table.visible-print { display: table!important; } tr.visible-print { display: table-row!important; } td.visible-print,th.visible-print { display: table-cell!important; } } .visible-print-block { display: none!important; } @media print { .visible-print-block { display: block!important; } } .visible-print-inline { display: none!important; } @media print { .visible-print-inline { display: inline!important; } } .visible-print-inline-block { display: none!important; } @media print { .visible-print-inline-block { display: inline-block!important; } } @media print { .hidden-print { display: none!important; } } body { overflow-x: hidden; } .product-labels { text-align: right; } .product-labels div { display: inline; margin-right: 13px; font-weight: 600; text-transform: uppercase; } .product-labels .like { color: #42ba4f; } .product-labels .dislike { color: #de4432; } .fancy-radio .actions { position: absolute; right: 25px; top: 20px; font-size: 24px; } .fancy-radio .actions .fa-check-circle { margin-right: 20px; } .fancy-radio .actions .fa-check-circle.active { color: #42ba4f; } .fancy-radio .actions .fa-times-circle.active { color: #de4432; } .upsell-success { text-align: center; max-width: 750px; margin: 0 auto; } .upsell-success h3 span { color: #ff3464; } .upsell-success h5 { font-size: 24px; line-height: 24px; color: #21bb21; } .upsell-success h6 { margin-top: 20px; font-size: 24px; line-height: 24px; } .upsell-success .nutritionist-headline { font-family: Lato; font-style: normal; font-weight: 700; font-size: 24px; line-height: 32px; text-align: center; color: #1d1d1d; max-width: 80%; margin: 20px auto; margin-top: 75px; } .upsell-success .get-nutritionist { text-align: center; } .upsell-success .success-msg.nutritionist { max-width: 500px; margin: 0 auto; } .upsell-success .survey-results { font-family: Lato; font-style: normal; font-weight: 600; font-size: 16px; line-height: 24px; max-width: 500px; margin: 0 auto; } .upsell-success .survey-results span { font-weight: 900; font-size: 46px; line-height: 55px; color: #56468f; margin-left: 10px; margin-right: 10px; } .upsell-success .who-data { font-size: 16px; line-height: 24px; color: #1d1d1d; background: #c4c4c426; padding: 20px; max-width: 500px; margin: 30px auto; padding-top: 40px; } .upsell-success .who-data p { margin-bottom: 20px; } .upsell-success .unique-offer { font-weight: 600; color: #ff2e63; text-align: center; margin-top: 20px; } .upsell-success .additional-info.nutritionist { max-width: 500px; text-align: left; margin: 20px auto; } .upsell-success .upsell-benefits { margin-top: 30px; margin-bottom: 30px; text-align: left; } .upsell-success .upsell-benefits.nutritionist { max-width: 500px; margin: 30px auto; } .upsell-success .upsell-benefits ul { padding-left: 0; } .upsell-success .upsell-benefits li { margin-bottom: 10px; font-size: 16px; list-style: none; } .upsell-success .upsell-benefits li i { color: #ff3464; font-weight: 700; font-size: 18px; margin-right: 5px; } .upsell-success .b-form.m-short { margin: 0 auto; } .upsell-success .btn-skip { font-size: 16px; color: #555; text-decoration: underline; display: block; margin-top: 20px; } .upsell-success .offer { font-size: 18px; margin-top: 30px; background: #f5f5f5; border-radius: 15px; padding: 15px; } .upsell-success .offer .old-price { font-size: 18px!important; } .upsell-success .offer .highlighted { color: #56468f; } .upsell-success .additional-info { margin-top: 30px; margin-bottom: 30px; font-size: 16px; color: #555; } .btn-female:hover,.btn-male:hover { background: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); } .btn-primary.active,.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary.focus,.btn-primary:active,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.btn-primary:focus,.btn-primary:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,.open>.btn-primary.dropdown-toggle,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover { background-color: #ff3464; } .btn-primary:focus { outline: none!important; } body { font-family: Karla,Montserrat,Arial; font-display: swap; background: #fff; color: #444; width: 100%; margin: 0; } .terms p { font-size: 15px; line-height: 19px; } .terms-table td { padding: 5px; } .payment-disclaimer { max-width: 400px; padding: 15px; text-align: left; padding-bottom: 0; font-size: 14px; line-height: 22px; padding-top: 10px; } .progress-bar { width: 100%; background: rgba(86,70,143,.4); } .progress-bar,.progress-bar .progress { height: 5px; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; border: 0; } .progress-bar .progress { width: 12.5%; background: #56468f; } .navbar-brand { float: none; margin: 0 auto; text-align: center; max-width: 200px; display: block; } @media only screen and (min-width:1025px) { .navbar-brand { position: relative; } } .navbar-brand>img { margin: 0 auto; max-height: 45px; } .fancy-radio { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -7px rgba(0,0,0,.2); box-shadow: 0 4px 11px -7px rgba(0,0,0,.2); opacity: .7; cursor: pointer; position: relative; padding: 20px; color: #444; font-family: Karla,Montserrat; padding-right: 40px; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-bottom: 15px; } .fancy-radio .status { -webkit-transform: rotate(180deg); transform: rotate(180deg); border-radius: 9px 0 0 9px; background-color: #c3c3c3; position: absolute; right: 0; top: 0; height: 100%; width: 30px; z-index: 1; } .fancy-radio .status-icon { color: #fff; z-index: 2; font-size: 24px; font-weight: 600; text-align: center; position: absolute; right: 10px; top: 50%; margin-top: -10px; } .fancy-radio.active { -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); color: #ff3464; opacity: 1; } .fancy-radio.active .status { background-color: #56468f; } .fancy-radio.active .status-icon { position: absolute; right: 8px; top: 50%; margin-top: -12px; } .step { padding: 10px; padding-bottom: 25px; } .step .question { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; margin-top: 20px; margin-bottom: 20px; } .btn-primary { border-radius: 22px; text-align: center; display: block; width: 100%; background-color: #ff3464; -webkit-box-shadow: 0 4px 11px -2px #ff3464; box-shadow: 0 4px 11px -2px #ff3464; color: #fff; font-size: 20px; border: 0; font-weight: 700; outline: none; margin-top: 25px; letter-spacing: .68px; padding: 12px; line-height: 23px; } .btn-primary.scroll-btn { max-width: 250px; } .units-toggler { background: #e4e5e7; padding: 25px; margin-left: -15px; margin-right: -15px; text-align: center; margin-left: -25px; width: calc(100% + 50px); margin-top: -10px; } @media only screen and (max-width:640px) { .units-toggler { display: -webkit-box; display: -ms-flexbox; display: flex; } } .units-toggler .btn { border: 1px solid #444; opacity: .28; width: 43%; border-radius: 22px; -webkit-box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); color: #444; font-family: Karla,Montserrat; font-size: 18px; font-weight: 700; letter-spacing: .61px; line-height: 22px; text-align: center; outline: none!important; padding: 10px; margin-right: 5px; } .units-toggler .btn:last-child { margin-right: 0; margin-left: 5px; } @media only screen and (max-width:640px) { .units-toggler .btn { width: 100%; } } .units-toggler .btn.active { color: #ff3464; opacity: 1; border: 0; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); box-shadow: 0 4px 11px -2px rgba(68,68,68,.3); } .input-holder { position: relative; margin-bottom: 30px; } .input-holder input.has-error { border-bottom: 1px solid red!important; } .input-holder input { width: 100%; display: block; -webkit-box-shadow: none; box-shadow: none; border: 0; border-bottom: 1px solid #e4e5e7; opacity: .7; color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; padding: 6px; outline: none!important; } .input-holder input:focus { border-bottom: 1px solid #56468f; opacity: 1; } .input-holder .units { position: absolute; right: 0; width: 90px; color: #ff3464; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; text-align: right; top: 5px; } .fancy-radio.with-icon { padding-left: 65px; } .fancy-radio.with-icon .icon { max-height: 32px; position: absolute; top: 50%; background-size: contain; left: 10px; margin-top: -16px; height: 40px; text-align: center; width: 40px; } .fancy-radio.with-icon .icon i,.fancy-radio.with-icon .icon img { max-width: 100%; max-height: 100%; -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: .43; } .fancy-radio.with-icon.active .icon i,.fancy-radio.with-icon.active .icon img { -webkit-filter: grayscale(0); filter: grayscale(0); opacity: 1; } .results-box { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin: 0; position: relative; overflow: hidden; height: 100%; } .results-box .heading { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; position: absolute; top: 15px; left: 15px; } .step.results { background: url(../images/results-bg-mobile.jpg) no-repeat; background-position: 100% 0; background-size: 70%; margin-left: -15px; margin-right: -15px; } .results-logo { margin-left: 5px; max-height: 55px; text-align: left; margin-bottom: 40px; margin-top: 30px; max-width: 175px; } .step.results h3 { color: #444; font-family: Karla,Montserrat; font-size: 34px; display: block; font-weight: 700; max-width: 240px; letter-spacing: 1.19px; margin: 25px 15px; line-height: 46px; } .step.results p.subheading { width: 240px; margin-left: 15px; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } .step.results .scroll-btn { margin-left: 15px; margin-top: 50px; margin-bottom: 40px; } .btn-back { position: absolute; left: 10px; top: 50%; cursor: pointer; } .subheader { overflow: hidden; } .subheader,nav { display: none; } #my-plan nav { display: block; } .step { display: none; } .step.active { display: block; } #landing { background: url(../images/landing-bg1b26.jpg) no-repeat; background-size: contain; background-position: top; background-color: #fff; margin-left: -15px; margin-right: -15px; padding: 15px; } @media only screen and (min-width:1025px) { #landing .container { position: relative; } } #billing .success-msg { margin-top: 20px; margin-bottom: 60px; font-size: 16px; } .question-description { margin-top: -15px; margin-bottom: 25px; } #billing { background: url(../images/billing-bg.jpg) no-repeat; background-size: contain; background-position: top; background-color: #fff; margin-left: -15px; display: none; overflow-x: hidden; margin-right: -15px; padding: 15px; } #billing h3 { color: #444; font-family: Lato; font-size: 29px; font-weight: 700; letter-spacing: .98px; line-height: 35px; } #billing .regular-logo { max-width: 125px; margin-top: 10px; } #billing .pricing { margin-top: 50px; font-size: 54px; line-height: 93px; } #billing .old-price,#billing .pricing { color: #56468f; font-family: Karla,Montserrat; text-align: center; letter-spacing: 1.19px; } #billing .old-price { font-size: 32px; margin-top: -10px; text-decoration: line-through; margin-bottom: 30px; } #billing .container { padding: 15px; } #billing .btn-payment { width: 80%; max-width: 270px; margin: 20px auto; } #billing .payment-providers span { margin-top: 35px; display: block; margin-bottom: 15px; } #billing .payment-providers { text-align: center; } #billing .payment-providers img { max-width: 100%; margin-bottom: 20px; } .covered { background-color: #ff34640d; padding: 25px; margin-left: -15px; margin-right: -15px; } .covered .heading { opacity: .58; color: #444; font-family: Lato; font-size: 15px; letter-spacing: .51px; line-height: 18px; text-align: center; } #billing .limited-offer { color: #ff3464; font-size: 17px; font-weight: 700; letter-spacing: .58px; line-height: 20px; margin-bottom: 40px; } #billing .card-inputs { display: none; } #billing .card-inputs.active { display: block; max-width: 450px; width: 100%; margin: 0 auto; margin-top: 20px; } #billing .payment-options,.covered-logos { margin-top: 25px; } .covered-logos { text-align: center; } @media only screen and (min-width:640px) { .covered-logos { margin-top: 5px; } } .covered img { width: 30%; margin: 4px; max-width: 160px; } #billing .benefits ul { color: #ff3464; } #billing .benefits ul span { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; } #landing .regular-logo { max-width: 125px; margin-top: 5px; } #landing h1 { color: #ff3464; font-family: Lato,Montserrat; font-size: 40px; font-weight: 900; letter-spacing: 1.36px; margin-top: 180px; display: block; /*max-width: 400px;*/ line-height: 46px; } @media only screen and (max-width:640px) { #landing h1 { max-width: 285px; } } #landing.men h1,#landing.over40 h1,#landing.women h1 { color: #444; font-family: Lato,Montserrat; font-size: 40px; font-weight: 900; letter-spacing: 1.36px; line-height: 43px; display: block; max-width: 285px; margin-top: 40px; } .subheader-text { color: #ff3464; font-family: Karla,Montserrat; font-size: 20px; font-weight: 700; display: block; max-width: 240px; letter-spacing: .68px; margin-top: 20px; margin-bottom: 30px; } #landing.men .btn-male { margin-top: 0!important; margin-left: 0!important; } #landing.over40 .gender-description { margin-top: -10px; } #landing .gender-description { color: #444; margin-top: 40px; font-family: Lato,Montserrat; font-size: 20px; margin-bottom: 15px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .gender-buttons .icon { position: absolute; display: block; left: 15px; top: 10px; height: 30px; } .gender-buttons .icon img { max-height: 100%; } .gender-buttons .forward { position: absolute; right: 15px; top: 50%; margin-top: -7px; } .btn-female { -webkit-box-shadow: 0 4px 11px -2px rgba(255,52,100,.5); box-shadow: 0 4px 11px -2px rgba(255,52,100,.5); color: #ff3464; display: block; } .btn-female,.btn-male { border-radius: 9px; background-color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; outline: none!important; text-align: center; position: relative; margin-top: 15px; padding: 15px; width: 100%; } .btn-male { -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); color: #56468f; } .copyright { opacity: .7; color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 20px; text-align: center; text-transform: uppercase; } .links { padding: 15px; margin-top: 25px; } .links a { opacity: .7; color: #444; font-size: 15px; display: block; letter-spacing: .51px; line-height: 22px; } .footer-logo { max-width: 115px; margin: 40px auto; display: block; } .btn-get-plan { margin-left: 5%; margin-right: 5%; width: 90%; margin-bottom: 25px; } .btn-get-plan.es,.btn-get-plan.la,.btn-get-plan.mx { font-size: 16px; } .summary h3 { margin-bottom: 5px!important; margin-top: 60px!important; } .bmi-scale .scale-title { padding-top: 15px; padding-bottom: 15px; text-align: center; font-family: Lato; font-size: 13px; letter-spacing: .44px; } .bmi-scale .first { padding-right: 0; } .bmi-scale .second { padding-left: 0; padding-right: 0; } .bmi-scale .third { padding-left: 0; } .bmi-scale .active .scale-title { color: #56468f; } .bmi-scale>div.active { background: #f6f5f9; } .bmi-scale>div { padding-top: 100px; text-align: center; } .bmi-scale .scale-result { color: #ff3464; height: 36px; font-family: Karla,Montserrat; font-size: 30px; letter-spacing: 1.02px; line-height: 36px; text-align: center; } .bmi-scale .separator { margin-top: 14px; height: 3px; margin-bottom: 2px; width: 100%; background: #f6f6f6; } .bmi-scale .separatro span { display: none; } .bmi-scale .active .separator { position: relative; margin-top: 12px; height: 7px; margin-bottom: 0; width: 100%; background: #56468f; } .bmi-scale .active .separator span { width: 22px; background-color: #ff3464; -webkit-box-shadow: 0 2px 4px 0 #ff3464; box-shadow: 0 2px 4px 0 #ff3464; display: block; height: 22px; border-radius: 50%; position: absolute; top: -8px; left: 50%; margin-left: -11px; } .box-data { padding: 20px; } .summary-container .footer-heading { font-size: 28px; } .box-data .box-title { color: #444; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } .results-box#meals img { padding-top: 35px; margin: 10px auto; display: block; margin-top: 30px; } .box-data .box-result { color: #ff3464; font-family: Lato; font-size: 15px; font-weight: 300; letter-spacing: .51px; line-height: 18px; margin-top: 5px; } .box-data .box-info { color: #444; font-family: Karla,Montserrat; font-size: 17px; letter-spacing: .58px; line-height: 20px; } #nutritional-value img { margin-top: 80px; max-width: 100%; width: 100%; margin-bottom: 15px; } #body-parts .box-data { padding-right: 50px; padding-top: 35px; } #body-parts .parts { text-align: right; padding-right: 25px; } #intake .calories { text-align: center; margin-top: 60px; } #intake .daily-norm { color: #56468f; font-size: 16px; letter-spacing: .81px; line-height: 18px; font-weight: 400; position: absolute; width: 100%; text-align: center; top: 130px; } #intake .daily-norm span { display: block; font-weight: 700; } .cr { clear: left; } #water { padding-top: 60px; } #water .water-intake { background: url(../images/water-intake.svg) no-repeat; min-height: 150px; background-size: cover; width: 100%; padding-top: 60px; color: #fff; font-family: Karla,Montserrat; font-size: 23px; font-weight: 700; letter-spacing: .81px; line-height: 27px; text-align: center; } #achievable img { margin-top: 60px; width: 70%; margin-left: 15%; } #energy-level img,#reduce-risks img { width: 110%; margin-top: 60px; margin-left: -15px; } #achievable .weight-value { color: #56468f; font-family: Karla,Montserrat; font-size: 34px; letter-spacing: .81px; line-height: 28px; width: 100%; top: 165px; } #achievable .weight-value,.meal-count { font-weight: 600; text-align: center; position: absolute; } .meal-count { width: 120px; left: 50%; top: 50%; margin-top: -30px; margin-left: -60px; color: #ff3464; } .meal-count span { color: #ff3464; text-align: center; display: block; font-size: 36px; line-height: 36px; font-weight: 700; } #email-value { margin-top: 20px; } .error-msg { text-align: center; margin-top: 25px; color: #ff3464; display: none; } #reduce-risks .box-data { padding-top: 0; } #my-plan .week-data { opacity: .9; color: #56468f; font-family: Karla,Montserrat; line-height: 48px; font-size: 22px; letter-spacing: .75px; text-align: center; } #my-plan .week-data span { font-weight: 700; } #my-plan .meal { border-radius: 9px; min-height: 100px; width: 100%; padding: 10px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } #my-plan .meal-photo { max-width: 80px; float: left; } #my-plan .meal .meal-time { color: #ff3464; font-family: Karla,Montserrat; font-size: 13px; font-weight: 700; letter-spacing: .41px; line-height: 15px; } #my-plan .meal .meal-title { opacity: .9; color: #444; font-family: Karla,Montserrat; font-size: 13px; letter-spacing: .37px; line-height: 16px; margin-top: 5px; } #my-plan .meal-data { margin: 10px; padding-left: 10px; padding-right: 30px; } @media only screen and (max-width:570px) { #my-plan .meal-data { padding-left: 5px; } } #my-plan .meal { margin-bottom: 15px; position: relative; } #my-plan .meal .arrow-icon { position: absolute; right: 0; text-align: center; top: 0; width: 34px; line-height: 100px; height: 100%; border-left: 1px solid #f6f6f6; } #my-plan .meal .arrow-icon img { opacity: .5; } #my-plan .week-days { text-align: center; padding: 10px; border-bottom: 1px solid #f6f6f6; margin-top: -25px; margin-bottom: 25px; } #my-plan .week-days a { display: inline-block; padding: 2px 17px; opacity: .3; color: #444; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 17px; text-align: center; } #my-plan .week-days a:hover { text-decoration: none; } #my-plan .week-days a.active { color: #ff3464; font-family: Karla,Montserrat; font-size: 16px; text-decoration: none; opacity: 1; font-weight: 700; letter-spacing: .68px; line-height: 20px; } #my-plan .week-days a span { height: 6px; width: 6px; display: block; border-radius: 50%; margin: 0 auto; margin-top: 5px; background-color: #c6c6c6; } #my-plan .week-days a.active span { background-color: #ff3464; } #my-plan nav>container { position: relative; } #my-plan .week-nav { position: absolute; right: 15px; top: 15px; } #my-plan .helper { position: absolute; cursor: pointer; z-index: 999; left: 15px; top: 15px; } #cc-modal .modal-title { font-weight: 700; } #cc-modal .modal-title h4 { font-size: 16px; } #cc-modal img { width: 100%; max-width: 400px; margin: 20px auto; margin-top: 10px; display: block; } #cc-modal .final-price { font-size: 16px; margin-left: 5px; display: -webkit-box; display: -ms-flexbox; display: flex; } #cc-modal .final-price .e-special,#cc-modal .final-price span { margin-left: 5px; color: #ff3464; } #cc-modal .final-price span { font-weight: 700; } #cc-modal .cc-error { margin-left: 5px; margin-top: 10px; color: red; border: 1px dotted red; padding: 10px; display: none; } .week-next,.week-prev { cursor: pointer; } .week-prev { margin-right: 15px; } .plan .week { display: none; } .plan .week.active { display: block; } .plan .day { display: none; } .plan .day.active { display: block; } #recipe-modal .modal-body { padding: 0; } #recipe-modal img { -webkit-border-top-left-radius: 9px; -webkit-border-top-right-radius: 9px; -moz-border-radius-topleft: 9px; -moz-border-radius-topright: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; max-width: 100%; } #recipe-modal .recipe-title { opacity: .7; color: #ff3464; font-family: Karla,Montserrat; font-size: 18px; font-weight: 700; letter-spacing: .47px; line-height: 22px; margin-bottom: 15px; } #recipe-modal .instructions { opacity: .7; color: #444; font-family: Karla,Montserrat; font-size: 14px; line-height: 18px; text-align: left; margin-top: 10px; font-weight: 300; } #recipe-modal .wrapper { padding: 15px; } .day .meals .meal { cursor: pointer; } #recipe-modal .preparation-time { text-align: right; opacity: .4; color: #444; font-family: Karla,Montserrat; font-size: 13px; font-weight: 700; letter-spacing: .37px; line-height: 15px; } #recipe-modal .calories { color: #56468f; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 16px; } #recipe-modal .recipe-data { border-top: 1px solid #ebebeb; margin: 15px -15px; padding-top: 15px; border-bottom: 1px solid #ebebeb; padding-bottom: 15px; } #recipe-modal .nutrients { color: #56468f; padding-right: 30px; font-family: Karla,Montserrat; } #recipe-modal .ingredients { padding-left: 30px; } .ingredients .highlight { color: red; } #recipe-modal .recipe-photo { position: relative; } #recipe-modal .close-recipe { position: absolute; top: 15px; color: #d2d0d0; font-size: 54px; line-height: 54px; right: 15px; cursor: pointer; } #recipe-modal .actions { margin-top: 15px; } #info-modal h4 { font-weight: 700; } #recipe-modal .ingredients-disclaimer { margin-left: 15px; margin-bottom: 15px; } #recipe-modal .ingredients-disclaimer span { color: red; } .womenshealth { max-width: 150px; margin: 15px auto; margin-top: 5px; display: block; } .featured-in { text-align: center; margin-top: 25px; font-weight: 600; } #landing.men .featured-in { margin-top: 15px; } #landing.men .womenshealth { margin-bottom: 30px; } .replace-recipe { margin-top: 5px; padding: 3px 10px; } #landing.women { background: url(../images/kw-bg-mobile1b26.jpg?v2) no-repeat!important; background-position: 100% 0!important; background-size: contain!important; } #landing.men,#landing.women { margin-left: -15px; margin-right: -15px; padding: 15px; } #landing.men { background: url(../images/km-bg-mobile1b26.jpg?v2) no-repeat!important; background-position: 100% 0!important; background-size: contain!important; } #landing .gender-buttons { margin-bottom: 30px; } .btn-female,.btn-male { display: inline-block; max-width: 280px; } .btn-male { margin-left: 15px; } @media only screen and (max-width:640px) { .btn-male { margin-left: 0; } } .copyright { margin-top: 50px; } #billing { margin-top: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 0; } .btn-get-plan-holder { padding-top: 10px; padding-bottom: 30px; } #billing .old-price,#billing .pricing { text-align: left; } #billing .payment-providers span { font-size: 16px; } #billing .payment-providers { text-align: left; } .btn-get-plan { clear: both; } .btn-primary.scroll-btn { max-width: 250px!important; } #billing .card-inputs.active { margin-left: 0!important; } .desktop-container { max-width: 600px; margin: 0 auto; width: 100%; margin-top: 0!important; border-radius: 9px; background-color: #fff; margin-bottom: 50px; } .desktop-container .container { width: 100%; } .desktop-container .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand { margin-left: 0!important; } #expired-modal .modal-content,#locked-modal .modal-content,#upsell-modal .modal-content { background: url(../images/locked-popup-bg-desktop.jpg) #fff no-repeat!important; padding-bottom: 200px!important; background-size: contain!important; background-position: bottom!important; } #expired-modal h1 { font-size: 24px; font-weight: 600; } #expired-modal p { font-size: 16px!important; } .recipe-container,.shopping-list-container { padding-bottom: 10px!important; } #billing .pricing-block .old-price,#billing .pricing-block .pricing { text-align: center!important; } .pricing-block { max-width: 420px; } .plan-preview-mobile { display: none!important; } .plan-preview-desktop { max-width: 100%!important; } #get-plan-btn-mobile,.plan-preview-desktop { display: block!important; } .footer-container .footer-description { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } @media(min-width:1000px) { #prequiz h1 { margin-top: 30px!important; } #prequiz #landing { max-width: 600px; margin: 20px auto!important; } } #prequiz #landing { background: #fff!important; } #prequiz h1 { max-width: 100%; font-size: 32px; line-height: 42px; margin-top: 30px; } #prequiz .btn-green { border-radius: 30.5px; background: #53b353!important; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 15px; width: 100%; max-width: 600px; font-size: 16px; font-weight: 600; margin-top: 25px; } #prequiz .btn-green:hover { opacity: .9; } #prequiz .quiz-benefits ul { padding-left: 0; margin-top: 25px; } #prequiz .quiz-benefits li { list-style: none; margin-bottom: 15px; } #prequiz .quiz-benefits i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; top: 2px; } #prequiz .quiz-benefits strong { display: inline-block; font-size: 16px; margin-left: 5px; } #prequiz .quiz-benefits p { font-size: 15px; line-height: 18px; } .summary-container { background: url(../images/footer_bg_desktop.jpg) no-repeat!important; background-size: contain!important; background-position: 100% 108%!important; } .flavor-option { width: 30%!important; display: inline-block!important; } .supplements .product-features { margin-top: 30px; } .product-price { width: 100%; } #landing.over40 { background: url(../images/o40-bg-mobile.jpg?v2) no-repeat!important; background-position: 0 15%!important; background-size: 100%!important; margin-left: -15 px; margin-right: -15px; padding: 15px; } #landing.men h1,#landing.over40 h1 { font-size: 36px; max-width: 380px!important; } #landing.men .subheader-text,#landing.over40 .subheader-text { color: #56468f; max-width: 180px!important; } #landing .landing-footer { background: #fff; } #landing.over40 .btn-male { margin-bottom: 30px; } .mobile-only { display: block; } @media only screen and (min-width:1000px) { #landing { /*background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important;*/ background: url(../images/home-bg.png) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } #landing.women { background: url(../images/kw-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; background-position: 100% 0!important; } #landing.men,#landing.women { width: 100%; margin: 0!important; padding: 0!important; } #landing.men { background: url(../images/km-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; background-position: 100% 0!important; } #landing.over40 .btn-male { margin-bottom: 0; } #landing.over40 { background: url(../images/o40-bg-desktop.jpg?v2) no-repeat!important; background-size: cover!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } .featured-in { text-align: left; } .mobile-only { display: none; } .womenshealth { max-width: 150px; margin: 15px 0; display: block; } #my-plan { background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } #my-plan .meal-data,#recipe-modal .modal-dialog { max-width: 400px; } #my-plan .desktop-container { width: 100%; max-width: 640px; margin: 0 auto; border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin-top: 75px!important; margin-bottom: 70px; } .results,body.desktop-bg { /*background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important;*/ background: url(../images/home-second.png) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } .btn-get-plan { width: 90%; max-width: 400px; margin-left: 0; margin-top: 20px; font-size: 20px; } #landing .container { padding: 15px; } #landing h1 { margin-top: 120px; } #landing .gender-buttons { margin-bottom: 30px; } .btn-female,.btn-male { display: inline-block; max-width: 240px; } .copyright { margin-top: 50px; } #billing { background: 0 0; } #landing.men h1,#landing.over40 h1 { max-width: 320px!important; } #landing.men .subheader-text,#landing.over40 .subheader-text { max-width: 280px!important; } #billing .with-bg { background: url(../images/billing-bg-desktop.jpg?v2) no-repeat; background-size: 50%; background-position: 100% 0; } #billing { margin-top: 0; padding-top: 0; } .covered img { width: auto!important; margin: 15px; } .btn-get-plan-holder { padding-top: 10px; padding-bottom: 30px; } #billing .benefits ul span { font-size: 18px; line-height: 24px; } #billing .btn-payment { max-width: 400px; margin: 20px; margin-left: 0; } #billing .old-price,#billing .pricing { text-align: left; } #billing .payment-providers span { font-size: 16px; } #billing .payment-providers { text-align: left; } .btn-get-plan { clear: both; } .btn-primary.scroll-btn { max-width: 250px!important; } #billing .payment-providers img { max-width: 400px; } #billing .card-inputs.active { margin-left: 0!important; } .desktop-container { max-width: 600px; margin: 0 auto; width: 600px; margin-top: 100px!important; border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); margin-bottom: 50px; } .desktop-container .container { width: 100%; } .desktop-container .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand { margin-left: 0!important; } #locked-modal .modal-content,#upsell-modal .modal-content { background: url(../images/locked-popup-bg-desktop.jpg) #fff no-repeat!important; padding-bottom: 200px!important; background-size: contain!important; background-position: bottom!important; } .shopping-list-container { display: none; } .recipe-container,.shopping-list-container { padding-bottom: 10px!important; } #billing .pricing-block .old-price,#billing .pricing-block .pricing { text-align: center!important; } .pricing-block { max-width: 420px; } .plan-preview-mobile { display: none!important; } .plan-preview-desktop { max-width: 100%!important; display: block!important; } #get-plan-btn-mobile { display: none!important; } .footer-content #get-plan-btn { display: block!important; } .summary-container .footer-heading { color: #444; font-family: Lato; font-size: 50px; font-weight: 700; letter-spacing: 1.7px; line-height: 60px; } .footer-container .footer-content { padding-left: 30px; padding-top: 50px; } .footer-container .footer-description { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } .summary-container { width: 100%; background: url(../images/footer_bg_desktop.jpg?v2) no-repeat!important; background-size: contain!important; background-position: 100% 108%!important; } .flavor-option { width: 30%!important; display: inline-block!important; margin-right: 2%; margin-top: 10px; text-align: left; outline: none!important; height: 40px; position: relative; } .flavor-option,.flavor-option.active { background: #fff; font-family: Karla,Montserrat; border-radius: 9px; border: 1px solid #f5f5f5; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; } .flavor-option.active { color: #ff3464!important; background-color: #fff; } .supplements .product-features { margin-top: 30px; margin-bottom: 40px; } .product-price { width: 100%; margin-left: -15px; margin-bottom: 10px; } .supplements .product-photo { margin-top: 30px; } .price-desktop { display: block!important; } .price-mobile { display: none!important; } } #my-plan { overflow-x: hidden; width: 100%; } #locked-modal h1 { font-family: Lato; font-weight: 600; font-size: 28px; } #locked-modal p { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 20px; } #locked-modal .modal-content { background: url(../images/locked-popup-bg.png); padding-bottom: 200px; background-size: cover; } .shopping-list { padding: 10px; } .shopping-list-title { font-size: 24px; text-align: left; margin-left: 10px; font-weight: 700; } .shopping-list .checkbox { margin-top: 5px; margin-bottom: 5px; cursor: pointer; } .shopping-list-print { margin-top: 10px; margin-bottom: 25px; margin-left: 5px; } .shopping-list-container { display: none; padding-bottom: 50px; } .recipe-container { padding-bottom: 50px; } .tabs-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; -webkit-box-shadow: 0 4px 11px 4px rgba(86,70,143,.3); box-shadow: 0 4px 11px 4px rgba(86,70,143,.3); margin-left: 0!important; margin-right: 0!important; } .tabs-nav .tab-item { color: #56468f; font-family: Karla,Montserrat; text-align: center; cursor: pointer; font-size: 13px; letter-spacing: .44px; line-height: 15px; font-weight: 400; height: 50px; line-height: 50px; border-top: 3px solid #fff; } .tabs-nav .tab-item.active { font-weight: 700; border-top: 3px solid #56468f; border-left: 1px solid #ebebeb; border-right: 1px solid #ebebeb; margin-left: -1px; margin-right: -1px; } .tab-item img { margin-right: 5px; } .pricing-block { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); box-shadow: 0 4px 11px -2px rgba(86,70,143,.3); padding: 15px; margin-top: 30px; margin-bottom: 30px; position: relative; overflow: hidden; } .pricing-block .disclaimer { color: #444; font-size: 15px; letter-spacing: .51px; line-height: 18px; text-align: center; } #billing .pricing-block .pricing { margin-top: 15px; } .pricing-block .rating-block { text-align: center; border-top: 1px solid #f6f6f6; padding-top: 10px; margin-top: -20px; } .pricing-block .rating-block i { color: #56468f; } .pricing-block .rating-block a { opacity: .72; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 14px; text-decoration: underline; } #billing.active { display: block!important; } #reviews-modal .modal-content { padding: 15px; position: relative; } #reviews-modal .btn-primary { font-size: 18px!important; margin-top: 10px!important; } #reviews-modal .close-modal { position: absolute; right: 15px; top: 15px; font-size: 28px; cursor: pointer; } .reviews-title { color: #444; font-family: Lato; font-size: 29px; font-weight: 700; letter-spacing: .98px; line-height: 35px; } .reviews-count { font-family: Karla,Montserrat; margin-bottom: 15px; letter-spacing: .41px; line-height: 14px; } .review-line,.reviews-count { color: #56468f; font-size: 12px; } .review-line .inactive { opacity: .5; } .review-author { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .review-item { border-bottom: 1px solid #f6f6f6; padding-bottom: 10px; margin-top: 15px; } .review-score { opacity: 1; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 16px; } .b-actions { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-bottom: 10px; margin-top: 25px; } .b-actions .btn-primary { margin: 0; font-size: 14px; width: auto; min-width: 32%; font-weight: 300; } .b-actions .btn-primary b { font-weight: 700; } .plan-lookup { font-size: 16px; padding: 8px!important; margin-top: 15px; } .plan-recovery .regular-logo { max-width: 120px; margin-top: 20px; } .has-error { border-color: #e97866!important; outline: 0!important; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px hsla(8,75%,66%,.6)!important; box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px hsla(8,75%,66%,.6)!important; } .plan-status { padding-top: 15px; display: none; padding-bottom: 15px; border-top: 1px dotted #ebebeb; margin-top: 15px; border-bottom: 1px solid #ebebeb; } .copyright .disclaimer { margin-top: 10px; font-size: 12px; } .footer-container { margin-top: 40px; } .summary-container { width: 100%; background: url(../images/footer_bg_mobile.jpg) no-repeat; background-size: contain; background-position: 0 100%; } .plan-preview-mobile { max-width: 100%; } .footer-content #get-plan-btn,.plan-preview-desktop { display: none; } .footer-heading { color: #444; font-family: Lato; font-size: 36px; font-weight: 700; letter-spacing: 1.7px; line-height: 36px; margin-top: 5px; } .footer-description { font-size: 15px; letter-spacing: .51px; line-height: 18px; margin-top: 25px; } .footer-description,.supplements h5 { color: #444; font-family: Karla,Montserrat; } .supplements h5 { font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .supplements .product-features { margin-top: 15px; margin-bottom: 40px; } .supplements .product-features>div>div { padding: 15px; } .btn-buy-now { max-width: 400px; margin-bottom: 40px; } .supplements .product-photo { position: relative; margin-bottom: 30px; } .supplements .product-photo img { max-width: 320px; } .step.results.supplements h3 { max-width: 350px; margin-bottom: 0; margin-left: 0; margin-top: 0; } .step.results.supplements h3 span { color: #444; font-family: Karla,Montserrat; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .product-options { max-width: 600px; } .product-features i { color: #ff3464!important; } .product-price { border-radius: 9px; background-color: #fff; -webkit-box-shadow: 0 4px 11px -7px rgba(0,0,0,.5); box-shadow: 0 4px 11px -7px rgba(0,0,0,.5); color: #56468f; font-family: Karla,Montserrat; margin-left: -15px; font-size: 35px; margin-top: 10px; border: 1px solid #f5f5f5; border-top: 0; letter-spacing: 1.39px; line-height: 41px; padding-bottom: 10px; text-align: center; } .product-price .line { margin-bottom: 10px; height: 6px; -webkit-border-top-left-radius: 9px; -webkit-border-top-right-radius: 9px; -moz-border-radius-topleft: 9px; -moz-border-radius-topright: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; width: 100%; background: #ff3464; } .product-rating { margin-left: 0; color: #56468f; font-family: Karla,Montserrat; font-size: 12px; letter-spacing: .41px; line-height: 14px; margin-bottom: 10px; } .product-flavors { padding-left: 15px; } .flavor-option { width: 100%; display: block; margin-right: 2%; margin-top: 10px; text-align: left; outline: none!important; height: 40px; position: relative; } .flavor-option,.flavor-option.active { background: #fff; font-family: Karla,Montserrat; border-radius: 9px; border: 1px solid #f5f5f5; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; box-shadow: 0 4px 11px -2px rgba(86,70,143,.3)!important; } .flavor-option.active { color: #ff3464!important; background-color: #fff; } .flavor-option span { position: absolute; height: 40px; width: 40px; top: 0; right: 0; text-align: center; background-color: #e4e5e7; -webkit-border-top-right-radius: 9px; -webkit-border-bottom-right-radius: 9px; -moz-border-radius-topright: 9px; -moz-border-radius-bottomright: 9px; border-top-right-radius: 9px; border-bottom-right-radius: 9px; line-height: 40px; color: #fff; font-weight: 700; font-size: 18px; } .price-desktop { display: none; } .price-mobile { display: block; position: absolute; bottom: -5px; right: 30px; margin-bottom: 10px; } .flavor-option.active span { background: #56468f; } .product-price { width: 200px; margin-left: 0; } .braintree-sheet { border: 0!important; } .braintree-sheet__header { display: none!important; } .braintree-sheet__content--form .braintree-form__field-group .braintree-form__field .braintree-form__hosted-field { border: 0; border-bottom: 1px solid #e4e5e7; } [data-braintree-id=expiration-date-field-group] label,[data-braintree-id=number-field-group] label { width: 100%; } [data-braintree-id=card-sheet-header] { border: 0!important; } [data-braintree-id=toggle] { display: none; } #braintree-checkout .input-holder .braintree-form__label { margin-bottom: 5px; } #braintree-checkout .input-holder label { width: 100%; color: #000; display: block; font-size: 14px; font-weight: 400; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; line-height: 1.4; margin-left: 5px; } #braintree-checkout .input-holder { margin-bottom: 15px; width: 100%; padding-right: 5px; } #braintree-checkout .input-holder input { font-weight: 400; padding-top: 10px; padding-bottom: 10px; font-size: 16px; } .braintree-sheet__content--form { padding: 0!important; } .braintree-placeholder { display: none; } #card-holder.with-error { border-color: #ca2a2a!important; } .braintree-form__field-error { margin-bottom: 10px!important; color: #ca2a2a; display: none; font-size: 13px; line-height: 1.4; margin: 5px 0; padding: 0; } .b-contacts { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: auto; } @media only screen and (max-width:570px) { .b-contacts { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } .b-contacts .b-contacts-contacts { width: 50%; } .b-contacts .b-contacts-contacts .text-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; } .b-contacts .b-contacts-contacts .text-wrapper .col-6:last-child { padding-left: 30px; } .b-contacts .b-contacts-contacts .text-wrapper strong { font-weight: 700; font-size: 16px; margin-top: 10px; display: inline-block; } .b-contacts .b-contacts-form { padding-top: 60px; padding-bottom: 30px; } .b-contacts .b-contacts-form label { margin-top: 10px; } .b-contacts .b-contacts-form .btn-next-step { max-width: 200px; } #billing .btn-payment.btn-es,#billing .btn-payment.btn-la,#billing .btn-payment.btn-mx { font-size: 18px; width: 90%!important; max-width: 280px!important; } .plan-disclaimer { font-style: italic; padding-bottom: 15px; font-size: 13px; } .b-slides--slide { margin-bottom: 30px; -webkit-box-shadow: 3px 4px 16px #efefef; box-shadow: 3px 4px 16px #efefef; border-radius: 15px; padding: 13px 20px 10px; background: #fff; } .b-slides--slide .b-avatar { display: -webkit-box; display: -ms-flexbox; display: flex; } .b-slides--slide .b-avatar img { max-width: 50px; } .b-slides--slide .b-avatar .e-title { font-size: 15px; margin: 0; font-weight: 700; padding-top: 3px; } .b-slides--slide .b-avatar .e-subtitle { font-size: 12px; } .b-slides--slide .e-text { margin-top: 10px; } .b-slides--slide .b-social { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; margin-top: 20px; } .b-slides--slide .b-social .e-icon { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-right: 10px; } .b-slides--slide .b-social .e-icon .number { font-size: 12px; margin: 0; padding-left: 5px; } .b-slides--slide .b-avatar-image { margin-right: 10px; } .b-slides { margin-top: 30px; margin-bottom: 30px; margin-left: -130px; width: calc(100% + 250px); } @media only screen and (max-width:900px) { .b-slides { width: 100%; margin: 0; margin-top: 50px; } } .b-slides .slick-slide { margin-right: 15px; } .step .slick-dots { padding-left: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-top: 15px; margin-bottom: 70px; } .step .slick-dots li { margin-left: 10px; margin-right: 10px; list-style-type: none; } .step .slick-dots li button { border: 20px; background: #56468f; opacity: .5; border-radius: 40px; height: 12px; width: 12px; text-indent: 1010px; padding: 0; margin: 0; } .step .slick-dots li button:focus { outline: none; } .step .slick-dots li.slick-active button { opacity: 1; } .e-emailsuggestion { color: red; cursor: pointer; } .b-form.m-short { max-width: 390px; margin-bottom: 40px; } p.c-mb-0 { margin-bottom: 0; } .m-error { border: 1px solid red!important; } .m-success { color: green; } input.m-error { border: 1px solid red; } .is-disabled { opacity: .5; pointer-events: none; } .intake-disclaimer { margin-top: 5px; font-size: 11px; font-style: italic; } .e-termsconditions { padding-left: 10px; padding-top: 10px; margin-bottom: -10px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .e-termsconditions label { cursor: pointer; padding-left: 10px; line-height: 18px; } .e-termsconditions .error-msg { width: 100%; text-align: left; margin: 0; } #billing .payment-options { margin-top: 15px; } @media only screen and (max-width:640px) { #billing .btn-payment { max-width: 100%; margin-right: 0; margin-left: 0; width: 100%; } } .b-text.m-terms { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 30px; max-height: 530px; overflow: scroll; } @media only screen and (max-width:640px) { .b-text.m-terms { padding: 30px 10px; } } @media only screen and (max-width:640px) { .b-text.m-terms ol,.b-text.m-terms ul { padding-left: 25px; } } .b-text.m-terms ol li p { margin-bottom: 5px!important; } @media only screen and (max-width:640px) { .b-text.m-terms td p { margin-left: 10px!important; } } .b-text.m-terms p[align=JUSTIFY] { margin-left: 60px!important; } @media only screen and (max-width:640px) { .b-text.m-terms p[align=JUSTIFY] { margin-left: 60px!important; } } .story-block { margin-top: 20px; } .story-block .story-img { max-width: 375px; width: 100%; margin: 0 auto; display: block; } .story-info { background: #fff; display: block; width: calc(100% - 16px); max-width: 355px; -webkit-box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); box-shadow: 0 4px 11px -2px rgba(86,70,143,.5); margin: 0 auto; margin-top: -30px; position: relative; -webkit-border-bottom-right-radius: 10px; -webkit-border-bottom-left-radius: 10px; -moz-border-radius-bottomright: 10px; -moz-border-radius-bottomleft: 10px; border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; border-top: 1px solid #ebebeb; } .story-info .weight-entry { padding: 15px; font-weight: 600; } .story-info .weight-entry span { display: inline-block; margin-left: 5px; color: #ff3464; } .story-info .graph { padding: 0; border-top: 1px solid #ebebeb; padding-top: 10px; } .story-info .graph img { max-width: 100%; } #landing.story-landing .gender-description.mobile-only { display: none; } #landing.story-landing .gender-description.desktop-only { display: block; } #landing.story-landing h1 { margin-top: 50px!important; font-size: 34px!important; max-width: 320px!important; } .discount-ribbon { width: 153px; height: 34px; top: 20px; right: -55px; position: absolute; display: block; background: #ff2e63; color: #333; font-size: 16px; color: #fff; text-align: center; line-height: 34px; transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); font-weight: 700; padding-right: 15px; } @media only screen and (min-width:768px) { .story-block { margin-left: -10px; } } @media only screen and (min-width:768px) and (min-width:640px) { .story-block { margin-left: 0; } } @media only screen and (min-width:768px) { .story-block .story-img { margin-left: 0; } .story-block .story-info { margin-left: 10px; } .story-scroll { display: none; } } @media only screen and (max-width:767px) { #landing.story-landing { background: url(../images/results-bg-mobile.jpg) no-repeat; background-position: 100% 0; background-size: 70%; } #landing.story-landing .gender-description.desktop-only { display: none!important; } #landing.story-landing .gender-description.mobile-only { display: block!important; } .story-landing h1 { margin-top: 70px!important; } .story-scroll { display: block; margin-bottom: 25px; } #landing.story-landing .gender-description { padding-left: 15px; margin-top: 30px; margin-bottom: 5px; } .story-landing .gender-buttons { margin: 0 auto; padding-left: 10px; padding-right: 10px; } .story-landing .gender-buttons .btn { max-width: 380px; } } #terms_and_conditions { margin-top: 1px!important; } @media only screen and (max-width:640px) { #terms_and_conditions_modal_eu .close,#terms_and_conditions_modal_us .close { right: 10px!important; top: 5px!important; color: #000!important; } } #my-plan .e-heading { margin-top: 20px; margin-bottom: -15px; text-align: center; } @media only screen and (max-width:640px) { #my-plan .b-actions { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #my-plan .b-actions .btn-primary { margin-right: 5px; margin-left: 5px; } @media only screen and (max-width:640px) { #my-plan .b-actions .btn-primary { margin-bottom: 10px; } } .is-pulsing { border-radius: 50%; -webkit-box-shadow: 0 0 0 #f9838f; box-shadow: 0 0 0 #f9838f; -webkit-animation: pulse 2s infinite; animation: pulse 2s infinite; } @-webkit-keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(249,131,143,.4); box-shadow: 0 0 0 0 rgba(249,131,143,.4); } 70% { -webkit-box-shadow: 0 0 0 10px transparent; box-shadow: 0 0 0 10px transparent; } to { -webkit-box-shadow: 0 0 0 0 transparent; box-shadow: 0 0 0 0 transparent; } } @keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(249,131,143,.4); box-shadow: 0 0 0 0 rgba(249,131,143,.4); } 70% { -webkit-box-shadow: 0 0 0 10px transparent; box-shadow: 0 0 0 10px transparent; } to { -webkit-box-shadow: 0 0 0 0 transparent; box-shadow: 0 0 0 0 transparent; } } .email-description { font-size: 15px; display: none; } .email-promise { padding: 10px; color: #8c8c8c; display: none; font-size: 13px; line-height: 22px; margin-top: 10px; } #bmi-risks .e-heading { text-align: center; font-size: 22px; max-width: 285px; margin: auto; padding-top: 20px; padding-bottom: 15px; line-height: 28px; font-weight: 700; } #bmi-risks ul { max-width: 240px; margin: 0 auto; margin-bottom: 25px; font-size: 16px; font-family: Lato,Montserrat; line-height: 30px; font-weight: 700; color: #ff3464; } #bmi-risks ul li span { font-weight: 400; color: #444; } .e-rating svg polygon { fill: #56468f; } .benefits-description { font-size: 16px; margin-top: 30px; } #landing.keto_v3 { background: url(../images/keto_3/bg_image.jpg) no-repeat; background-position: 95% 0; background-size: 50%; } #landing.keto_v3 .e-img img { width: 100%; } #landing.keto_v3 .b-stats { margin-left: -7px; width: calc(100% + 15px); display: -webkit-box; display: -ms-flexbox; display: flex; margin-top: 30px; } @media only screen and (max-width:640px) { #landing.keto_v3 .b-stats { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 20px; } } #landing.keto_v3 .btn-action { width: 100%; background: #56468f; -webkit-box-shadow: 0 4px 11px -2px #56468f; box-shadow: 0 4px 11px -2px #56468f; color: #fff; padding-top: 12px; padding-bottom: 12px; max-width: 300px; } #landing.keto_v3 .btn-action:focus { outline: none; } @media only screen and (max-width:640px) { #landing.keto_v3 .btn-action { max-width: 100%; } } #landing.keto_v3 .e-title { max-width: 310px; font-size: 30px; color: #ff3464; letter-spacing: 1.02px; font-weight: 700; margin-bottom: 20px; } @media only screen and (max-width:640px) { #landing.keto_v3 .e-title { margin-bottom: 10px; } } #landing.keto_v3 .e-img-stats { margin-top: 15px; max-width: 360px; } #landing.keto_v3 h1 { margin-top: 25px; font-size: 30px; line-height: 42px; font-weight: 700; } #landing.keto_v3 .gender-description { margin-top: 20px; margin-bottom: 10px; } @media only screen and (max-width:640px) { #landing.keto_v3 .gender-buttons .btn { width: 100%; max-width: 100%; } } @media only screen and (min-width:768px) { #landing.dynamic { background: url(../images/landing-bg-desktop.jpg?v2) no-repeat!important; background-size: contain!important; width: 100%; margin: 0!important; padding: 0!important; background-position: 100% 0!important; } } @media only screen and (max-width:767px) { #landing.dynamic { background-position: 0 -30px!important; } } @media only screen and (max-width:767px) { #landing { background-position: 0 -35px!important; } } #landing.dynamic h1 { max-width: 390px!important; font-size: 51px!important; line-height: 62px; } .results-box .e-title { font-size: 25px; padding-top: 15px; } .results-box .e-subtitle,.results-box .e-title { font-weight: 700; padding-left: 15px; padding-right: 15px; } .results-box .e-subtitle { font-size: 10px; } .results-box .e-number { color: #ff3464; } #cholesterol_level { background: url(../images/widgets/cholesterol.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #cholesterol_level { background-size: cover; } } #succesrate_level { background: url(../images/widgets/success.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #succesrate_level { background-size: cover; } } #blood_level { background: url(../images/widgets/blood.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #blood_level { background-size: cover; } } #sugar_level { background: url(../images/widgets/sugar.png); background-size: contain; min-height: 300px; background-position: bottom; background-repeat: no-repeat; } @media only screen and (max-width:640px) { #sugar_level { background-size: cover; } } .summary .row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .summary .column { margin-bottom: 20px; } @media only screen and (max-width:900px) { .summary .column { width: 50%; } } @media only screen and (max-width:640px) { .summary .column { width: 100%; } } .btn-secondary,.e-btn-primary { color: #fff; min-height: 65px; } .btn-secondary .icon,.e-btn-primary .icon { top: 0; bottom: 0; margin: auto; left: 20px; } .btn-secondary .e-icon-person,.e-btn-primary .e-icon-person { height: 25px; } .btn-secondary .e-icon-arrow,.e-btn-primary .e-icon-arrow { right: 20px; left: auto; height: 14px; } .e-btn-primary { background: #ff3464; } .e-btn-primary,.e-btn-primary:hover { -webkit-transition: all .5s; transition: all .5s; } .e-btn-primary:hover { background: rgba(255,52,100,.7); color: #fff; } .btn-secondary { background: #56468f; } .btn-secondary,.btn-secondary:hover { -webkit-transition: all .5s; transition: all .5s; } .btn-secondary:hover { background: rgba(86,70,143,.7); color: #fff; } #landing.dynamic.dynamic-bgfeatured_mobile h1,#landing.dynamic.dynamic-bgfeatured h1 { max-width: 300px!important; font-size: 50px!important; line-height: 58px; margin-top: 80px; } @media only screen and (max-width:640px) { #landing.dynamic.dynamic-bgfeatured_mobile h1,#landing.dynamic.dynamic-bgfeatured h1 { margin-top: 0; font-size: 31px!important; line-height: 38px; } } @media only screen and (max-width:1124px) { .dynamic-bgfeatured .container,.dynamic-bgfeatured_mobile .container { width: 100%; } } .dynamic-bgfeatured .b-header,.dynamic-bgfeatured_mobile .b-header { padding-top: 15px; padding-left: 25px; padding-right: 25px; position: relative; z-index: 1; } @media only screen and (max-width:640px) { .dynamic-bgfeatured .b-header,.dynamic-bgfeatured_mobile .b-header { text-align: center; background-image: -webkit-gradient(linear,left top,left bottom,from(#eee),color-stop(0,#fff),color-stop(99%,hsla(0,0%,100%,0))); background-image: linear-gradient(-180deg,#eee,#fff 0,hsla(0,0%,100%,0) 99%); min-height: 130px; } } #landing.dynamic-bgfeatured { background: 0 0!important; } #landing.dynamic-bgfeatured,#landing.dynamic-bgfeatured_mobile { position: relative; padding: 0; margin-left: 0; margin-right: 0; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured_mobile { background: 0 0!important; } } #landing.dynamic-bgfeatured .col-6,#landing.dynamic-bgfeatured_mobile .col-6 { width: 50%; } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .gender-description,#landing.dynamic-bgfeatured_mobile .gender-description { margin-top: 25px; } } #landing.dynamic-bgfeatured .e-content,#landing.dynamic-bgfeatured_mobile .e-content { max-width: 330px; width: 40%; padding-left: 25px; } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .e-content,#landing.dynamic-bgfeatured_mobile .e-content { max-width: 100%; width: 100%; display: inline-block; padding: 20px; margin-top: 120px; } } #landing.dynamic-bgfeatured .gender-description,#landing.dynamic-bgfeatured_mobile .gender-description { margin-bottom: 0; } #landing.dynamic-bgfeatured .gender-buttons .btn,#landing.dynamic-bgfeatured_mobile .gender-buttons .btn { width: 100%; max-width: 100%; margin-left: 0; } #landing.dynamic-bgfeatured .container,#landing.dynamic-bgfeatured_mobile .container { min-height: 100vh; padding: 0; } #landing.dynamic-bgfeatured .e-bgfeatured { width: 60%; float: right; min-height: 100%; height: 100vh; position: absolute; right: 0; top: 0; bottom: 0; background-size: cover!important; background-position: 50%!important; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured .e-bgfeatured { width: 50%; } } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured .e-bgfeatured { bottom: auto; height: auto; min-height: 240px; width: 100%; } } #landing.dynamic-bgfeatured_mobile .e-bgfeatured { width: 60%; float: right; min-height: 100%; height: 100vh; position: absolute; right: 0; top: 0; bottom: 0; background-size: cover!important; background-position: 50%!important; display: none; } @media only screen and (max-width:768px) { #landing.dynamic-bgfeatured_mobile .e-bgfeatured { width: 50%; } } @media only screen and (max-width:640px) { #landing.dynamic-bgfeatured_mobile .e-bgfeatured { display: block; bottom: auto; height: auto; min-height: 240px; width: 100%; } } .story-5#landing.story-landing .gender-description,.story-6#landing.story-landing .gender-description { padding-left: 0; } .story-5#landing .gender-description,.story-6#landing .gender-description { margin-bottom: 0; margin-top: 35px; } @media only screen and (max-width:640px) { .story-5#landing.story-landing,.story-6#landing.story-landing { background-position: 100% 0!important; } } .story-5 #landing.story-landing h1,.story-6 #landing.story-landing h1 { line-height: 42px; } .story-5 .e-subtitle,.story-6 .e-subtitle { max-width: 290px; line-height: 18px; } .story-5 .story-scroll,.story-6 .story-scroll { max-width: 325px; border-radius: 9px; margin-top: 15px; display: block; font-size: 15px; min-height: 56px; } @media only screen and (max-width:640px) { .story-5 .story-scroll,.story-6 .story-scroll { max-width: 100%; } } .story-5 .e-image,.story-6 .e-image { min-height: 350px; } .story-5 .story-block,.story-6 .story-block { max-width: 325px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-shadow: 0 4px 11px rgba(86,70,143,.5); box-shadow: 0 4px 11px rgba(86,70,143,.5); border-radius: 10px 10px 10px 10px; overflow: hidden; margin-top: 30px; margin-left: 0; } @media only screen and (max-width:640px) { .story-5 .story-block,.story-6 .story-block { max-width: 100%; } } .story-5 .story-block .e-header,.story-6 .story-block .e-header { position: relative; background: #fff; width: 100%; min-height: 65px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .story-5 .story-block .e-image,.story-6 .story-block .e-image { position: relative; min-height: 250px; background-size: 110%!important; background-position: 50%!important; display: inline-block!important; width: 100%; } .story-5 .story-block .story-info,.story-6 .story-block .story-info { margin: 0; width: 100%; padding: 0; border: none; -webkit-box-shadow: none; box-shadow: none; } .story-5 .story-block .weight-entry,.story-6 .story-block .weight-entry { text-align: center; font-weight: 700; padding-bottom: 2px; } .story-5 .story-block .weight-entry .e-number,.story-6 .story-block .weight-entry .e-number { font-size: 20px; color: #ff3464; line-height: 24px; } .story-5 .story-block .e-measurement,.story-6 .story-block .e-measurement { font-size: 12px; } .story-5 .gender-buttons,.story-6 .gender-buttons { display: -webkit-box; display: -ms-flexbox; display: flex; } @media only screen and (max-width:640px) { .story-5 .gender-buttons,.story-6 .gender-buttons { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding: 0; } } .story-6 .container { position: relative; } .story-6 .story-scroll { position: absolute; top: 0; right: 14px; max-width: 130px; min-height: 47px; } .story-6#landing.story-landing h1 { margin-top: 25px!important; font-size: 34px!important; max-width: 100%!important; line-height: 40px; } .story-6 .story-block { margin-top: 25px; -webkit-box-shadow: none; box-shadow: none; border-radius: 0; background: #fff; } .story-6 .e-description { max-height: 160px; overflow: hidden; position: relative; padding: 15px 20px; } @media only screen and (max-width:640px) { .story-6 .e-description { padding: 0; padding-top: 15px; } } .story-6 .e-description:before { content: ""; background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff)); background: linear-gradient(-180deg,hsla(0,0%,100%,0),#fff); width: 100%; position: absolute; height: 100px; bottom: 0; left: 0; right: 0; } .story-6 .e-description.is-open { max-height: none; } .story-6 .e-description.is-open:before { background: 0 0; } .story-6 .e-image { border-radius: 10px; } .story-6#landing .gender-description { margin-top: 20px; } .e-btn-simple { font-size: 19px; text-decoration: underline; font-weight: 700; color: #ff3464; position: relative; background: 0 0; border: none; } .e-btn-readmore { top: -10px; } .paypal-btn { background-color: #3b7bbf!important; -webkit-box-shadow: 0 4px 11px -2px #3b7bbf; box-shadow: 0 4px 11px -2px #3b7bbf; margin-top: 15px; margin-bottom: 30px; } .paypal-btn i { color: #fff!important; } .paypal-btn:hover { background-color: #3b7bbf!important; -webkit-box-shadow: 0 4px 11px -2px #3b7bbf; box-shadow: 0 4px 11px -2px #3b7bbf; } .info-slide .info-heading { text-align: center; font-size: 24px; line-height: 32px; padding-top: 10px; padding-bottom: 10px; font-weight: 600; } .info-slide .subheading { text-align: center; font-size: 20px; line-height: 28px; margin-top: 10px; margin-bottom: 30px; } .info-slide .subheading span { color: #ff3464; font-weight: 700; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .product-composition,.m-billing--v6.m-billing--v7 .user-reviews { text-align: center; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block { max-width: 650px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .success-story { text-align: center; padding-top: 25px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .success-story .block-content { margin: auto; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .story-block { margin-bottom: 20px; } } .m-billing--v6.m-billing--v7 .story-info { max-width: none!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .keto-benefits { max-width: 660px; margin: auto; } } .m-billing--v6.m-billing--v7 .success-story .block-content { max-width: 410px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .story-info { margin-left: 0; margin-right: 0; max-width: 100%; width: 100%; padding: 15px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .b-mainprice { text-align: center; } } .m-billing--v6.m-billing--v7 .block-content { width: 100%; } .m-billing--v6.m-billing--v7 .regular-logo { display: block!important; } @media only screen and (max-width:640px) { .m-billing--v6.m-billing--v7 .regular-logo { margin: auto; margin-top: 10px; } } .m-billing--v6.m-billing--v7 .pricing-block { border-bottom: 0!important; } .m-billing--v6.m-billing--v7 .block-content img { max-width: 100%; } .m-billing--v6.m-billing--v7 .covered { margin-top: 30px; margin-bottom: 10px; padding-top: 40px; padding-bottom: 40px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .covered { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); } } .m-billing--v6.m-billing--v7 .covered .heading { color: #000; font-weight: 700; text-decoration: underline; } .m-billing--v6.m-billing--v7 .value-proposition { display: block; margin-top: 15px; font-weight: 400; text-transform: uppercase; } .m-billing--v6.m-billing--v7 .value-proposition span { color: #ff3464; } .m-billing--v6.m-billing--v7 .product-composition h3 { display: block; font-size: 24px; margin-bottom: 15px; } .m-billing--v6.m-billing--v7 .product-composition img.e-book { max-width: 50%; } .m-billing--v6.m-billing--v7 .product-composition p { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; margin-top: 15px; margin-bottom: 50px; letter-spacing: .51px; line-height: 18px; text-align: center; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .e-feature { max-width: 330px; margin: auto; margin-bottom: 5px; font-size: 20px; } } .m-billing--v6.m-billing--v7 .disclaimer { color: #56468f; font-size: 30px!important; font-weight: 700; letter-spacing: 1.02px!important; line-height: 36px!important; text-align: center; text-decoration: underline; margin-bottom: 7px!important; padding-bottom: 0!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .disclaimer { min-height: 0; padding-bottom: 10px!important; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .e-notice-bg { margin-top: 10px; text-align: center; padding-top: 10px; padding-bottom: 10px; } } .m-billing--v6.m-billing--v7 .disclaimer2 { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; text-align: center; margin-bottom: 20px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .disclaimer2 { margin-bottom: 10px; margin-top: 15px; } } .m-billing--v6.m-billing--v7 .cta-btn { font-size: 18px!important; font-weight: 600!important; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; max-width: 300px; margin-bottom: 20px; margin-top: 0; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block .block-content { text-align: center; } } .m-billing--v6.m-billing--v7 .selling-points { padding-top: 30px; padding-bottom: 30px; } .m-billing--v6.m-billing--v7 .selling-points img { margin-top: 15px; margin-bottom: 15px; } .m-billing--v6.m-billing--v7 .selling-points img.gym-icon { max-width: 45%; } .m-billing--v6.m-billing--v7 .selling-points p { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; margin-top: 15px; margin-bottom: 30px; text-align: center; } .m-billing--v6.m-billing--v7 .block-content .moneyback { max-width: 50%; } .m-billing--v6.m-billing--v7 .moneyback-description { margin-top: 20px; font-size: 12px; } .m-billing--v6.m-billing--v7 .what-you-get { margin-left: -15px; margin-right: -15px; margin-bottom: 30px; background: #56468f; padding: 15px; } .m-billing--v6.m-billing--v7 .what-you-get h2 { color: #fff!important; } .m-billing--v6.m-billing--v7 .user-reviews { margin-top: 30px; margin-bottom: 60px; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .user-reviews img { max-width: 400px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .block-content .moneyback { max-width: 200px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .faq { max-width: 600px; margin: auto; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .moneyback-description { max-width: 400px; margin: auto; margin-top: 20px; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .payment-providers { text-align: center!important; } } .m-billing--v6.m-billing--v7 h2 { color: #1a1e27; font-size: 30px; font-weight: 700; line-height: 37px; margin-bottom: 25px; margin-top: 25px; text-align: center; text-decoration: underline; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 h2 { text-align: center; } } .m-billing--v6.m-billing--v7 h2 span { color: #ff3464; } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .limited-offer { text-align: center; } } @media only screen and (min-width:640px) { .m-billing--v6.m-billing--v7 .pricing-block { margin: auto; } } .payment-separator { width: 100%; text-align: center; border-bottom: 1px solid #ebebeb; line-height: .1em; margin: 25px 0; } .payment-separator span { background: #fff; padding: 0 10px; } @media only screen and (min-width:769px) { .m-billing--v6 .desktop-review { display: block; float: left; margin-left: 40px; width: 450px; text-align: left; } .m-billing--v6 .desktop-review .heading { color: #1a1e27; font-size: 42px; font-weight: 700; line-height: 50px; margin-top: 30px; margin-bottom: 10px; } .m-billing--v6 .desktop-review p { display: block!important; } .m-billing--v6 .scroll-back-btn { width: 100%; max-width: 600px; outline: none; border-radius: 30.5px; text-align: center; color: #fff; font-size: 22px; border: 0; margin: 20px auto; display: block; font-weight: 600; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; } .m-billing--v6 .scroll-back-btn:hover { background: #bf3144!important; } .m-billing--v6 .opacity-bg { background: hsla(0,0%,100%,.8); width: 100%; } .m-billing--v6 .with-bg { background-size: 45%!important; } .m-billing--v6 .desktop-billing-container { width: 90%; max-width: 900px; text-align: center; } .m-billing--v6 .desktop-billing-container h3 { font-size: 50px!important; font-weight: 900!important; letter-spacing: 1.38px!important; line-height: 64px!important; text-align: center; } .m-billing--v6 .desktop-billing-container .payment-options { display: none; } .m-billing--v6 .desktop-billing-container .pricing-block.is-active .cta-btn { background: #ff3464!important; } .m-billing--v6 .desktop-billing-container .pricing-block.second .b-mainprice { margin-top: 45px!important; } .m-billing--v6 .desktop-billing-container .community-box { border-radius: 9px; background-color: #fff; width: 100%; max-width: 320px; margin: 30px auto; padding: 20px; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); } .m-billing--v6 .desktop-billing-container .community-box .stars,.m-billing--v6 .desktop-billing-container .community-box span { color: #ff3464; } .m-billing--v6 .desktop-billing-container .limited-offer { display: block; opacity: .8; color: #fff!important; margin-bottom: 5px!important; margin-top: 20px!important; padding: 10px!important; font-size: 18px!important; border-radius: 5px; background-color: #ff3464; width: 100%; } .m-billing--v6 .desktop-billing-container .limited-offer span { text-decoration: underline; } .m-billing--v6 .desktop-billing-container .review-block { display: inline-block; vertical-align: top; width: 28%; margin-right: 5%; text-align: left; } .m-billing--v6 .desktop-billing-container .review-block .desktop-hidden { display: none; } .m-billing--v6 .desktop-billing-container .review-block .name span { font-weight: 600; opacity: .5; margin-right: 10px; } .m-billing--v6 .desktop-billing-container .review-block .name i { color: #ff3464; } .m-billing--v6 .desktop-billing-container .review-block .headline { margin-top: 10px; font-weight: 600; font-style: italic; } .m-billing--v6 .desktop-billing-container .review-block img { max-width: 30px; margin-right: 7px; border-radius: 50%; } .m-billing--v6 .desktop-billing-container .faq h4 { text-align: center; color: #444; font-size: 42px; font-weight: 700; line-height: 50px; } .m-billing--v6 .desktop-billing-container .faq .question-block { display: inline-block; text-align: left; width: 28%; margin-right: 5%; vertical-align: top; } .m-billing--v6 .desktop-billing-container .faq .question-block .question { font-weight: 600; margin-top: 10px; } .m-billing--v6 .desktop-billing-container .success-story.male-110 { min-height: 440px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-110 { min-height: 400px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-60 { min-height: 385px!important; } .m-billing--v6 .desktop-billing-container .success-story.female-70,.m-billing--v6 .desktop-billing-container .success-story.female-80,.m-billing--v6 .desktop-billing-container .success-story.female-90,.m-billing--v6 .desktop-billing-container .success-story.female-100 { min-height: 410px!important; } .m-billing--v6 .desktop-billing-container .success-story { background: #ff346414; border-radius: 9px; padding: 15px 30px; min-height: 320px; margin-top: 30px; margin-bottom: 30px; } .m-billing--v6 .desktop-billing-container .success-story h4 { display: none; } .m-billing--v6 .desktop-billing-container .success-story .story-block { margin-left: 0; margin-bottom: 20px; float: left; width: 320px; } .m-billing--v6 .desktop-billing-container .success-story .story-block img { width: 100%; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-info { width: 100%; padding: 10px; margin-left: 0!important; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-name { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .desktop-billing-container .success-story .story-block .story-details span { color: #ff3464; } .m-billing--v6 .desktop-billing-container .success-story p { display: none; } .m-billing--v6 .desktop-billing-container .pricing-block { border-radius: 9px; background-color: #fff; border: 0!important; width: 47%; float: right; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); padding-bottom: 30px; } .m-billing--v6 .desktop-billing-container .pricing-block .block-content { width: 100%; max-width: 360px; } .m-billing--v6 .desktop-billing-container .pricing-block .e-notice-bg.discount { background: #56468f; color: #fff; } .m-billing--v6 .desktop-billing-container .pricing-block .e-heading { display: none!important; } .m-billing--v6 .desktop-billing-container .pricing-block .cta-btn { width: 80%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .m-billing--v6 .desktop-billing-container .pricing-block .disclaimer { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; background: #fff!important; text-align: center; } .m-billing--v6 .desktop-billing-container .pricing-block.first { float: left; } .m-billing--v6 .desktop-billing-container .reviews { clear: both; } .m-billing--v6 .desktop-billing-container .reviews h4 { text-align: center; color: #444; font-size: 42px; font-weight: 700; line-height: 50px; } } @media only screen and (max-width:767px) { .m-billing--v6 { background: #fff!important; } .m-billing--v6 .desktop-review { display: none; } .m-billing--v6 .keto-benefits ul { padding-left: 0; margin-top: 20px; } .m-billing--v6 .keto-benefits li { list-style: none; color: #252a34; font-size: 15px; font-weight: 700; text-align: left; letter-spacing: .51px; line-height: 18px; margin-bottom: 15px; } .m-billing--v6 .keto-benefits li i { font-size: 18px; font-weight: 700; color: #ff2e63; } .m-billing--v6 h3 { display: none; } .m-billing--v6 h4 { color: #1a1e27; font-size: 22px; margin-bottom: 15px; margin-top: 25px; font-weight: 700; line-height: 26px; } .m-billing--v6 .story-block { position: relative; margin-bottom: 50px; } .m-billing--v6 .story-block img { max-width: 100%; } .m-billing--v6 .story-block .story-info { background: #fff; position: absolute; bottom: -30px; text-align: center; left: 0; width: 100%; padding: 10px; } .m-billing--v6 .story-block .story-info .story-name { font-weight: 600; margin-bottom: 5px; } .m-billing--v6 .story-block .story-info span { color: #ff3464; } .m-billing--v6 .scroll-back-btn { width: 100%; outline: none; border-radius: 30.5px; text-align: center; color: #fff; font-size: 22px; border: 0; margin-top: 20px; margin-bottom: 20px; font-weight: 600; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; } .m-billing--v6 .scroll-back-btn:hover { background: #bf3144!important; } .m-billing--v6 .community-box { font-size: 15px; padding: 15px; border-radius: 9px; background-color: #fff; text-align: center; margin-bottom: 30px; -webkit-box-shadow: 0 4px 11px -3px rgba(86,70,143,.3); box-shadow: 0 4px 11px -3px rgba(86,70,143,.3); } .m-billing--v6 .community-box i { color: #ff3464; font-size: 16px; display: inline-block; margin-bottom: 5px; } .m-billing--v6 .community-box span { color: #ff3464; } .m-billing--v6 .review-block { margin-bottom: 30px; } .m-billing--v6 .review-block img { max-width: 30px; margin-right: 7px; border-radius: 50%; } .m-billing--v6 .review-block .name { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .review-block .name span { opacity: .5; display: inline-block; margin-right: 10px; } .m-billing--v6 .review-block .name i { color: #ff3464; font-size: 16px; } .m-billing--v6 .review-block .headline { color: #444; font-family: Karla,Montserrat; font-size: 15px; font-style: italic; font-weight: 700; letter-spacing: .51px; line-height: 18px; margin-top: 10px; margin-bottom: 5px; } .m-billing--v6 .review-block .content { color: #444; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: 1px; line-height: 18px; } .m-billing--v6 .limited-offer { background: #ff3464; color: #fff!important; font-size: 22px!important; font-weight: 700!important; letter-spacing: .75px!important; line-height: 26px!important; padding: 15px; margin: -15px; margin-bottom: 0!important; text-align: center; } .m-billing--v6 .limited-offer span { text-decoration: underline; } .m-billing--v6 .payment-options { display: none; } .m-billing--v6 .pricing-block.is-active .cta-btn { background: #ff3464!important; } .m-billing--v6 .pricing-block.is-active .cta-btn:hover { background: #bf3144!important; } .m-billing--v6 .faq .block-content,.m-billing--v6 .reviews .block-content,.m-billing--v6 .success-story .block-content { text-align: left!important; } .m-billing--v6 .faq p.question { font-family: Karla,Montserrat; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 18px; } .m-billing--v6 .block-content { max-width: 300px; margin: 0 auto; text-align: center; width: 100%; } .m-billing--v6 .pricing-block { border: 0!important; border-radius: 0!important; padding-bottom: 30px!important; border-bottom: 15px solid #f6f6f9!important; -webkit-box-shadow: none!important; box-shadow: none!important; } .m-billing--v6 .pricing-block .e-heading { display: none!important; } .m-billing--v6 .pricing-block .e-footer { border: 0!important; } .m-billing--v6 .pricing-block .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .m-billing--v6 .pricing-block .cta-btn:hover { background: #b7b5b5; } .m-billing--v6 .pricing-block .e-feature i { color: #ff3464!important; font-weight: 700; margin-right: 5px; } .m-billing--v6 .pricing-block .disclaimer { color: #56468f!important; font-size: 20px; font-weight: 700; padding-top: 0!important; letter-spacing: .68px; line-height: 23px; text-align: center; background: 0 0!important; } .m-billing--v6 .e-notice-bg.discount { background-color: #56468f!important; color: #fff!important; margin: 10px; opacity: .8; } .m-billing--v6 .regular-logo { display: none; } } .m-billing--v5 .pricing-block { position: relative; overflow: initial; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0; } .m-billing--v5 .pricing-block.is-active { border-radius: 10px; border: 1px solid #56468f; } .m-billing--v5 .pricing-block .e-heading { text-align: center; margin: auto; text-transform: uppercase; background: #ff3464; color: #fff; border-radius: 20px; left: 0; right: 0; top: -10px; z-index: 1; position: relative; display: inline-block; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; } .m-billing--v5 .pricing-block .e-notice-bg { background: #fcecf0; color: #ff3464; } .m-billing--v5 .pricing-block .e-notice,.m-billing--v5 .pricing-block .e-notice-bg { display: inline-block; width: auto; text-transform: uppercase; font-size: 15px; padding-left: 10px; padding-right: 10px; border-radius: 5px; font-weight: 700; } .m-billing--v5 .pricing-block .e-footer { width: 100%; text-align: center; border-top: 1px solid #f6f6f6; padding-top: 10px; margin-top: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-bottom: 10px; } .m-billing--v5 .pricing-block .e-footer .e-text { margin: 0; padding-left: 5px; opacity: .6; } .m-billing--v5 .pricing-block .e-footer .e-price-old { color: #ff3464; text-decoration: line-through; } .m-billing--v5 .pricing-block .e-feature { margin-top: 6px; margin-bottom: 6px; margin-left: 0; text-align: left; width: 100%; padding-left: 15px; } .m-billing--v5 .pricing-block .e-feature .e-notice-bg { margin-right: 5px; } .m-billing--v5 .pricing-block .disclaimer { background: #aa9cdf; padding: 16px; color: #fff; border-radius: 9px 9px 0 0; text-transform: uppercase; width: 100%; margin-bottom: 10px; padding-top: 18px; padding-bottom: 17px; position: relative; } .m-billing--v5 .pricing-block .disclaimer svg { position: absolute; left: 20px; top: 0; bottom: 0; margin: auto; opacity: .5; } .m-billing--v5 .pricing-block.is-active .disclaimer { background: #56468f; } .m-billing--v5 .pricing-block.is-active .disclaimer svg { opacity: 1; } .m-billing--v5#billing .pricing-block .pricing { margin: 0; line-height: 58px; } .m-billing--v5 .b-mainprice { line-height: 32px; margin-top: 11px; } .m-billing--v5 .b-mainprice .e-currency { font-size: 30px; } .m-billing--v5 .b-mainprice .e-price { font-size: 50px; } .m-billing--v5 .b-mainprice .e-duration { font-size: 15px; max-width: 50px; display: inline-block; line-height: 18px; font-weight: 700; } .m-billing--v5#billing .payment-providers { text-align: center; } @media only screen and (min-width:640px) { .b-moneybackguarantee { text-align: center; margin-top: 20px; } } .b-moneyback { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 15px; } .b-moneyback .e-img { max-width: 130px; width: 100%; padding-left: 20px; } .b-moneyback .e-img img { width: 100%; } .b-moneyback p { max-width: 250px; width: 100%; padding-left: 10px; padding-top: 10px; padding-right: 20px; font-size: 12px; } @media only screen and (min-width:728px) { .gpay-test #billing .payment-options { text-align: left; } .gpay-test .gpay-placeholder { position: relative; margin-right: 10px; top: 6px; } .gpay-test .gpay-placeholder div button { width: 300px!important; } .gpay-test .payment-options .btn-card,.gpay-test .payment-options .btn-paypal,.gpay-test .payment-options div { display: inline-block!important; max-width: 300px!important; } } .gpay-test .payment-options .btn-payment { font-size: 16px; margin: 12px auto!important; border-radius: 10px; padding: 10px!important; } .gpay-test .gpay-button { width: 100%!important; outline: none!important; border-radius: 10px; } .gpay-test .gpay-placeholder .processing { color: #fff!important; background-image: none!important; font-size: 16px!important; padding-top: 8px!important; } .gpay-test .e-termsconditions { margin-bottom: 0; } .upsell-popup { position: absolute; display: none; top: 0; left: 0; width: 100%; background: url(../images/upsell-bg.png) #fff no-repeat; background-size: contain; text-align: center; padding: 30px 0; } .upsell-popup .block-content { width: 100%; max-width: 320px; margin: 0 auto; } .upsell-popup .main-description { margin-bottom: 15px; } .upsell-popup .main-description span { font-weight: 600; } .upsell-popup .people-count { color: #ff3c6f; font-family: Karla,Montserrat; font-size: 65px; font-weight: 700; letter-spacing: .51px; line-height: 76px; text-align: center; } .upsell-popup .regular-logo { max-width: 150px; margin: 30px auto; margin-bottom: 15px; width: 100%; } .upsell-popup h4 { color: #56468f; font-family: Karla,Montserrat; margin-bottom: 20px; text-transform: uppercase; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; } .upsell-popup .complete-upsell { background: #23c363!important; } .upsell-popup .complete-upsell,.upsell-popup .complete-upsell:hover { -webkit-box-shadow: 0 4px 11px -2px #23c363!important; box-shadow: 0 4px 11px -2px #23c363!important; } .upsell-popup .complete-upsell:hover { background: #44da80!important; } .upsell-popup .cart-info { padding: 15px; text-align: left; } .upsell-popup .cart-info .cart-total { float: left; margin-top: 20px; color: #444; font-family: Karla,Montserrat; margin-bottom: 20px; font-size: 20px; letter-spacing: .68px; line-height: 23px; } .upsell-popup .cart-info .cart-item { border-bottom: 1px solid #f6f6f9; min-height: 34px; padding: 5px; margin-bottom: 5px; } .upsell-popup .cart-info .cart-item .item-title { float: left; font-weight: 700; } .upsell-popup .cart-info .cart-item .item-title,.upsell-popup .cart-info .cart-item .pricing { color: #252a34; font-family: Karla,Montserrat; font-size: 15px; letter-spacing: .51px; line-height: 18px; } .upsell-popup .cart-info .cart-item .pricing { float: right; } .upsell-popup .cart-info .cart-item .pricing span { text-decoration: line-through; opacity: .5; } .upsell-popup .cart-info .cart-discount { float: right; color: #ff3464; font-family: Karla,Montserrat; margin-top: 20px; margin-bottom: 20px; font-size: 15px; font-weight: 700; letter-spacing: .51px; line-height: 23px; } .upsell-popup .cart-info .cart-discount span { text-decoration: line-through; } .upsell-popup .upsell-products { text-align: left; padding: 15px; border-top: 12px solid #f6f6f9; border-bottom: 12px solid #f6f6f9; } .upsell-popup .upsell-products h4 { margin-bottom: 20px; } .upsell-popup .upsell-products .product-item.active img { border: 1px solid #ff3464!important; } .upsell-popup .upsell-products .product-item { display: -webkit-box; display: -ms-flexbox; display: flex; border-top: 1px solid #ebebeb; padding-top: 10px; padding-bottom: 10px; } .upsell-popup .upsell-products .product-item .photo { width: 90px; margin-right: 10px; } .upsell-popup .upsell-products .product-item .photo img { width: 90px; border: 1px solid #ebebeb; border-radius: 5px; } .upsell-popup .upsell-products .product-item .description { padding-top: 2px; } .upsell-popup .upsell-products .product-item .description .price { float: left; color: #444; font-family: Karla,Montserrat; font-size: 18px; letter-spacing: .79px; line-height: 23px; margin-top: 5px; } .upsell-popup .upsell-products .product-item .description .price span { color: #ff3464; display: inline-block; margin-left: 5px; font-size: 15px; letter-spacing: 1.19px; line-height: 18px; text-decoration: line-through; } .upsell-popup .upsell-products .product-item .description .action { float: right; } .upsell-popup .upsell-products .product-item .description .action button { outline: none!important; border: 1px solid #ff3464; color: #ff3464; border-radius: 30.5px; background-color: #fff; -webkit-box-shadow: 0 0 11px -3px rgba(86,70,143,.3); box-shadow: 0 0 11px -3px rgba(86,70,143,.3); } .upsell-popup .upsell-products .product-item .description .action button.added,.upsell-popup .upsell-products .product-item .description .action button:hover { color: #fff; background: #ff3464; } .upsell-popup .upsell-products .product-item.first { border-top: 0!important; } .b-checklist { list-style-type: none; margin-left: 15px; } .b-checklist li { font-size: 15px; margin-bottom: 10px; position: relative; padding-left: 5px; } .b-checklist li:before { content: ""; width: 20px; height: 20px; position: absolute; left: -30px; top: 0; bottom: 0; margin: auto; background: url(../images/icons/list-checkbox.png); background-size: contain; background-position: 50%; background-repeat: no-repeat; } .e-quate { font-style: italic; font-size: 15px; margin-top: 10px; } @media only screen and (min-width:640px) { .e-quate { max-width: 400px; } } #landing.landing-v5 { background-position: 160px -125px!important; } #landing.landing-v5 .b-intro { margin-top: 30px; } #landing.landing-v5 .b-intro .e-title { max-width: 90%; margin-left: 0; } #landing.landing-v5 .b-content { margin-bottom: 40px; margin-top: 20px; } #landing.landing-v5 .e-title { font-weight: 700; font-family: Lato; margin: auto; line-height: 38px; margin-bottom: 15px; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-title { max-width: 420px; margin-left: 0; } } #landing.landing-v5 .e-title .e-special { color: #ff3464; } #landing.landing-v5 .e-title.m-center { text-align: center; max-width: 80%; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-title.m-center { margin-left: 0; text-align: left; } } #landing.landing-v5 .e-text { font-weight: 700; } @media only screen and (min-width:640px) { #landing.landing-v5 .e-text { max-width: 530px; } } #landing.landing-v5 .b-content img { max-width: 100%; margin-bottom: 15px; margin-top: 10px; -webkit-box-shadow: 0 0 11px rgba(86,70,143,.2); box-shadow: 0 0 11px rgba(86,70,143,.2); border-radius: 7px; } @media only screen and (min-width:640px) { #landing.landing-v5 .b-content img { max-width: 420px; } } #landing.landing-v5 .b-quate { background: #56468f; color: #fff; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); margin-bottom: 40px; } #landing.landing-v5 .b-quate p { max-width: 300px; margin: auto; text-align: center; font-size: 20px; line-height: 24px; padding-top: 80px; padding-bottom: 40px; font-style: italic; position: relative; } #landing.landing-v5 .b-quate p:before { content: ""; background: url(../images/icons/quates.png); width: 40px; height: 40px; margin: auto; position: absolute; background-size: contain; background-repeat: no-repeat; background-position: 50%; left: 0; right: 0; top: 30px; } #landing.landing-v5 .gender-description { text-align: center; margin-top: 0; margin-bottom: 0; } @media only screen and (min-width:640px) { #landing.landing-v5 .gender-description { text-align: left; } } #landing.landing-v5 .gender-buttons .btn { min-height: 50px; } @media only screen and (max-width:640px) { #landing.landing-v5 .gender-buttons .btn { max-width: 100%; } } #landing.landing-v5 .gender-buttons .btn .e-icon-person { left: 24%; } .results-2 { padding: 0; } @media only screen and (max-width:640px) { .results-2 { padding: 10px; } } .results-2 .results-logo { margin-left: 0; max-width: 120px; margin-bottom: 10px; margin-top: 15px; } .results-2 h3 { font-size: 32px; font-weight: 700; color: #ff3464; } .results-2 .subheading { font-size: 25px; line-height: 28px; font-weight: 700; } .results-2 .b-result--firstweek { max-width: 370px; margin-top: 40px; } .results-2 .b-result--firstweek .b-stats--header { padding: 20px; padding-bottom: 10px; } @media only screen and (max-width:640px) { .results-2 .b-result--firstweek .b-stats--header { padding-bottom: 15px; } } .results-2 .b-result--firstweek .b-stats--header img { max-width: 100%; } .results-2 .b-result--firstweek .b-stats--footer { text-align: center; } .results-2 .b-result--firstweek .b-stats--footer .e-special { font-size: 33px; } .results-2 .b-result--firstweek .b-stats--footer .e-special span { font-size: 75px; line-height: 75px; } .results-2 .b-result--firstweek .b-stats--footer p { font-size: 23px; text-align: center; padding-bottom: 10px; margin-top: -5px; } .results-2 .b-result--weight { margin-top: 20px; position: relative; max-width: 370px; } .results-2 .b-result--weight img { max-width: 100%; -webkit-box-shadow: 0 0 11px rgba(86,70,143,.2); box-shadow: 0 0 11px rgba(86,70,143,.2); border-radius: 7px; } .results-2 .b-result--weight .b-stats { position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-height: 212px; text-align: center; } .results-2 .b-result--weight .b-stats .b-stats--header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 190px; margin: auto; padding-top: 40px; padding-bottom: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 27px; font-weight: 700; color: #ff3464; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats .b-stats--header { padding-top: 6%; } } .results-2 .b-result--weight .b-stats .b-stats--header p { margin: 0; opacity: .4; } .results-2 .b-result--weight .b-stats .b-stats--header .e-special { font-size: 73px; line-height: 73px; opacity: 1; } .results-2 .b-result--weight .b-stats .b-stats--middle { font-size: 18px; margin-top: -5px; } .results-2 .b-result--weight .b-stats .b-stats--footer { font-size: 20px; font-weight: 700; padding-top: 5px; } .results-2 .b-result--weight .b-months { position: absolute; left: 0; right: 0; bottom: 0; max-height: 190px; text-align: center; top: 41%; max-width: 290px; margin: auto; margin-top: 10px; font-size: 20px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-months { max-width: 270px; margin-top: 0; top: 42%; } } @media only screen and (max-width:360px) { .results-2 .b-result--weight .b-months { top: 40%; padding-left: 20px; padding-right: 20px; max-width: 270px; } } .results-2 .b-result--weight .b-stats--header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .results-2 .b-result--weight .b-stats--header p:last-child { margin-right: 10px; } .results-2 .b-result--weight .b-stats--results { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; min-height: 180px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats--results { min-height: 160px; } } .results-2 .b-result--weight .b-stats--results .b-stats--results--from,.results-2 .b-result--weight .b-stats--results .b-stats--results--to { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 33px; line-height: 26px; } .results-2 .b-result--weight .b-stats--results .b-stats--results--from span,.results-2 .b-result--weight .b-stats--results .b-stats--results--to span { font-size: 13px; } .results-2 .b-result--weight .b-stats--results .b-stats--results--from { font-size: 23px; margin-left: 0; margin-top: 10px; } @media only screen and (max-width:380px) { .results-2 .b-result--weight .b-stats--results .b-stats--results--from { margin-top: 0; } } .results-2 .b-result--weight .b-stats--results .b-stats--results--to { color: #ff3464; margin-top: auto; margin-bottom: 10px; margin-right: 2px; } @media only screen and (max-width:360px) { .results-2 .b-result--weight .b-stats--results .b-stats--results--to { margin-bottom: 30px; } } .results-2 .b-result--text { margin-top: 40px; max-width: 370px; text-align: center; padding-top: 20px; padding-bottom: 20px; } .results-2 .b-result--text .b-stats--header { font-size: 73px; font-weight: 700; color: #ff3464; line-height: 73px; } .results-2 .b-result--text .b-stats--footer { font-size: 23px; max-width: 240px; margin: auto; line-height: 28px; padding-top: 10px; } .results-2 .b-result { -webkit-box-shadow: 0 0 11px rgba(86,70,143,.29); box-shadow: 0 0 11px rgba(86,70,143,.29); border-radius: 9px; } .results-2 .b-result .e-special { color: #ff3464; font-size: 27px; font-weight: 700; } .results-2 .btn-primary.scroll-btn { max-width: 370px!important; } .results-2 .summary { margin-top: 40px; } .results-2 .summary h2 { margin-bottom: 20px; } .results-2 .summary .col-12 { margin-bottom: 30px; } @media only screen and (max-width:640px) { .results-2 .summary .col-12 { width: 100%; } } .results-2 #bmi .e-row { height: 33.33333%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 20px; border-bottom: 1px solid #e0e0e0; } .results-2 #bmi .e-row:last-child { border-bottom: none; } .results-2 #bmi .e-row .e-value { text-transform: uppercase; font-size: 23px; color: #ff3464; display: none; } .results-2 #bmi .e-row .e-number { font-size: 43px; font-weight: 700; } .results-2 #bmi .e-row .e-name { font-size: 23px; font-weight: 700; margin-left: auto; } .results-2 #bmi .e-row.is-selected { background: rgba(86,70,143,.1); } .results-2 #bmi .e-row.is-selected .e-value { display: block; } .results-2 #intake { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .results-2 #intake img { max-width: 250px; margin-top: 15px; } .results-2 #intake .e-heading { font-size: 23px; padding-top: 15px; } .results-2 #intake .e-value { font-size: 43px; font-weight: 700; color: #ff3464; line-height: 40px; } .results-2 #intake .e-measurement { font-size: 18px; } .results-2 #intake .daily-norm { position: relative; top: 0; font-size: 43px; line-height: 43px; color: #ff3464; } .results-2 #body-parts img { max-width: 100%; } .results-2 #body-parts .e-heading { text-align: center; font-size: 23px; max-width: 200px; margin: auto; padding-top: 20px; padding-bottom: 15px; line-height: 24px; font-weight: 700; } .results-2 #meals img { max-width: 80px; margin: auto; } .results-2 #meals .meal-count { margin-top: 10px; top: 42%; } .results-2 #meals .meal-count span { font-size: 73px; } .results-2 #meals p { text-align: center; font-size: 22px; max-width: 180px; margin: auto; line-height: 26px; margin-top: 40px; margin-bottom: 30px; font-weight: 700; } .results-2 .covered { background-color: rgba(86,70,143,.1); } .results-2 .b-ourpromise { position: relative; } .results-2 .b-ourpromise img { position: absolute; max-width: 130px; bottom: 10px; right: auto; left: 200px; } .results-2 .b-ourpromise h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; margin-top: 40px; } .results-2 .b-ourpromise .e-text { font-size: 20px; font-weight: 300; font-style: italic; font-family: Karla,Montserrat; line-height: 26px; } .results-2 .b-ourpromise .e-heading { font-size: 20px; font-weight: 700; margin-bottom: 0; margin-top: 20px; } .results-2 .b-ourpromise .e-subtitle { font-size: 20px; margin-top: -5px; } @media only screen and (max-width:640px) { .results-2 .btn-next-step { width: 100%; margin: 0; margin-top: 20px; } } .results-2 .b-blocks-featured { padding-top: 10px; padding-bottom: 5px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } .results-2 .b-blocks-featured .b-result { width: 100%; margin-top: 0; min-height: 215px; } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured .b-result { margin-bottom: 30px; } } @media only screen and (max-width:640px) { .results-2 .b-blocks-featured .scroll-btn { margin-top: 0; } } .results-3 .b-logo { text-align: center; padding-top: 10px; } @media only screen and (max-width:360px) { .results-3 .b-ourpromise img { max-width: 90px; bottom: 14px; } } .results-3 .covered { position: relative; } .results-3 .covered:before { content: ""; background: url(../images/landing-bg-desktop.jpg?v2); background-size: contain; position: absolute; right: -24%; height: 600px; width: 100%; top: -280%; z-index: 0; opacity: .2; } @media only screen and (max-width:640px) { .results-3 .covered:before { display: none; } } .results-3 .covered:after { content: ""; background: url(../images/landing-bg-desktop.jpg?v2); background-size: contain; position: absolute; left: -32%; height: 600px; width: 60%; top: -610%; z-index: 0; opacity: .2; background-repeat: no-repeat; -webkit-transform: rotate(110deg); transform: rotate(110deg); } @media only screen and (max-width:640px) { .results-3 .covered:after { display: none; } } @media only screen and (max-width:640px) { .results-3 { padding: 0; } } .results-3 .summary-container:before { content: ""; background: url(../images/bg-mealplate.png); background-size: cover; position: absolute; right: -10px; height: 600px; width: 400px; top: 0; } .results-3 .results-box#meals img { padding-top: 5px; margin-top: -10px; } .results-3 .subheading { font-size: 28px; } @media only screen and (max-width:640px) { .results-3 .subheading { font-size: 24px; } } .results-3 .btn-get-plan { max-width: 600px; margin: auto; margin-top: 25px; margin-bottom: 30px; } .results-3 .covered-logos { margin-top: 17px; } .results-3 .covered-logos img { max-width: 150px; margin-left: 5%; margin-right: 5%; } @media only screen and (max-width:1124px) { .results-3 .covered-logos img { margin-left: 2%; margin-right: 2%; } } @media only screen and (max-width:640px) { .results-3 .covered-logos img { margin-left: 1%; margin-right: 1%; } } .results-3 .covered-logos img:nth-child(2) { max-width: 220px; } .results-3 .covered { margin-top: 30px; } .results-3 .covered .heading { margin-top: 20px; color: #444; opacity: 1; font-size: 23px; font-weight: 300; } @media only screen and (max-width:640px) { .results-3 .covered .heading { font-size: 18px; } } .results-3 .container { max-width: 830px; width: 100%; position: relative; z-index: 1; } .results-3 .btn-primary.scroll-btn { max-width: 570px!important; margin: auto; margin-top: 40px; } @media only screen and (max-width:640px) { .results-3 .btn-primary.scroll-btn { margin-top: 0; } } .results-3 #intake .e-heading { font-weight: 700; text-align: center; max-width: 80%; } .results-3 #meals .meal-count { position: relative; } .results-3 #meals .meal-count span { font-size: 93px; } .results-3 #meals p { margin-bottom: 30px; font-weight: 700; margin-top: 55px; } .results-3 .summary { margin-top: 50px; } @media only screen and (max-width:640px) { .results-3 .summary { margin-top: 40px; } } @media only screen and (max-width:1124px) { .results-3 .summary .col-md-6 { width: 50%; } } @media only screen and (max-width:640px) { .results-3 .summary .col-md-6 { width: 100%; } } .results-3 .summary h2 { font-size: 36px; margin-bottom: 30px; font-weight: 700; } .results-3 .b-result--weight .b-stats--results .b-stats--results--from { margin-top: 1px; } .results-3 .b-result--text .b-stats--footer { margin-top: 15px; margin-bottom: 25px; } .results-3 .b-result--firstweek .b-stats--footer .e-special { margin-top: 10px; margin-bottom: 10px; } .results-3 .b-result--firstweek .b-stats--header { max-width: 380px; padding-top: 10px; } .results-3 .b-result--firstweek .b-stats--footer .e-special span { font-size: 90px; } .results-3 .b-result--firstweek .b-stats--footer p { margin-bottom: 0; } .results-3 .b-result--text .b-stats--header { margin-top: auto; font-size: 90px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; line-height: 12px; } .results-3 .b-result--text .b-stats--header span { font-size: 34px; } .results-3 h3 { font-size: 70px; max-width: 610px; margin-top: 10px; } @media only screen and (max-width:640px) { .results-3 h3 { font-size: 38px; } } .results-3 .b-blocks-featured { padding-top: 30px; } @media only screen and (max-width:640px) { .results-3 .b-blocks-featured { padding-top: 10px; } } .results-3 .b-blocks-featured .b-result--weight { margin-bottom: 30px; } .results-3 .b-blocks-featured .b-result--firstweek,.results-3 .b-blocks-featured .b-result--text { max-width: calc(50% - 15px); min-height: 260px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } @media only screen and (max-width:640px) { .results-3 .b-blocks-featured .b-result--firstweek,.results-3 .b-blocks-featured .b-result--text { width: 100%; max-width: 100%; } } .results-3 .b-result.b-result--weight { max-width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 40px; background: #fff; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight { margin-bottom: 30px; } } .results-3 .b-result.b-result--weight .b-stats .b-stats--header { max-width: 90%; width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; overflow: hidden; padding-bottom: 10px; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:first-child { position: relative; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:first-child:before { content: ""; background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),to(#fff)); background-image: linear-gradient(90deg,hsla(0,0%,100%,0),#fff); top: -20px; bottom: -20px; width: 80px; position: absolute; -webkit-transform: rotate(180deg); transform: rotate(180deg); left: -10px; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:last-child { position: relative; } .results-3 .b-result.b-result--weight .b-stats .b-stats--header p:last-child:before { content: ""; background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),to(#fff)); background-image: linear-gradient(90deg,hsla(0,0%,100%,0),#fff); top: -20px; bottom: -20px; width: 80px; position: absolute; right: -10px; } .results-3 .b-result.b-result--weight .b-stats { background: #fff; position: relative; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: 200px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .results-3 .b-result.b-result--weight .b-stats--header { padding-top: 15px; margin-top: auto; margin-bottom: 0; max-width: none; } .results-3 .b-result.b-result--weight .b-stats--header p { margin-left: 5%; margin-right: 5%; } .results-3 .b-result.b-result--weight .b-stats--header .e-special { margin-left: 5%; margin-right: 5%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .results-3 .b-result.b-result--weight .b-stats--header .e-special span { font-size: 18px; line-height: 12px; color: #444; font-weight: 300; } .results-3 .b-result.b-result--weight .b-stats--footer { margin-bottom: auto; padding-top: 10px; font-size: 24px; } .results-3 .b-result.b-result--weight .b-months { position: relative; background: rgba(255,52,100,.1); max-width: 100%; margin: 0; max-height: none; } .results-3 .b-result.b-result--weight .b-months:before { content: ""; background: url(../images/b-results-graph.png); position: absolute; left: 0; right: 0; width: 100%; min-height: 200px; background-size: cover; bottom: -5px; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight .b-months:before { background-position: 50%; } } .results-3 .b-result.b-result--weight .b-months .b-stats--header,.results-3 .b-result.b-result--weight .b-months .b-stats--results { max-width: 320px; margin: auto; } .results-3 .b-result.b-result--weight .b-months .b-stats--header { padding-top: 20px; max-width: 335px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results { min-height: 230px; padding-bottom: 50px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results--from { position: relative; left: 10px; } @media only screen and (max-width:360px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--from { margin-top: 18px; } } .results-3 .b-result.b-result--weight .b-months .b-stats--results--from:before { content: ""; position: absolute; left: 0; right: 0; margin: auto; width: 17px; background: #ff3464; height: 17px; border-radius: 20px; top: 50px; } .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { position: relative; margin-bottom: 18px; } @media only screen and (max-width:640px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { margin-bottom: 15px; } } @media only screen and (max-width:360px) { .results-3 .b-result.b-result--weight .b-months .b-stats--results--to { margin-bottom: 20px; } } .results-3 .b-result.b-result--weight .b-months .b-stats--results--to:before { content: ""; position: absolute; left: 0; right: 0; margin: auto; width: 17px; background: #ff3464; height: 17px; border-radius: 20px; top: 50px; } .b-testimonial--single { max-width: 340px; -webkit-box-shadow: 0 0 10px rgba(86,70,143,.29); box-shadow: 0 0 10px rgba(86,70,143,.29); border-radius: 9px; margin-bottom: 40px; overflow: hidden; } @media only screen and (max-width:640px) { .b-testimonial--single { max-width: 100%; } } .b-testimonial--single .b-testimonial--single--image { position: relative; height: 300px; overflow: hidden; } .b-testimonial--single .b-testimonial--single--image img { margin-top: -40px; } @media only screen and (max-width:640px) { .b-testimonial--single .b-testimonial--single--image img { width: 100%; } } .b-testimonial--single .b-testimonial--single--image .e-play { position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; max-width: 60px; } .b-testimonial--single .b-testimonial--single--description .e-title { text-align: center; font-weight: 700; font-size: 16px; margin-bottom: 0!important; line-height: 24px!important; margin-top: 10px!important; } .b-testimonial--single .b-testimonial--single--description .e-subtitle { text-align: center; padding-bottom: 5px; font-size: 16px; margin-bottom: 0; } .b-testimonial--single .b-testimonial--single--description .e-text { padding: 15px; padding-top: 3px; padding-bottom: 5px; text-align: center; } .b-testimonial--single .b-testimonial--single--description .e-special { color: #ff3464; } #billing.success-v2 { background: 0 0; } @media only screen and (max-width:640px) { #billing.success-v2 { padding: 0; margin: 0; } } #billing.success-v2 .copyright { margin-top: 50px; padding-bottom: 30px; } @media only screen and (max-width:640px) { #billing.success-v2 { padding: 0; } } #billing.success-v2 .b-intro { padding-top: 20px; } #billing.success-v2 .b-intro .e-title { font-size: 55px; color: #ff3464; } @media only screen and (max-width:640px) { #billing.success-v2 .b-intro .e-title { text-align: center; } } #billing.success-v2 .b-orderdetails { padding-top: 20px; display: inline-block; width: 100%; } #billing.success-v2 .b-orderdetails .e-title { font-size: 20px; color: #ff3464; font-weight: 700; } #billing.success-v2 .b-orderdetails--details { width: 100%; display: inline-block; } #billing.success-v2 .b-orderdetails--details p { font-size: 16px; font-weight: 700; border-bottom: 1px solid #eee; padding-bottom: 10px; } #billing.success-v2 .b-finaloffer { background: rgba(86,70,143,.1); margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); margin-top: 20px; } #billing.success-v2 .b-finaloffer .b-finaloffer--inner { max-width: 970px; margin: auto; padding-left: 15px; padding-right: 15px; } @media only screen and (min-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner { text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } } #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-title { font-size: 20px; color: red; text-transform: uppercase; margin-bottom: 0; font-weight: 700; line-height: 20px; padding-top: 25px; max-width: 350px; text-align: center; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-title { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-subtitle { font-size: 17px; color: #56468f; font-weight: 700; max-width: 350px; text-align: center; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-finaloffer--inner .e-subtitle { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-offer { background: #fff; border-radius: 10px; padding: 20px; text-align: center; max-width: 350px; width: 100%; } @media only screen and (max-width:640px) { #billing.success-v2 .b-finaloffer .b-offer { max-width: 100%; } } #billing.success-v2 .b-finaloffer .b-offer p { font-size: 16px; font-weight: 700; } #billing.success-v2 .b-finaloffer .b-offer .e-text--uppercase { font-size: 18px; font-weight: 300; margin: 0; margin-top: 10px; } #billing.success-v2 .b-finaloffer .b-offer .e-special { color: #ff3464; margin-bottom: 0; } #billing.success-v2 .b-finaloffer .b-offer .btn-primary { margin-top: 15px; margin-bottom: 5px; } #billing.success-v2 .container { padding-bottom: 0; } @media only screen and (max-width:640px) { #billing.success-v2 .container { padding: 0; margin: 0; padding-left: 15px; padding-right: 15px; } } #billing.success-v2 .e-link { text-decoration: underline; margin-top: 10px; display: inline-block; margin-bottom: 30px; color: #000; font-size: 16px; width: 100%; text-align: center; max-width: 350px; } @media only screen and (max-width:640px) { #billing.success-v2 .e-link { max-width: 100%; } } #landing.landing-v7 .b-testimonial--single .b-testimonial--single--image { height: 250px; } #landing.landing-v7 .b-testimonial--single { margin-bottom: 20px; overflow: hidden; margin-top: 50px; } #landing.landing-v7 .b-testimonial--single:first-child { margin-top: 0; } #landing.landing-v7 .b-content { margin-bottom: 30px; } .info-slide h3 { color: #444; font-family: Karla,Montserrat; font-size: 25px; font-weight: 700; letter-spacing: .85px; line-height: 29px; } .info-slide p { font-size: 15px; } .info-slide ul { margin-bottom: 10px; margin-top: 10px; list-style: none; padding-left: 0; } .info-slide ul li { line-height: 24px; margin-bottom: 10px; font-size: 15px; } .info-slide ul li i { font-weight: 900; margin-right: 5px; color: #56468f; } .workouts-enabled .week-data { margin: auto; position: absolute; left: 0; right: 0; height: 50px; } .workouts-enabled .week-nav { left: 0!important; right: 0!important; margin: auto; max-width: 150px; padding-top: 2px; } .workouts-enabled .mainNavbar .container,.workouts-enabled .week-nav { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .workouts-enabled .mainNavbar .container { min-height: 50px; width: 100%; } .workouts-enabled .e-productlist { max-width: 20px; margin-left: auto; position: absolute; right: 15px; top: 0; bottom: 0; margin: auto; height: 30px; } .workouts-enabled .helper { top: 12px; } .tabs-nav .tab-item { text-decoration: none; } .b-plan-body { max-height: 75vh; overflow-y: scroll; display: none; min-width: 100%; margin-bottom: 50px; } .b-plan-body.is-active { display: block; } .pricing-block .e-extraoption { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .pricing-block .e-checkbox--simple { width: 20px; height: 20px; margin: 0; position: relative; } .pricing-block .e-checkbox--simple svg path { fill: #ff3464; } .pricing-block .e-extraoption label { font-size: 14px; padding-left: 10px; padding-top: 8px; cursor: pointer; } .pricing-block .e-checkbox { position: relative; border: none; border-radius: 30px; display: inline-block; height: 20px; width: 20px; cursor: pointer; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin-top: 0; } .pricing-block .e-checkbox:before { content: ""; background: #fff; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 1; pointer-events: none; border: 2px solid #ff3464; } .pricing-block .e-checkbox:checked+svg { opacity: 1; display: block; } .pricing-block .e-checkbox--simple svg { position: absolute; left: 0; bottom: 0; top: 0; right: 0; margin: auto; display: none; pointer-events: none; width: 15px; height: 15px; z-index: 1; opacity: 0; } .navbar-fixed { position: fixed; top: 0; left: 0; right: 0; height: 60px; background: #56468e; z-index: 2; -webkit-box-shadow: 0 3px 16px 3px hsla(0,0%,50%,.41); box-shadow: 0 3px 16px 3px hsla(0,0%,50%,.41); -webkit-transition: all .5s; transition: all .5s; top: -90px; } .navbar-fixed .navbar-fixed--inner { padding-left: 25px; padding-right: 25px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; } @media only screen and (max-width:640px) { .navbar-fixed .navbar-fixed--inner { padding-left: 15px; padding-right: 15px; } } .navbar-fixed .limited-offer { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .58px; line-height: 20px; margin-bottom: 40px; margin: auto; margin-right: 0; margin-right: 20px; } @media only screen and (max-width:1124px) { .navbar-fixed .limited-offer { font-size: 13px; } } @media only screen and (max-width:900px) { .navbar-fixed .limited-offer { display: none; } } @media only screen and (max-width:640px) { .navbar-fixed .limited-offer { display: none; } } .navbar-fixed .regular-logo { max-width: 130px; padding: 10px; } .navbar-fixed .select-plan-3 { outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 8px 15px; background: #ff3464!important; margin-bottom: 0; margin-top: 0; font-size: 13px; } @media only screen and (max-width:360px) { .navbar-fixed .select-plan-3 { padding: 8px 10px; } } .b-basedonyour { max-width: 430px; color: #56468e; text-align: center; border-bottom: 4px solid rgba(86,70,142,.2); margin: auto; margin-bottom: 30px; } .b-basedonyour p { font-size: 22px; margin-bottom: 5px; } .b-basedonyour h4 { margin-top: 0; color: #56468e; font-size: 32px; font-weight: 700; } #billing.m-checkout--11 .e-intro-title { text-align: center; font-size: 58px; font-weight: 700; } #billing.m-checkout--11 .e-intro-title span { color: #ff3464; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .e-intro-title { display: none; } } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .user-reviews:before { content: ""; background: 0 0; position: relative; } } #billing.m-checkout--11 .container .limited-offer { max-width: 650px; margin: 20px auto 40px; background-color: #ff3464; min-height: 50px; color: #fff; border-radius: 10px; padding-top: 15px; font-size: 20px; font-weight: 300; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .limited-offer { margin: 20px -20px 0; } } #billing.m-checkout--11 .container .limited-offer .is-pulsing { text-decoration: underline; } #billing.m-checkout--11 .container .pricing-block { border: none; -webkit-box-shadow: 0 0 10px rgba(86,70,143,.29); box-shadow: 0 0 10px rgba(86,70,143,.29); margin-bottom: 40px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .pricing-block { padding-bottom: 0; margin-bottom: 10px; } } #billing.m-checkout--11 .container .pricing-block .disclaimer { color: #57478f; background: 0 0; text-decoration: none; } #billing.m-checkout--11 .container .pricing-block .disclaimer .e-title { margin-bottom: 0; } #billing.m-checkout--11 .container .pricing-block .disclaimer .e-subtitle { color: #56468f; font-size: 20px; font-weight: 700; letter-spacing: .68px; line-height: 23px; text-align: center; margin-bottom: 20px; text-transform: none; margin-top: 5px; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .pricing-block .disclaimer .e-subtitle { margin-bottom: 0; } } #billing.m-checkout--11 .container .pricing-block ul { font-size: 21px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .pricing-block ul { font-size: 15px; padding: 0; margin: 0; } } #billing.m-checkout--11 .container .pricing-block ul li { list-style-type: none; } #billing.m-checkout--11 .container .pricing-block .e-notice-bg { background: #796ba6; color: #fff; letter-spacing: .07em; padding-top: 0; padding-bottom: 0; } #billing.m-checkout--11 .container .covered .heading { text-decoration: none; font-size: 16px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .story-block { margin-top: 0; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media { margin-top: 20px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media img { max-width: 300px; margin: auto; } } #billing.m-checkout--11 .container .main-container { width: 90%; margin: auto; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .main-container .success-story h4 { display: none; } } #billing.m-checkout--11 .container .main-container .success-story .block-content { margin-top: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; max-width: 85%; margin: auto; margin-bottom: 40px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content { margin-bottom: 0; max-width: 410px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side { width: 40%; border-radius: 10px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side { width: 100%; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side .image-heading-media { display: none; } } #billing.m-checkout--11 .container .main-container .success-story .block-content .left-side img { border-top-left-radius: 10px; border-top-right-radius: 10px; } #billing.m-checkout--11 .container .main-container .success-story .right-side { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 40%; text-align: left; position: relative; margin: auto 0 auto 30px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .success-story .right-side { width: 100%; margin: auto; } } #billing.m-checkout--11 .container .main-container .success-story .right-side h3 { margin-bottom: 30px; letter-spacing: .08em; font-size: 35px; line-height: normal; } #billing.m-checkout--11 .container .main-container .success-story .right-side p { font-size: 15px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .product-composition { display: none; } } #billing.m-checkout--11 .container .main-container .product-composition .block-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; width: 80%; margin: auto; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .left-side { width: 50%; position: relative; margin: auto; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .left-side h3 { font-size: 45px; letter-spacing: .08em; text-align: left; line-height: normal; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .right-side { width: 50%; } #billing.m-checkout--11 .container .main-container .product-composition .block-content .right-side img { max-height: 450px; } #billing.m-checkout--11 .container .main-container .keto-benefits { max-width: 800px; margin: auto; padding-top: 30px; margin-bottom: 60px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .keto-benefits { padding-top: 10px; } } #billing.m-checkout--11 .container .main-container .keto-benefits .block-content ul { list-style-type: none; font-size: 17px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .main-container .keto-benefits .block-content ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .product-composition-media .block-content-media { display: none; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media .block-content-media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .product-composition-media .block-content-media h3 { display: block; text-align: center; max-width: 310px; margin: auto; margin-bottom: 20px; margin-top: 20px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .payment-providers span { margin-top: 0; } } #billing.m-checkout--11 .container .faq { max-width: 100%; margin: auto; margin-top: 60px; margin-bottom: 50px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq { margin-top: 40px; margin-bottom: 40px; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-pack: distribute; justify-content: space-around; } @media only screen and (min-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items { margin-top: 40px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items p { width: 30%; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items p { width: 100%; margin-top: 20px; margin-top: 5px; } } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .faq .block-content .block-content-items p p:first-child { margin-top: 0; } } #billing.m-checkout--11 .container .faq .block-content .block-content-items p span { font-weight: 700; font-size: 15px; color: #ff3464; padding-bottom: 5px; display: inline-block; } #billing.m-checkout--11 .container .payment-providers { margin-bottom: 50px; } #billing.m-checkout--11 .container .user-reviews { max-width: 950px; margin: auto; margin-bottom: 70px; } #billing.m-checkout--11 .container .user-reviews .block-content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .user-reviews .block-content { max-width: 95%; padding-top: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } } #billing.m-checkout--11 .container .user-reviews .block-content img { width: 80%; margin: auto; max-height: 115px; } @media only screen and (max-width:640px) { #billing.m-checkout--11 .container .user-reviews .block-content img { width: 100%; margin-bottom: 20px; } } #billing.m-checkout--11 .la-check:before { color: #ff3464; } .select-payment-method .cc-form { display: none; } .select-payment-method .gpay-button.long { width: 100%!important; height: 44px; line-height: 44px; } .select-payment-method .btn-primary { font-size: 18px!important; margin-bottom: 0!important; border-radius: 5px!important; margin-top: 15px; } .select-payment-method .btn-primary:hover { opacity: .85; } html:lang(ar) #billing .regular-logo { margin: 10px auto!important; } html:lang(ar) #billing.m-checkout--11 .main-container .keto-benefits .block-content ul .e-feature .fa-check:before,html:lang(ar) #billing.m-checkout--11 .main-container .keto-benefits .block-content ul .e-feature .fas:before { right: -31px!important; left: auto!important; } html:lang(ar) .pricing-options .pricing-option .option-title { margin-left: 25px; } html:lang(ar) .benefits-listed .e-feature i { margin-left: 5px; } @media only screen and (min-width:1025px) { html:lang(ar) .recover-plan { left: 25px!important; right: auto!important; } html:lang(ar) #landing { background: 0 0!important; } html:lang(ar) #landing h1 { margin-top: 120px!important; } } html:lang(ar) .modal-header { display: block!important; } html:lang(ar) .modal-header .close { float: left!important; } html:lang(ar) .modal-header h4.modal-title { float: right!important; } html:lang(ar) #landing { background: 0 0!important; } html:lang(ar) #landing h1 { margin-top: 120px!important; } html:lang(ar) .results-2 #bmi .e-row .e-value { font-size: 18px!important; } html:lang(ar) .results-2 .b-ourpromise .e-text,html:lang(ar) .results-2 .b-ourpromise h2,html:lang(ar) .results-3 .subheading,html:lang(ar) .results-3 .summary h2,html:lang(ar) .results-3 h3 { text-align: right!important; } html:lang(ar) .input-holder .units { left: 0!important; right: auto!important; } html:lang(es) #billing.m-checkout--11 .pricing-block .e-feature { max-width: 450px; } .tabs-nav svg { vertical-align: middle!important; margin-right: 5px!important; } .b-achievegoals { position: relative; } .b-achievegoals .b-achievegoals-header { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; font-size: 25px; font-weight: 700; position: absolute; right: 0; top: 37px; left: 0; } @media only screen and (max-width:640px) { .b-achievegoals .b-achievegoals-header { top: 10%; font-size: 23px; } } .b-achievegoals .b-achievegoals-header-month.is-active { color: #ff3364; } @media only screen and (min-width:1025px) { .navbar-brand .btn-back+.regular-logo { margin-left: 40px; } } .confirmation-description { padding: 15px; font-size: 16px; } #dynamic-landing.youtube-landing { min-height: 100vh; background: url(../images/landings/youtube-desktop.jpg)!important; background-size: cover!important; } #dynamic-landing.youtube-landing h1 { max-width: 500px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing { background: url(../images/landings/youtube-mobile.png) #f4f4f4 no-repeat!important; background-size: contain!important; } #dynamic-landing.youtube-landing h1 { margin-top: 150px!important; margin-bottom: 25px; } } #dynamic-landing.youtube-landing .cta-label { font-family: Karla; font-style: normal; text-transform: uppercase; font-weight: 700; font-size: 16px; line-height: 30px; letter-spacing: .04em; color: #000; opacity: .6; } #dynamic-landing.youtube-landing .code-input { background: #fff; border: 1px solid #d3d3d3; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 10px; margin-top: 15px; margin-bottom: 15px; outline: none!important; font-size: 16px; line-height: 16px; color: #000; min-width: 300px; border-radius: 12px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing .code-input { width: 100%; } } #dynamic-landing.youtube-landing .code-input-holder { position: relative; } #dynamic-landing.youtube-landing .code-input-holder .status-icon { position: absolute; top: 20px; color: #24af32; left: 270px; } @media only screen and (max-width:640px) { #dynamic-landing.youtube-landing .code-input-holder .status-icon { left: auto; right: 15px; } } #dynamic-landing.youtube-landing .code-input-holder .status-icon i { font-family: FontAwesome; font-size: 20px; font-style: normal; } #dynamic-landing.youtube-landing .code-input-holder .status-icon.error { color: #dc0000; } #dynamic-landing.youtube-landing .code-input-holder .code-error { background: #f82c2c40; padding: 10px 15px; color: #dc0000; border-radius: 10px; margin-bottom: 15px; display: none; } @media only screen and (min-width:1025px) { #dynamic-landing.youtube-landing .code-input-holder .code-error { max-width: 300px; } } .alt-measurements select { display: block; width: 100%; background: #fff; border: 0; border-bottom: 1px solid #ebebeb; padding: 10px; font-size: 16px; } .payment-loader { display: none; padding: 30px; text-align: center; } .payment-loader img { width: auto!important; } #paypal-button { width: 100%; background: 0 0; border: none; margin-top: 15px; } #paypal-button .zoid-outlet { width: 100%!important; } #adyen-checkout img { height: 26px!important; width: 40px!important; margin: auto!important; } @media only screen and (max-width:640px) { .adyen-checkout__payment-method,.adyen-checkout__payment-method--dotpay { max-height: 70px; } .adyen-checkout__payment-method--dotpay .adyen-checkout__payment-method__name { font-size: 14px; width: 175px; display: inline-block; margin-top: -5px; } .adyen-checkout__payment-method--dotpay .adyen-checkout__input-wrapper { max-width: 270px; } } .adyen-checkout__button { background: #ff3464!important; } @media only screen and (max-width:640px) { .subscriptions-no .option-title { font-size: 17px!important; line-height: 24px!important; font-weight: 600!important; } .subscriptions-no .billing-period { margin-top: 5px!important; font-weight: 400!important; } .subscriptions-no .option-price { position: relative; left: 10px; } .subscriptions-no .option-price div { min-width: 80px; } } .plan-selection.subscriptions.full-price .pricing-option .option-price { padding-top: 40px!important; font-size: 36px!important; padding-left: 5px!important; } .plan-selection.subscriptions.full-price .billing-period { margin-top: 2px!important; line-height: 20px!important; } .flex-block { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 800px; margin: 0 auto; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } @media only screen and (max-width:640px) { .flex-block.alternative .plan-selection { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; padding-top: 0!important; } } .flex-block .plan-selection { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding: 15px; -ms-flex-preferred-size: 50%; flex-basis: 50%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } @media only screen and (max-width:640px) { .flex-block .plan-selection { -ms-flex-preferred-size: 100%; flex-basis: 100%; } } .flex-block .plan-selection h3 { margin-top: 0!important; font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; } .flex-block .benefits-listed { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding: 15px; padding-left: 25px; -ms-flex-preferred-size: 50%; flex-basis: 50%; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } @media only screen and (max-width:640px) { .flex-block .benefits-listed { -ms-flex-preferred-size: 100%; flex-basis: 100%; } } .plan-selection.subscriptions .pricing-option { min-height: 120px; } .plan-selection.subscriptions .pricing-option .option-price { padding-top: 22px!important; } .plan-selection.subscriptions .pricing-option .old-price { margin-top: 0!important; } .summary-header-scroll { margin-top: -5px!important; padding: 8px 25px!important; } .final-price.subscription { display: block!important; } .period.period-eu { margin: 0!important; } .pricing-options { margin-top: 20px; margin-bottom: 20px; } .pricing-options .pricing-option { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: stretch; -ms-flex-pack: stretch; justify-content: stretch; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; cursor: pointer; position: relative; border: 2px solid rgba(68,68,68,.243635); -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 4px; padding: 20px; margin-bottom: 20px; } .pricing-options .pricing-option.single-month .option-price { padding-top: 10px!important; } .pricing-options .pricing-option.single-month .per-week { top: 35px!important; } .pricing-options .pricing-option .per-week { position: absolute; font-size: 11px; top: 48px; left: 0; min-width: 100%; width: 80px; text-align: center; } .pricing-options .pricing-option .tick { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-top: 10px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .pricing-options .pricing-option .tick i { width: 30px; height: 30px; background: rgba(68,68,68,.104977); display: block; text-align: center; border-radius: 50%; } .pricing-options .pricing-option .tick i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #fff; font-size: 19px; position: relative; top: 1px; left: -1px; } .pricing-options .pricing-option .discount { position: absolute; width: 70%; left: 15%; bottom: -10px; font-family: Karla,Montserrat; font-style: normal; font-weight: 700; font-size: 14px; padding: 3px; line-height: 18px; text-align: center; letter-spacing: .508928px; text-transform: uppercase; color: #fff; background: #56468f; border-radius: 6px; } @media(max-width:350px) { .pricing-options .pricing-option .discount { width: 90%!important; left: 5%!important; } } .pricing-options .pricing-option .option-title { -webkit-box-flex: 3; -ms-flex: 3; flex: 3; font-family: Karla,Montserrat; font-style: normal; font-weight: 400; font-size: 22px; line-height: 27px; letter-spacing: -.2px; color: #444; } .pricing-options .pricing-option .option-title .billing-period { margin-top: -2px; font-size: 12px; opacity: .7; } @media only screen and (max-width:360px) { .pricing-options .pricing-option .option-title .billing-period { line-height: 16px; margin-top: 2px; } } .pricing-options .pricing-option .option-price { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; font-family: Karla,Montserrat; font-style: normal; -ms-flex-item-align: stretch; align-self: stretch; font-weight: 400; font-size: 30px; padding-top: 15px; position: relative; line-height: 35px; text-align: center; letter-spacing: 1.1875px; color: #444; } .pricing-options .pricing-option .option-price .old-price { position: absolute; top: 2px; font-family: Karla,Montserrat; font-style: normal; font-weight: 400; width: 100%; font-size: 18px!important; line-height: 22px!important; text-align: center!important; letter-spacing: 1.1875px!important; color: #444!important; mix-blend-mode: normal!important; opacity: .5; } .pricing-options .pricing-option.active { border: 2px solid #786ba5; } .pricing-options .pricing-option.active .tick i { background: #ff3464; } #downsell-modal { text-align: center; } #downsell-modal .btn-deny { font-size: 16px; color: #555; text-decoration: underline; display: block; margin-top: 20px; } #downsell-modal .modal-body { padding: 20px; padding-top: 40px; } #downsell-modal .savings-label { background: #56468f; color: #fff; padding: 2px 5px; max-width: 250px; margin: 5px auto; border-radius: 10px; text-transform: uppercase; font-weight: 600; } #downsell-modal .downsell-offer { font-size: 16px; margin-bottom: 20px; margin-top: 20px; line-height: 24px; } #downsell-modal .offer-details { font-size: 16px; line-height: 24px; } #downsell-modal .heading { font-weight: 700; font-family: Lato,Montserrat; color: #ff3464; font-size: 32px; } #downsell-modal .downsell-timer { font-size: 36px; margin: 10px 0; } .plan-disclaimer { font-style: normal; font-weight: 700; font-size: 15px; line-height: 18px; text-align: center; letter-spacing: .508928px; color: #56468f; } .secure-payment { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; text-align: center; -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .secure-payment.custom-test { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; } @media only screen and (max-width:640px) { .secure-payment { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; -ms-flex-preferred-size: 100%; flex-basis: 100%; margin-bottom: 30px; margin-top: -10px; } } .secure-payment img { max-width: 70%; } h1.custom-test { display: block!important; } @media only screen and (max-width:640px) { h1.custom-test { font-size: 36px!important; } } @media only screen and (max-width:640px) { h2.custom-test { display: none!important; } } .payment-info { text-align: center; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; -ms-flex-preferred-size: 50%; flex-basis: 50%; } @media only screen and (max-width:640px) { .payment-info { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; -ms-flex-preferred-size: 100%; flex-basis: 100%; margin-bottom: 40px; } } @media only screen and (max-width:640px) { .payment-info.upgraded { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; } } .payment-info h3 { font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; margin-top: 0!important; } .payment-info .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background: #ff3464!important; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; } .payment-info .cta-btn.green-cta { background: #21ce3e!important; } .payment-info .cta-btn:hover { opacity: .85; } @media only screen and (min-width:640px) { .payment-info .cta-btn { width: 100%; outline: none; border-radius: 30.5px; background-color: #ccc; text-align: center; color: #fff; border: 0; -webkit-box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); box-shadow: 0 4px 11px -2px rgba(0,0,0,.3); padding: 10px; background: #ff3464!important; max-width: 300px; margin-bottom: 20px; margin-top: 0; } .payment-info .cta-btn.green-cta { background: #21ce3e!important; } } .payment-info #braintree-checkout { background: #f5f5f5; padding: 25px; border-radius: 10px; } .payment-info #braintree-checkout #braintree-submit-button { max-width: 100%; width: 100%; } .payment-info #braintree-checkout .braintree-card.braintree-form.braintree-sheet { background: #f5f5f5!important; } .payment-info #braintree-checkout .braintree-form__field { background: #fff!important; } .benefits-listed h3 { font-family: Karla,Montserrat!important; font-style: normal!important; font-weight: 700!important; font-size: 22px!important; line-height: 27px!important; display: block!important; text-align: center!important; letter-spacing: -.2px!important; margin-top: 0!important; } .benefits-listed ul { margin-top: 30px; margin-bottom: 30px; padding-left: 10px; } @media only screen and (max-width:640px) { .benefits-listed ul { padding-left: 0; } } .benefits-listed li { list-style: none; } .benefits-listed .feature-description { display: none; } .benefits-listed.v2 .e-feature { font-size: 18px!important; font-weight: 700!important; } .benefits-listed.v2 .e-feature .feature-description { display: block; color: #8e8e8e!important; font-size: 14px!important; margin-top: 5px; font-weight: 400!important; } .benefits-listed .e-feature { margin-top: 6px; margin-bottom: 6px; margin-left: 0; text-align: left; font-family: Karla,Montserrat; font-style: normal; font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .508928px; width: 100%; padding-left: 10px; } .benefits-listed .e-feature .fa-check:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; } .benefits-listed .e-feature .e-notice-bg { margin-right: 5px; } .benefits-listed .e-feature i { color: #ff3464!important; font-weight: 700; margin-right: 5px; } #braintree-checkout { text-align: left; } #landing.landing-0916 { background-position: 160px -125px!important; text-align: left; } @media only screen and (min-width:640px) { #landing.landing-0916 { background-size: contain!important; background-position: 100%!important; } } #landing.landing-0916 h1 { margin-top: 25px; font-size: 32px; max-width: 340px; line-height: 40px; color: #444; } @media only screen and (min-width:640px) { #landing.landing-0916 h1 { padding-top: 100px; font-size: 48px; max-width: 510px; margin: auto; text-align: center; line-height: 64px; padding-bottom: 10px; } } #landing.landing-0916 h1 span { color: #ff3464; } #landing.landing-0916 .copyright,#landing.landing-0916 .footer-logo,#landing.landing-0916 .links { display: none; } #landing.landing-0916 .gender-description { text-align: center; margin-top: 20px; } @media only screen and (min-width:640px) { #landing.landing-0916 .gender-description { margin-top: 30px; } } @media only screen and (min-width:640px) { #landing.landing-0916 .gender-buttons { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } } #landing.landing-0916 .btn-borders { max-width: 170px; min-height: 160px; border-radius: 40px; margin: auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; position: relative; width: 100%; height: 100%; overflow: hidden; margin-top: 20px; background: 0 0; } @media only screen and (min-width:640px) { #landing.landing-0916 .btn-borders { margin: 10px; max-width: 210px; min-height: 205px; } } @media only screen and (max-width:360px) { #landing.landing-0916 .btn-borders { margin-top: 10px; } } #landing.landing-0916 .btn-borders[data-gender=male] .btn-borders-inner { background: #56468f; } #landing.landing-0916 .btn-borders[data-gender=male]:before { content: ""; background: rgba(86,70,142,.2); -webkit-animation: 4s pulse-layer-3 infinite; animation: 4s pulse-layer-3 infinite; } #landing.landing-0916 .btn-borders[data-gender=male]:after { content: ""; background: rgba(86,70,142,.3); -webkit-animation: 4s pulse-layer-4 infinite; animation: 4s pulse-layer-4 infinite; } #landing.landing-0916 .btn-borders .btn-borders-inner { font-size: 25px; background: #ff3464; position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; z-index: 1; border-radius: 35px; } #landing.landing-0916 .btn-borders .btn-borders-icon,#landing.landing-0916 .btn-borders .btn-borders-icon img { width: 45px; height: 45px; } #landing.landing-0916 .btn-borders:before { content: ""; background: rgba(255,51,100,.2); position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50px; -webkit-animation: 4s pulse-layer-1 infinite; animation: 4s pulse-layer-1 infinite; } #landing.landing-0916 .btn-borders:after { content: ""; background: rgba(255,51,100,.35); position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; border-radius: 40px; -webkit-animation: 4s pulse-layer-2 infinite; animation: 4s pulse-layer-2 infinite; } #landing.landing-0916 .btn-borders .icon { position: relative; left: 0; right: 0; top: 0; } @media only screen and (min-width:640px) { html[lang=de] #landing.landing-0916 h1,html[lang=fr] #landing.landing-0916 h1 { padding-top: 60px; max-width: 570px; } } @-webkit-keyframes pulse-layer-1 { 0% { background: rgba(255,51,100,.05); } 50% { background: rgba(255,51,100,.25); } to { background: rgba(255,51,100,.05); } } @keyframes pulse-layer-1 { 0% { background: rgba(255,51,100,.05); } 50% { background: rgba(255,51,100,.25); } to { background: rgba(255,51,100,.05); } } @-webkit-keyframes pulse-layer-2 { 0% { background: rgba(255,51,100,.1); } 50% { background: rgba(255,51,100,.35); } to { background: rgba(255,51,100,.1); } } @keyframes pulse-layer-2 { 0% { background: rgba(255,51,100,.1); } 50% { background: rgba(255,51,100,.35); } to { background: rgba(255,51,100,.1); } } @-webkit-keyframes pulse-layer-3 { 0% { background: rgba(86,70,142,.25); } 50% { background: rgba(86,70,142,.05); } to { background: rgba(86,70,142,.25); } } @keyframes pulse-layer-3 { 0% { background: rgba(86,70,142,.25); } 50% { background: rgba(86,70,142,.05); } to { background: rgba(86,70,142,.25); } } @-webkit-keyframes pulse-layer-4 { 0% { background: rgba(86,70,142,.35); } 50% { background: rgba(86,70,142,.1); } to { background: rgba(86,70,142,.35); } } @keyframes pulse-layer-4 { 0% { background: rgba(86,70,142,.35); } 50% { background: rgba(86,70,142,.1); } to { background: rgba(86,70,142,.35); } } .email-holder label { width: 98%; } .email-holder label .braintree-form__label { font-size: 14px; font-weight: 600; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; line-height: 1.4; margin-left: 5px; margin-bottom: 5px; } .email-holder label input { font-weight: 400!important; } .email-holder label input.with-error { border-bottom: 1px solid #ca2a2a; } .email-holder label .email-error { padding-top: 5px; font-weight: 400; margin-left: 5px; color: #ca2a2a; display: none; } #email-modal .modal-title { font-weight: 700; } #email-modal p { padding-bottom: 10px; font-size: 15px; } html[lang=de] #landing h1 { max-width: 330px; } .b-form-email .input-holder { margin-bottom: 20px; } .b-form-email .error-msg { margin-bottom: 15px; margin-top: -5px; text-align: left; margin-left: 5px; } .b-form-email .b-input { margin-left: 5px; } .promo-checkbox { font-weight: 400!important; cursor: pointer; display: inline; } html[lang=fr] #landing h1 { max-width: 440px; } .replace-recipe { background-color: #56468f!important; border-color: #312363!important; } .replace-recipe:hover { opacity: .9; } #alternatives-modal .modal-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: .3rem; border-top-right-radius: .3rem; } #alternatives-modal .modal-header h4 { font-weight: 700; font-size: 20px; } #alternatives-modal .modal-header .close { margin-top: -2px; margin: -1rem -1rem -1rem auto; padding: 15px; } .alternative-loader { padding: 30px; display: none; text-align: center; } .btn-print-recipe { border: 0!important; background-color: #ff3464; color: #fff; } .btn-print-recipe:hover { background-color: #ff3464!important; opacity: .9; } #recipe-modal .btn { display: block; padding: 10px 40px; margin-bottom: 8px; font-size: 15px; text-align: center; border-radius: 6px; } #recipe-modal .btn.replace-recipe { color: #fff; } .alternative-recipe { min-height: 120px; border-bottom: 1px solid #ebebeb; margin-bottom: 15px; } .alternative-recipe img { margin-top: 10px; margin-right: 15px; } .alternative-recipe .recipe-title { opacity: 1; color: #444; font-family: Karla,Montserrat; font-size: 14px; font-weight: 700; letter-spacing: .47px; line-height: 20px; margin-bottom: 5px; } .alternative-recipe .recipe-kcal { color: #56468f; letter-spacing: .47px; display: inline-block; margin-right: 20px; } .alternative-recipe .recipe-kcal,.alternative-recipe .recipe-preparation { font-family: Karla,Montserrat; font-size: 13px; font-weight: 400; line-height: 15px; } .alternative-recipe .recipe-preparation { opacity: .4; color: #444; letter-spacing: .37px; } .alternative-recipe button { background-color: #ff3464; color: #fff; padding: 7px 30px; border: 0; border-radius: 6px; margin-top: 5px; } .alternative-recipe button:hover { opacity: .9; } .alternative-recipe:last-of-type { border: 0!important; } .question-description .highlight { color: #ff3464; font-weight: 600; } @media only screen and (min-width:728px) { .dessert-sample { display: inline-block; max-width: 49%; background: #fff!important; } } .upsell-reasoning { font-size: 16px; line-height: 24px; margin-top: 15px; margin-bottom: 15px; } .dessert-benefits { margin: 30px auto!important; max-width: 300px!important; } .sample-recipes .dessert-sample { background: #f5f5f5; padding: 20px; text-align: center; } .sample-recipes .dessert-sample:nth-child(2n) { background: #fff!important; } .sample-recipes .dessert-sample .dessert-title { color: #56468f; font-weight: 700; font-size: 18px; font-family: Karla; margin-bottom: 10px; } .sample-recipes .dessert-sample .dessert-photo { border-radius: 10px; max-width: 280px; } .sample-recipes .dessert-sample .dessert-photo img { width: 100%; border-radius: 10px; } .sticky-button { background: #5f4aa9eb; padding: 15px 10px; position: fixed; width: 100%; bottom: 0; text-align: center; left: 0; z-index: 10; } .sticky-button .offer-countdown { color: #fff; font-size: 24px; margin-right: 15px; } .sticky-button .offer-countdown span { font-weight: 700; text-decoration: underline; } @media only screen and (max-width:640px) { .sticky-button .offer-countdown { font-size: 18px!important; display: block; margin-right: 0!important; margin-bottom: 10px; } } .sticky-scroll { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; font-size: 16px; line-height: 19px; text-transform: capitalize; border: 0; padding: 15px; max-width: 500px; margin: 0 auto; display: block; text-align: center; color: #fff; } @media only screen and (min-width:1025px) { .sticky-scroll { display: inline-block; } } .sticky-scroll:hover { opacity: .9; } .fuel-success-body { background: #f9f9f9; } .fuel-success-body .success-img { max-width: 350px!important; } @media only screen and (min-width:1025px) { .fuel-checkout { background: #f9f9f9; } } .fuel-checkout .upsell-logo { margin-top: 10px!important; } .fuel-checkout .checkout-block { background: #fff; } @media only screen and (min-width:1025px) { .fuel-checkout .checkout-block { max-width: 700px!important; margin: 20px auto!important; } .fuel-checkout .checkout-block .multiple-flavours { max-width: 400px; margin: 0 auto; display: block; } .fuel-checkout .checkout-block .flavour-holder { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-checkout .checkout-block .flavour-holder .flavour { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 45%; flex-basis: 45%; } .fuel-checkout .checkout-block .flavour-holder .flavour-separator { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 10%; flex-basis: 10%; height: 20px; } .fuel-checkout .checkout-block .container { max-width: 100%; } .fuel-checkout .checkout-block .order-details { -webkit-border-top-left-radius: 15px; -webkit-border-top-right-radius: 15px; -moz-border-radius-topleft: 15px; -moz-border-radius-topright: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; } } .fuel-checkout .checkout-block img { max-width: 100%; } .fuel-checkout .checkout-block .plan-title { font-weight: 700; font-size: 24px; line-height: 29px; margin-top: 15px; margin-bottom: 30px; color: #222; } .fuel-checkout .checkout-block .single-flavour { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 20px 0; } @media only screen and (min-width:1025px) { .fuel-checkout .checkout-block .single-flavour { width: 320px; } } .fuel-checkout .checkout-block .oops { padding-top: 30px; text-align: center; } .fuel-checkout .checkout-block .oops span { display: block; padding-top: 5px; font-weight: 700; font-size: 40px; line-height: 48px; } .fuel-checkout .checkout-block .out-of-stock { font-weight: 700; font-size: 18px; line-height: 26px; text-align: center; color: #222; padding: 15px; opacity: .8; } .fuel-checkout .checkout-block .update-stock { font-weight: 500; margin: 30px 0; font-size: 16px; text-align: center; line-height: 24px; color: #222; } .fuel-checkout .checkout-block .update-stock span { color: #ff3464; font-weight: 600; } .fuel-checkout .checkout-block .flavour-box { text-align: center; border: 1px solid #c4c4c4; border-radius: 10px; cursor: pointer; -ms-flex-preferred-size: 45%; flex-basis: 45%; padding: 15px; } .fuel-checkout .checkout-block .flavour-box.selected { border: 1px solid #4d369f; } .fuel-checkout .checkout-block .flavour-box span { display: block; font-weight: 600; font-size: 16px; margin-top: 10px; } .fuel-checkout .checkout-block .select-flavour { font-size: 16px; font-weight: 600; line-height: 20px; color: #222; opacity: .7; } .fuel-checkout .checkout-block .flavour-qty { background: rgba(34,34,34,.1); border-radius: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-checkout .checkout-block .flavour-qty div { -ms-flex-preferred-size: 15%; flex-basis: 15%; } .fuel-checkout .checkout-block .flavour-qty .count { font-size: 18px; line-height: 42px; text-align: center; } .fuel-checkout .checkout-block .flavour-qty .add,.fuel-checkout .checkout-block .flavour-qty .subtract { background: #4d369f; border-radius: 10px; width: 42px; height: 42px; text-align: center; line-height: 42px; color: #fff; font-weight: 700; font-size: 24px; cursor: pointer; } .fuel-checkout .checkout-block .pink-box { padding: 15px; font-weight: 700; font-size: 16px; line-height: 19px; text-transform: uppercase; margin-bottom: 10px; } .fuel-checkout .checkout-block .pink-box.flavor-headline { margin: 10px -15px; } .fuel-checkout .checkout-block select#state { background: rgba(34,34,34,.07); border-radius: 10px; -webkit-box-shadow: none!important; box-shadow: none!important; height: 48px!important; border: 0; border-color: none; } .fuel-checkout .checkout-block select#state.has-error { border: 1px solid; } .fuel-checkout .checkout-block label { font-weight: 700; cursor: pointer; font-size: 16px; margin-top: 20px; margin-bottom: 10px; line-height: 20px; } .fuel-checkout .checkout-block input { background: rgba(34,34,34,.07); border-radius: 10px; border: 0; padding: 8px 15px; -webkit-box-shadow: none!important; box-shadow: none!important; height: 48px!important; } .fuel-checkout .checkout-block input.has-error { border: 1px solid red; } .fuel-checkout .checkout-block .order-button { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; margin-top: 20px; font-size: 16px; line-height: 19px; text-transform: capitalize; display: block; text-align: center; border: 0; padding: 15px; margin-bottom: 20px; color: #fff; } .fuel-upsell { text-align: left; font-style: normal; padding-bottom: 90px; } .fuel-upsell.v2 .get-ketosis h4 { max-width: 600px; margin: 0 auto; font-size: 32px!important; line-height: 42px!important; } .fuel-upsell.v2 .why-works { text-align: center; } .fuel-upsell.v2 .why-works ul { list-style: none; font-size: 16px; line-height: 24px; margin: 30px auto; text-align: left; width: 100%; max-width: 700px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works ul { padding-left: 0!important; } } .fuel-upsell.v2 .why-works h4 { text-align: center!important; margin-top: 35px!important; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works h4 { text-align: left!important; } } .fuel-upsell.v2 .why-works .no-sugar { font-weight: 600; font-size: 16px; text-align: center; margin-bottom: 30px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .why-works .no-sugar { text-align: left; } } .fuel-upsell.v2 .like-fuel,.fuel-upsell.v2 .you-choose { font-weight: 400; font-size: 16px; line-height: 26px; width: 100%; max-width: 760px; margin: 30px auto; margin-top: 0; } .fuel-upsell.v2 .to-achieve { font-size: 16px; line-height: 26px; margin: 30px auto; font-weight: 400; margin-top: 10px; } .fuel-upsell.v2 .to-achieve span { color: #ff3464; } .fuel-upsell.v2 .our-offer { font-weight: 700; font-size: 24px; color: #ff3464; line-height: 32px; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .our-offer { font-size: 16px; line-height: 24px; text-align: left; margin-bottom: -10px; } } .fuel-upsell.v2 .no-matter { font-size: 20px; line-height: 30px; text-align: center; max-width: 600px; margin: 30px auto; font-weight: 600; } .fuel-upsell.v2 .no-matter span { color: #ff3464; } .fuel-upsell.v2 .more-value { font-weight: 700; font-size: 24px; line-height: 30px; text-align: center; color: #000; max-width: 700px; margin: 30px auto; } @media only screen and (max-width:640px) { .fuel-upsell.v2 .more-value { text-align: left; } } .fuel-upsell.v2 .more-value span { color: #ff3464; } .fuel-upsell.v2 .product-photo { text-align: center; padding: 40px; } .fuel-upsell.v2 .product-photo img { max-width: 450px; width: 80%; } .fuel-upsell img { max-width: 100%; } .fuel-upsell h1 { margin-top: 30px; font-weight: 900; text-align: left!important; font-size: 30px; line-height: 36px; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell h1 { text-align: center!important; font-size: 40px!important; line-height: 48px!important; } } .fuel-upsell .grey-box { background: #c4c4c41a; padding: 25px 0; } .fuel-upsell .violet-box { background: #4d369fc7; color: #fff; padding: 25px 0; } .fuel-upsell .violet-box h4 { color: #fff!important; margin-bottom: 20px; } .fuel-upsell .violet-box p { font-size: 16px; line-height: 24px; } .fuel-upsell .pink-box { background: #ff3464cf; color: #fff; padding: 25px 0; } .fuel-upsell h4 { font-weight: 700; font-size: 24px; line-height: 26px; color: #000; text-align: left!important; } .fuel-upsell p.slogan { font-size: 16px; line-height: 24px; text-align: left; font-weight: 600; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell p.slogan { font-size: 24px!important; text-align: center!important; line-height: 24px!important; } } .fuel-upsell .main-screen { position: relative; } .fuel-upsell .main-screen .fact-box { display: none; } @media only screen and (min-width:1025px) { .fuel-upsell .main-screen .fact-box { display: block!important; position: absolute; background: #ff5d83; border-radius: 14px; padding: 15px; width: 280px; bottom: 110px; text-align: left; right: -200px; color: #fff; } } .fuel-upsell .main-screen .fact-box h3 { margin-top: 0!important; font-weight: 800; font-size: 24px; line-height: 26px; color: #fff!important; } .fuel-upsell .main-screen .fact-box .description { font-size: 16px; line-height: 24px; } .fuel-upsell .product-image { margin-bottom: 50px; margin-top: 30px; } .fuel-upsell .product-image img { max-width: 100%; } @media only screen and (min-width:1025px) { .fuel-upsell .product-image img { max-width: 480px; margin-top: 20px; } } .fuel-upsell .fact { display: block; color: #fff!important; } .fuel-upsell .fact h3 { font-weight: 800!important; font-size: 24px!important; color: #fff!important; margin-top: 0!important; line-height: 26px!important; } .fuel-upsell .fact .description { font-weight: 400; font-size: 16px; line-height: 24px; } @media only screen and (min-width:1025px) { .fuel-upsell .fact { display: none; } } .fuel-upsell .better-results { text-align: center; font-weight: 700; font-size: 24px; line-height: 26px; color: #000; padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .better-results { background: #c4c4c459; padding: 40px 0!important; } } .fuel-upsell .better-results span { color: #4d369f; font-weight: 800; font-size: 38px; margin-right: 7px; line-height: 46px; letter-spacing: .02em; } @media only screen and (min-width:1025px) { .fuel-upsell .better-results span { font-size: 60px!important; margin-right: 12px!important; line-height: 72px!important; } } .fuel-upsell .looking-to .product-description { font-weight: 400; font-size: 16px; text-align: left; line-height: 24px; } .fuel-upsell .looking-to .product-description span { letter-spacing: .03em; color: #ff3464; font-weight: 600; text-decoration: underline; } @media only screen and (min-width:1025px) { .fuel-upsell .looking-to { padding: 40px 0!important; } } @media only screen and (min-width:1025px) { .fuel-upsell .looking-to .container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 1000px!important; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .looking-to .container .left-side,.fuel-upsell .looking-to .container .right-side { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; } } .fuel-upsell .flavours { padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .flavours { padding: 40px 0!important; text-align: center!important; } .fuel-upsell .flavours h4 { text-align: center!important; font-size: 40px!important; line-height: 48px!important; margin-bottom: 40px!important; } } .fuel-upsell .flavours img { max-width: 100%; margin: 20px 0; } .fuel-upsell .flavours .properties { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .flavours .properties .prop { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; font-weight: 400; font-size: 16px; line-height: 19px; text-align: center; margin-bottom: 30px; } @media only screen and (min-width:1025px) { .fuel-upsell .flavours .properties .prop { -ms-flex-preferred-size: 25%; flex-basis: 25%; } } .fuel-upsell .flavours .properties .prop span { display: block; font-weight: 700; font-size: 46px; line-height: 55px; margin-bottom: 5px; color: #4d369f; } .fuel-upsell .get-ketosis { padding: 25px 0; } .fuel-upsell .get-ketosis .shortcut { font-weight: 700; font-size: 16px; line-height: 19px; letter-spacing: .03em; text-transform: uppercase; margin: 25px 0; color: #000; opacity: .5; -ms-flex-preferred-size: 10%; flex-basis: 10%; } @media only screen and (min-width:1025px) { .fuel-upsell .get-ketosis h4 { font-size: 40px!important; text-align: center!important; margin-bottom: 40px!important; margin-top: 40px!important; line-height: 30px!important; } } @media only screen and (min-width:1025px) { .fuel-upsell .get-ketosis .type-holder { -ms-flex-pack: distribute; justify-content: space-around; display: -webkit-box; display: -ms-flexbox; display: flex; } } .fuel-upsell .get-ketosis .ketosis-type { -ms-flex-preferred-size: 35%; flex-basis: 35%; } .fuel-upsell .get-ketosis .type-title { font-weight: 700; font-size: 20px; margin: 25px 0; line-height: 24px; color: #000; } .fuel-upsell .get-ketosis .type-title span { display: inline-block; background: #ff346436; color: #ff3464; border-radius: 50%; margin-right: 10px; width: 30px; height: 30px; text-align: center; line-height: 30px; } .fuel-upsell .get-ketosis ul { margin-left: 20px; color: #ff3464; } .fuel-upsell .get-ketosis ul li { margin-bottom: 5px; } .fuel-upsell .get-ketosis ul span { color: #000; font-size: 16px; line-height: 24px; } @media only screen and (min-width:1025px) { .fuel-upsell .get-straight .container { max-width: 750px!important; } .fuel-upsell .get-straight .container h4 { margin: 35px 0!important; font-size: 40px!important; text-align: center!important; line-height: 30px!important; } } .fuel-upsell .choose-method p,.fuel-upsell .effortless p,.fuel-upsell .fuel-benefits p,.fuel-upsell .get-straight p,.fuel-upsell .nutritionist p,.fuel-upsell .side-effects p,.fuel-upsell .sold-out p { font-weight: 400; font-size: 16px; line-height: 26px; margin-top: 10px; margin-bottom: 20px; } .fuel-upsell .choose-method p span,.fuel-upsell .effortless p span,.fuel-upsell .fuel-benefits p span,.fuel-upsell .get-straight p span,.fuel-upsell .nutritionist p span,.fuel-upsell .side-effects p span,.fuel-upsell .sold-out p span { color: #ff3464; font-weight: 600; } .fuel-upsell .choose-method .container,.fuel-upsell .effortless .container,.fuel-upsell .overshadow .container,.fuel-upsell .side-effects .container,.fuel-upsell .sold-out .container { max-width: 800px; } .fuel-upsell .side-effects .problem-list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-top: 40px; } .fuel-upsell .side-effects .problem-list .problem { text-align: center; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 50%; flex-basis: 50%; margin-bottom: 40px; -ms-flex-item-align: end; align-self: flex-end; } @media only screen and (min-width:1025px) { .fuel-upsell .side-effects .problem-list .problem { -ms-flex-preferred-size: 25%!important; flex-basis: 25%!important; } } .fuel-upsell .side-effects .problem-list .problem span { font-weight: 700; font-size: 16px; line-height: 24px; display: block; margin-top: 10px; } .fuel-upsell .side-effects ul li { font-size: 16px; color: #ff3464; line-height: 26px; } .fuel-upsell .side-effects ul li span { color: #444; } .fuel-upsell .fuel-benefits { padding: 25px 0; } .fuel-upsell .fuel-benefits .container { max-width: 800px!important; } .fuel-upsell .fuel-benefits img { margin: 20px 0; } .fuel-upsell .fuel-benefits .highlighted { color: #ff3464; font-weight: 600; margin-bottom: 0; } .fuel-upsell .fuel-benefits span.violet { color: #4d369f; } .fuel-upsell .fuel-benefits ul { padding-left: 20px; } .fuel-upsell .fuel-benefits ul li { color: #ff3464; font-size: 16px; line-height: 24px; margin-bottom: 5px; } .fuel-upsell .fuel-benefits ul li span { color: #4d4d4d; } .fuel-upsell .use-it { padding: 25px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .container { max-width: 100%!important; } .fuel-upsell .use-it h4 { font-size: 40px!important; line-height: 48px!important; margin: 40px auto!important; text-align: center!important; } .fuel-upsell .use-it .upsell-benefits { max-width: 650px; margin: 30px auto!important; } } .fuel-upsell .use-it .use-cases { margin: 35px 0; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .use-cases { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } } .fuel-upsell .use-it .use-cases .case { text-align: left; color: #000; margin-bottom: 25px; clear: both; } @media only screen and (min-width:1025px) { .fuel-upsell .use-it .use-cases .case { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 18%; flex-basis: 18%; text-align: center; } .fuel-upsell .use-it .use-cases .case img { display: block; float: none!important; margin: 10px auto!important; } .fuel-upsell .use-it .use-cases .case .reason { max-width: 200px!important; margin: 0 auto!important; } } .fuel-upsell .use-it .use-cases .case img { float: left; margin-right: 25px; width: 45px; padding-bottom: 10px; padding-top: 5px; } .fuel-upsell .use-it .use-cases .case .title { font-weight: 700; font-size: 16px; line-height: 19px; } .fuel-upsell .use-it .use-cases .case .reason { margin-top: 10px; font-weight: 400; font-size: 16px; line-height: 24px; } .fuel-upsell .use-it .product-image { margin-bottom: 0!important; } .fuel-upsell .btn-skip { font-size: 15px; line-height: 18px; display: block; margin: 20px 0; text-align: center; width: 100%; -webkit-text-decoration-line: underline; text-decoration-line: underline; color: #1d1d1d; } @media only screen and (min-width:1025px) { .fuel-upsell .btn-skip { font-size: 18px!important; margin: 60px 0!important; } } .fuel-upsell .offer-plans .plan-holder { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder { max-width: 1200px; margin: 0 auto; } .fuel-upsell .offer-plans .plan-holder .regular { padding-top: 55px!important; } } .fuel-upsell .offer-plans .plan-holder .most-popular-heading { font-weight: 900; font-size: 16px; line-height: 19px; text-transform: uppercase; color: #fff; text-align: center; margin-bottom: 15px; } .fuel-upsell .offer-plans .plan-holder .plan { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 100%; flex-basis: 100%; padding: 20px; background: #c4c4c41a; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan { -ms-flex-preferred-size: 30%; flex-basis: 30%; background: 0 0; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box { background: #fff; position: relative; text-align: left!important; border-radius: 10px; padding: 35px 25px; -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.1); box-shadow: 0 4px 20px rgba(0,0,0,.1); } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box { height: 280px; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box img { position: absolute; right: 25px; bottom: 90px; opacity: .8; } @media only screen and (max-width:640px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box img { right: 25px!important; bottom: 100px!important; width: 60px; height: 60px; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-title { font-size: 24px; line-height: 29px; font-weight: 600; color: #222; opacity: .8; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price { font-weight: 600; font-size: 16px; margin-top: 20px; color: #222; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price sup { top: -15px; font-size: 25px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .pack-price span { font-weight: 900; margin-left: 4px; margin-right: 5px; font-size: 46px; line-height: 55px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta { background: #ff3464; border-radius: 100px; width: 100%; cursor: pointer; font-weight: 700; margin-top: 20px; font-size: 16px; line-height: 19px; text-transform: capitalize; border: 0; padding: 15px; color: #fff; } @media only screen and (min-width:1025px) { .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta { position: absolute; bottom: 20px; left: 10%; width: 80%; } } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .plan-cta:hover { opacity: .9; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .total-price { font-size: 16px; line-height: 26px; color: #222; margin: 15px 0; opacity: .5; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .save-label { position: absolute; top: 25px; right: 25px; background: #00c85c; border-radius: 8px; padding: 8px 15px; color: #fff; font-weight: 600; font-size: 14px; text-align: center; line-height: 17px; } .fuel-upsell .offer-plans .plan-holder .plan .plan-box .save-label.blue { background: #00b6ef!important; } .fuel-upsell .offer-plans .plan-holder .plan.most-popular { background: #ff3464cf; } @media only screen and (min-width:1025px) { .fuel-upsell .nutritionist { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .fuel-upsell .nutritionist .photo { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -ms-flex-preferred-size: 40%; flex-basis: 40%; } } .fuel-upsell .nutritionist .promise { padding: 20px; color: #000; font-style: italic; } @media only screen and (min-width:1025px) { .fuel-upsell .nutritionist .promise { -ms-flex-preferred-size: 60%; flex-basis: 60%; } } .fuel-upsell .nutritionist .promise .position { font-weight: 700; font-size: 16px; font-style: normal; line-height: 30px; } .fuel-upsell .nutritionist .promise .fullname { font-weight: 700; font-style: normal; font-size: 20px; line-height: 30px; } .upsell-new { font-family: Lato; } .upsell-new h3 { margin-top: 70px; font-style: normal; font-weight: 900; font-size: 32px; line-height: 38px; letter-spacing: .0084em; color: #000; text-align: left; } .upsell-new h3.secondary { margin-top: 30px; } .upsell-new h3 span { color: #ff2e63; } .upsell-new .upsell-logo { max-width: 125px; margin-top: 30px; } .upsell-new .success-msg p { text-align: left; font-family: Lato; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: .0084em; margin-bottom: 20px; } .upsell-new .additional-info span { font-weight: 600; color: #56468f; } .upsell-new .reviews { margin-top: 30px; margin-bottom: 30px; } .upsell-new .reviews .review { margin-bottom: 30px; } .upsell-new .reviews .review .review-thumbnail { display: inline-block; width: 20%; vertical-align: top; max-width: 75px; } .upsell-new .reviews .review .review-thumbnail img { max-width: 100%; border-radius: 50%; } .upsell-new .reviews .review .review-data { display: inline-block; width: 75%; text-align: left; padding-left: 15px; } .upsell-new .reviews .review .review-data .name { font-style: normal; font-weight: 700; font-size: 16px; line-height: 19px; color: #000; margin: 10px 0; } .upsell-new .reviews .review .review-data .review-text { font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: .0084em; color: #1d1d1d; } .upsell-new .offer { background: #fff; border-radius: 30px; max-width: 400px; margin: 30px auto; font-family: Lato; -webkit-box-shadow: 0 0 15px 4px rgba(0,0,0,.05); box-shadow: 0 0 15px 4px rgba(0,0,0,.05); position: relative; } .upsell-new .offer .current-price { font-style: normal; font-weight: 900; color: #ff2e63; padding-top: 50px; font-size: 46px; line-height: 55px; } .upsell-new .offer .old-price { font-style: normal; margin-top: 10px; font-weight: 400; font-size: 14px!important; line-height: 20px; letter-spacing: .84px; color: #1d1d1d; mix-blend-mode: normal; opacity: .6; } .upsell-new .offer .old-price span { text-decoration: line-through; } .upsell-new .offer .separator { background: #000; mix-blend-mode: normal; width: 80%; height: 1px; margin: 15px auto; opacity: .08; } .upsell-new .offer .opportunity { font-style: normal; font-weight: 700; text-transform: uppercase; } .upsell-new .offer .not-available-again,.upsell-new .offer .opportunity { font-size: 14px; line-height: 24px; text-align: center; letter-spacing: .84px; color: #1d1d1d; } .upsell-new .offer .discount { left: 0; top: 25px; position: absolute; color: #fff; background: #56468f; font-family: Lato; font-style: normal; font-weight: 700; text-transform: uppercase; font-size: 14px; line-height: 24px; padding: 1px 15px; border-radius: 0 100px 100px 0; } .upsell-new .offer-timer { text-align: left; font-family: Lato; font-style: normal; font-weight: 900; font-size: 24px; line-height: 32px; margin-top: 15px; letter-spacing: .0084em; color: #1d1d1d; } .upsell-new .offer-timer span { color: #56468f; } .upsell-new .act-fast { margin-top: 15px; text-align: left; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; color: #1d1d1d; } .upsell-new .act-fast,.upsell-progress { font-family: Lato; letter-spacing: .0084em; } .upsell-progress { margin: 30px auto; margin-bottom: 60px; position: relative; color: #000; } .upsell-progress .bar { position: relative; width: 100%; height: 3px; background: #c4c4c4; } .upsell-progress .bar .filler { width: 50%; height: 3px; position: absolute; left: 0; top: 0; background: #ff2e63; } .upsell-progress .bar .start { left: -1px; } .upsell-progress .bar .current,.upsell-progress .bar .start { width: 10px; height: 10px; background: #ff2e63; border-radius: 50%; position: absolute; top: -4px; } .upsell-progress .bar .current { left: 50%; margin-left: -5px; } .upsell-progress .bar .finish { width: 10px; height: 10px; background: #c4c4c4; border-radius: 50%; position: absolute; right: -1px; top: -4px; } .upsell-progress .starting-status { left: 0; text-align: left; } .upsell-progress .current-status,.upsell-progress .starting-status { position: absolute; color: #ff3464; top: 15px; font-size: 12px; line-height: 16px; } .upsell-progress .current-status { left: 50%; text-align: center; margin-left: -20px; } .upsell-progress .finish-status { position: absolute; right: 0; top: 15px; text-align: right; font-size: 12px; line-height: 16px; } .quiz-loader .b-logo { text-align: center; margin-bottom: 60px; } .quiz-loader .loader-wrapper { padding: 40px; } .quiz-loader .c-progress-bar { min-height: 6px; width: 100%; display: inline-block; margin-top: 0; background: rgba(255,46,99,.2); position: absolute; top: 0; z-index: 1; border-radius: 10px; overflow: hidden; } @media only screen and (max-width:640px) { .quiz-loader .c-progress-bar { display: block; } } .quiz-loader .c-progress-bar .c-progress-bar--process { height: 100%; position: absolute; left: 0; background: #ff2e63; width: 8.33333%; border-radius: 10px; } .quiz-loader .e-progressbar { width: 100%; height: 4px; border-radius: 5px; position: relative; background: rgba(86,70,143,.4); margin: auto; } .quiz-loader .e-progressbar .e-progressbar--mesure { height: 100%; background: #56468f; position: absolute; top: 0; left: 0; bottom: 0; right: 0; border-radius: 10px; width: 0; } .quiz-loader .e-progressbar .e-progressbar--percentage { position: absolute; left: 0; right: 0; top: -43px; margin: auto; width: 100px; font-weight: 500; color: #ff3464; text-align: center; font-size: 24px; } .quiz-loader .e-progress-status-inner p { display: none; } .quiz-loader .e-progress-status { text-align: center; width: 100%; padding-top: 20px; margin: auto; margin-top: 30px; color: #1a1e27; opacity: .5; } .quiz-loader .b-progressbar { max-width: 280px; } .quiz-loader .b-progressbar img { max-width: 100%; } .quiz-loader .b-progressbar-title { font-size: 18px; text-align: center; margin-top: 10px; color: #56468f; } .summary-container .b-quotes { width: 100%; display: block; text-align: center; margin-bottom: 30px; } .loved-foods-heading,.summary-container .summary-quote { font-size: 24px; font-family: Lato,Montserrat; } .loved-foods-heading { text-align: center; font-weight: 700; margin-top: 10px; } #selected_foods i { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: .43; } .loved-foods { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 15px; } .loved-foods .food-item { margin-bottom: 15px; -ms-flex-preferred-size: 33%; flex-basis: 33%; text-align: center; } @media only screen and (min-width:1000px) and (max-width:1200px) { .background { z-index: -1; right: -150px!important; } } @media only screen and (min-width:900px) and (max-width:1000px) { #dynamic-landing .background { z-index: -1; right: -300px!important; } #dynamic-landing h1 { font-size: 42px!important; } #dynamic-landing footer a { margin-right: 25px!important; } } @media only screen and (min-width:500px) and (max-width:767px) { #dynamic-landing .background { padding-top: 250px!important; } #dynamic-landing h1 { margin-top: 70px!important; } } @media only screen and (max-width:767px) { #dynamic-landing .landing-logo { margin-top: 20px!important; } #dynamic-landing .holiday-heading { margin-top: -160px!important; } #dynamic-landing .background { z-index: -1; background: url(../images/landings/5-mobile.png)!important; background-size: cover!important; position: relative!important; margin-top: 20px!important; padding-top: 200px!important; opacity: .15!important; } #dynamic-landing .background .shape-desktop { display: none; } #dynamic-landing .background .shape-mobile { display: block; margin-bottom: -150px; } #dynamic-landing h1 { font-size: 32px!important; line-height: 38px!important; margin-top: -120px!important; } #dynamic-landing .gender-selection { margin-top: 60px!important; } #dynamic-landing .gender-buttons a { display: block; margin-left: 0!important; width: 100%; max-width: 100%!important; } #dynamic-landing footer { margin-top: 90px!important; } #dynamic-landing footer a { display: block; text-align: center; margin-bottom: 15px; } #dynamic-landing footer .disclaimer { text-align: center; } #dynamic-landing .mobile-separator { width: 100%; height: 2px; background: #fff; display: block!important; position: absolute; left: 0; bottom: -1px; } } @media only screen and (min-width:768px) and (max-width:900px) { #dynamic-landing .background { z-index: -1; right: -360px!important; top: -25px; } #dynamic-landing h1 { font-size: 42px!important; } #dynamic-landing footer a { margin-right: 25px!important; } } #dynamic-landing { position: relative; } #dynamic-landing .background { background: url(../images/landings/5-desktop.png); position: absolute; right: 0; opacity: .6; top: 0; background-size: contain; } #dynamic-landing .mobile-separator { display: none; } #dynamic-landing .shape-mobile { display: none; width: 100%; margin-bottom: -1px; } #dynamic-landing .landing-logo { max-width: 125px; margin-top: 30px; } #dynamic-landing h1 { font-family: Lato; font-style: normal; font-weight: 900; margin-top: 120px; font-size: 46px; line-height: 55px; color: #1d1d1d; } #dynamic-landing .gender-buttons a { border-radius: 9px; text-align: left; padding: 18px; height: 60px; font-family: Lato; font-style: normal; font-weight: 900; position: relative; font-size: 18px; line-height: 24px; letter-spacing: .508928px; color: #fff!important; } #dynamic-landing .gender-buttons a img { position: absolute; right: 16px; top: 22px; } #dynamic-landing .gender-buttons .btn-female { background: #ff3464; -webkit-box-shadow: 0 4px 11px rgba(255,52,100,.5); box-shadow: 0 4px 11px rgba(255,52,100,.5); } #dynamic-landing .gender-buttons .btn-female:hover { text-decoration: none; opacity: .9; } #dynamic-landing .gender-buttons .btn-male { background: #56468f; -webkit-box-shadow: 0 4px 11px rgba(86,70,143,.5); box-shadow: 0 4px 11px rgba(86,70,143,.5); } #dynamic-landing .gender-buttons .btn-male:hover { text-decoration: none; opacity: .9; } #dynamic-landing footer { margin-top: 195px; margin-bottom: 50px; } #dynamic-landing footer a { font-family: Lato; font-style: normal; font-weight: 700; font-size: 16px; line-height: 24px; color: #1d1d1d; margin-right: 40px; } #dynamic-landing footer .disclaimer { font-family: Lato; font-style: normal; font-weight: 400; font-size: 13px; opacity: .3; line-height: 16px; margin-top: 20px; color: #000; } #dynamic-landing p.landing-description { font-family: Lato; max-width: 420px; margin-top: 10px; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; } #dynamic-landing p.gender-selection { font-family: Lato; font-style: normal; font-weight: 700; font-size: 20px; line-height: 24px; margin-top: 20px; } @media only screen and (min-width:900px) { .loved-foods-heading { margin-bottom: 20px; } } @media only screen and (min-width:500px) and (max-width:1000px) { #landing { background: #fff!important; } #landing h1 { margin-top: 30px!important; } } .mcwidget-checkbox { position: relative; left: -10px; } .mcwidget-checkbox>div { text-align: left!important; } .gender-disclaimer { margin-top: 15px; max-width: 80%; padding: 10px; color: #504648; } .sales-pitch { font-size: 18px; font-family: Lato; line-height: 1.5; text-align: center; max-width: 600px; margin: 30px auto; margin-top: 10px; } .plan-benefits { font-size: 16px; margin-bottom: 30px; } .plan-benefits li,.plan-benefits ul { list-style: none; padding-left: 0; max-width: 350px; margin: 0 auto; } .plan-benefits i:before { content: "\F00C"; font-family: FontAwesome; font-weight: 400; color: #ff3c6f; font-size: 20px; position: relative; left: -5px; } .landing2020 { position: relative; } .landing2020 .badge2020 { position: absolute; top: 15px; right: 0; width: 200px; height: 150px; background: url(../images/newYear.png) no-repeat; background-size: contain; } @media only screen and (min-width:1025px) { .landing2020 .badge2020 { display: none; } } .buy-get { font-size: 20px; font-weight: 600; color: #000; font-family: Lato; } .buy-get span { color: #ff3464!important; } #upsell-modal .modal-content { padding-bottom: 100px!important; } @media only screen and (min-width:1025px) { #upsell-modal .modal-content { padding-bottom: 150px!important; } } #upsell-modal .b-form { margin: 0 auto; } #upsell-modal h2.modal-title { font-weight: 700; font-size: 24px; float: left; } #upsell-modal h3 { margin-top: 0!important; } #upsell-modal .btn-primary { margin: 0 auto; } #upsell-modal .btn-primary:hover { opacity: .9; } #upsell-modal .price-block { background: #fff; border-radius: 30px; max-width: 400px; margin: 30px auto; font-family: Lato; text-align: center; -webkit-box-shadow: 0 0 15px 4px rgba(0,0,0,.05); box-shadow: 0 0 15px 4px rgba(0,0,0,.05); position: relative; } #upsell-modal .price-block .current-price { font-style: normal; font-weight: 900; color: #ff2e63; padding-top: 50px; font-size: 46px; line-height: 55px; } #upsell-modal .price-block .old-price { font-style: normal; margin-top: 10px; font-weight: 400; font-size: 14px!important; line-height: 20px; letter-spacing: .84px; color: #1d1d1d; mix-blend-mode: normal; opacity: .6; } #upsell-modal .price-block .opportunity { font-style: normal; font-weight: 700; font-size: 14px; line-height: 24px; text-align: center; text-transform: uppercase; letter-spacing: .84px; color: #1d1d1d; } #upsell-modal .price-block .not-available-again { font-size: 14px; line-height: 24px; text-align: center; letter-spacing: .84px; color: #1d1d1d; padding-bottom: 10px; } #upsell-modal .price-block .separator { background: #000; mix-blend-mode: normal; width: 80%; height: 1px; margin: 15px auto; opacity: .08; } #upsell-modal .price-block .discount { left: 0; top: 25px; position: absolute; color: #fff; background: #56468f; font-family: Lato; font-style: normal; font-weight: 700; text-transform: uppercase; font-size: 14px; line-height: 24px; padding: 1px 15px; border-radius: 0 100px 100px 0; } #upsell-modal .btn-skip { color: #444; text-align: center; display: block; margin-top: 15px; text-decoration: underline; font-size: 16px; } #upsell-modal ul { list-style: none; padding-left: 0; margin: 20px 0; } #upsell-modal ul li { list-style: none; } #upsell-modal ul i { font-weight: 700; color: #ff3464; margin-right: 5px; } .target-weight-warning { margin-bottom: 30px; padding: 15px; margin-top: -10px; border: 2px solid #ff3464; background: #ff34641f; font-size: 13px; } @media only screen and (max-width:640px) { .benefits-mxn { margin-top: 15px; } } @media only screen and (max-width:640px) { .plan-selection.upgraded { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; margin-top: -20px!important; } } .benefits-listed.upgraded { margin-top: 15px; } #prequiz #landing .container { max-width: 600px!important; } .reviews-sticky { width: 100%; height: 60px; position: fixed; top: 0; left: 0; background: #fff; z-index: 9999; } @media only screen and (min-width:1025px) { .recover-plan { position: absolute; width: 285px; top: 5px; right: 25px; } } .recover-plan a { font-size: 16px!important; padding: 10px!important; } .plan-recovery h1 { font-weight: 600; margin-bottom: 30px; } .freebie-offer { position: fixed; bottom: 0; left: 0; background: #ff3464d9; width: 100%; z-index: 3; color: #fff; padding: 10px; text-align: center; font-weight: 600; } .what-you-get-block { display: none; } .what-you-get-block h2 { font-size: 22px!important; text-transform: uppercase; font-weight: 700; margin-bottom: 0!important; } @media only screen and (min-width:1025px) { .what-you-get-block .what-you-get { display: -webkit-box; display: -ms-flexbox; display: flex; padding-top: 15px; } } .what-you-get-block .what-you-get img { width: 550px; max-width: 100%; } .what-you-get-block .what-you-get .feature { margin-bottom: 15px; } .what-you-get-block .what-you-get .feature strong { display: block; margin-bottom: 5px; } @media only screen and (max-width:640px) { .plan-selection.plans-mxn { -webkit-box-ordinal-group: 4!important; -ms-flex-order: 3!important; order: 3!important; margin-top: -20px!important; } } .plan-selection.plans-mxn .pricing-options .pricing-option .option-price .old-price { font-size: 16px!important; } .plan-selection.plans-mxn .option-price { left: 10px; font-size: 26px!important; } .plan-selection.plans-mxn .option-price span { font-size: 16px!important; margin-right: 3px!important; } .plan-selection.plans-mxn .option-title { font-size: 20px!important; position: relative; left: 5px; } .plans-pln .pricing-options .pricing-option .discount,.plans-rub .pricing-options .pricing-option .discount { font-size: 12px!important; } .plans-pln .pricing-options .pricing-option .option-title,.plans-rub .pricing-options .pricing-option .option-title { font-size: 18px!important; } #billing.m-checkout--11 .e-intro-title { margin: 0 auto; max-width: 750px; } .m-billing--v6.m-billing--v7 h2 { margin: 25px auto; max-width: 750px; } .quiz-disclaimer { margin-top: 25px; font-size: 12px; line-height: 16px; } .upsell-new h3.secondary strong { color: #ff2e63; } .why-works ul { list-style: none; font-size: 16px; line-height: 24px; } .why-works ul li { margin-bottom: 5px; } .why-works i { color: #ff3464; font-weight: 700; font-size: 18px; margin-right: 5px; } @media only screen and (max-width:640px) { .adyen-checkout__input--large { width: 280px!important; } } @media only screen and (max-width:380px) { .adyen-checkout__input--large { width: 250px!important; } } @media only screen and (max-width:640px) { .adyen-checkout__input--small { width: 120px!important; } } @media only screen and (max-width:380px) { .adyen-checkout__input--small { width: 110px!important; } } .btn-secondary.cancel-trial { border-radius: 22px; text-align: center; display: block; width: 100%; color: #fff; font-size: 20px; border: 0; font-weight: 700; outline: none; margin-top: 15px; letter-spacing: .68px; padding: 12px; line-height: 23px; line-height: normal; min-height: auto; } .bhb-upsell .product-info .container { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 60px 20px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .container { display: block; } } .bhb-upsell .product-info .packshot { -ms-flex-preferred-size: 40%; flex-basis: 40%; text-align: center; } .bhb-upsell .product-info .bhb-info { -ms-flex-preferred-size: 46%; flex-basis: 46%; text-align: left; } .bhb-upsell .product-info .bhb-info h2 { font-weight: 700!important; text-align: left!important; font-size: 40px!important; margin-bottom: 15px; line-height: 49px!important; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info h2 { font-size: 30px!important; line-height: 36px!important; } } .bhb-upsell .product-info .bhb-info .subheading { font-weight: 700; font-size: 24px; margin-bottom: 30px; line-height: 32px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info .subheading { font-size: 16px; line-height: 24px; } } .bhb-upsell .product-info .bhb-info .bhb-benefit { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 20px; } .bhb-upsell .product-info .bhb-info .bhb-benefit .benefit-title { font-weight: 500; font-size: 20px; line-height: 24px; } @media only screen and (max-width:640px) { .bhb-upsell .product-info .bhb-info .bhb-benefit .benefit-title { font-size: 16px; line-height: 24px; } } .bhb-upsell .product-info .bhb-info .bhb-benefit .icon { background: #ff346436; color: #ff3464; border-radius: 50%; margin-right: 10px; width: 48px; height: 48px; font-size: 24px; line-height: 48px; text-align: center; } .bhb-upsell .key-benefits { background: #f3f4f8; padding: 60px 20px; } .bhb-upsell .key-benefits h2 { font-weight: 700; font-size: 40px; line-height: 36px; margin-bottom: 40px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .key-benefits h2 { font-weight: 700; font-size: 24px; line-height: 29px; } } .bhb-upsell .key-benefits .benefit-list { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 900px; margin: 0 auto; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .bhb-upsell .key-benefits .benefit-list { display: block; } } .bhb-upsell .key-benefits .benefit-list .key-benefit { -ms-flex-preferred-size: 48%; flex-basis: 48%; background: #fff; -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.05); box-shadow: 0 4px 20px rgba(0,0,0,.05); border-radius: 10px; margin-bottom: 30px; padding: 30px; } .bhb-upsell .key-benefits .benefit-list .key-benefit img { margin-bottom: 15px; } .bhb-upsell .key-benefits .benefit-list .key-benefit strong { font-size: 18px; display: block; margin-bottom: 10px; line-height: 30px; } .bhb-upsell .key-benefits .benefit-list .key-benefit p { font-size: 16px; line-height: 30px; opacity: .8; } .bhb-upsell hr { margin-top: 15px; margin-bottom: 15px; } .bhb-upsell .bhb-product { margin: 30px auto; display: block; max-width: 70%!important; } .bhb-upsell .summary-item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 400; font-size: 16px; line-height: 20px; } .bhb-upsell .summary-item .discount { color: #f70d0d; } .bhb-upsell .summary-item.total { font-weight: 700; font-size: 24px; margin-bottom: 30px; line-height: 29px; } .bhb-upsell .get-bhb { padding: 60px 20px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb { padding: 40px 0; } } .bhb-upsell .get-bhb img { max-width: 620px; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb img { max-width: 100%; margin-bottom: 30px; } } .bhb-upsell .get-bhb h2 { font-weight: 700; font-size: 40px; line-height: 36px; margin-bottom: 40px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .get-bhb h2 { font-size: 30px; line-height: 36px; text-align: left; } } .bhb-upsell .offer-plans { padding-bottom: 30px; } .bhb-upsell .benefit-bullets { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 900px; margin: 20px auto; } @media only screen and (max-width:640px) { .bhb-upsell .benefit-bullets { display: block; } } .bhb-upsell .benefit-bullets .bullet { -ms-flex-preferred-size: 47%; flex-basis: 47%; color: #ff3464; } .bhb-upsell .benefit-bullets .bullet li { margin-bottom: 15px; } .bhb-upsell .benefit-bullets .bullet span { font-weight: 400; font-size: 18px; opacity: .8; color: #222; line-height: 26px; } .bhb-upsell .info-block { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } @media only screen and (max-width:640px) { .bhb-upsell .info-block { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .bhb-upsell .info-block p { font-size: 16px!important; line-height: 24px!important; } .bhb-upsell .info-block .info-content { margin-left: 0; margin-right: 0!important; padding: 15px; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } .bhb-upsell .info-block.reversed { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .bhb-upsell .info-block.reversed .info-content { margin-right: 0; margin-left: 110px; } @media only screen and (max-width:640px) { .bhb-upsell .info-block.reversed .info-content { margin-left: 0; padding: 15px; -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } @media only screen and (max-width:640px) { .bhb-upsell .info-block .info-photo { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } } .bhb-upsell .info-block .info-content { max-width: 600px; margin-right: 110px; } .bhb-upsell .info-block h3 { font-weight: 700; font-size: 40px; line-height: 49px; margin-bottom: 35px; } @media only screen and (max-width:640px) { .bhb-upsell .info-block h3 { font-weight: 700; margin-top: 35px!important; font-size: 24px; line-height: 29px; } } .bhb-upsell .info-block p { font-size: 20px; line-height: 28px; mix-blend-mode: normal; opacity: .8; margin-bottom: 30px; } .bhb-upsell .promise-points { background: #f3f4f8; padding: 60px 20px; padding-bottom: 40px; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points { padding: 40px 0; } } .bhb-upsell .promise-points h2 { font-weight: 700; font-size: 40px; line-height: 48px; max-width: 580px; margin: 0 auto; margin-bottom: 50px; text-align: center; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points h2 { font-size: 24px; line-height: 32px; text-align: left; } } .bhb-upsell .promise-points .promises { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; max-width: 800px; margin: 20px auto; -ms-flex-wrap: wrap; flex-wrap: wrap; } @media only screen and (max-width:640px) { .bhb-upsell .promise-points .promises { display: block; } } .bhb-upsell .promise-points .promises .promise { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 40px; -ms-flex-preferred-size: 45%; flex-basis: 45%; } .bhb-upsell .promise-points .promises .promise .promise-icon { width: 48px; height: 48px; border-radius: 50%; line-height: 48px; text-align: center; background: #e9edf3; margin-right: 30px; } .bhb-upsell .promise-points .promises .promise .promise-title { font-weight: 500; font-size: 18px; line-height: 24px; opacity: .8; -ms-flex-preferred-size: 70%; flex-basis: 70%; }
0.373419
0.087994
@import url('https://fonts.googleapis.com/css2?family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asap&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asar&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asul&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Orelega+One&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Orienta&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&display=swap'); /* Colors #16B9C0 - bluish #C9BEA8 - brownish #F9AA33 - yellowish #EE4D00 - reddish #2D4545 - blackish*/ body{ margin: 0; padding: 0; overflow-x: hidden; user-select: none; background-color: #2D4545; } /*Size of header*/ .head, .small{ background-color: #C9BEA8; width: 100%; } .head{ height: 520px; position: absolute; } .head h1{ padding: 0; margin: 0; display: flex; justify-content: flex-start; align-items: center; } /*Ajust logo*/ .head img{ width: 15%; height: 15%; } .small{ position: static; height: 10%; } /*Style the title*/ #title span{ margin-left: 280px; font-family:'Asap', cursive; text-align: center; animation: colorchange 10s infinite; } @keyframes colorchange { 50% { color: #237c3b; text-shadow: 2px 1px #237c3b;} 75% { color: #1c2e4a; text-shadow: 2px 1px #1c2e4a;} 100% { color: #EE4D00; text-shadow: 2px 1px #EE4D00; } 0% {color: #712034; text-shadow: 2px 1px #712034; } 25% {color: #2e3233; text-shadow: 2px 1px #2e3233;} } /*Style images in header*/ .image{ margin-left: 8%; margin-top: 7%; } .image img{ border-radius: 5px; box-shadow: 2px 2px #C8BEB9, -2px -2px #C8BEB9; } .image img:first-child{ transform: rotate(-6deg) scale(2); } .image img:nth-child(2){ border-top-left-radius: 50px; transform: translate(10%, 90%) scale(1.5) rotate(16deg); } .image img:nth-child(3){ transform: translate(80%, 30%) scale(2) ; } .skewed1, .skewed2, .skewed3{ height: 520px; width: 150px; transform: skew(-10deg); } .skewed1{ position: absolute; background-color: #EE4D00; margin-left: 70%; } .skewed2{ position: absolute; background-color: #F9AA33; margin-left: 81%; } .skewed3{ margin-left: 92%; background-color: #16B9C0; } /*Adjust position and size of navigation bar*/ nav{ margin-top: 10px; padding: 0; } .unorder{ top: 0; margin: 0 0 2px; background: transparent; height: 7vh; display: flex; justify-content: center; align-items:center; } /*Style links for navigation*/ .navbar{ cursor:pointer; position:relative; padding: 0px 5px; margin: 15px 42px; font-size:28px; border-top-right-radius:10px; border-bottom-left-radius:10px; transition: all 1ms linear; list-style: none; text-decoration: none; font-size: 20px; color: #16B9C0; font-family: 'YeonSung-Regular', cursive; } .navbar:hover { border: 2px solid #EE4D0070; background: #C9BEA870; color: #F9AA33; } .active{ border-bottom: 3px ridge #F9AA33; padding: 0 7px; } /*Style social media icons and links*/ .sm .im1, .sm .im2, .sm .im3{ z-index: 1; cursor: pointer; position: fixed; top: 7px; margin-left: 96%; width: 4%; height: 9%; padding: 0; } /*Facebook*/ .sm .im1{ top: 7px; } /*Whatsapp*/ .sm .im2{ top: 57px; } /*Instagram*/ .sm .im3{ top: 112px; } /*Style main content*/ section{ margin-left: 2%; margin-right: 2%; border-radius: 5px; } /*Style home page content*/ .ordering{ background-color: #F9AA33; height: 570px; margin-bottom: 5px; } .ordering:after{ content: ''; position: absolute; background-color: #2D4545; height: 20%; width: 96%; top: 180%; border-radius: 25px;} .ordering img{ border-radius: 50%; padding: 5px; transform: translate(260%, 58%); border: 3px #16B9C0 groove; } .ordering div{ transform: translate(54%, -11%); } .ordering:before{ content: ''; position: absolute; height: 505px; top: 97.7%; width: 210px; left: 81.3%; background-color: #C9BEA8; border-radius: 5px;} #wave{ width: 50%; } .ordering h4{ color: #2D4545; display: flex; flex-direction: column; margin: 10px; margin-top: 7%; margin-left: 7%; position: absolute; font-family: 'Orelega One', serif; font-size: 2em; } .ordering h4 span:first-child{ color: #EE4D00; font-size: 3em; margin: 20px 0; margin-left: 12%; width: 500px;} .ordering h4 span:last-child{ margin-top: 5%; } .ordering h4 a{ padding: 5px; color: #2D4545; font-size: .7em; margin: 5px 15px; text-decoration: none; border: 2px black ridge; border-radius: 30px; text-align: center; border-bottom-color: #EE4D00; border-top-color: #16B9C0; border-left-color: #2D4545; border-right-color: #C9BEA8; } .ordering h4 a:hover{ transition: all .2s; font-weight: normal; border: none; background: linear-gradient( to bottom right, #2D4545, #16B9C0, #EE4D00, #C9BEA8); } .ordering h4:after{ content:'Check out our delicious Chocolate milkshake made from Dairy Milk Bubbly and London Dairy Vanilla at only Ksh. 300.'; position: absolute; font-weight: lighter; font-family: 'Orelega One', serif; top: 110%; left: 175%; font-size: .6em; height: 100px; width: 200px; color:#EE4D00; z-index: 1; } .no-on{ transform: translateY(-15%); height: 460px; margin-bottom: 0; display: grid; grid-template-columns: 480px 700px; background-color: #2D4545; box-shadow: 0px 10px 20px #2D554580; } .no-on img{ border-radius: 50%; margin: 10px; transform: scale(.5) translate(-30%, -80%);} .no-on p, .no-on h2, .no-on blockquote, .no-on h4{ padding: 0; color: #F9AA33; font-weight: lighter; margin: 5px 10px; font-size: 16.5px; line-height: 1.5em; padding: 10px; font-family: 'Asul'; } .no-on h2{ color: #16B9C0; } .no-on .saat-head{ transform: translateX(104%); } .saatvik{ transform: translateY(30%); } .no-on h5 p{ transform: translateY(-25%); } .no-on blockquote{ font-family: 'Delius Swash Caps'; text-align: right; transform: scale(.9); font-size: 15px; color: #C9BEA8; font-weight: normal; border: 1px solid #EE4D00; border-radius: 10px; box-shadow: 4px 4px #EE4D0040; transform: translateY(-25%); } .no-on h4{ transform: translateY(-300%); } .no-on a{ font-weight: normal; text-decoration: none; color: #C9BEA8; } .no-on a:hover{text-decoration: underline;} .menu{ transform: translateY(-10%); margin-bottom: 60px; padding: 5px; } .menu h2{ font-family: 'Merriweather'; color: #EE4D00; margin-left: 20px; font-size: 2em; } .menu-wrapper{ display: flex; margin-left: 0%; animation: move 30s linear infinite; animation-play-state: paused;} .item-wrapper{ margin: 5px 100px 0 0; } .item{ border: 2px solid #F9AA33; padding: 3px; border-radius: 5px; } .item img{ width: 330px; height: 280px; border-radius: 5px; } .item-desc-price{ padding: 5px; font-family: 'Delius Swash Caps'; font-weight: bold; color: #EE4D00; background-color: #16B9C0; height: 180px; width: 300px; transform: translate(5%, -15%); border-radius: 10px; text-align: center; line-height: 1.5em; } @keyframes move { 0% { margin-left: 0%; } 12.5% { margin-left: -10%; } 25% { margin-left: -20%; } 37.5% { margin-left: -30%; } 50% { margin-left: -40%; } 62.5% { margin-left: -30%; } 75% { margin-left: -20%; } 87.5% { margin-left: -10%; } 100% { margin-left: 0%; } } .catering{ background-image: url('23.jpg'); background-attachment: fixed; height: 500px; background-size: cover; color:#2D4545 ; animation: anime 1s linear infinite; font-family: 'Raleway';} .layer{ background-color: #eeeeee60; height: 99.5%; padding-top: 5px; border-radius: 5px; font-family: 'Orienta';} @keyframes anime{ 0%{transform: rotate(0)translateY(-10%);} 33%{transform: rotate(2deg)translateY(-10%);} 67%{ transform: rotate(0deg)translateY(-10%); } 100%{ transform: rotate(-2deg)translateY(-10%); }} .layer h3{ font-size: 3em; text-align: center; font-weight: bolder; margin: 5px;} .layer ul{ display: grid; grid-template-columns: repeat(3, 300px); justify-content: space-around; font-weight: bold; padding: 0 } .layer li{ margin-top: 5px; list-style: none; border: 1px solid #C9BEA8; padding: 5px; line-height: 1.5em; } .layer li span{ color: #EE4D00; font-weight: bolder; font-size: 1.6em; } .layer li a{ text-decoration: none; background-color: #F9AA33; padding: 2px; color: #2D4545;} .layer li a:hover h3{ display: none; } .layer li a:hover{ color: #16B9C0; background-color: transparent;} /*Style menu page content*/ .gallery{ background-color: #F9AA33; padding: 5px; margin: 2%; font-family: 'Fira Sans'; font-weight: bold; font-size: 1.2em; color: #C9BEA8; display: flex; justify-content: space-between; flex-wrap: wrap; box-shadow: 3px 5px 10px #191A3180, -3px -5px 10px #191A3180; } .gallery .maindiv{ background-color: #1D4545; flex: 45%; border-radius: 5px; margin: 5px; padding: 0; } .gallery .image-div{ float: left; margin: 0; padding: 0; } .gallery .image{ align-self: center; justify-content: center; border-radius: 5px; margin: 5px; margin-top: 10px; width: 300px; height: 250px; } .gallery .details-div{ padding: 0; padding-top: 3px; width: 550px; height: auto; transform: translate(5%); } .gallery .details-div span:first-child{ color: #EE4D00; font-weight: bolder; border-bottom: 1px solid; } /*Style catering page form & order now page form*/ .cater, .order{ display: flex; margin: 5%; } .cater div img{ border-radius: 2em; position: absolute; width: 600px; height: 500px; box-shadow: 5px 5px 10px #10202190, -5px -5px 10px #10202190; } .cater div h2{ color: #F9AA33; font-weight: bold; position: relative; font-family: 'Sriracha'; font-size: 3em; top: 30%; left: 80%; } .cater-form, .order-form{ position: relative; background-color: #EE4D00; color: #C9BEA8; padding: 40px; width: 80%; margin-left: 30%; height: 460px; border-radius: 2em; padding-bottom: 0; box-shadow: -3px -3px 8px #E14100; } .cater-form label, .order-form label{ transform: translateY(10%); font-family: '<NAME>', cursive; font-weight: bolder; font-size: 1.2em; } .cater-form input, .cater-form textarea, .cater-form select, .cater-form option, .order-form input, .order-form textarea, .order-form select, .order-form option{ color: #2D4545; transform: translate(90%, -60%); font-family: 'Sriracha'; resize: vertical; display: block; width: 50%; height: 8%; border-radius: 10px; border: none; padding: 0 5px; background-color: #C9BEA8; transition: all .3s ease; box-shadow: 5px 5px 5px #00000050, -2px -2px 5px #00000050; } .cater-form select, .cater-form option{ transform: translate(90%, -60%); height: 8%; width: 52%; } .cater-form input:hover, .cater-form textarea:hover, .cater-form select:hover, .order-form input:hover, .order-form textarea:hover, .order-form select:hover { background-color: #16B9C0; transition: all .3s ease; } .cater-form input:focus, .cater-form textarea:focus, .cater-form select:focus, .order-form input:focus, .order-form textarea:focus, .order-form select:focus{ color: #F9AA33; outline: none; background-color: #2D4545; border-radius: 5px; transition: all .3s ease; } .cater-form hr, .order-form hr{ color: #2D4545; background-color: #2D4545; border-bottom: none; } .button2, .button1{ height: 30px; cursor: pointer; font-size: 20px; font-weight: bold; background-color: #2D454540; color: #16B9C0; font-family: 'YeonSung-Regular', cursive; border: 1.5px solid #2D4545; border-radius: 5px; padding: 3px; text-align: center; padding-top: 0; transition: all .1s ease; } .button2:hover, .button1:hover{ transform: scale(1.1); transition: all .1s ease; border-radius: 3px; } .order-form{ margin-left: 0; background-color: #F9AA33; box-shadow: none; border-radius: 1.5px; } .order-form label{ color: #EE4D00; } .order-form input:focus, .order-form textarea:focus, .order-form select:focus{ color: #16B9C0; background-color: #2D4545; } .button1{ background-color: #EE4D0090; color: #C9BEA8; } .order div{ width: 400px; height: 500px; background-color: #C9BEA8; margin-left: .5px; border-radius: 1.5px; text-align: center; } .order div h4{ color: #2D4545; font-family: '<NAME>'; font-size: 2.5em; } /*Style footer*/ footer{ margin-top: 5px; width: 100%; font-family: 'Asar', serif; background-color: #16B9C0; color:#2e3d2e; font-size: 15px; } .foot{ padding: 20px 10px; display: flex; justify-content: space-between; align-items: flex-start; } .foot ul, .copy{ margin-left: 0; padding: 0; font-weight: bold; } .foot div{ padding: 5px; margin: 5px; } .locate{ display: flex; justify-content: flex-start; } .locate li:first-child{ width: 200px; margin-right: 0; } .locate li:last-child{ margin-right: 0; } .foot div h2{ padding:0; margin: 0; } .hours{ padding: 0; margin: 0; display: flex; justify-content: flex-start; } .foot li, .foot li a{ list-style: none; text-decoration: none; margin: 5px 20px; margin-left: 0; color: #2D4545; } .foot li span{ cursor: pointer; transform: translateY(5px); margin-right: 5px; } .foot li:hover a, .foot li:hover span{ color: #3E5555; transition: all .3s linear; } .copy{ padding: 10px; margin: 5px; } .add{ color: #EE4D00; font-size: 18px; } .foot h4{ margin: 5px; margin-left: 0; } .skewed4, .skewed5{ position: absolute; margin-left: 85%; } .skewed4{ transform: translate(65%, -35%) skew(-70deg); background-color: #F9AA33; width: 180px; height: 80px; } .skewed5{ height: 120px; width: 150px; transform: translate(20%, -57%) skew(-70deg); background-color: #C9BEA8; } /*Phone specifications*/ @media screen and (max-width: 600px){ body{ overflow-x: hidden; } .head{ top: 0; position: relative; height: 192px; } .small{ height: 70px; } .skewed1, .skewed3{ top: 0; width: 40px; height: 192px; } .skewed1{ margin-left: 85%; } .skewed3{ margin-left: 94%; position: absolute;} .skewed2{ position: absolute; display: none; } .sm{ margin-left: 92%; } .sm .im1, .sm .im2, .sm .im3{ margin: 0; position: fixed; width: 30px; height: 30px; } .sm .im1{ top: 5px; } .sm .im2{ top: 32px; } .sm .im3{ top: 59px; } #title img{ width: 20%; height: 20%; } #title span{ width: 200px; font-size: 25px; margin-left: 13px; } .small #title span{ margin-left: 25px; } .image{ margin-left: 13%; margin-top: 13%; } .image img{ box-shadow: .5px .5px #C8BEB9, -.5px -.5px #C8BEB9; } .image img:first-child{ transform: rotate(-6deg) scale(2.8); } .image img:last-child{ transform: translate(-30%, 90%) scale(1.8); border-radius: 5px; border-top-left-radius: 10px; border-bottom-right-radius: 10px; } .image img:nth-child(2){ border-radius: 5px; transform: rotate(5deg) scale(2.8) translate(90%, -20%); } nav{ margin-top: 0; } .unorder{ margin-left: -2px; padding-left: 0; } .navbar{ font-size: 14px; padding: 5px; margin: 5px; text-align: center; } .index-main{ height: 2730px; } .cater-main{ height: 820px; } .order-main{ height: 550px; } .ordering{ font-size: .5em; height: 420px; } .ordering div{ transform: translate(92.5%, -540%) scale(2, 1.5);} #wave{ border-radius: 3px; } .ordering:after{ top: 75%; } .ordering:before{ position: relative; display: none; } .ordering img{ transform: translate(60%, -3%) scale(.3); } .ordering h4 { margin: 5px; margin-top: 10px; position: absolute;} .ordering h4 span:first-child{ margin-left: 10px; } .ordering h4 span:last-child{ margin-top: 5px; } .ordering h4:after{ top: 140%; left: 3%; } .no-on{ height: 1020px; grid-template-columns: 350px; grid-template-rows: 210px 700px; padding: 0; } .no-on div{ transform: translateY(-150%); } .no-on div h2{ transform: translateY(-70%); } .no-on blockquote{ transform: translateY(-45%); } .no-on .saat-head{ transform: translate(0); } .saatvik{ transform: translateY(-25%); } .no-on h4{ transform: translate(1%, -1420%);} .menu{ transform: translateY(-20%); margin-bottom: 20px; } .menu-wrapper{ margin-left: 2%; animation: move 30s linear infinite; animation-delay: 3s;} .menu h2{ margin-left: 5px; font-size: 1.5em; } .item-wrapper{ margin: 5px 10px 0 0; } @keyframes move{ 0% { margin-left: 2%; } 12.5% { margin-left: -80%; } 25% { margin-left: -160%; } 37.5% { margin-left: -240%; } 50% { margin-left: -320%; } 62.5% { margin-left: -240%; } 75% { margin-left: -160%; } 87.5% { margin-left: -80%; } 100% { margin-left: 2%; } } .catering{ height: 800px; background-position: center top; margin-bottom: 0; background-attachment: unset; } @keyframes anime{ 0%{transform: rotate(0) translateY(-15%);} 33%{transform: rotate(2deg) translateY(-15%);} 67%{ transform: rotate(0deg) translateY(-15%); } 100%{ transform: rotate(-2deg) translateY(-15%); }} .layer h3{ font-size: 2em; } .layer ul{ display: grid; grid-template-columns: 300px; grid-template-rows: 100px, 300px, 200px; } .layer ul li{ margin-top: 10px; } .gallery .maindiv{ padding: 3px; } .gallery .image-div, .gallery .image{ float: none; transform: translateX(15%); width: 200px; height: 150px; padding: 0; margin: 0;} .gallery .details-div{ text-align: center; width: 300px; } .cater, .order{ display: block; margin: 5% 1%; } .cater div img{ width: 350px; height: 300px; z-index: -10; } .cater div h2{ left: 27.5%; font-size: 2em; transform: translateY(110px);} .cater-form, .order-form{ margin-left: 0%; transform: translateY(40%); box-shadow: 5px 5px 10px #10201290; position: relative; margin-bottom: 85%; padding: 15px; padding-top: 20px; width: 320px; } .order-form{ transform: translateY(0); } .order div{ height: 100px; width: 350px; transform: translateY(-380%); margin-bottom: 0; } .order div h4{ font-size: 1.5em; } .foot{ display: block; padding: 0; margin-top: 0; padding-top: 5px; } .foot h2, .foot ul{ margin: 0; } .foot li, .foot li a{ margin-right: 25px; margin-left: 0; } .skewed4{ height: 77px; transform: translate(20%, -40%) skew(-70deg); } .skewed5{ width: 100px; height: 86px; transform: translate(-40%, -45%) skew(-70deg); } }
style.css
@import url('https://fonts.googleapis.com/css2?family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asap&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asar&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Asul&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Orelega+One&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Orienta&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&display=swap'); /* Colors #16B9C0 - bluish #C9BEA8 - brownish #F9AA33 - yellowish #EE4D00 - reddish #2D4545 - blackish*/ body{ margin: 0; padding: 0; overflow-x: hidden; user-select: none; background-color: #2D4545; } /*Size of header*/ .head, .small{ background-color: #C9BEA8; width: 100%; } .head{ height: 520px; position: absolute; } .head h1{ padding: 0; margin: 0; display: flex; justify-content: flex-start; align-items: center; } /*Ajust logo*/ .head img{ width: 15%; height: 15%; } .small{ position: static; height: 10%; } /*Style the title*/ #title span{ margin-left: 280px; font-family:'Asap', cursive; text-align: center; animation: colorchange 10s infinite; } @keyframes colorchange { 50% { color: #237c3b; text-shadow: 2px 1px #237c3b;} 75% { color: #1c2e4a; text-shadow: 2px 1px #1c2e4a;} 100% { color: #EE4D00; text-shadow: 2px 1px #EE4D00; } 0% {color: #712034; text-shadow: 2px 1px #712034; } 25% {color: #2e3233; text-shadow: 2px 1px #2e3233;} } /*Style images in header*/ .image{ margin-left: 8%; margin-top: 7%; } .image img{ border-radius: 5px; box-shadow: 2px 2px #C8BEB9, -2px -2px #C8BEB9; } .image img:first-child{ transform: rotate(-6deg) scale(2); } .image img:nth-child(2){ border-top-left-radius: 50px; transform: translate(10%, 90%) scale(1.5) rotate(16deg); } .image img:nth-child(3){ transform: translate(80%, 30%) scale(2) ; } .skewed1, .skewed2, .skewed3{ height: 520px; width: 150px; transform: skew(-10deg); } .skewed1{ position: absolute; background-color: #EE4D00; margin-left: 70%; } .skewed2{ position: absolute; background-color: #F9AA33; margin-left: 81%; } .skewed3{ margin-left: 92%; background-color: #16B9C0; } /*Adjust position and size of navigation bar*/ nav{ margin-top: 10px; padding: 0; } .unorder{ top: 0; margin: 0 0 2px; background: transparent; height: 7vh; display: flex; justify-content: center; align-items:center; } /*Style links for navigation*/ .navbar{ cursor:pointer; position:relative; padding: 0px 5px; margin: 15px 42px; font-size:28px; border-top-right-radius:10px; border-bottom-left-radius:10px; transition: all 1ms linear; list-style: none; text-decoration: none; font-size: 20px; color: #16B9C0; font-family: 'YeonSung-Regular', cursive; } .navbar:hover { border: 2px solid #EE4D0070; background: #C9BEA870; color: #F9AA33; } .active{ border-bottom: 3px ridge #F9AA33; padding: 0 7px; } /*Style social media icons and links*/ .sm .im1, .sm .im2, .sm .im3{ z-index: 1; cursor: pointer; position: fixed; top: 7px; margin-left: 96%; width: 4%; height: 9%; padding: 0; } /*Facebook*/ .sm .im1{ top: 7px; } /*Whatsapp*/ .sm .im2{ top: 57px; } /*Instagram*/ .sm .im3{ top: 112px; } /*Style main content*/ section{ margin-left: 2%; margin-right: 2%; border-radius: 5px; } /*Style home page content*/ .ordering{ background-color: #F9AA33; height: 570px; margin-bottom: 5px; } .ordering:after{ content: ''; position: absolute; background-color: #2D4545; height: 20%; width: 96%; top: 180%; border-radius: 25px;} .ordering img{ border-radius: 50%; padding: 5px; transform: translate(260%, 58%); border: 3px #16B9C0 groove; } .ordering div{ transform: translate(54%, -11%); } .ordering:before{ content: ''; position: absolute; height: 505px; top: 97.7%; width: 210px; left: 81.3%; background-color: #C9BEA8; border-radius: 5px;} #wave{ width: 50%; } .ordering h4{ color: #2D4545; display: flex; flex-direction: column; margin: 10px; margin-top: 7%; margin-left: 7%; position: absolute; font-family: 'Orelega One', serif; font-size: 2em; } .ordering h4 span:first-child{ color: #EE4D00; font-size: 3em; margin: 20px 0; margin-left: 12%; width: 500px;} .ordering h4 span:last-child{ margin-top: 5%; } .ordering h4 a{ padding: 5px; color: #2D4545; font-size: .7em; margin: 5px 15px; text-decoration: none; border: 2px black ridge; border-radius: 30px; text-align: center; border-bottom-color: #EE4D00; border-top-color: #16B9C0; border-left-color: #2D4545; border-right-color: #C9BEA8; } .ordering h4 a:hover{ transition: all .2s; font-weight: normal; border: none; background: linear-gradient( to bottom right, #2D4545, #16B9C0, #EE4D00, #C9BEA8); } .ordering h4:after{ content:'Check out our delicious Chocolate milkshake made from Dairy Milk Bubbly and London Dairy Vanilla at only Ksh. 300.'; position: absolute; font-weight: lighter; font-family: 'Orelega One', serif; top: 110%; left: 175%; font-size: .6em; height: 100px; width: 200px; color:#EE4D00; z-index: 1; } .no-on{ transform: translateY(-15%); height: 460px; margin-bottom: 0; display: grid; grid-template-columns: 480px 700px; background-color: #2D4545; box-shadow: 0px 10px 20px #2D554580; } .no-on img{ border-radius: 50%; margin: 10px; transform: scale(.5) translate(-30%, -80%);} .no-on p, .no-on h2, .no-on blockquote, .no-on h4{ padding: 0; color: #F9AA33; font-weight: lighter; margin: 5px 10px; font-size: 16.5px; line-height: 1.5em; padding: 10px; font-family: 'Asul'; } .no-on h2{ color: #16B9C0; } .no-on .saat-head{ transform: translateX(104%); } .saatvik{ transform: translateY(30%); } .no-on h5 p{ transform: translateY(-25%); } .no-on blockquote{ font-family: 'Delius Swash Caps'; text-align: right; transform: scale(.9); font-size: 15px; color: #C9BEA8; font-weight: normal; border: 1px solid #EE4D00; border-radius: 10px; box-shadow: 4px 4px #EE4D0040; transform: translateY(-25%); } .no-on h4{ transform: translateY(-300%); } .no-on a{ font-weight: normal; text-decoration: none; color: #C9BEA8; } .no-on a:hover{text-decoration: underline;} .menu{ transform: translateY(-10%); margin-bottom: 60px; padding: 5px; } .menu h2{ font-family: 'Merriweather'; color: #EE4D00; margin-left: 20px; font-size: 2em; } .menu-wrapper{ display: flex; margin-left: 0%; animation: move 30s linear infinite; animation-play-state: paused;} .item-wrapper{ margin: 5px 100px 0 0; } .item{ border: 2px solid #F9AA33; padding: 3px; border-radius: 5px; } .item img{ width: 330px; height: 280px; border-radius: 5px; } .item-desc-price{ padding: 5px; font-family: 'Delius Swash Caps'; font-weight: bold; color: #EE4D00; background-color: #16B9C0; height: 180px; width: 300px; transform: translate(5%, -15%); border-radius: 10px; text-align: center; line-height: 1.5em; } @keyframes move { 0% { margin-left: 0%; } 12.5% { margin-left: -10%; } 25% { margin-left: -20%; } 37.5% { margin-left: -30%; } 50% { margin-left: -40%; } 62.5% { margin-left: -30%; } 75% { margin-left: -20%; } 87.5% { margin-left: -10%; } 100% { margin-left: 0%; } } .catering{ background-image: url('23.jpg'); background-attachment: fixed; height: 500px; background-size: cover; color:#2D4545 ; animation: anime 1s linear infinite; font-family: 'Raleway';} .layer{ background-color: #eeeeee60; height: 99.5%; padding-top: 5px; border-radius: 5px; font-family: 'Orienta';} @keyframes anime{ 0%{transform: rotate(0)translateY(-10%);} 33%{transform: rotate(2deg)translateY(-10%);} 67%{ transform: rotate(0deg)translateY(-10%); } 100%{ transform: rotate(-2deg)translateY(-10%); }} .layer h3{ font-size: 3em; text-align: center; font-weight: bolder; margin: 5px;} .layer ul{ display: grid; grid-template-columns: repeat(3, 300px); justify-content: space-around; font-weight: bold; padding: 0 } .layer li{ margin-top: 5px; list-style: none; border: 1px solid #C9BEA8; padding: 5px; line-height: 1.5em; } .layer li span{ color: #EE4D00; font-weight: bolder; font-size: 1.6em; } .layer li a{ text-decoration: none; background-color: #F9AA33; padding: 2px; color: #2D4545;} .layer li a:hover h3{ display: none; } .layer li a:hover{ color: #16B9C0; background-color: transparent;} /*Style menu page content*/ .gallery{ background-color: #F9AA33; padding: 5px; margin: 2%; font-family: 'Fira Sans'; font-weight: bold; font-size: 1.2em; color: #C9BEA8; display: flex; justify-content: space-between; flex-wrap: wrap; box-shadow: 3px 5px 10px #191A3180, -3px -5px 10px #191A3180; } .gallery .maindiv{ background-color: #1D4545; flex: 45%; border-radius: 5px; margin: 5px; padding: 0; } .gallery .image-div{ float: left; margin: 0; padding: 0; } .gallery .image{ align-self: center; justify-content: center; border-radius: 5px; margin: 5px; margin-top: 10px; width: 300px; height: 250px; } .gallery .details-div{ padding: 0; padding-top: 3px; width: 550px; height: auto; transform: translate(5%); } .gallery .details-div span:first-child{ color: #EE4D00; font-weight: bolder; border-bottom: 1px solid; } /*Style catering page form & order now page form*/ .cater, .order{ display: flex; margin: 5%; } .cater div img{ border-radius: 2em; position: absolute; width: 600px; height: 500px; box-shadow: 5px 5px 10px #10202190, -5px -5px 10px #10202190; } .cater div h2{ color: #F9AA33; font-weight: bold; position: relative; font-family: 'Sriracha'; font-size: 3em; top: 30%; left: 80%; } .cater-form, .order-form{ position: relative; background-color: #EE4D00; color: #C9BEA8; padding: 40px; width: 80%; margin-left: 30%; height: 460px; border-radius: 2em; padding-bottom: 0; box-shadow: -3px -3px 8px #E14100; } .cater-form label, .order-form label{ transform: translateY(10%); font-family: '<NAME>', cursive; font-weight: bolder; font-size: 1.2em; } .cater-form input, .cater-form textarea, .cater-form select, .cater-form option, .order-form input, .order-form textarea, .order-form select, .order-form option{ color: #2D4545; transform: translate(90%, -60%); font-family: 'Sriracha'; resize: vertical; display: block; width: 50%; height: 8%; border-radius: 10px; border: none; padding: 0 5px; background-color: #C9BEA8; transition: all .3s ease; box-shadow: 5px 5px 5px #00000050, -2px -2px 5px #00000050; } .cater-form select, .cater-form option{ transform: translate(90%, -60%); height: 8%; width: 52%; } .cater-form input:hover, .cater-form textarea:hover, .cater-form select:hover, .order-form input:hover, .order-form textarea:hover, .order-form select:hover { background-color: #16B9C0; transition: all .3s ease; } .cater-form input:focus, .cater-form textarea:focus, .cater-form select:focus, .order-form input:focus, .order-form textarea:focus, .order-form select:focus{ color: #F9AA33; outline: none; background-color: #2D4545; border-radius: 5px; transition: all .3s ease; } .cater-form hr, .order-form hr{ color: #2D4545; background-color: #2D4545; border-bottom: none; } .button2, .button1{ height: 30px; cursor: pointer; font-size: 20px; font-weight: bold; background-color: #2D454540; color: #16B9C0; font-family: 'YeonSung-Regular', cursive; border: 1.5px solid #2D4545; border-radius: 5px; padding: 3px; text-align: center; padding-top: 0; transition: all .1s ease; } .button2:hover, .button1:hover{ transform: scale(1.1); transition: all .1s ease; border-radius: 3px; } .order-form{ margin-left: 0; background-color: #F9AA33; box-shadow: none; border-radius: 1.5px; } .order-form label{ color: #EE4D00; } .order-form input:focus, .order-form textarea:focus, .order-form select:focus{ color: #16B9C0; background-color: #2D4545; } .button1{ background-color: #EE4D0090; color: #C9BEA8; } .order div{ width: 400px; height: 500px; background-color: #C9BEA8; margin-left: .5px; border-radius: 1.5px; text-align: center; } .order div h4{ color: #2D4545; font-family: '<NAME>'; font-size: 2.5em; } /*Style footer*/ footer{ margin-top: 5px; width: 100%; font-family: 'Asar', serif; background-color: #16B9C0; color:#2e3d2e; font-size: 15px; } .foot{ padding: 20px 10px; display: flex; justify-content: space-between; align-items: flex-start; } .foot ul, .copy{ margin-left: 0; padding: 0; font-weight: bold; } .foot div{ padding: 5px; margin: 5px; } .locate{ display: flex; justify-content: flex-start; } .locate li:first-child{ width: 200px; margin-right: 0; } .locate li:last-child{ margin-right: 0; } .foot div h2{ padding:0; margin: 0; } .hours{ padding: 0; margin: 0; display: flex; justify-content: flex-start; } .foot li, .foot li a{ list-style: none; text-decoration: none; margin: 5px 20px; margin-left: 0; color: #2D4545; } .foot li span{ cursor: pointer; transform: translateY(5px); margin-right: 5px; } .foot li:hover a, .foot li:hover span{ color: #3E5555; transition: all .3s linear; } .copy{ padding: 10px; margin: 5px; } .add{ color: #EE4D00; font-size: 18px; } .foot h4{ margin: 5px; margin-left: 0; } .skewed4, .skewed5{ position: absolute; margin-left: 85%; } .skewed4{ transform: translate(65%, -35%) skew(-70deg); background-color: #F9AA33; width: 180px; height: 80px; } .skewed5{ height: 120px; width: 150px; transform: translate(20%, -57%) skew(-70deg); background-color: #C9BEA8; } /*Phone specifications*/ @media screen and (max-width: 600px){ body{ overflow-x: hidden; } .head{ top: 0; position: relative; height: 192px; } .small{ height: 70px; } .skewed1, .skewed3{ top: 0; width: 40px; height: 192px; } .skewed1{ margin-left: 85%; } .skewed3{ margin-left: 94%; position: absolute;} .skewed2{ position: absolute; display: none; } .sm{ margin-left: 92%; } .sm .im1, .sm .im2, .sm .im3{ margin: 0; position: fixed; width: 30px; height: 30px; } .sm .im1{ top: 5px; } .sm .im2{ top: 32px; } .sm .im3{ top: 59px; } #title img{ width: 20%; height: 20%; } #title span{ width: 200px; font-size: 25px; margin-left: 13px; } .small #title span{ margin-left: 25px; } .image{ margin-left: 13%; margin-top: 13%; } .image img{ box-shadow: .5px .5px #C8BEB9, -.5px -.5px #C8BEB9; } .image img:first-child{ transform: rotate(-6deg) scale(2.8); } .image img:last-child{ transform: translate(-30%, 90%) scale(1.8); border-radius: 5px; border-top-left-radius: 10px; border-bottom-right-radius: 10px; } .image img:nth-child(2){ border-radius: 5px; transform: rotate(5deg) scale(2.8) translate(90%, -20%); } nav{ margin-top: 0; } .unorder{ margin-left: -2px; padding-left: 0; } .navbar{ font-size: 14px; padding: 5px; margin: 5px; text-align: center; } .index-main{ height: 2730px; } .cater-main{ height: 820px; } .order-main{ height: 550px; } .ordering{ font-size: .5em; height: 420px; } .ordering div{ transform: translate(92.5%, -540%) scale(2, 1.5);} #wave{ border-radius: 3px; } .ordering:after{ top: 75%; } .ordering:before{ position: relative; display: none; } .ordering img{ transform: translate(60%, -3%) scale(.3); } .ordering h4 { margin: 5px; margin-top: 10px; position: absolute;} .ordering h4 span:first-child{ margin-left: 10px; } .ordering h4 span:last-child{ margin-top: 5px; } .ordering h4:after{ top: 140%; left: 3%; } .no-on{ height: 1020px; grid-template-columns: 350px; grid-template-rows: 210px 700px; padding: 0; } .no-on div{ transform: translateY(-150%); } .no-on div h2{ transform: translateY(-70%); } .no-on blockquote{ transform: translateY(-45%); } .no-on .saat-head{ transform: translate(0); } .saatvik{ transform: translateY(-25%); } .no-on h4{ transform: translate(1%, -1420%);} .menu{ transform: translateY(-20%); margin-bottom: 20px; } .menu-wrapper{ margin-left: 2%; animation: move 30s linear infinite; animation-delay: 3s;} .menu h2{ margin-left: 5px; font-size: 1.5em; } .item-wrapper{ margin: 5px 10px 0 0; } @keyframes move{ 0% { margin-left: 2%; } 12.5% { margin-left: -80%; } 25% { margin-left: -160%; } 37.5% { margin-left: -240%; } 50% { margin-left: -320%; } 62.5% { margin-left: -240%; } 75% { margin-left: -160%; } 87.5% { margin-left: -80%; } 100% { margin-left: 2%; } } .catering{ height: 800px; background-position: center top; margin-bottom: 0; background-attachment: unset; } @keyframes anime{ 0%{transform: rotate(0) translateY(-15%);} 33%{transform: rotate(2deg) translateY(-15%);} 67%{ transform: rotate(0deg) translateY(-15%); } 100%{ transform: rotate(-2deg) translateY(-15%); }} .layer h3{ font-size: 2em; } .layer ul{ display: grid; grid-template-columns: 300px; grid-template-rows: 100px, 300px, 200px; } .layer ul li{ margin-top: 10px; } .gallery .maindiv{ padding: 3px; } .gallery .image-div, .gallery .image{ float: none; transform: translateX(15%); width: 200px; height: 150px; padding: 0; margin: 0;} .gallery .details-div{ text-align: center; width: 300px; } .cater, .order{ display: block; margin: 5% 1%; } .cater div img{ width: 350px; height: 300px; z-index: -10; } .cater div h2{ left: 27.5%; font-size: 2em; transform: translateY(110px);} .cater-form, .order-form{ margin-left: 0%; transform: translateY(40%); box-shadow: 5px 5px 10px #10201290; position: relative; margin-bottom: 85%; padding: 15px; padding-top: 20px; width: 320px; } .order-form{ transform: translateY(0); } .order div{ height: 100px; width: 350px; transform: translateY(-380%); margin-bottom: 0; } .order div h4{ font-size: 1.5em; } .foot{ display: block; padding: 0; margin-top: 0; padding-top: 5px; } .foot h2, .foot ul{ margin: 0; } .foot li, .foot li a{ margin-right: 25px; margin-left: 0; } .skewed4{ height: 77px; transform: translate(20%, -40%) skew(-70deg); } .skewed5{ width: 100px; height: 86px; transform: translate(-40%, -45%) skew(-70deg); } }
0.242026
0.102305
a, .our-pricing-plan .pricing-body .price-plan .btn-professional, .input__label-content--chisato::after, .social-account-inner li a:hover { color: #3498db; } .cd-primary-nav { background: rgba(52, 152, 219, 0.95); } .loader span, .copy-invite-form button, .our-pricing-plan .pricing-body .price-plan .btn-business, .contact-us-area .btn-send { background-color: #3498db !important; } .btn-color, .btn.green, .btns a.btn-appstore, .btns a.btn-googleplay, .faq-icon, .scrollup { background-color: #3498db; color: #fff; } .carousel-indicators .active, .features-section, .features-section-agency, .testimonial-area, .login .modal-header, .register .modal-header { background: #3498db; } li.active span.round-tabs.one, li.active span.round-tabs.two, li.active span.round-tabs.three, li.active span.round-tabs.four, li.active span.round-tabs.five { background: #3498db !important; border: 2px solid #3498db; } .our-pricing-plan .pricing-body .price-plan:hover, .our-pricing-plan .pricing-body .price-plan-active { border: 2px solid #3498db; } .our-pricing-plan .pricing-body .price-plan-active { border: 2px solid #3498db; background: #3498db; } .input__field--chisato:focus, .input--filled .input__field--chisato { border-color: #3498db; } /* Second color */ .no-touch .cd-primary-nav a:hover { background-color: #2980b9; } .btns a.btn-appstore:hover, .btns a.btn-googleplay:hover { background: #2980b9; } @-webkit-keyframes loaderBlock { 0%, 30% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(90deg); transform: rotate(90deg); } } @keyframes loaderBlock { 0%, 30% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(90deg); transform: rotate(90deg); } } @-webkit-keyframes loaderBlockInverse { 0%, 20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } } @keyframes loaderBlockInverse { 0%, 20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } }
public/home-theme/css/colors/peterriver.css
a, .our-pricing-plan .pricing-body .price-plan .btn-professional, .input__label-content--chisato::after, .social-account-inner li a:hover { color: #3498db; } .cd-primary-nav { background: rgba(52, 152, 219, 0.95); } .loader span, .copy-invite-form button, .our-pricing-plan .pricing-body .price-plan .btn-business, .contact-us-area .btn-send { background-color: #3498db !important; } .btn-color, .btn.green, .btns a.btn-appstore, .btns a.btn-googleplay, .faq-icon, .scrollup { background-color: #3498db; color: #fff; } .carousel-indicators .active, .features-section, .features-section-agency, .testimonial-area, .login .modal-header, .register .modal-header { background: #3498db; } li.active span.round-tabs.one, li.active span.round-tabs.two, li.active span.round-tabs.three, li.active span.round-tabs.four, li.active span.round-tabs.five { background: #3498db !important; border: 2px solid #3498db; } .our-pricing-plan .pricing-body .price-plan:hover, .our-pricing-plan .pricing-body .price-plan-active { border: 2px solid #3498db; } .our-pricing-plan .pricing-body .price-plan-active { border: 2px solid #3498db; background: #3498db; } .input__field--chisato:focus, .input--filled .input__field--chisato { border-color: #3498db; } /* Second color */ .no-touch .cd-primary-nav a:hover { background-color: #2980b9; } .btns a.btn-appstore:hover, .btns a.btn-googleplay:hover { background: #2980b9; } @-webkit-keyframes loaderBlock { 0%, 30% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(90deg); transform: rotate(90deg); } } @keyframes loaderBlock { 0%, 30% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(90deg); transform: rotate(90deg); } } @-webkit-keyframes loaderBlockInverse { 0%, 20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } } @keyframes loaderBlockInverse { 0%, 20% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 55% { background-color: #2980b9; } 100% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } }
0.385606
0.078501
body { width: 100%; height: 100%; margin: 0; background: #eeeeee; color: var(--text-color); font-family: "Roboto", "Noto Sans", sans-serif; font-size: 15px; line-height: 1.6; --primary-color: #009788; --secondary-color: #2196f3; --accent-color: #ecec26; --link-color: #009788; --text-color: rgba(0, 0, 0, 0.8); --transition-fn1: cubic-bezier(0.4, 0, 0.2, 1); --elevation-1: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12); --elevation-1a: 0px 2px 1px -1px rgba(0,0,0,0.1), 0px 1px 1px 0px rgba(0,0,0,0.05), 0px 1px 3px 0px rgba(0,0,0,0.12); --elevation-2: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12); --elevation-5: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 5px 8px 0px rgba(0,0,0,0.14), 0px 1px 14px 0px rgba(0,0,0,0.12); --elevation-16: 0px 8px 10px -5px rgba(0,0,0,0.2), 0px 16px 24px 2px rgba(0,0,0,0.14), 0px 6px 30px 5px rgba(0,0,0,0.12); --elevation-24: 0px 11px 15px -7px rgba(0,0,0,0.2), 0px 24px 38px 3px rgba(0,0,0,0.14), 0px 9px 46px 8px rgba(0,0,0,0.12); } h2 { box-sizing: border-box; margin: 36px 0 20px 0; font-size: 44px; font-weight: 700; line-height: 1.1; color: rgb(0, 151, 136); } h3 { box-sizing: border-box; font-size: 26px; font-weight: 500; line-height: 32px; color: rgba(0, 0, 0, 0.85); margin-bottom: 30px; } h4 { box-sizing: border-box; font-size: 20px; font-weight: 500; color: rgba(0, 0, 0, 0.85); margin-bottom: 15px; } h5 { box-sizing: border-box; font-size: 16px; font-weight: 700; line-height: 1; color: rgba(0, 0, 0, 0.85); margin-bottom: 8px; } p:last-child { margin-bottom: 0; } em { font-weight: 500; } pre, code, var { font-family: "Roboto Mono", monospace; font-style: normal; background: #F8F8FF; outline: rgba(0, 0, 0, 0.3) dashed 1px; } hr { background: rgba(0, 0, 0, 0.12); border: none; width: 100%; height: 1px; min-height: 1px; margin: 2px 0px 2px 0; box-sizing: border-box; } a { text-decoration: none; } p a, li a, dl a, h2 a, h3 a, h4 a, h5 a, h6 a, x-label a { color: var(--link-color); text-decoration: underline; } p a:hover, li a:hover dl a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, x-label a:hover { text-decoration: none; } input[type="text"] { cursor: default; } input[type="text"]:hover { cursor: text; } sidebar { background: white; } nav { box-sizing: border-box; padding: 0 30px; } nav section { margin: 10px 0; } nav h3 { color: rgba(0, 0, 0, 0.45); margin: 0; padding: 0; font-size: 12px; font-weight: 500; text-transform: uppercase; user-select: none; cursor: default; } nav hr { margin: 0 0 0 -30px; width: calc(100% + 60px); } ::selection { background: var(--primary-color); color: white; } :host([invalid]) ::selection { background: #d50000; } ::-webkit-scrollbar { max-width: 6px; max-height: 6px; background: none; } ::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, 0.2); } ::-webkit-scrollbar-corner { display: none } /*****************************************************************************************************************/ /** * Card (https://material.google.com/components/cards.html) */ x-card { background: white; box-shadow: var(--elevation-1); border-radius: 2px; } x-card > main { padding: 30px; } x-card h3:first-child { margin-top: 0; } /*****************************************************************************************************************/ /** * Icon (https://material.google.com/style/icons.html#icons-system-icons) */ x-icon { width: 24px; height: 24px; } /* @skin "primary" */ x-icon[skin="primary"] { width: 32px; height: 32px; color: rgba(0, 0, 0, 0.5); } /*****************************************************************************************************************/ /** * Stepper */ x-stepper { flex-flow: column-reverse; overflow: hidden; box-sizing: border-box; width: 27px; height: 100%; background: white; color: rgba(0, 0, 0, 0.8); --button-border-left: 1px solid rgba(0, 0, 0, 0.1); --pressed-button-background: rgba(0, 0, 0, 0.4); --increment-arrow-width: 15px; --increment-arrow-height: 15px; --decrement-arrow-width: 15px; --decrement-arrow-height: 15px; } /*****************************************************************************************************************/ /** * Swatch */ x-swatch { border-radius: 2px; } /*****************************************************************************************************************/ /** * Buttons (https://material.google.com/components/buttons.html) */ x-button { min-height: 34px; padding: 5px 14px; color: var(--secondary-color); background: white; border-radius: 2px; box-shadow: var(--elevation-2); font-size: 13px; text-transform: uppercase; font-weight: 500; --trigger-effect: ripple; --arrow-width: 11px; --arrow-height: 11px; --arrow-d: path("M 0.736 20.365 L 49.999 87.922 L 99.264 20.365 Z"); } x-button:focus::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; opacity: 0.1; content: ""; } x-button[toggled] { color: white; background: var(--secondary-color); box-shadow: var(--elevation-1a); } x-button > x-label, x-button > x-box > x-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; } x-button > x-box { overflow: hidden; align-items: center; } x-button > x-box > * { margin: 0 6px 0 0; } x-button > x-box > *:last-child { margin: 0; } x-button > x-box[vertical] > * { margin: 0 0 4px 0; } x-button > x-box[vertical] > *:last-child { margin: 0; } x-buttons[hasboxshadow] { box-shadow: var(--elevation-2); } x-buttons[hasboxshadow] > x-button, x-buttons[hasboxshadow] > x-button[toggled] { box-shadow: none; } x-buttons > x-button:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } x-buttons > x-button:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } /* @skin "textured" */ x-button[skin="textured"] { color: rgba(0, 0, 0, 0.5); background-image: linear-gradient(to bottom, #FCFCFC, #F1F1F1); } x-button[skin="textured"][toggled] { color: rgba(0, 0, 0, 0.7); background: rgba(0, 0, 0, 0.08); } /* @skin "flat" */ x-button[skin="flat"] { color: var(--primary-color); background: none; box-shadow: none; } x-button[skin="flat"][toggled]::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; opacity: 0.15; content: ""; } /* @skin "iconic" */ x-button[skin="iconic"] { background: none; box-shadow: none; padding: 6px; color: rgba(0, 0, 0, 0.55); border-radius: 2px; --trigger-effect: unbounded-ripple; --ripple-opacity: 0.1; --arrow-margin: 0 0 0 2px; } x-button[skin="iconic"][expanded], x-button[skin="iconic"][toggled] { color: var(--secondary-color); } x-button[skin="iconic"]:focus::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; border-radius: 999px; opacity: 0.1; transform: scale(1.3); content: ""; } x-button[skin="iconic"] > x-icon { width: 30px; height: 30px; color: inherit; } /* @skin "nav" */ x-button[skin="nav"] { padding: 8px 15px; font-size: 15px; cursor: default; color: #4a4a4a; box-shadow: none; text-transform: none; border-radius: 0; overflow: hidden; } x-button[skin="nav"][toggled] { color: white; background: var(--primary-color); } x-button[skin="nav"] x-icon { width: 24px; height: 24px; opacity: 0.9; margin-right: 12px; } x-button[skin="nav"] x-label { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 500; } /*****************************************************************************************************************/ /** * Tabs (https://material.google.com/components/tabs.html) */ x-tabs { background: var(--primary-color); padding: 0 15px; } x-tab { padding: 8px 24px; max-width: 264px; min-height: 52px; color: rgba(255, 255, 255, 0.7); --trigger-effect: ripple; --menu-position: over; --arrow-width: 11px; --arrow-height: 9px; --arrow-margin: 0 0 1px 5px; --arrow-d: path("M 0.736 20.365 L 49.999 87.922 L 99.264 20.365 Z"); } x-tab[selected], x-tab:focus { color: white; } x-tab > x-icon, x-tab > x-box > x-icon { color: inherit; width: 24px; min-width: 24px; height: 24px; } x-tab > x-label, x-tab > x-box > x-label { color: inherit; box-sizing: border-box; overflow: hidden; white-space: nowrap; cursor: inherit; font-size: 14px; font-weight: 500; text-transform: uppercase; line-height: 1; } x-tab > x-box[vertical] { align-items: center; } x-tab > x-box > * { margin: 0 8px 0 0; } x-tab > x-box > *:last-child { margin: 0 0 0 0; } x-tab > x-box[vertical] > * { margin: 0 0 6px 0; } x-tab > x-box[vertical] > *:last-child { margin: 0 0 3px 0; } /* Bright skin */ x-tabs[skin="flat"] { padding: 0; background: none; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } x-tabs[skin="flat"] x-tab { color: rgba(0, 0, 0, 0.6); } x-tabs[skin="flat"] x-tab[selected] { color: var(--primary-color); --selection-indicator-background: var(--primary-color); } /* Compact skin */ x-tabs[skin="compact"] { box-shadow: var(--elevation-5); } x-tabs[skin="compact"] x-tab { padding: 2px 12px; width: fit-content; flex: 0; flex-flow: column; color: rgba(255, 255, 255, 0.75); --ripple-type: bounded; --selection-indicator-height: 0; } x-tabs[skin="compact"] x-tab:focus, x-tabs[skin="compact"] x-tab[selected] { color: white; } x-tabs[skin="compact"] x-label { position: relative; margin-top: 3px; font-size: 14px; transition: transform 0.2s var(--transition-fn1); transform: scale(0.85, 0.85); transform-origin: center center; text-transform: none; } x-tabs[skin="compact"] x-tab[selected] x-label { color: white; transform: scale(1, 1); } /*****************************************************************************************************************/ /** * Document tabs */ x-doctabs { background: var(--primary-color); color: white; height: 46px; --open-button-path-d: path("M 80 11 L 20 12 C 15 12 12 15 12 20 L 12 80 C 12 85 15 88 20 88 L 80 88 C 85 88 88 85 88 80 L 88 20 C 88 15 85 12 80 12 Z M 71 54 L 54 54 L 54 71 L 46 71 L 46 54 L 29 54 L 29 46 L 46 46 L 46 29 L 54 29 L 54 46 L 71 46 L 71 54 Z"); } x-doctab { font-size: 14px; font-weight: 500; --ripple-type: bounded; } x-doctab img { margin-right: 8px; width: 20px; height: 20px; } x-doctab x-icon { margin-right: 8px; } x-doctab x-label { flex: 1; width: 0; /* https://lists.w3.org/Archives/Public/www-style/2011Jan/0201.html */ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } x-doctab > * { opacity: 0.75; } x-doctab[selected] > *, x-doctab:focus > * { opacity: 1; } x-doctab[disabled] > * { opacity: 0.5; } /*****************************************************************************************************************/ /** * Menu (https://material.google.com/components/menus.html) */ x-menu { padding: 8px 0; color: var(--text-color); border-radius: 2px; box-shadow: var(--elevation-5); font-size: 15px; text-transform: none; font-weight: 400; --open-transition: 100 transform var(--transition-fn1); } x-menu > hr { width: 100%; height: 1px; margin: 2px 0px 2px 0; box-sizing: border-box; border-color: rgba(0, 0, 0, 0.12); } x-menu > hr + hr, x-menu > hr:last-child { display: none; } /*****************************************************************************************************************/ /** * Menu item (https://material.google.com/components/menus.html#menus-menu-items) */ x-menuitem { padding: 7px 20px; min-height: 38px; --trigger-effect: ripple; } x-menuitem:focus, x-menuitem[expanded] { background: rgba(0, 0, 0, 0.07); } x-menuitem img { width: 24px; height: 24px; } x-menuitem x-icon { opacity: 0.7; } x-menuitem x-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } x-menuitem x-shortcut { margin-left: auto; color: #212121; opacity: 0.75; } x-menuitem img + x-label, x-menuitem x-swatch + x-label, x-menuitem x-icon + x-label, x-menuitem x-label + x-shortcut { margin-left: 12px; } /*****************************************************************************************************************/ /** * Menubar (https://material.google.com/components/menus.html) */ x-menubar { height: 38px; background: white; box-shadow: var(--elevation-1); } x-menubar > x-menuitem { padding: 0 20px; height: 100%; } /*****************************************************************************************************************/ /** * Dialog (https://material.google.com/components/dialogs.html) */ x-dialog { background: white; box-shadow: var(--elevation-24); --backdrop-color: rgba(0, 0, 0, 0.5); } x-dialog > main { padding: 20px 35px 0px; font-size: 15px; line-height: 1.6; color: rgba(0, 0, 0, 0.6); } x-dialog > footer { padding: 12px; display: flex; flex-flow: row; justify-content: flex-end; margin-top: auto; } x-dialog > footer x-button:last-child { margin-left: 15px; margin-right: 5px; } x-dialog h3 { font-size: 25px; color: rgba(0, 0, 0, 0.95); margin-top: 0; margin-bottom: 10px; } /*****************************************************************************************************************/ /** * Drawer (https://material.google.com/patterns/navigation-drawer.html) */ x-drawer { background: #fff; box-shadow: var(--elevation-16); outline: 1px solid rgba(0, 0, 0, 0.14); --backdrop-color: rgba(0, 0, 0, 0.5); } /*****************************************************************************************************************/ /** * Popover */ x-popover { color: var(--text-color); border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 2px; box-shadow: var(--elevation-5); font-size: 15px; font-weight: 400; text-transform: none; --open-transition: 100 transform var(--transition-fn1); } x-popover > main { width: 100%; padding: 20px; overflow: auto; } /*****************************************************************************************************************/ /** * Checkbox (https://material.google.com/components/selection-controls.html#selection-controls-checkbox) */ x-checkbox { color: #6d6d6d; border: 3px solid currentColor; border-radius: 3px; transition: color 0.2s var(--transition-fn1); --ripple-type: none; } x-checkbox[toggled] { color: var(--primary-color); } @media (pointer:coarse) { x-checkbox { --ripple-type: unbounded; } } x-checkbox::before { position: absolute; width: 100%; height: 100%; display: block; content: ""; background: currentColor; border-radius: 999px; opacity: 0.15; top: 0; left: 0; will-change: transform; transition: transform 0.15s var(--transition-fn1); transform: scale(0); } x-checkbox:focus::before { transform: scale(2.6); } /*****************************************************************************************************************/ /** * Radio (https://material.google.com/components/selection-controls.html#selection-controls-radio-button) */ x-radio { width: 18px; height: 18px; color: var(--primary-color); border: 3px solid currentColor; --dot-color: currentColor; } x-radio[disabled] { color: #525252; } x-radio::before { position: absolute; width: 100%; height: 100%; display: block; content: ""; background: currentColor; border-radius: 999px; opacity: 0.15; top: 0; left: 0; will-change: transform; transition: transform 0.15s var(--transition-fn1); transform: scale(0); } x-radio:focus::before { transform: scale(2.6); } x-radio + x-label { margin-left: 7px; padding: 8px 0; } /*****************************************************************************************************************/ /** * Switch (https://material.google.com/components/selection-controls.html#selection-controls-switch) */ x-switch { color: var(--primary-color); transition: filter 0.2s var(--transition-fn1); filter: saturate(0%); --ripple-type: none; } x-switch[toggled] { filter: none; } @media (pointer:coarse) { x-switch { --ripple-type: unbounded; } } /*****************************************************************************************************************/ /** * Select (https://material.io/guidelines/components/buttons.html#buttons-dropdown-buttons) */ x-select { background: white; color: #646464; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 2px; height: 36px; padding: 0 4px 0 10px; --arrow-width: 15px; --arrow-min-width: 15px; --arrow-height: 15px; --arrow-margin: 0 3px 0 15px; --arrow-d: path("M 24.85 63.241 L 51.609 98.098 L 78.367 63.241 Z M 78.367 35.581 L 51.609 0.724 L 24.85 35.581 Z"); } x-select:focus { border-bottom-color: var(--primary-color); box-shadow: 0px 1px 0px var(--primary-color); } /* Flat skin */ x-select[skin="flat"] { background: none; border: none; border-bottom: 2px solid #b3b3b3; padding: 0; } /*****************************************************************************************************************/ /** * Input */ x-input { height: 34px; max-width: 160px; color: var(--text-color); border: 1px solid #c1c1c1; outline: none; font-size: 13px; --selection-color: white; --selection-background: var(--primary-color); --inner-padding: 0px 7px; } x-input[invalid] { --selection-background: #d50000; } /* Invalid value hint */ x-input[invalid]::before { top: 37px; } /* Focus indicator line */ x-input::after { content: ""; display: block; position: absolute; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); transition: width 0.2s var(--transition-fn1); } x-input:focus::after { width: 100%; } x-input[invalid]::after { width: 100%; background: #d50000; } /* Icon */ x-input > x-icon { width: 32px; height: 32px; min-width: 32px; padding: 7px; box-sizing: border-box; color: #565656; background: rgba(0, 0, 0, 0.08); border-right: 1px solid #c1c1c1; } x-input > x-icon:hover { cursor: default; } /* Placeholder */ x-input > x-label { display: none; position: absolute; top: 50%; max-width: 100%; padding: 0 7px 0 7px; transform: translateY(-50%); color: rgba(0, 0, 0, 0.4); font-family: inherit; font-size: inherit; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; pointer-events: none; } x-input[empty] > x-label { display: block; } x-input > x-icon + x-label { padding: 0 7px 0 39px; } x-input[required] > x-label::after { content: "*"; } /* @skin "flat" */ x-input[skin="flat"] { height: 28px; background: none; border-left: none; border-right: none; border-top: none; --inner-padding: 0; } x-input[skin="flat"] + x-input[skin="flat"] { margin-top: 28px; } /* Icon */ x-input[skin="flat"] > x-icon { width: 34px; height: 34px; min-width: 34px; margin: 0 0 0 -34px; background: none; border: none; cursor: default; transition: color 0.2s var(--transition-fn1); } x-input[skin="flat"]:focus > x-icon { color: var(--primary-color); } x-input[skin="flat"][invalid] > x-icon { color: #d50000; } /* Placehodler */ x-input[skin="flat"] > x-label { display: block; padding: 0; transition-property: top, color, font-size; transition-duration: 0.2s; transition-timing-function: var(--transition-fn1); } x-input[skin="flat"]:not([empty]) > x-label, x-input[skin="flat"]:focus > x-label { top: calc(50% - 18px); color: var(--primary-color); font-size: 12px; pointer-events: all; } x-input[skin="flat"][invalid]:not([empty]) > x-label, x-input[skin="flat"][invalid] > x-label { color: #d50000; } x-input[skin="flat"]:focus > x-label::after { color: #d50000; } x-input[skin="flat"] > x-icon + x-label { left: 0px; } /*****************************************************************************************************************/ /** * Number input */ x-numberinput { background: white; color: var(--text-color); font-size: 13px; border: 1px solid #c1c1c1; height: 34px; max-width: 160px; outline: none; --inner-padding: 0px 7px; --selection-color: white; --selection-background: var(--primary-color); } x-numberinput[invalid] { --selection-background: #d50000; } /* Focus indicator line */ x-numberinput::after { content: ""; display: block; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); position: absolute; transition: width 0.2s var(--transition-fn1); } x-numberinput:focus::after { width: 100%; } x-numberinput[invalid]::after { width: 100%; background: #d50000; } /* Placeholder */ x-numberinput > x-label { display: none; position: absolute; width: 100%; height: 22px; bottom: 6px; top: 50%; left: 0; padding: 0 7px; transform: translateY(-50%); line-height: 1.8; color: rgba(0, 0, 0, 0.4); font-family: inherit; pointer-events: none; } x-numberinput[empty] > x-label { display: block; cursor: text; } x-numberinput[required] > x-label::after { content: "*"; } x-numberinput > x-icon + x-label { left: 32px; } /*****************************************************************************************************************/ /** * Textarea */ x-textarea { min-height: 120px; color: var(--text-color); font-size: 13px; border: 1px solid #c1c1c1; outline: none; --selection-color: white; --selection-background: var(--primary-color); --inner-padding: 3px 6px; } /* Focus indicator line */ x-textarea::after { content: ""; display: block; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); position: absolute; transition: width 0.2s var(--transition-fn1); } x-textarea:focus::after { width: 100%; } x-textarea[invalid]::after { width: 100%; background: #d50000; } /* Placeholder */ x-textarea > x-label { display: none; position: absolute; width: 100%; top: 0; left: 0; padding: var(--inner-padding); color: rgba(0, 0, 0, 0.4); font-family: inherit; line-height: inherit; pointer-events: none; } x-textarea[empty] > x-label { display: block; cursor: text; } x-textarea[required] > x-label::after { content: "*"; } /* @skin "flat" */ x-textarea[skin="flat"] { background: none; border-left: none; border-right: none; border-top: none; min-height: 0; padding: 0; --inner-padding: 9px 0px 5px; } x-textarea[skin="flat"] > x-label { display: block; top: 6px; padding: 0; transform: none; transition-property: top, color, font-size; transition-duration: 0.2s; transition-timing-function: var(--transition-fn1); } x-textarea[skin="flat"]:not([empty]) > x-label, x-textarea[skin="flat"]:focus > x-label { top: -12px; font-size: 12px; color: var(--primary-color); pointer-events: all; } x-textarea[skin="flat"][invalid]:not([empty]) > x-label, x-textarea[skin="flat"][invalid] > x-label { color: #d50000; } x-textarea[skin="flat"]:focus > x-label::after { color: #d50000; } /*****************************************************************************************************************/ /** * Slider */ x-slider { --thumb-width: 16px; --thumb-height: 16px; --thumb-color: var(--primary-color); --thumb-border-width: 0px; --track-height: 3px; --track-color: #B9B9B9; --track-tint-color: var(--primary-color); --focus-ring-color: var(--primary-color); --focus-ring-opacity: 0.2; --focus-ring-width: 20px; } x-slider[value="0"] { --thumb-color: #B9B9B9; --focus-ring-color: #B9B9B9; --focus-ring-opacity: 0.3; } x-slider:active { --thumb-transform: scale(1.4); } x-box x-icon + x-slider, x-box x-slider + x-icon { margin-left: 10px; } x-box[vertical] x-icon + x-slider, x-box[vertical] x-slider + x-icon { margin-left: 0; } /*****************************************************************************************************************/ /** * Progressbar */ x-progressbar { background: rgba(59, 153, 251, 0.27); height: 5px; --bar-background: #3B99FB; --bar-box-shadow: 0px 0px 0px 1px #4392F9; } /*****************************************************************************************************************/ /** * Demo site */ xel-codeview { box-shadow: var(--elevation-1); } x-card xel-codeview { background: #fbfbfb; } :host(xel-app) #sidebar h1 { color: #009788; } :host(xel-app) #sidebar #nav .external-link-icon { color: var(--primary-color); } :host(xel-app) #about-view { background: #009788; } :host(xel-app) #setup-view h3 x-icon { color: #009788; } :host(xel-app) #faq-view h4 { color: #009788; }
Dashboard/content/node_modules/xel/stylesheets/material.theme.css
body { width: 100%; height: 100%; margin: 0; background: #eeeeee; color: var(--text-color); font-family: "Roboto", "Noto Sans", sans-serif; font-size: 15px; line-height: 1.6; --primary-color: #009788; --secondary-color: #2196f3; --accent-color: #ecec26; --link-color: #009788; --text-color: rgba(0, 0, 0, 0.8); --transition-fn1: cubic-bezier(0.4, 0, 0.2, 1); --elevation-1: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12); --elevation-1a: 0px 2px 1px -1px rgba(0,0,0,0.1), 0px 1px 1px 0px rgba(0,0,0,0.05), 0px 1px 3px 0px rgba(0,0,0,0.12); --elevation-2: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12); --elevation-5: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 5px 8px 0px rgba(0,0,0,0.14), 0px 1px 14px 0px rgba(0,0,0,0.12); --elevation-16: 0px 8px 10px -5px rgba(0,0,0,0.2), 0px 16px 24px 2px rgba(0,0,0,0.14), 0px 6px 30px 5px rgba(0,0,0,0.12); --elevation-24: 0px 11px 15px -7px rgba(0,0,0,0.2), 0px 24px 38px 3px rgba(0,0,0,0.14), 0px 9px 46px 8px rgba(0,0,0,0.12); } h2 { box-sizing: border-box; margin: 36px 0 20px 0; font-size: 44px; font-weight: 700; line-height: 1.1; color: rgb(0, 151, 136); } h3 { box-sizing: border-box; font-size: 26px; font-weight: 500; line-height: 32px; color: rgba(0, 0, 0, 0.85); margin-bottom: 30px; } h4 { box-sizing: border-box; font-size: 20px; font-weight: 500; color: rgba(0, 0, 0, 0.85); margin-bottom: 15px; } h5 { box-sizing: border-box; font-size: 16px; font-weight: 700; line-height: 1; color: rgba(0, 0, 0, 0.85); margin-bottom: 8px; } p:last-child { margin-bottom: 0; } em { font-weight: 500; } pre, code, var { font-family: "Roboto Mono", monospace; font-style: normal; background: #F8F8FF; outline: rgba(0, 0, 0, 0.3) dashed 1px; } hr { background: rgba(0, 0, 0, 0.12); border: none; width: 100%; height: 1px; min-height: 1px; margin: 2px 0px 2px 0; box-sizing: border-box; } a { text-decoration: none; } p a, li a, dl a, h2 a, h3 a, h4 a, h5 a, h6 a, x-label a { color: var(--link-color); text-decoration: underline; } p a:hover, li a:hover dl a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, x-label a:hover { text-decoration: none; } input[type="text"] { cursor: default; } input[type="text"]:hover { cursor: text; } sidebar { background: white; } nav { box-sizing: border-box; padding: 0 30px; } nav section { margin: 10px 0; } nav h3 { color: rgba(0, 0, 0, 0.45); margin: 0; padding: 0; font-size: 12px; font-weight: 500; text-transform: uppercase; user-select: none; cursor: default; } nav hr { margin: 0 0 0 -30px; width: calc(100% + 60px); } ::selection { background: var(--primary-color); color: white; } :host([invalid]) ::selection { background: #d50000; } ::-webkit-scrollbar { max-width: 6px; max-height: 6px; background: none; } ::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, 0.2); } ::-webkit-scrollbar-corner { display: none } /*****************************************************************************************************************/ /** * Card (https://material.google.com/components/cards.html) */ x-card { background: white; box-shadow: var(--elevation-1); border-radius: 2px; } x-card > main { padding: 30px; } x-card h3:first-child { margin-top: 0; } /*****************************************************************************************************************/ /** * Icon (https://material.google.com/style/icons.html#icons-system-icons) */ x-icon { width: 24px; height: 24px; } /* @skin "primary" */ x-icon[skin="primary"] { width: 32px; height: 32px; color: rgba(0, 0, 0, 0.5); } /*****************************************************************************************************************/ /** * Stepper */ x-stepper { flex-flow: column-reverse; overflow: hidden; box-sizing: border-box; width: 27px; height: 100%; background: white; color: rgba(0, 0, 0, 0.8); --button-border-left: 1px solid rgba(0, 0, 0, 0.1); --pressed-button-background: rgba(0, 0, 0, 0.4); --increment-arrow-width: 15px; --increment-arrow-height: 15px; --decrement-arrow-width: 15px; --decrement-arrow-height: 15px; } /*****************************************************************************************************************/ /** * Swatch */ x-swatch { border-radius: 2px; } /*****************************************************************************************************************/ /** * Buttons (https://material.google.com/components/buttons.html) */ x-button { min-height: 34px; padding: 5px 14px; color: var(--secondary-color); background: white; border-radius: 2px; box-shadow: var(--elevation-2); font-size: 13px; text-transform: uppercase; font-weight: 500; --trigger-effect: ripple; --arrow-width: 11px; --arrow-height: 11px; --arrow-d: path("M 0.736 20.365 L 49.999 87.922 L 99.264 20.365 Z"); } x-button:focus::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; opacity: 0.1; content: ""; } x-button[toggled] { color: white; background: var(--secondary-color); box-shadow: var(--elevation-1a); } x-button > x-label, x-button > x-box > x-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; } x-button > x-box { overflow: hidden; align-items: center; } x-button > x-box > * { margin: 0 6px 0 0; } x-button > x-box > *:last-child { margin: 0; } x-button > x-box[vertical] > * { margin: 0 0 4px 0; } x-button > x-box[vertical] > *:last-child { margin: 0; } x-buttons[hasboxshadow] { box-shadow: var(--elevation-2); } x-buttons[hasboxshadow] > x-button, x-buttons[hasboxshadow] > x-button[toggled] { box-shadow: none; } x-buttons > x-button:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } x-buttons > x-button:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } /* @skin "textured" */ x-button[skin="textured"] { color: rgba(0, 0, 0, 0.5); background-image: linear-gradient(to bottom, #FCFCFC, #F1F1F1); } x-button[skin="textured"][toggled] { color: rgba(0, 0, 0, 0.7); background: rgba(0, 0, 0, 0.08); } /* @skin "flat" */ x-button[skin="flat"] { color: var(--primary-color); background: none; box-shadow: none; } x-button[skin="flat"][toggled]::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; opacity: 0.15; content: ""; } /* @skin "iconic" */ x-button[skin="iconic"] { background: none; box-shadow: none; padding: 6px; color: rgba(0, 0, 0, 0.55); border-radius: 2px; --trigger-effect: unbounded-ripple; --ripple-opacity: 0.1; --arrow-margin: 0 0 0 2px; } x-button[skin="iconic"][expanded], x-button[skin="iconic"][toggled] { color: var(--secondary-color); } x-button[skin="iconic"]:focus::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; background: currentColor; border-radius: 999px; opacity: 0.1; transform: scale(1.3); content: ""; } x-button[skin="iconic"] > x-icon { width: 30px; height: 30px; color: inherit; } /* @skin "nav" */ x-button[skin="nav"] { padding: 8px 15px; font-size: 15px; cursor: default; color: #4a4a4a; box-shadow: none; text-transform: none; border-radius: 0; overflow: hidden; } x-button[skin="nav"][toggled] { color: white; background: var(--primary-color); } x-button[skin="nav"] x-icon { width: 24px; height: 24px; opacity: 0.9; margin-right: 12px; } x-button[skin="nav"] x-label { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 500; } /*****************************************************************************************************************/ /** * Tabs (https://material.google.com/components/tabs.html) */ x-tabs { background: var(--primary-color); padding: 0 15px; } x-tab { padding: 8px 24px; max-width: 264px; min-height: 52px; color: rgba(255, 255, 255, 0.7); --trigger-effect: ripple; --menu-position: over; --arrow-width: 11px; --arrow-height: 9px; --arrow-margin: 0 0 1px 5px; --arrow-d: path("M 0.736 20.365 L 49.999 87.922 L 99.264 20.365 Z"); } x-tab[selected], x-tab:focus { color: white; } x-tab > x-icon, x-tab > x-box > x-icon { color: inherit; width: 24px; min-width: 24px; height: 24px; } x-tab > x-label, x-tab > x-box > x-label { color: inherit; box-sizing: border-box; overflow: hidden; white-space: nowrap; cursor: inherit; font-size: 14px; font-weight: 500; text-transform: uppercase; line-height: 1; } x-tab > x-box[vertical] { align-items: center; } x-tab > x-box > * { margin: 0 8px 0 0; } x-tab > x-box > *:last-child { margin: 0 0 0 0; } x-tab > x-box[vertical] > * { margin: 0 0 6px 0; } x-tab > x-box[vertical] > *:last-child { margin: 0 0 3px 0; } /* Bright skin */ x-tabs[skin="flat"] { padding: 0; background: none; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } x-tabs[skin="flat"] x-tab { color: rgba(0, 0, 0, 0.6); } x-tabs[skin="flat"] x-tab[selected] { color: var(--primary-color); --selection-indicator-background: var(--primary-color); } /* Compact skin */ x-tabs[skin="compact"] { box-shadow: var(--elevation-5); } x-tabs[skin="compact"] x-tab { padding: 2px 12px; width: fit-content; flex: 0; flex-flow: column; color: rgba(255, 255, 255, 0.75); --ripple-type: bounded; --selection-indicator-height: 0; } x-tabs[skin="compact"] x-tab:focus, x-tabs[skin="compact"] x-tab[selected] { color: white; } x-tabs[skin="compact"] x-label { position: relative; margin-top: 3px; font-size: 14px; transition: transform 0.2s var(--transition-fn1); transform: scale(0.85, 0.85); transform-origin: center center; text-transform: none; } x-tabs[skin="compact"] x-tab[selected] x-label { color: white; transform: scale(1, 1); } /*****************************************************************************************************************/ /** * Document tabs */ x-doctabs { background: var(--primary-color); color: white; height: 46px; --open-button-path-d: path("M 80 11 L 20 12 C 15 12 12 15 12 20 L 12 80 C 12 85 15 88 20 88 L 80 88 C 85 88 88 85 88 80 L 88 20 C 88 15 85 12 80 12 Z M 71 54 L 54 54 L 54 71 L 46 71 L 46 54 L 29 54 L 29 46 L 46 46 L 46 29 L 54 29 L 54 46 L 71 46 L 71 54 Z"); } x-doctab { font-size: 14px; font-weight: 500; --ripple-type: bounded; } x-doctab img { margin-right: 8px; width: 20px; height: 20px; } x-doctab x-icon { margin-right: 8px; } x-doctab x-label { flex: 1; width: 0; /* https://lists.w3.org/Archives/Public/www-style/2011Jan/0201.html */ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } x-doctab > * { opacity: 0.75; } x-doctab[selected] > *, x-doctab:focus > * { opacity: 1; } x-doctab[disabled] > * { opacity: 0.5; } /*****************************************************************************************************************/ /** * Menu (https://material.google.com/components/menus.html) */ x-menu { padding: 8px 0; color: var(--text-color); border-radius: 2px; box-shadow: var(--elevation-5); font-size: 15px; text-transform: none; font-weight: 400; --open-transition: 100 transform var(--transition-fn1); } x-menu > hr { width: 100%; height: 1px; margin: 2px 0px 2px 0; box-sizing: border-box; border-color: rgba(0, 0, 0, 0.12); } x-menu > hr + hr, x-menu > hr:last-child { display: none; } /*****************************************************************************************************************/ /** * Menu item (https://material.google.com/components/menus.html#menus-menu-items) */ x-menuitem { padding: 7px 20px; min-height: 38px; --trigger-effect: ripple; } x-menuitem:focus, x-menuitem[expanded] { background: rgba(0, 0, 0, 0.07); } x-menuitem img { width: 24px; height: 24px; } x-menuitem x-icon { opacity: 0.7; } x-menuitem x-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } x-menuitem x-shortcut { margin-left: auto; color: #212121; opacity: 0.75; } x-menuitem img + x-label, x-menuitem x-swatch + x-label, x-menuitem x-icon + x-label, x-menuitem x-label + x-shortcut { margin-left: 12px; } /*****************************************************************************************************************/ /** * Menubar (https://material.google.com/components/menus.html) */ x-menubar { height: 38px; background: white; box-shadow: var(--elevation-1); } x-menubar > x-menuitem { padding: 0 20px; height: 100%; } /*****************************************************************************************************************/ /** * Dialog (https://material.google.com/components/dialogs.html) */ x-dialog { background: white; box-shadow: var(--elevation-24); --backdrop-color: rgba(0, 0, 0, 0.5); } x-dialog > main { padding: 20px 35px 0px; font-size: 15px; line-height: 1.6; color: rgba(0, 0, 0, 0.6); } x-dialog > footer { padding: 12px; display: flex; flex-flow: row; justify-content: flex-end; margin-top: auto; } x-dialog > footer x-button:last-child { margin-left: 15px; margin-right: 5px; } x-dialog h3 { font-size: 25px; color: rgba(0, 0, 0, 0.95); margin-top: 0; margin-bottom: 10px; } /*****************************************************************************************************************/ /** * Drawer (https://material.google.com/patterns/navigation-drawer.html) */ x-drawer { background: #fff; box-shadow: var(--elevation-16); outline: 1px solid rgba(0, 0, 0, 0.14); --backdrop-color: rgba(0, 0, 0, 0.5); } /*****************************************************************************************************************/ /** * Popover */ x-popover { color: var(--text-color); border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 2px; box-shadow: var(--elevation-5); font-size: 15px; font-weight: 400; text-transform: none; --open-transition: 100 transform var(--transition-fn1); } x-popover > main { width: 100%; padding: 20px; overflow: auto; } /*****************************************************************************************************************/ /** * Checkbox (https://material.google.com/components/selection-controls.html#selection-controls-checkbox) */ x-checkbox { color: #6d6d6d; border: 3px solid currentColor; border-radius: 3px; transition: color 0.2s var(--transition-fn1); --ripple-type: none; } x-checkbox[toggled] { color: var(--primary-color); } @media (pointer:coarse) { x-checkbox { --ripple-type: unbounded; } } x-checkbox::before { position: absolute; width: 100%; height: 100%; display: block; content: ""; background: currentColor; border-radius: 999px; opacity: 0.15; top: 0; left: 0; will-change: transform; transition: transform 0.15s var(--transition-fn1); transform: scale(0); } x-checkbox:focus::before { transform: scale(2.6); } /*****************************************************************************************************************/ /** * Radio (https://material.google.com/components/selection-controls.html#selection-controls-radio-button) */ x-radio { width: 18px; height: 18px; color: var(--primary-color); border: 3px solid currentColor; --dot-color: currentColor; } x-radio[disabled] { color: #525252; } x-radio::before { position: absolute; width: 100%; height: 100%; display: block; content: ""; background: currentColor; border-radius: 999px; opacity: 0.15; top: 0; left: 0; will-change: transform; transition: transform 0.15s var(--transition-fn1); transform: scale(0); } x-radio:focus::before { transform: scale(2.6); } x-radio + x-label { margin-left: 7px; padding: 8px 0; } /*****************************************************************************************************************/ /** * Switch (https://material.google.com/components/selection-controls.html#selection-controls-switch) */ x-switch { color: var(--primary-color); transition: filter 0.2s var(--transition-fn1); filter: saturate(0%); --ripple-type: none; } x-switch[toggled] { filter: none; } @media (pointer:coarse) { x-switch { --ripple-type: unbounded; } } /*****************************************************************************************************************/ /** * Select (https://material.io/guidelines/components/buttons.html#buttons-dropdown-buttons) */ x-select { background: white; color: #646464; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 2px; height: 36px; padding: 0 4px 0 10px; --arrow-width: 15px; --arrow-min-width: 15px; --arrow-height: 15px; --arrow-margin: 0 3px 0 15px; --arrow-d: path("M 24.85 63.241 L 51.609 98.098 L 78.367 63.241 Z M 78.367 35.581 L 51.609 0.724 L 24.85 35.581 Z"); } x-select:focus { border-bottom-color: var(--primary-color); box-shadow: 0px 1px 0px var(--primary-color); } /* Flat skin */ x-select[skin="flat"] { background: none; border: none; border-bottom: 2px solid #b3b3b3; padding: 0; } /*****************************************************************************************************************/ /** * Input */ x-input { height: 34px; max-width: 160px; color: var(--text-color); border: 1px solid #c1c1c1; outline: none; font-size: 13px; --selection-color: white; --selection-background: var(--primary-color); --inner-padding: 0px 7px; } x-input[invalid] { --selection-background: #d50000; } /* Invalid value hint */ x-input[invalid]::before { top: 37px; } /* Focus indicator line */ x-input::after { content: ""; display: block; position: absolute; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); transition: width 0.2s var(--transition-fn1); } x-input:focus::after { width: 100%; } x-input[invalid]::after { width: 100%; background: #d50000; } /* Icon */ x-input > x-icon { width: 32px; height: 32px; min-width: 32px; padding: 7px; box-sizing: border-box; color: #565656; background: rgba(0, 0, 0, 0.08); border-right: 1px solid #c1c1c1; } x-input > x-icon:hover { cursor: default; } /* Placeholder */ x-input > x-label { display: none; position: absolute; top: 50%; max-width: 100%; padding: 0 7px 0 7px; transform: translateY(-50%); color: rgba(0, 0, 0, 0.4); font-family: inherit; font-size: inherit; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; pointer-events: none; } x-input[empty] > x-label { display: block; } x-input > x-icon + x-label { padding: 0 7px 0 39px; } x-input[required] > x-label::after { content: "*"; } /* @skin "flat" */ x-input[skin="flat"] { height: 28px; background: none; border-left: none; border-right: none; border-top: none; --inner-padding: 0; } x-input[skin="flat"] + x-input[skin="flat"] { margin-top: 28px; } /* Icon */ x-input[skin="flat"] > x-icon { width: 34px; height: 34px; min-width: 34px; margin: 0 0 0 -34px; background: none; border: none; cursor: default; transition: color 0.2s var(--transition-fn1); } x-input[skin="flat"]:focus > x-icon { color: var(--primary-color); } x-input[skin="flat"][invalid] > x-icon { color: #d50000; } /* Placehodler */ x-input[skin="flat"] > x-label { display: block; padding: 0; transition-property: top, color, font-size; transition-duration: 0.2s; transition-timing-function: var(--transition-fn1); } x-input[skin="flat"]:not([empty]) > x-label, x-input[skin="flat"]:focus > x-label { top: calc(50% - 18px); color: var(--primary-color); font-size: 12px; pointer-events: all; } x-input[skin="flat"][invalid]:not([empty]) > x-label, x-input[skin="flat"][invalid] > x-label { color: #d50000; } x-input[skin="flat"]:focus > x-label::after { color: #d50000; } x-input[skin="flat"] > x-icon + x-label { left: 0px; } /*****************************************************************************************************************/ /** * Number input */ x-numberinput { background: white; color: var(--text-color); font-size: 13px; border: 1px solid #c1c1c1; height: 34px; max-width: 160px; outline: none; --inner-padding: 0px 7px; --selection-color: white; --selection-background: var(--primary-color); } x-numberinput[invalid] { --selection-background: #d50000; } /* Focus indicator line */ x-numberinput::after { content: ""; display: block; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); position: absolute; transition: width 0.2s var(--transition-fn1); } x-numberinput:focus::after { width: 100%; } x-numberinput[invalid]::after { width: 100%; background: #d50000; } /* Placeholder */ x-numberinput > x-label { display: none; position: absolute; width: 100%; height: 22px; bottom: 6px; top: 50%; left: 0; padding: 0 7px; transform: translateY(-50%); line-height: 1.8; color: rgba(0, 0, 0, 0.4); font-family: inherit; pointer-events: none; } x-numberinput[empty] > x-label { display: block; cursor: text; } x-numberinput[required] > x-label::after { content: "*"; } x-numberinput > x-icon + x-label { left: 32px; } /*****************************************************************************************************************/ /** * Textarea */ x-textarea { min-height: 120px; color: var(--text-color); font-size: 13px; border: 1px solid #c1c1c1; outline: none; --selection-color: white; --selection-background: var(--primary-color); --inner-padding: 3px 6px; } /* Focus indicator line */ x-textarea::after { content: ""; display: block; width: 0%; height: 3px; bottom: -1px; left: 50%; transform: translateX(-50%); background: var(--primary-color); position: absolute; transition: width 0.2s var(--transition-fn1); } x-textarea:focus::after { width: 100%; } x-textarea[invalid]::after { width: 100%; background: #d50000; } /* Placeholder */ x-textarea > x-label { display: none; position: absolute; width: 100%; top: 0; left: 0; padding: var(--inner-padding); color: rgba(0, 0, 0, 0.4); font-family: inherit; line-height: inherit; pointer-events: none; } x-textarea[empty] > x-label { display: block; cursor: text; } x-textarea[required] > x-label::after { content: "*"; } /* @skin "flat" */ x-textarea[skin="flat"] { background: none; border-left: none; border-right: none; border-top: none; min-height: 0; padding: 0; --inner-padding: 9px 0px 5px; } x-textarea[skin="flat"] > x-label { display: block; top: 6px; padding: 0; transform: none; transition-property: top, color, font-size; transition-duration: 0.2s; transition-timing-function: var(--transition-fn1); } x-textarea[skin="flat"]:not([empty]) > x-label, x-textarea[skin="flat"]:focus > x-label { top: -12px; font-size: 12px; color: var(--primary-color); pointer-events: all; } x-textarea[skin="flat"][invalid]:not([empty]) > x-label, x-textarea[skin="flat"][invalid] > x-label { color: #d50000; } x-textarea[skin="flat"]:focus > x-label::after { color: #d50000; } /*****************************************************************************************************************/ /** * Slider */ x-slider { --thumb-width: 16px; --thumb-height: 16px; --thumb-color: var(--primary-color); --thumb-border-width: 0px; --track-height: 3px; --track-color: #B9B9B9; --track-tint-color: var(--primary-color); --focus-ring-color: var(--primary-color); --focus-ring-opacity: 0.2; --focus-ring-width: 20px; } x-slider[value="0"] { --thumb-color: #B9B9B9; --focus-ring-color: #B9B9B9; --focus-ring-opacity: 0.3; } x-slider:active { --thumb-transform: scale(1.4); } x-box x-icon + x-slider, x-box x-slider + x-icon { margin-left: 10px; } x-box[vertical] x-icon + x-slider, x-box[vertical] x-slider + x-icon { margin-left: 0; } /*****************************************************************************************************************/ /** * Progressbar */ x-progressbar { background: rgba(59, 153, 251, 0.27); height: 5px; --bar-background: #3B99FB; --bar-box-shadow: 0px 0px 0px 1px #4392F9; } /*****************************************************************************************************************/ /** * Demo site */ xel-codeview { box-shadow: var(--elevation-1); } x-card xel-codeview { background: #fbfbfb; } :host(xel-app) #sidebar h1 { color: #009788; } :host(xel-app) #sidebar #nav .external-link-icon { color: var(--primary-color); } :host(xel-app) #about-view { background: #009788; } :host(xel-app) #setup-view h3 x-icon { color: #009788; } :host(xel-app) #faq-view h4 { color: #009788; }
0.403332
0.10325
@font-face { font-family: "icon-font"; src: url('../fonts/icon-font.eot'); src: url('../fonts/icon-font.eot?#iefix') format('eot'), url('../fonts/icon-font.woff') format('woff'), url('../fonts/icon-font.ttf') format('truetype'), url('../fonts/icon-font.svg#icon-font') format('svg'); } .icon-desktop:before, .icon-menu-close:before, .icon-menu:before, .icon-mobile:before, .icon-submenu-down:before, .icon-submenu-right:before, .icon-world:before, header h1:before, .nav-button:before, .nav-close:before, .nav .nav-submenu > a:after, .nav > ul > .nav-submenu > a:after { font-family: "icon-font"; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; text-transform: none; vertical-align: top; } .icon-desktop:before { content: "\E001"; } .icon-menu-close:before { content: "\E002"; } .icon-menu:before { content: "\E003"; } .icon-mobile:before { content: "\E004"; } .icon-submenu-down:before { content: "\E005"; } .icon-submenu-right:before { content: "\E006"; } .icon-world:before { content: "\E007"; } .onBetNav header { display: block; position: fixed; top: 0; left: 0; right: 0; z-index: 901; padding-left: 10px; line-height: 4.4rem; background: #000040; color: #fff; } .onBetNav header h1 { margin: 0; font-size: 1.7rem; line-height: 4.4rem; color:#fff; } /*.onBetNav header h1:before { content: "\E004"; margin-right: 8px; }*/ .onBetNav .nav-button, .onBetNav .nav-close { position: fixed; top: 0; width: 2.4rem; height: 4.4rem; overflow: hidden; z-index: 902; cursor: pointer; text-decoration: none; line-height: 4.4rem; background: #000040; color: #A69A94; } .onBetNav .nav-button:before, .onBetNav .nav-close:before { display: block; text-align: center; } .onBetNav .nav-button { display: block; right: 1rem; font-size: 1.7rem; } .onBetNav .nav-button:before { content: "\E003"; } .onBetNav .nav-close { display: none; right: 4rem; font-size: 1.9rem; } .onBetNav .nav-close:before { content: "\E002"; } .onBetNav .nav { padding-top: 4.4rem; line-height: 4.4rem; background: #000040; color: #A69A94; } .onBetNav .nav ul { border-radius: 0 0 6px 6px; } .onBetNav .nav ul ul { background: #000040; } .onBetNav .nav ul ul ul { background: #000040; } .onBetNav .nav ul ul ul ul { background: #000040; } .onBetNav .nav ul ul ul ul ul { background: #000040; } .onBetNav .nav li { border-top: 1px solid #59544F; cursor: pointer; } .onBetNav .nav li:hover > a, .onBetNav .nav li.nav-active > a { color: #ff3952; } .onBetNav .nav .nav-submenu > ul { margin-left: 20px; } .onBetNav .nav .nav-submenu > a { padding-right: 30px !important; } .onBetNav .nav a, .onBetNav .nav a:hover { border-radius: 6px; padding: 0 3px 1px; text-decoration: none; color: #fff } .onBetNav .nav .nav-submenu > a:after { position: absolute; display: block; right: 10px; top: 1px; content: "\E005"; } @media only screen and (min-width: 960px) { .onBetNav header { position: relative; display: none; } .onBetNav .nav-button { display: none; } .onBetNav .nav { padding: 0 !important; } .onBetNav .nav > ul > li { border-top: none; font-size: 18px; } .onBetNav .nav li > ul { box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); top:80px; } .onBetNav .nav li > ul > li:first-child{ border:none; } .onBetNav .nav li > ul li a{ font-size: 16px; } .onBetNav .nav ul ul ul { border-radius: 0 6px 6px 6px; } .onBetNav .nav ul ul ul li:first-child { border-top: none; } .onBetNav .nav .nav-left > ul { border-radius: 6px 0 6px 6px; } .onBetNav .nav .nav-submenu li { min-width: 120px; padding: 5px; } .onBetNav .nav .nav-submenu > ul { margin: 0; text-align: left; margin-left: 5px; } .onBetNav .nav > ul > .nav-submenu > a:after { content: "\E005"; } .onBetNav .nav .nav-submenu > a:after { content: "\E006"; } }
resources/frontend/css/nav-layout.css
@font-face { font-family: "icon-font"; src: url('../fonts/icon-font.eot'); src: url('../fonts/icon-font.eot?#iefix') format('eot'), url('../fonts/icon-font.woff') format('woff'), url('../fonts/icon-font.ttf') format('truetype'), url('../fonts/icon-font.svg#icon-font') format('svg'); } .icon-desktop:before, .icon-menu-close:before, .icon-menu:before, .icon-mobile:before, .icon-submenu-down:before, .icon-submenu-right:before, .icon-world:before, header h1:before, .nav-button:before, .nav-close:before, .nav .nav-submenu > a:after, .nav > ul > .nav-submenu > a:after { font-family: "icon-font"; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; text-transform: none; vertical-align: top; } .icon-desktop:before { content: "\E001"; } .icon-menu-close:before { content: "\E002"; } .icon-menu:before { content: "\E003"; } .icon-mobile:before { content: "\E004"; } .icon-submenu-down:before { content: "\E005"; } .icon-submenu-right:before { content: "\E006"; } .icon-world:before { content: "\E007"; } .onBetNav header { display: block; position: fixed; top: 0; left: 0; right: 0; z-index: 901; padding-left: 10px; line-height: 4.4rem; background: #000040; color: #fff; } .onBetNav header h1 { margin: 0; font-size: 1.7rem; line-height: 4.4rem; color:#fff; } /*.onBetNav header h1:before { content: "\E004"; margin-right: 8px; }*/ .onBetNav .nav-button, .onBetNav .nav-close { position: fixed; top: 0; width: 2.4rem; height: 4.4rem; overflow: hidden; z-index: 902; cursor: pointer; text-decoration: none; line-height: 4.4rem; background: #000040; color: #A69A94; } .onBetNav .nav-button:before, .onBetNav .nav-close:before { display: block; text-align: center; } .onBetNav .nav-button { display: block; right: 1rem; font-size: 1.7rem; } .onBetNav .nav-button:before { content: "\E003"; } .onBetNav .nav-close { display: none; right: 4rem; font-size: 1.9rem; } .onBetNav .nav-close:before { content: "\E002"; } .onBetNav .nav { padding-top: 4.4rem; line-height: 4.4rem; background: #000040; color: #A69A94; } .onBetNav .nav ul { border-radius: 0 0 6px 6px; } .onBetNav .nav ul ul { background: #000040; } .onBetNav .nav ul ul ul { background: #000040; } .onBetNav .nav ul ul ul ul { background: #000040; } .onBetNav .nav ul ul ul ul ul { background: #000040; } .onBetNav .nav li { border-top: 1px solid #59544F; cursor: pointer; } .onBetNav .nav li:hover > a, .onBetNav .nav li.nav-active > a { color: #ff3952; } .onBetNav .nav .nav-submenu > ul { margin-left: 20px; } .onBetNav .nav .nav-submenu > a { padding-right: 30px !important; } .onBetNav .nav a, .onBetNav .nav a:hover { border-radius: 6px; padding: 0 3px 1px; text-decoration: none; color: #fff } .onBetNav .nav .nav-submenu > a:after { position: absolute; display: block; right: 10px; top: 1px; content: "\E005"; } @media only screen and (min-width: 960px) { .onBetNav header { position: relative; display: none; } .onBetNav .nav-button { display: none; } .onBetNav .nav { padding: 0 !important; } .onBetNav .nav > ul > li { border-top: none; font-size: 18px; } .onBetNav .nav li > ul { box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); top:80px; } .onBetNav .nav li > ul > li:first-child{ border:none; } .onBetNav .nav li > ul li a{ font-size: 16px; } .onBetNav .nav ul ul ul { border-radius: 0 6px 6px 6px; } .onBetNav .nav ul ul ul li:first-child { border-top: none; } .onBetNav .nav .nav-left > ul { border-radius: 6px 0 6px 6px; } .onBetNav .nav .nav-submenu li { min-width: 120px; padding: 5px; } .onBetNav .nav .nav-submenu > ul { margin: 0; text-align: left; margin-left: 5px; } .onBetNav .nav > ul > .nav-submenu > a:after { content: "\E005"; } .onBetNav .nav .nav-submenu > a:after { content: "\E006"; } }
0.321673
0.048519
*{ margin:0; } p, a{ font-family: 'Work Sans', sans-serif; font-weight: 300; font-size: 1.5em; text-decoration: none; } h1, h2{ font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 4em; text-align: center; } h1{ color: #fef4f3; } h2{ font-size:2.5em; } .page__header{ text-decoration: none; } .navbar__menu{ display: flex; position: fixed; justify-content: space-between; height: 5%; align-items: center; width: 100%; background-color: #8ca0ff; top: 0; padding-top: 10px; padding-bottom: 10px; transition: .5s; overflow: hidden; } .navbar__menu:focus{ background-color:white; } #navbar__list li{ color: #fef4f3; } #navbar__list li:focus{ color: #1a1a1a; } .topLogoContainer{ z-index: 100; border-radius: 20px; text-align: center; font-weight: bold; display: flex; justify-content: center; align-items: center; overflow: hidden; width:3.5em; height: 2em; margin-left: 5px; transition: 1s; } .topLogoContainer:focus, .topLogoContainer:hover{ border-radius: 0px; box-shadow: 1px 3px 10px rgba(0, 0, 0, .2); } .linkLogo{ filter: invert(); transition: .5s; } .linkLogo:focus{ filter: none; } .appButtton{ z-index: 100; } .helloButton{ cursor: pointer; text-decoration: none; display: flex; background-color: #8ca0ff; padding: 6px 15px ; border-radius: 20px; color:#fef4f3; transition: .5s, border-radius .8s; margin-right: 5px; } .helloButton:hover, .helloButton:focus{ opacity: .5; box-shadow: 1px 3px 10px rgba(0, 0, 0, .2); border-radius: 0px; } .helloButton:focus{ color:#1a1a1a; } ul{ padding: 0; list-style-type: none; display: flex; justify-content: space-evenly; align-items: center; width:100%; font-size: 1rem; } .navbarsection{ cursor: pointer; display: block; text-decoration: none; color: black; transition: .5s; } .navbarsection:hover, .navbarsection:focus{ opacity: 0.5; } .navbarsection a { font-size: 10pt; margin: 0px 3px; } .active { border-bottom: 2px solid #1a1a1a; } .logo{ width:60%; margin-top: auto; margin-bottom: auto; max-width: 678px; max-height: 440px; min-width: 270px; object-fit: cover; border-radius: 20px; transition: 1.1s; } .logo:hover, .logo:focus{ border-radius: 0px; box-shadow: 10px 10px 30px rgba(0, 0, 0, .3); } .sec2Inner .logo:hover,.sec2Inner .logo:focus, .sec4Inner .logo:hover,.sec4Inner .logo:focus{ border-radius: 0px; box-shadow: -10px 10px 30px rgba(0, 0, 0, .3); } #mainDiv{ display: flex; } .mainTitle{ display: flex; flex-direction: column; background-color: #8ca0ff; height: 60em; justify-content: center; align-items: center; } #sec1{ background-color: #ffa08c; padding:10%; } .sec1Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } .secContent{ display: flex; flex-wrap: wrap; flex-direction: column; } .secContent p { font-size: .7em; text-align: center; } #sec2{ background-color: #ffa07c; padding:10%; } .sec2Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec3{ background-color: #ffa06c; padding:10%; } .sec3Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec4{ grid-area: sec4; background-color: #ffa05c; padding:10%; } .sec4Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec1Text, #sec2Text, #sec3Text, #sec4Text { font-size: 1em; } .upBtn{ display: flex; flex-direction: row-reverse; background-color: #ffa05c; font-family: 'Work Sans', sans-serif; font-size: 13pt; } #upBtn{ pointer-events: auto; cursor: pointer; background-color: #fef4f3; border: none; padding: 1.5rem 2rem; margin: 3%; font-family: inherit; font-size: inherit; position: relative; display: inline-block; transition: .5s, border-radius 1s; border-radius: 20px; color: #1a1a1a; } #upBtn:hover, #upBtn:focus{ background-color: rgba(254, 244, 243, .5); color: rgba(26, 26, 26, .7); border-radius: 0px; box-shadow: 2px 5px 15px rgba(0, 0, 0, .2); }
css/styles.css
*{ margin:0; } p, a{ font-family: 'Work Sans', sans-serif; font-weight: 300; font-size: 1.5em; text-decoration: none; } h1, h2{ font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 4em; text-align: center; } h1{ color: #fef4f3; } h2{ font-size:2.5em; } .page__header{ text-decoration: none; } .navbar__menu{ display: flex; position: fixed; justify-content: space-between; height: 5%; align-items: center; width: 100%; background-color: #8ca0ff; top: 0; padding-top: 10px; padding-bottom: 10px; transition: .5s; overflow: hidden; } .navbar__menu:focus{ background-color:white; } #navbar__list li{ color: #fef4f3; } #navbar__list li:focus{ color: #1a1a1a; } .topLogoContainer{ z-index: 100; border-radius: 20px; text-align: center; font-weight: bold; display: flex; justify-content: center; align-items: center; overflow: hidden; width:3.5em; height: 2em; margin-left: 5px; transition: 1s; } .topLogoContainer:focus, .topLogoContainer:hover{ border-radius: 0px; box-shadow: 1px 3px 10px rgba(0, 0, 0, .2); } .linkLogo{ filter: invert(); transition: .5s; } .linkLogo:focus{ filter: none; } .appButtton{ z-index: 100; } .helloButton{ cursor: pointer; text-decoration: none; display: flex; background-color: #8ca0ff; padding: 6px 15px ; border-radius: 20px; color:#fef4f3; transition: .5s, border-radius .8s; margin-right: 5px; } .helloButton:hover, .helloButton:focus{ opacity: .5; box-shadow: 1px 3px 10px rgba(0, 0, 0, .2); border-radius: 0px; } .helloButton:focus{ color:#1a1a1a; } ul{ padding: 0; list-style-type: none; display: flex; justify-content: space-evenly; align-items: center; width:100%; font-size: 1rem; } .navbarsection{ cursor: pointer; display: block; text-decoration: none; color: black; transition: .5s; } .navbarsection:hover, .navbarsection:focus{ opacity: 0.5; } .navbarsection a { font-size: 10pt; margin: 0px 3px; } .active { border-bottom: 2px solid #1a1a1a; } .logo{ width:60%; margin-top: auto; margin-bottom: auto; max-width: 678px; max-height: 440px; min-width: 270px; object-fit: cover; border-radius: 20px; transition: 1.1s; } .logo:hover, .logo:focus{ border-radius: 0px; box-shadow: 10px 10px 30px rgba(0, 0, 0, .3); } .sec2Inner .logo:hover,.sec2Inner .logo:focus, .sec4Inner .logo:hover,.sec4Inner .logo:focus{ border-radius: 0px; box-shadow: -10px 10px 30px rgba(0, 0, 0, .3); } #mainDiv{ display: flex; } .mainTitle{ display: flex; flex-direction: column; background-color: #8ca0ff; height: 60em; justify-content: center; align-items: center; } #sec1{ background-color: #ffa08c; padding:10%; } .sec1Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } .secContent{ display: flex; flex-wrap: wrap; flex-direction: column; } .secContent p { font-size: .7em; text-align: center; } #sec2{ background-color: #ffa07c; padding:10%; } .sec2Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec3{ background-color: #ffa06c; padding:10%; } .sec3Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec4{ grid-area: sec4; background-color: #ffa05c; padding:10%; } .sec4Inner{ display: flex; flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-evenly; align-items: center; padding: 10%; padding-top: 15em; padding-bottom: 15em; } #sec1Text, #sec2Text, #sec3Text, #sec4Text { font-size: 1em; } .upBtn{ display: flex; flex-direction: row-reverse; background-color: #ffa05c; font-family: 'Work Sans', sans-serif; font-size: 13pt; } #upBtn{ pointer-events: auto; cursor: pointer; background-color: #fef4f3; border: none; padding: 1.5rem 2rem; margin: 3%; font-family: inherit; font-size: inherit; position: relative; display: inline-block; transition: .5s, border-radius 1s; border-radius: 20px; color: #1a1a1a; } #upBtn:hover, #upBtn:focus{ background-color: rgba(254, 244, 243, .5); color: rgba(26, 26, 26, .7); border-radius: 0px; box-shadow: 2px 5px 15px rgba(0, 0, 0, .2); }
0.40592
0.079068
display: inline-block; position: fixed; right: 10px; top: calc(var(--topBar-height) + 10px); width: 18em; background-color: var(--color-primary-300); border-radius: 10px; padding: 10px 0px; } #statusAreaContainer .dropdown_item { display: flex; flex-flow: column; } #statusAreaContainer .dropdown_item > li { margin-bottom: 10px; } #statusAreaContainer .dropdown_item > li > down_icon { flex: 0 0 auto !important; width: 20px; height: 20px; display: flex; transform: rotate(-90deg); transition: transform 0.2s ease-in-out; } #statusAreaContainer .dropdown_item.open li down_icon { transform: rotate(0deg); } #statusAreaContainer .dropdown_item.open > dropdown { max-height: 100vh; } #statusAreaContainer .dropdown_item > dropdown { height: auto; background: var(--color-primary-400); overflow: hidden; display: flex; flex-flow: column nowrap; transition: max-height 0.2s ease-in-out; max-height: 0px; } #statusAreaContainer .dropdown_item > dropdown > li { padding-left: 3.3em; margin: 0px; } #statusAreaContainer .dropdown_item > dropdown > hr { background: var(--color-primary-200); } #statusAreaContainer li { display: flex; margin: 5px 0px; width: auto; padding: 5px 20px; background-color: transparent; justify-content: center; align-content: center; color: var(--color-text-light); font-size: 14px; text-align: left; border-radius: 0px; } #statusAreaContainer li:hover { background: var(--color-primary-200); } #statusAreaContainer li:active { background: var(--color-accent-800); } #statusAreaContainer li > * { flex: 1 1 auto; height: 20px; margin: auto; } #statusAreaContainer li *:first-child { flex: 0 1 auto; width: 16px; margin-right: 10px; } #statusAreaContainer li *:last-child { text-overflow: ellipsis; flex: 1 1 auto; } #statusAreaContainer li * { flex: 1 1 auto; height: 20px; margin: auto; } #statusAreaContainer input[type="range"] { -webkit-appearance: none; appearance: none; display: inline-block; height: 5px; background: #575757; outline: none; opacity: 0.7; transition: opacity 0.3s; } #statusAreaContainer input[type="range"]:hover { opacity: 1; } #statusAreaContainer input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; background: azure; border-radius: 50%; height: 15px; cursor: pointer; } #statusAreaContainer input[type="range"]::-moz-range-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #c5c5c5; cursor: pointer; }
dist/css/X/system_popups/status_area.css
display: inline-block; position: fixed; right: 10px; top: calc(var(--topBar-height) + 10px); width: 18em; background-color: var(--color-primary-300); border-radius: 10px; padding: 10px 0px; } #statusAreaContainer .dropdown_item { display: flex; flex-flow: column; } #statusAreaContainer .dropdown_item > li { margin-bottom: 10px; } #statusAreaContainer .dropdown_item > li > down_icon { flex: 0 0 auto !important; width: 20px; height: 20px; display: flex; transform: rotate(-90deg); transition: transform 0.2s ease-in-out; } #statusAreaContainer .dropdown_item.open li down_icon { transform: rotate(0deg); } #statusAreaContainer .dropdown_item.open > dropdown { max-height: 100vh; } #statusAreaContainer .dropdown_item > dropdown { height: auto; background: var(--color-primary-400); overflow: hidden; display: flex; flex-flow: column nowrap; transition: max-height 0.2s ease-in-out; max-height: 0px; } #statusAreaContainer .dropdown_item > dropdown > li { padding-left: 3.3em; margin: 0px; } #statusAreaContainer .dropdown_item > dropdown > hr { background: var(--color-primary-200); } #statusAreaContainer li { display: flex; margin: 5px 0px; width: auto; padding: 5px 20px; background-color: transparent; justify-content: center; align-content: center; color: var(--color-text-light); font-size: 14px; text-align: left; border-radius: 0px; } #statusAreaContainer li:hover { background: var(--color-primary-200); } #statusAreaContainer li:active { background: var(--color-accent-800); } #statusAreaContainer li > * { flex: 1 1 auto; height: 20px; margin: auto; } #statusAreaContainer li *:first-child { flex: 0 1 auto; width: 16px; margin-right: 10px; } #statusAreaContainer li *:last-child { text-overflow: ellipsis; flex: 1 1 auto; } #statusAreaContainer li * { flex: 1 1 auto; height: 20px; margin: auto; } #statusAreaContainer input[type="range"] { -webkit-appearance: none; appearance: none; display: inline-block; height: 5px; background: #575757; outline: none; opacity: 0.7; transition: opacity 0.3s; } #statusAreaContainer input[type="range"]:hover { opacity: 1; } #statusAreaContainer input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; background: azure; border-radius: 50%; height: 15px; cursor: pointer; } #statusAreaContainer input[type="range"]::-moz-range-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #c5c5c5; cursor: pointer; }
0.305283
0.064124
.ddsmoothmenu{ width: 100%; } .ddsmoothmenu ul li ul a{ font-size:12px !important; } .ddsmoothmenu ul{ z-index:100; margin: 0; padding: 0; list-style-type: none; } /*Top level list items*/ .ddsmoothmenu ul li{ position: relative; display: inline; float: left; background:url(/templates/images/sep2.gif) no-repeat right; padding-right:2px; } /*Top level menu link items style*/ .ddsmoothmenu ul li a{ display: block; color: black; padding: 8px 10px 9px 10px; text-decoration: none; margin-top:3px; } * html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/ display: inline-block; } .ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{ color: black; } .ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/ background: white; /*background of menu items during onmouseover (hover state)*/ color: #8d8b8b; } .ddsmoothmenu ul li a:hover{ background: white; /*background of menu items during onmouseover (hover state)*/ color: #8d8b8b; } /*1st sub level menu*/ .ddsmoothmenu ul li ul{ position: absolute; left: 0; display: none; /*collapse all sub menus to begin with*/ visibility: hidden; background-color:#FFF; border:#ebebeb solid 1px; border-top:none; border-left:none; padding:2px 0px; font-size:12px; } /*Sub level menu list items (undo style from Top level List Items)*/ .ddsmoothmenu ul li ul li{ display: list-item; float: left; background-image:none !important; padding-right:0px !important; border-bottom: 1px solid #dce0e1; } /*All subsequent sub menu levels vertical offset after 1st level sub menu */ .ddsmoothmenu ul li ul li ul{ border-top:#FFF solid 1px; padding-top:3px !important; margin-top:-2px !important; } /* Sub level menu links style */ .ddsmoothmenu ul li ul li a{ width: 160px; /*width of sub menus*/ padding: 5px; margin: 0; border-top-width: 0; color: #8d8b8b !important; margin-left:2px; } .ddsmoothmenu ul li ul li a.last{ border-bottom: none; } .ddsmoothmenu ul li ul li a:hover{ background-color:#f6f8f7; } /* Holly Hack for IE \*/ * html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/ /* ######### CSS classes applied to down and right arrow images ######### */ .downarrowclass{ position: absolute; top: 15px; right: 7px; } .rightarrowclass{ position: absolute; top: 6px; right: 5px; } /* ######### CSS for shadow added to sub menus ######### */ .ddshadow{ position: absolute; left: 0; top: 0; width: 0; height: 0; display:none; } .toplevelshadow{ /*shadow opacity. Doesn't work in IE*/ }
public/templates/css/ddsmoothmenu.css
.ddsmoothmenu{ width: 100%; } .ddsmoothmenu ul li ul a{ font-size:12px !important; } .ddsmoothmenu ul{ z-index:100; margin: 0; padding: 0; list-style-type: none; } /*Top level list items*/ .ddsmoothmenu ul li{ position: relative; display: inline; float: left; background:url(/templates/images/sep2.gif) no-repeat right; padding-right:2px; } /*Top level menu link items style*/ .ddsmoothmenu ul li a{ display: block; color: black; padding: 8px 10px 9px 10px; text-decoration: none; margin-top:3px; } * html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/ display: inline-block; } .ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{ color: black; } .ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/ background: white; /*background of menu items during onmouseover (hover state)*/ color: #8d8b8b; } .ddsmoothmenu ul li a:hover{ background: white; /*background of menu items during onmouseover (hover state)*/ color: #8d8b8b; } /*1st sub level menu*/ .ddsmoothmenu ul li ul{ position: absolute; left: 0; display: none; /*collapse all sub menus to begin with*/ visibility: hidden; background-color:#FFF; border:#ebebeb solid 1px; border-top:none; border-left:none; padding:2px 0px; font-size:12px; } /*Sub level menu list items (undo style from Top level List Items)*/ .ddsmoothmenu ul li ul li{ display: list-item; float: left; background-image:none !important; padding-right:0px !important; border-bottom: 1px solid #dce0e1; } /*All subsequent sub menu levels vertical offset after 1st level sub menu */ .ddsmoothmenu ul li ul li ul{ border-top:#FFF solid 1px; padding-top:3px !important; margin-top:-2px !important; } /* Sub level menu links style */ .ddsmoothmenu ul li ul li a{ width: 160px; /*width of sub menus*/ padding: 5px; margin: 0; border-top-width: 0; color: #8d8b8b !important; margin-left:2px; } .ddsmoothmenu ul li ul li a.last{ border-bottom: none; } .ddsmoothmenu ul li ul li a:hover{ background-color:#f6f8f7; } /* Holly Hack for IE \*/ * html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/ /* ######### CSS classes applied to down and right arrow images ######### */ .downarrowclass{ position: absolute; top: 15px; right: 7px; } .rightarrowclass{ position: absolute; top: 6px; right: 5px; } /* ######### CSS for shadow added to sub menus ######### */ .ddshadow{ position: absolute; left: 0; top: 0; width: 0; height: 0; display:none; } .toplevelshadow{ /*shadow opacity. Doesn't work in IE*/ }
0.292899
0.071884
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html { height: 100%; font-size: 100%; overflow: hidden; } body { font-family: "Open Sans"; color: black; height: 100%; min-height: 100%; background: #fdffff; /* Old browsers */ background: -moz-linear-gradient(top, #fdffff 1%, #e6f8fd 20%, #e6f8fd 54%, #b1d8f5 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #fdffff 1%,#e6f8fd 20%,#e6f8fd 54%,#b1d8f5 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #fdffff 1%,#e6f8fd 20%,#e6f8fd 54%,#b1d8f5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ } .container { width: 1024px; margin: 0 auto; min-width: 360px; } .rooms-bar { width: 32%; height: 80vh; margin: 1rem 2rem 1rem 0; background-color: aliceblue; float: left; border: 3px solid black; border-radius: 10px; } .message-area { background-color: floralwhite; width: 66.1%; height: 80vh; margin: 1rem 0 1rem 0; float: none; border: 3px solid black; border-radius: 10px; min-height: 50%; display: inline-block; position: relative; } .message { margin: 1rem; border-bottom: 1px solid darkgrey; background-color: cornsilk; border-radius: 10px; padding: 0.5rem 1rem; } .message .content { font-size: 2rem; //line-height: 1.5rem; padding: 0.5rem 0; } .message .time-sent { float: right; font-weight: lighter; font-size: 1.3rem; } .message .username { font-weight: bold; font-size: 1.3rem; padding-bottom: 0.5rem; } .container > .title { background-color: lightsalmon; margin: 1rem 0 0 0; font-size: 3.5rem; font-weight: bold; border: 3px solid black; border-radius: 10px; padding: 1.5rem 0; } .title { text-align: center; color: black; } h2 { font-size: 1.3rem; padding-bottom: 1.5rem; } .new-room-button { font-size: 1.5rem; color: darkblue; border-radius: 10px; background-color: floralwhite; margin-left: 1rem; position: relative; bottom: 0.35rem; } .rooms { margin-left: 3rem; margin-top: .5rem; } .room { font-size: 2.5rem; text-align: left; color: darkblue; margin: 1.5rem 0; } .room:hover { cursor: pointer; color: red; } .rooms-bar > .title { border-bottom: 1px solid #666; } .message-area > .title { border-bottom: 1px solid #666; } .message-input-area { width: 100%; font-size: 2rem; position: absolute; bottom: 0; margin-bottom: 1rem; } .current-time { margin-left: 1.5rem; font-size: 1.5rem; } .message-input { width: 85%; display: inline-block; background-color: bisque; margin-left: 1.5rem; border-radius: 10px; } .send-button { display: inline-block; width: auto; background-color: tan; color: black; border-radius: 10px; margin-left: 1rem; } .clearfix:after, .clearfix:before { content: " "; display: table; } .clearfix:before { clear: both; }
app/styles/main.css
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html { height: 100%; font-size: 100%; overflow: hidden; } body { font-family: "Open Sans"; color: black; height: 100%; min-height: 100%; background: #fdffff; /* Old browsers */ background: -moz-linear-gradient(top, #fdffff 1%, #e6f8fd 20%, #e6f8fd 54%, #b1d8f5 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #fdffff 1%,#e6f8fd 20%,#e6f8fd 54%,#b1d8f5 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #fdffff 1%,#e6f8fd 20%,#e6f8fd 54%,#b1d8f5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ } .container { width: 1024px; margin: 0 auto; min-width: 360px; } .rooms-bar { width: 32%; height: 80vh; margin: 1rem 2rem 1rem 0; background-color: aliceblue; float: left; border: 3px solid black; border-radius: 10px; } .message-area { background-color: floralwhite; width: 66.1%; height: 80vh; margin: 1rem 0 1rem 0; float: none; border: 3px solid black; border-radius: 10px; min-height: 50%; display: inline-block; position: relative; } .message { margin: 1rem; border-bottom: 1px solid darkgrey; background-color: cornsilk; border-radius: 10px; padding: 0.5rem 1rem; } .message .content { font-size: 2rem; //line-height: 1.5rem; padding: 0.5rem 0; } .message .time-sent { float: right; font-weight: lighter; font-size: 1.3rem; } .message .username { font-weight: bold; font-size: 1.3rem; padding-bottom: 0.5rem; } .container > .title { background-color: lightsalmon; margin: 1rem 0 0 0; font-size: 3.5rem; font-weight: bold; border: 3px solid black; border-radius: 10px; padding: 1.5rem 0; } .title { text-align: center; color: black; } h2 { font-size: 1.3rem; padding-bottom: 1.5rem; } .new-room-button { font-size: 1.5rem; color: darkblue; border-radius: 10px; background-color: floralwhite; margin-left: 1rem; position: relative; bottom: 0.35rem; } .rooms { margin-left: 3rem; margin-top: .5rem; } .room { font-size: 2.5rem; text-align: left; color: darkblue; margin: 1.5rem 0; } .room:hover { cursor: pointer; color: red; } .rooms-bar > .title { border-bottom: 1px solid #666; } .message-area > .title { border-bottom: 1px solid #666; } .message-input-area { width: 100%; font-size: 2rem; position: absolute; bottom: 0; margin-bottom: 1rem; } .current-time { margin-left: 1.5rem; font-size: 1.5rem; } .message-input { width: 85%; display: inline-block; background-color: bisque; margin-left: 1.5rem; border-radius: 10px; } .send-button { display: inline-block; width: auto; background-color: tan; color: black; border-radius: 10px; margin-left: 1rem; } .clearfix:after, .clearfix:before { content: " "; display: table; } .clearfix:before { clear: both; }
0.4917
0.093554
:root{ --light-grey-color:lightgrey; --black-color:black; --white-color:white; --dark-gray-color:darkgray; --azure-color:azure; --whitesmoke-color:whitesmoke; --alice-blue-color:aliceblue; --skyblue-color:skyblue; } .container{ width: 100%; background-color: var(--white-color); margin: .9rem; } #header{ width: 100%; display: flex; justify-content: space-around; background-color:var(--black-color); color: white; border-radius: .4rem; } .btn{ width: 5rem; padding-right: 6rem; text-align: center; } .search{ border-radius: .4rem; margin: 1rem; height: 3rem; background-color: var(--dark-gray-color); color: var(--azure-color) ; } .imp{ position:relative; display: flex; align-items: center; text-align: center; justify-content: space-between; width: 30%; } .badge{ position: absolute; padding: .2rem .3rem .2rem .3rem; top: 0; margin-top: .5rem; margin-left: -.5rem; border-radius: 50%; background-color: var(--skyblue-color); } input{ height: 4rem; width: 12rem; align-self: center; border-radius: 1rem; } button{ margin-top: .3rem; height: 4rem; } .categories{ display: flex; } .sub-cateogaries{ background-color: rgba(155, 198, 241, 0.279); display: flex; flex-direction: row; justify-content: space-between; padding: 5px; } img{ height: 25rem; } .center-text{ text-align: center; font-size: 3rem; } .wish{ position: relative; } .add-wish{ position: absolute; margin-right: .3rem; top: 0; right: 0; padding: .5rem; background-color: blue; border-radius: 50%; } .clothing{ margin-top: 3rem; margin-bottom: 5rem; display: flex; width: 93%; flex-wrap: wrap; overflow: auto; gap: 1rem; padding: 3rem; background-color: var(--light-grey-color); } .data{ text-align: center; background-color: var(--black-color); color: var(--white-color); scrollbar-width: none; } @media only screen and (max-width: 820px) { html{ font-size: 8px; width: 100%; } }
wishlist page/wishlist.css
:root{ --light-grey-color:lightgrey; --black-color:black; --white-color:white; --dark-gray-color:darkgray; --azure-color:azure; --whitesmoke-color:whitesmoke; --alice-blue-color:aliceblue; --skyblue-color:skyblue; } .container{ width: 100%; background-color: var(--white-color); margin: .9rem; } #header{ width: 100%; display: flex; justify-content: space-around; background-color:var(--black-color); color: white; border-radius: .4rem; } .btn{ width: 5rem; padding-right: 6rem; text-align: center; } .search{ border-radius: .4rem; margin: 1rem; height: 3rem; background-color: var(--dark-gray-color); color: var(--azure-color) ; } .imp{ position:relative; display: flex; align-items: center; text-align: center; justify-content: space-between; width: 30%; } .badge{ position: absolute; padding: .2rem .3rem .2rem .3rem; top: 0; margin-top: .5rem; margin-left: -.5rem; border-radius: 50%; background-color: var(--skyblue-color); } input{ height: 4rem; width: 12rem; align-self: center; border-radius: 1rem; } button{ margin-top: .3rem; height: 4rem; } .categories{ display: flex; } .sub-cateogaries{ background-color: rgba(155, 198, 241, 0.279); display: flex; flex-direction: row; justify-content: space-between; padding: 5px; } img{ height: 25rem; } .center-text{ text-align: center; font-size: 3rem; } .wish{ position: relative; } .add-wish{ position: absolute; margin-right: .3rem; top: 0; right: 0; padding: .5rem; background-color: blue; border-radius: 50%; } .clothing{ margin-top: 3rem; margin-bottom: 5rem; display: flex; width: 93%; flex-wrap: wrap; overflow: auto; gap: 1rem; padding: 3rem; background-color: var(--light-grey-color); } .data{ text-align: center; background-color: var(--black-color); color: var(--white-color); scrollbar-width: none; } @media only screen and (max-width: 820px) { html{ font-size: 8px; width: 100%; } }
0.812272
0.14627
@charset "utf-8"; /* * FileName : dwzq-common.css * Desc : 多玩专区专用公共样式表 * Author : MaxLee * LastChange : 2012-10-18T11:07:05 */ /* 重置 */ :root{overflow-y:scroll;} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;} fieldset,img{border:0 none;} :focus{outline:0;} address,caption,cite,code,dfn,em,i,th,var,optgroup{font-style:normal;font-weight:normal;} h1,h2,h3,h4,h5,h6,code,kbd,samp,tt{font-size:100%;} abbr,acronym{border:0;font-variant:normal;} input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;} textarea{*overflow:auto;} input,button,textarea,select{*font-size:100%;} button{cursor:pointer;overflow:visible;} input[type="reset"],input[type="button"],input[type="submit"]{cursor:pointer;overflow:visible;} ol,ul{list-style:none outside none;} table{border-collapse:collapse;border-spacing:0;} caption,th{text-align:left;} sup,sub{font-size:100%;vertical-align:baseline;} :link,:visited,ins{text-decoration:none;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} *+html img{-ms-interpolation-mode:bicubic;} body{-webkit-text-size-adjust:none;} /* 公共 */ .clearfix:before,.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;} .clearfix:after{clear:both;} .clearfix{zoom:1;} .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;} .fr{display:inline;float:right!important;} .fl{display:inline;float:left!important;} .show{display:block;} .hide{display:none;} .visible{overflow:visible!important;} .highlight{color:#F30!important;} .important{font-weight:bold!important;} .center{text-align:center!important;} .left{text-align:left!important;} .right{text-align:right!important;} .J_box{overflow:hidden;} p.indent{text-indent:2em;} .ml10{margin-left:10px;} .mr10{margin-right:10px;} .mb10{margin-bottom:10px;} .blank5, .blank8, .blank10{clear:both;overflow:hidden;} .blank5{height:5px;} .blank8{height:8px;} .blank10{height:0px;} button,input.button{cursor:pointer;overflow:visible;*vertical-align:middle;*line-height:normal;*padding:2px;_padding:2px 3px 0;*font-family:\5b8b\4f53;} @media screen and (-webkit-min-device-pixel-ratio:0){button,input[type="reset"],input[type="button"],input[type="submit"]{padding:2px 4px 3px;}} /* 布局 */ .layout{overflow:hidden;width:980px;padding:0 10px;margin:auto;} .g-2-1{overflow:hidden;float:left;width:650px;} .g-2-2{overflow:hidden;float:right;width:320px;} .g-3-1{overflow:hidden;float:left;display:inline;width:650px;margin-left:150px;} .g-3-2{overflow:hidden;float:right;width:170px;} .g-3-3{overflow:hidden;float:left;display:inline;width:140px;margin-left:-800px;} .g-c5{width:140px;} .g-c6{width:170px;} .g-c7{width:200px;} .g-c8{width:230px;} .g-c9{width:260px;} .g-c10{width:290px;} .g-c11{width:320px;} .g-c12{width:350px;} .g-c13{width:380px;} .g-c14{width:410px;} .g-c15{width:440px;} .g-c16{width:470px;} .g-c17{width:500px;} .g-c18{width:530px;} .g-c19{width:560px;} .g-c20{width:590px;} .g-c21{width:620px;} .g-c22{width:650px;} .g-c23{width:680px;} .g-c24{width:710px;} .g-c25{width:740px;} .g-c26{width:770px;} .g-c27{width:800px;} .g-c28{width:830px;} .g-c33{width:980px;}
css/dwzq-common.css
@charset "utf-8"; /* * FileName : dwzq-common.css * Desc : 多玩专区专用公共样式表 * Author : MaxLee * LastChange : 2012-10-18T11:07:05 */ /* 重置 */ :root{overflow-y:scroll;} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;} fieldset,img{border:0 none;} :focus{outline:0;} address,caption,cite,code,dfn,em,i,th,var,optgroup{font-style:normal;font-weight:normal;} h1,h2,h3,h4,h5,h6,code,kbd,samp,tt{font-size:100%;} abbr,acronym{border:0;font-variant:normal;} input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;} textarea{*overflow:auto;} input,button,textarea,select{*font-size:100%;} button{cursor:pointer;overflow:visible;} input[type="reset"],input[type="button"],input[type="submit"]{cursor:pointer;overflow:visible;} ol,ul{list-style:none outside none;} table{border-collapse:collapse;border-spacing:0;} caption,th{text-align:left;} sup,sub{font-size:100%;vertical-align:baseline;} :link,:visited,ins{text-decoration:none;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} *+html img{-ms-interpolation-mode:bicubic;} body{-webkit-text-size-adjust:none;} /* 公共 */ .clearfix:before,.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;} .clearfix:after{clear:both;} .clearfix{zoom:1;} .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;} .fr{display:inline;float:right!important;} .fl{display:inline;float:left!important;} .show{display:block;} .hide{display:none;} .visible{overflow:visible!important;} .highlight{color:#F30!important;} .important{font-weight:bold!important;} .center{text-align:center!important;} .left{text-align:left!important;} .right{text-align:right!important;} .J_box{overflow:hidden;} p.indent{text-indent:2em;} .ml10{margin-left:10px;} .mr10{margin-right:10px;} .mb10{margin-bottom:10px;} .blank5, .blank8, .blank10{clear:both;overflow:hidden;} .blank5{height:5px;} .blank8{height:8px;} .blank10{height:0px;} button,input.button{cursor:pointer;overflow:visible;*vertical-align:middle;*line-height:normal;*padding:2px;_padding:2px 3px 0;*font-family:\5b8b\4f53;} @media screen and (-webkit-min-device-pixel-ratio:0){button,input[type="reset"],input[type="button"],input[type="submit"]{padding:2px 4px 3px;}} /* 布局 */ .layout{overflow:hidden;width:980px;padding:0 10px;margin:auto;} .g-2-1{overflow:hidden;float:left;width:650px;} .g-2-2{overflow:hidden;float:right;width:320px;} .g-3-1{overflow:hidden;float:left;display:inline;width:650px;margin-left:150px;} .g-3-2{overflow:hidden;float:right;width:170px;} .g-3-3{overflow:hidden;float:left;display:inline;width:140px;margin-left:-800px;} .g-c5{width:140px;} .g-c6{width:170px;} .g-c7{width:200px;} .g-c8{width:230px;} .g-c9{width:260px;} .g-c10{width:290px;} .g-c11{width:320px;} .g-c12{width:350px;} .g-c13{width:380px;} .g-c14{width:410px;} .g-c15{width:440px;} .g-c16{width:470px;} .g-c17{width:500px;} .g-c18{width:530px;} .g-c19{width:560px;} .g-c20{width:590px;} .g-c21{width:620px;} .g-c22{width:650px;} .g-c23{width:680px;} .g-c24{width:710px;} .g-c25{width:740px;} .g-c26{width:770px;} .g-c27{width:800px;} .g-c28{width:830px;} .g-c33{width:980px;}
0.166981
0.051415
.App { text-align: center; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Header */ header { display: flex; align-items: center; justify-content: space-between; height: 10vh; } nav { display: block; margin-left: 2em; } nav a { text-decoration: none; } main { height: 100vh; } .form-container { display: flex; flex-direction: column; align-items: center; margin: 0 auto; padding: 2em; border: 1px solid #ffa500; border-radius: 2px; font-size: 20px; } .form-container { width: 50%; } .form-container input, .form-container textarea { width: 300px; margin-bottom: 20px; border: 1px solid #8e8e8e; border-radius: 3px; font-size: 14px; padding: 5px; } .form-container input { height: 20px; } .form-container textarea { height: 60px; } .form-container button { width: 100px; padding: 1em; background-color: #ffa50099; border: none; border-radius: 4px; } .forum-container { display: flex; flex-direction: column; align-items: center; width: 80%; padding: 2em; margin: 0 auto; } .forum-container > p { width: 100%; text-align: center; } .post-container { border: 1px solid #ffa50099; border-radius: 4px; max-width: 200px; min-width: 300px; margin-bottom: 20px; } .reaction { display: flex; justify-content: center } .reaction p { margin-right: 5px; cursor: pointer; padding: 10px } /* 404 paage*/ .not-found { background: url('https://http.cat/404') no-repeat center center fixed; background-size: cover; height: 100vh; overflow: hidden; }
src/App.css
.App { text-align: center; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Header */ header { display: flex; align-items: center; justify-content: space-between; height: 10vh; } nav { display: block; margin-left: 2em; } nav a { text-decoration: none; } main { height: 100vh; } .form-container { display: flex; flex-direction: column; align-items: center; margin: 0 auto; padding: 2em; border: 1px solid #ffa500; border-radius: 2px; font-size: 20px; } .form-container { width: 50%; } .form-container input, .form-container textarea { width: 300px; margin-bottom: 20px; border: 1px solid #8e8e8e; border-radius: 3px; font-size: 14px; padding: 5px; } .form-container input { height: 20px; } .form-container textarea { height: 60px; } .form-container button { width: 100px; padding: 1em; background-color: #ffa50099; border: none; border-radius: 4px; } .forum-container { display: flex; flex-direction: column; align-items: center; width: 80%; padding: 2em; margin: 0 auto; } .forum-container > p { width: 100%; text-align: center; } .post-container { border: 1px solid #ffa50099; border-radius: 4px; max-width: 200px; min-width: 300px; margin-bottom: 20px; } .reaction { display: flex; justify-content: center } .reaction p { margin-right: 5px; cursor: pointer; padding: 10px } /* 404 paage*/ .not-found { background: url('https://http.cat/404') no-repeat center center fixed; background-size: cover; height: 100vh; overflow: hidden; }
0.59972
0.112649
body {margin:0;padding:0;} .table th { border-top:0px; border:0px; } .match-table td { padding: 0px; border-top:0px; border:0px; } .table tbody tr:hover th { background-color: #627AAD; } .table tbody tr:hover tr { border-radius: 10px 10px; } .btn-primary { color: white; } .msg { width: 50%; margin: 0px auto; margin-top:10px; margin-bottom:10px; } .alert.nb { margin-top: 15px; margin-bottom: 0px; } #content {} .jumbotron{background-color:#EFEFEF;padding:20px;} .dimmer {position:fixed;top:0;left:0;width:100%;height:100%;background-color:#F8F8F8;opacity:0.8;} .popover {position:absolute;margin-bottom:40px;padding:12px;width:600px;min-height:200px;background-color:white;} .pane { padding:10px; } .pane.top { position:relative; clear:both; padding:10px; margin-bottom:0px; font-size:12pt; border-bottom:2px solid #BBB; } .pane.left {position:relative; float:left;width:300px;height:100%;border-right:2px solid #BBB; overflow:auto;} .pane.right {padding:0px;margin-top:0px;overflow:auto;} .data-nav { margin-right:10px; } .textFilter-hidden {display:none;} .sourceFilter-hidden {display:none;} .sourceList {margin:50px auto;width:650px;} .sourceList table {width:100%;border-collapse:collapse;} .sourceList td {padding:4px;} .sourceList-nav {height:40px;font-size:12pt;color:white;background-color:#606060;} .sourceList-nav span {padding:4px;cursor:pointer;} .sourceList-nav span:hover {color:black;background-color:white;} .sourceList-nav input {padding:2px 8px;float:right;color:#444444;border:1px solid #ABABAB;border-radius:12px;} .sourceList-header {color:white;background-color:#606060;} .sourceList-header td {text-align:center;} .sourceList-sources {height:400px;overflow:auto} .sourceList-sources .alt {background-color:#EDEDED;} .sourceList td.id {width:40px;} .sourceList td.name {width:200px;} .sourceList td.rows {width:120px;} .sourceList td.cols {width:120px;} .sourceList td.vals {width:120px;} .source-meta table {margin:0;width:100%;border-collapse:collapse;} .source-meta tr.alt {background-color:white;} .source-meta th {padding:4px;text-align:left;} .source-meta td {padding:4px;} .title {padding:0;width:268px;} .controls {margin-right:20px;} .pane .header,.header-left,.header-right,.header-rounded {padding:4px;height:22px;text-align:center;font-weight:bold;color:#FFFFFF;background-color:#627AAD;border-bottom:1px solid #EFEFEF;} .pane .header-left { padding:4px; text-align:center; border-top-left-radius: 10px 10px; border-bottom-left-radius: 10px 10px; } .pane .header-right { padding:4px; text-align:center; border-top-right-radius: 10px 10px; border-bottom-right-radius: 10px 10px; } .pane .header-rounded { border-radius: 10px 10px; text-align:center; } .mapper { width:100%; margin:0px; // background-color:#EFEFEF; border-collapse:collapse; } .help-top { margin-bottom:0px; padding:15px; } .help-top .nix-help-button { margin: 0px auto; width: 100px; padding:15px; } .help-top .help-close { text-align:center; } .help-inner { position: relative; background-color: #FFF; width:75%; margin: 0px auto; border:2px solid #BBB; border-radius:10px; text-align: center; } .help-inner .main-copy { text-align: left; margin: 0 auto; margin-top: 10px; width: 75%; } /* .help-inner .fixed-bottom { */ /* width:100%; */ /* margin:0px; */ /* position:absolute; */ /* bottom:0; */ /* } */ .help-inner .fixed-bottom p { margin-bottom:20px; text-align:center; } .instructions li { padding:10px; } .mapper tr.alt {} .mapper td {text-align:center;} .mapper td.help {display:none; padding: 5px;padding-left:30px; background:#f5f5f5; text-align:left;} .mapper .attr {width:100px;} .mapper td.match {width:100px;} .mapper td.match .choice { } .score-color { margin:auto; padding:0px; border-radius:4px; width:30px; height:30px; background-color: #627AAD; } .choice.mapping {font-weight:bold;color:black;border-left:2em solid #627AAD;} .choice.new-mapping {font-weight:bold;color:#444444;} .choice.new-antimapping {text-decoration:line-through;} .mapper .map-list-container {display:none;width:240px;border:2px solid #BBBBBB;background-color:white} .mapper .map-list-container.open {display:block;position:absolute;} .mapper .map-list-container .filter {padding:2px;} .mapper .map-list-container .filter input {padding:2px;color:#606060;border-radius:4px;} .mapper ul.map-list {margin:0;padding:0;max-height:217px;overflow-x:hidden;overflow-y:scroll;} .mapper ul.map-list li.candidate {padding:4px;padding-top:10px;overflow:auto;cursor:pointer;list-style:none;border-left:2em solid #627AAD;border-bottom:1px solid white;} .mapper ul.map-list li.candidate:hover {background-color:#D6F6F6;} .mapper .suggest {padding:10px;cursor:pointer;border-left:2em solid #C0C0C0;} .mapper .suggest:hover {background-color:#D6F6F6;} .mapper .actions {width:130px;} .mapper .status {width:70px;} .match-strength {width:70px;} .control {padding:8px 16px;font-style:normal;cursor:pointer;} .disabled.button {background-color:#DDDDDD;} .disabled.button:hover {cursor:auto;color:white;} .mapped td.match {} .unmapped .accept {} .unmapped .reject {} .unmapped .reset {display:none;} .unmapped .detail {} .mapped .dropdown {display:none;} .mapped .accept {display:none;} .mapped .reject {display:none;} .mapped .reset {} .mapped .detail {} .antimapped .dropdown {display:none;} .antimapped .accept {display:none;} .antimapped .reject {display:none;} .antimapped .reset {} .antimapped .detail {} .floatcontrol {position:fixed;bottom:0;left:0;width:100%;} .floatcontrol > div {margin:0 auto;width:600px;} .link-here {font-weight:bold;text-decoration:none;color:black;} .spreadsheetish {margin:0;padding:0;border-top:1px solid #808080;border-left:1px solid #808080;border-collapse:collapse;overflow:auto;} .spreadsheetish td {margin:0;padding:4px;border-right:1px solid #B0B0B0;border-bottom:1px solid #B0B0B0;} .spreadsheetish .header {font-weight:bold;} .spreadsheetish .highlight {background-color:#D0D0FF;} .histo-medium {width:200px;height:200px;} .histo-squat {width:250px;height:160px;} .histo-line {stroke:steelblue;stroke-width:2;fill:none;} .histo-axis {stroke:black;stroke-width:1;fill:none;} .histo-label {stroke:none;fill:black;} .viewTable {margin:0;padding:0;} .viewTable table {border-collapse:collapse;overflow:auto;} .viewTable td {padding:4px;border:1px solid #ABABAB;} .viewTable .row-label {text-align:center;font-weight:bold;} .viewTable .col-label {padding:8px;text-align:center;font-weight:bold;} .viewTable .blankCell {} .viewTable .data {min-width:108px;background-color:white;} .suggest-new-attribute-form span {font-weight:bold;} .suggest-new-attribute-form label {padding-right:1em;} .suggest-new-attribute-form div {margin:8px;} .suggest-new-attribute-form textarea {width:100%;min-height:100px;} .suggest-new-attribute-form input[type="text"] {width:300px;padding:2px;} .dirty {font-style: italic;} .committed {font-weight: bold;}
www/static/styles/expertsrc-panel.css
body {margin:0;padding:0;} .table th { border-top:0px; border:0px; } .match-table td { padding: 0px; border-top:0px; border:0px; } .table tbody tr:hover th { background-color: #627AAD; } .table tbody tr:hover tr { border-radius: 10px 10px; } .btn-primary { color: white; } .msg { width: 50%; margin: 0px auto; margin-top:10px; margin-bottom:10px; } .alert.nb { margin-top: 15px; margin-bottom: 0px; } #content {} .jumbotron{background-color:#EFEFEF;padding:20px;} .dimmer {position:fixed;top:0;left:0;width:100%;height:100%;background-color:#F8F8F8;opacity:0.8;} .popover {position:absolute;margin-bottom:40px;padding:12px;width:600px;min-height:200px;background-color:white;} .pane { padding:10px; } .pane.top { position:relative; clear:both; padding:10px; margin-bottom:0px; font-size:12pt; border-bottom:2px solid #BBB; } .pane.left {position:relative; float:left;width:300px;height:100%;border-right:2px solid #BBB; overflow:auto;} .pane.right {padding:0px;margin-top:0px;overflow:auto;} .data-nav { margin-right:10px; } .textFilter-hidden {display:none;} .sourceFilter-hidden {display:none;} .sourceList {margin:50px auto;width:650px;} .sourceList table {width:100%;border-collapse:collapse;} .sourceList td {padding:4px;} .sourceList-nav {height:40px;font-size:12pt;color:white;background-color:#606060;} .sourceList-nav span {padding:4px;cursor:pointer;} .sourceList-nav span:hover {color:black;background-color:white;} .sourceList-nav input {padding:2px 8px;float:right;color:#444444;border:1px solid #ABABAB;border-radius:12px;} .sourceList-header {color:white;background-color:#606060;} .sourceList-header td {text-align:center;} .sourceList-sources {height:400px;overflow:auto} .sourceList-sources .alt {background-color:#EDEDED;} .sourceList td.id {width:40px;} .sourceList td.name {width:200px;} .sourceList td.rows {width:120px;} .sourceList td.cols {width:120px;} .sourceList td.vals {width:120px;} .source-meta table {margin:0;width:100%;border-collapse:collapse;} .source-meta tr.alt {background-color:white;} .source-meta th {padding:4px;text-align:left;} .source-meta td {padding:4px;} .title {padding:0;width:268px;} .controls {margin-right:20px;} .pane .header,.header-left,.header-right,.header-rounded {padding:4px;height:22px;text-align:center;font-weight:bold;color:#FFFFFF;background-color:#627AAD;border-bottom:1px solid #EFEFEF;} .pane .header-left { padding:4px; text-align:center; border-top-left-radius: 10px 10px; border-bottom-left-radius: 10px 10px; } .pane .header-right { padding:4px; text-align:center; border-top-right-radius: 10px 10px; border-bottom-right-radius: 10px 10px; } .pane .header-rounded { border-radius: 10px 10px; text-align:center; } .mapper { width:100%; margin:0px; // background-color:#EFEFEF; border-collapse:collapse; } .help-top { margin-bottom:0px; padding:15px; } .help-top .nix-help-button { margin: 0px auto; width: 100px; padding:15px; } .help-top .help-close { text-align:center; } .help-inner { position: relative; background-color: #FFF; width:75%; margin: 0px auto; border:2px solid #BBB; border-radius:10px; text-align: center; } .help-inner .main-copy { text-align: left; margin: 0 auto; margin-top: 10px; width: 75%; } /* .help-inner .fixed-bottom { */ /* width:100%; */ /* margin:0px; */ /* position:absolute; */ /* bottom:0; */ /* } */ .help-inner .fixed-bottom p { margin-bottom:20px; text-align:center; } .instructions li { padding:10px; } .mapper tr.alt {} .mapper td {text-align:center;} .mapper td.help {display:none; padding: 5px;padding-left:30px; background:#f5f5f5; text-align:left;} .mapper .attr {width:100px;} .mapper td.match {width:100px;} .mapper td.match .choice { } .score-color { margin:auto; padding:0px; border-radius:4px; width:30px; height:30px; background-color: #627AAD; } .choice.mapping {font-weight:bold;color:black;border-left:2em solid #627AAD;} .choice.new-mapping {font-weight:bold;color:#444444;} .choice.new-antimapping {text-decoration:line-through;} .mapper .map-list-container {display:none;width:240px;border:2px solid #BBBBBB;background-color:white} .mapper .map-list-container.open {display:block;position:absolute;} .mapper .map-list-container .filter {padding:2px;} .mapper .map-list-container .filter input {padding:2px;color:#606060;border-radius:4px;} .mapper ul.map-list {margin:0;padding:0;max-height:217px;overflow-x:hidden;overflow-y:scroll;} .mapper ul.map-list li.candidate {padding:4px;padding-top:10px;overflow:auto;cursor:pointer;list-style:none;border-left:2em solid #627AAD;border-bottom:1px solid white;} .mapper ul.map-list li.candidate:hover {background-color:#D6F6F6;} .mapper .suggest {padding:10px;cursor:pointer;border-left:2em solid #C0C0C0;} .mapper .suggest:hover {background-color:#D6F6F6;} .mapper .actions {width:130px;} .mapper .status {width:70px;} .match-strength {width:70px;} .control {padding:8px 16px;font-style:normal;cursor:pointer;} .disabled.button {background-color:#DDDDDD;} .disabled.button:hover {cursor:auto;color:white;} .mapped td.match {} .unmapped .accept {} .unmapped .reject {} .unmapped .reset {display:none;} .unmapped .detail {} .mapped .dropdown {display:none;} .mapped .accept {display:none;} .mapped .reject {display:none;} .mapped .reset {} .mapped .detail {} .antimapped .dropdown {display:none;} .antimapped .accept {display:none;} .antimapped .reject {display:none;} .antimapped .reset {} .antimapped .detail {} .floatcontrol {position:fixed;bottom:0;left:0;width:100%;} .floatcontrol > div {margin:0 auto;width:600px;} .link-here {font-weight:bold;text-decoration:none;color:black;} .spreadsheetish {margin:0;padding:0;border-top:1px solid #808080;border-left:1px solid #808080;border-collapse:collapse;overflow:auto;} .spreadsheetish td {margin:0;padding:4px;border-right:1px solid #B0B0B0;border-bottom:1px solid #B0B0B0;} .spreadsheetish .header {font-weight:bold;} .spreadsheetish .highlight {background-color:#D0D0FF;} .histo-medium {width:200px;height:200px;} .histo-squat {width:250px;height:160px;} .histo-line {stroke:steelblue;stroke-width:2;fill:none;} .histo-axis {stroke:black;stroke-width:1;fill:none;} .histo-label {stroke:none;fill:black;} .viewTable {margin:0;padding:0;} .viewTable table {border-collapse:collapse;overflow:auto;} .viewTable td {padding:4px;border:1px solid #ABABAB;} .viewTable .row-label {text-align:center;font-weight:bold;} .viewTable .col-label {padding:8px;text-align:center;font-weight:bold;} .viewTable .blankCell {} .viewTable .data {min-width:108px;background-color:white;} .suggest-new-attribute-form span {font-weight:bold;} .suggest-new-attribute-form label {padding-right:1em;} .suggest-new-attribute-form div {margin:8px;} .suggest-new-attribute-form textarea {width:100%;min-height:100px;} .suggest-new-attribute-form input[type="text"] {width:300px;padding:2px;} .dirty {font-style: italic;} .committed {font-weight: bold;}
0.293607
0.091099
.form-wrapper input[type=text] { width: 130px; -webkit-transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out; } /* When the input field gets focus, change its width to 100% */ .form-wrapper input[type=text]:focus { width: 100%; } .form-wrapper { background-color: #f6f6f6; background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eae8e8)); background-image: linear-gradient(top, #f6f6f6, #eae8e8); border-color: #dedede #bababa #aaa #bababa; border-style: solid; border-width: 1px; border-radius: 10px; -webkit-box-shadow: 0 3px 3px rgba(255, 255, 255, 0.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444; box-shadow: 0 3px 3px rgba(255, 255, 255, 0.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444; margin: 100px auto; overflow: hidden; padding: 8px; width: 450px; } .form-wrapper #search-box { border: 1px solid #CCC; -webkit-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF; box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF; border-radius: 3px; color: #2e2e2e; float: left; font: 16px Lucida Sans, Trebuchet MS, Tahoma, sans-serif; height: 42px; padding: 10px; width: 320px; } .form-wrapper #search-box:focus { border-color: #aaa; -webkit-box-shadow: 0 1px 1px #bbb inset; box-shadow: 0 1px 1px #bbb inset; outline: 0; } .form-wrapper #search-box:-moz-placeholder, .form-wrapper #search-box:-ms-input-placeholder, .form-wrapper #search-box::-webkit-input-placeholder { color: #999; font-weight: normal; } .form-wrapper #submit { background-color: #0483a0; background-image: -webkit-gradient(linear, left top, left bottom, from(#31b2c3), to(#0483a0)); background-image: linear-gradient(top, #31b2c3, #0483a0); border: 1px solid #00748f; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF; color: #fafafa; cursor: pointer; height: 42px; float: right; font: 15px Arial, Helvetica; padding: 0; text-transform: uppercase; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); width: 100px; } .form-wrapper #submit:hover, .form-wrapper #submit:focus { background-color: #31b2c3; background-image: -webkit-gradient(linear, left top, left bottom, from(#0483a0), to(#31b2c3)); background-image: linear-gradient(top, #0483a0, #31b2c3); } .form-wrapper #submit:active { -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; outline: 0; } .form-wrapper #submit::-moz-focus-inner { border: 0; } /** * Reset some basic elements */ body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure { margin: 0; padding: 0; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 15px; } /** * Images */ img { max-width: 100%; vertical-align: middle; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 17.5px; } /** * Lists */ ul, ol { margin-left: 30px; } li > ul, li > ol { margin-bottom: 0; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 300; } /** * Links */ a { color: #0366d6; text-decoration: none; } a:visited { color: #1756a9; } a:hover { color: #157fef; text-decoration: none; } /** * Blockquotes */ blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 15px; font-size: 20px; letter-spacing: -1px; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 18px; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #eef; } code { padding: 1px 5px; } pre { padding: 8px 12px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } /** * Wrapper */ .wrapper { max-width: calc(1600px - (30px * 2)); margin-right: auto; margin-left: auto; padding-right: 30px; padding-left: 30px; } @media screen and (max-width: 800px) { .wrapper { max-width: calc(1200px - (30px)); padding-right: 15px; padding-left: 15px; } } /** * Clearfix */ .wrapper:after, .footer-col-wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; width: 16px; height: 16px; vertical-align: middle; } .icon > svg path { fill: #828282; } b, strong { font-weight: bold; } * { -webkit-box-sizing: border-box; box-sizing: border-box; } .border { border: 1px solid #e8e8e8; } /** * Jumbotron */ .jumbotron { background: url(/images/services-codelines.svg), #fafbfc; background-position: center 10%; background-size: cover; padding: 10px; color: #648cdb; font-weight: bold; font-size: 22px; margin: 10px; text-align: center; vertical-align: middle; } /** * Site header */ .py-3 { padding-top: 3px !important; padding-bottom: 3px !important; } .site-header { border-top: 1px solid #e8e8e8; background-color: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #e8e8e8; height: 80px; z-index: 9999; position: relative; width: 100%; } .mx-auto { margin-right: auto !important; margin-left: auto !important; } .flex-items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .flex-justify-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .site-nav-container { display: -webkit-box; display: -ms-flexbox; display: flex; width: auto; max-width: 1012px; } .width-full { width: 100% !important; } .site-header { z-index: 9999; font-size: 16px; background-clip: padding-box; position: fixed; top: 0; left: 0; } .clearfix::before { display: table; content: ""; } .clearfix::after { display: table; clear: both; content: ""; } .site-title { font-size: 20px; line-height: 60px; letter-spacing: -1px; margin-bottom: 0; float: left; } .site-title, .site-title:visited { margin: 5px; margin-left: 10px; } .site-nav { float: left; line-height: 60px; } .site-nav .menu-icon { display: none; } .site-nav .page-link { color: #111; line-height: 1.5; } .site-nav .page-link:not(:first-child) { margin-left: 20px; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 30px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg { width: 18px; height: 15px; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav .trigger { clear: both; display: none; } .site-nav:hover .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; } } /** * Site footer */ .site-footer { border-top: 1px solid #e8e8e8; padding: 30px 0; } .footer-heading { font-size: 18px; margin-bottom: 15px; } .contact-list, .social-media-list { list-style: none; margin-left: 0; } .footer-col-wrapper { font-size: 15px; color: #828282; margin-left: -15px; } .footer-col { float: left; margin-bottom: 15px; padding-left: 15px; } .footer-col-1 { width: calc(35% - (30px / 2)); } .footer-col-2 { width: calc(20% - (30px / 2)); } .footer-col-3 { width: calc(45% - (30px / 2)); } @media screen and (max-width: 800px) { .footer-col-1, .footer-col-2 { width: calc(50% - (30px / 2)); } .footer-col-3 { width: calc(100% - (30px / 2)); } } @media screen and (max-width: 600px) { .footer-col { float: none; width: calc(100% - (30px / 2)); } } /** * Page content */ .page-content { padding: 30px 0; margin-top: 60px; } .page-heading { font-size: 20px; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 30px; } .post-meta { font-size: 17.5px; color: #828282; } .post-link { display: block; font-size: 24px; } /** * Posts */ .post-header { margin-bottom: 30px; } .post-title { font-size: 42px; letter-spacing: -1px; line-height: 1; } @media screen and (max-width: 800px) { .post-title { font-size: 36px; } } .post-content { margin-bottom: 30px; } .post-content h2 { font-size: 32px; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 26px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 20px; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } .header-link { color: #d2d2d2; font-size: 18px; margin-left: 5px; position: relative; opacity: 0.01; \-webkit-transition: opacity 0.2s ease-in-out 0.1s; \-moz-transition: opacity 0.2s ease-in-out 0.1s; \-ms-transition: opacity 0.2s ease-in-out 0.1s; } h1:hover .header-link, h2:hover .header-link, h3:hover .header-link, h4:hover .header-link, h5:hover .header-link, h6:hover .header-link { opacity: 1; } /* HTML5 */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } header h2 { margin: 25px 10px; font-size: 28px; text-align: center; color: cornsilk; } .container { margin: 0px auto; display: table; max-width: calc(1600px - (30px * 2)); width: 100%; } .container:after, .container:before { content: ""; clear: both; } nav.menu { background: #3678bd; position: relative; min-height: 45px; height: 100%; width: 100%; } .menu > ul > li { list-style: none; display: inline-block; color: #fff; line-height: 45px; } .menu > ul li a, .xs-menu li a { text-decoration: none; color: #fff; display: block; padding: 0px 24px; } .menu > ul li a:hover { background: #444; color: #fff; transition-duration: 0.3s; -moz-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; } .displaynone { display: none; } .xs-menu-cont { display: none; } .xs-menu-cont > a { background: none repeat scroll 0 0 #ff7f50; border-radius: 3px; padding: 3px 6px; display: block; border-bottom: 1px solid #E67248; box-shadow: 0 1px 2px #e67248; -webkit-box-shadow: 0 1px 2px #e67248; -moz-box-shadow: 0 1px 2px #e67248; } .xs-menu-cont > a:hover { cursor: pointer; } .xs-menu li { color: #fff; padding: 14px 30px; border-bottom: 1px solid #ccc; background: #FF7F50; } .xs-menu a { text-decoration: none; } .mega-menu { background: none repeat scroll 0 0 #68778a; left: 0; margin-top: -3px; position: absolute; width: 100%; padding: 15px; display: none; -webkit-transition-duration: 0.9s; transition-duration: 0.9s; } #menutoggle i { color: #fff; font-size: 33px; margin: 0; padding: 0; } /*--column--*/ .mm-6column:after, .mm-6column:before, .mm-3column:after, .mm-3column:before { content: ""; display: table; clear: both; } .mm-6column, .mm-3column { float: left; position: relative; } .mm-6column { width: 50%; } .mm-3column { width: 25%; } .responsive-img { display: block; max-width: 100%; } .left-images { margin-right: 25px; } .left-images, .left-categories-list { float: left; } .categories-list li { display: block; line-height: normal; margin: 0; padding: 5px 0; } .categories-list li :hover { background: inherit !important; } .left-images > p { background: none repeat scroll 0 0 #ff7f50; display: block; font-size: 18px; line-height: normal; margin: 0; padding: 5px 14px; } .categories-list span { font-size: 18px; padding-bottom: 5px; text-transform: uppercase; } .mm-view-more { background: none repeat scroll 0 0 #ff7f50; color: #1756a9; display: inline !important; line-height: normal; padding: 5px 8px !important; margin-top: 10px; } .display-on { display: block; -webkit-transition-duration: 0.9s; transition-duration: 0.9s; } .drop-down > a:after { content: "\f103"; color: #fff; font-family: FontAwesome; font-style: normal; margin-left: 5px; } /*MediaQuerys*/ @media (max-width: 600px) { .menu { display: none; } .xs-menu li a { padding: 0px; } .xs-menu-cont { display: block; } } /*Animation--*/ .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; } /** * Basic styling */ body { font-family: Helvetica, Arial, sans-serif; font-size: 20px; line-height: 1.5; font-weight: 300; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; }
blog/_includes/inline/inline.css
.form-wrapper input[type=text] { width: 130px; -webkit-transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out; } /* When the input field gets focus, change its width to 100% */ .form-wrapper input[type=text]:focus { width: 100%; } .form-wrapper { background-color: #f6f6f6; background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eae8e8)); background-image: linear-gradient(top, #f6f6f6, #eae8e8); border-color: #dedede #bababa #aaa #bababa; border-style: solid; border-width: 1px; border-radius: 10px; -webkit-box-shadow: 0 3px 3px rgba(255, 255, 255, 0.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444; box-shadow: 0 3px 3px rgba(255, 255, 255, 0.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444; margin: 100px auto; overflow: hidden; padding: 8px; width: 450px; } .form-wrapper #search-box { border: 1px solid #CCC; -webkit-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF; box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF; border-radius: 3px; color: #2e2e2e; float: left; font: 16px Lucida Sans, Trebuchet MS, Tahoma, sans-serif; height: 42px; padding: 10px; width: 320px; } .form-wrapper #search-box:focus { border-color: #aaa; -webkit-box-shadow: 0 1px 1px #bbb inset; box-shadow: 0 1px 1px #bbb inset; outline: 0; } .form-wrapper #search-box:-moz-placeholder, .form-wrapper #search-box:-ms-input-placeholder, .form-wrapper #search-box::-webkit-input-placeholder { color: #999; font-weight: normal; } .form-wrapper #submit { background-color: #0483a0; background-image: -webkit-gradient(linear, left top, left bottom, from(#31b2c3), to(#0483a0)); background-image: linear-gradient(top, #31b2c3, #0483a0); border: 1px solid #00748f; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF; color: #fafafa; cursor: pointer; height: 42px; float: right; font: 15px Arial, Helvetica; padding: 0; text-transform: uppercase; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); width: 100px; } .form-wrapper #submit:hover, .form-wrapper #submit:focus { background-color: #31b2c3; background-image: -webkit-gradient(linear, left top, left bottom, from(#0483a0), to(#31b2c3)); background-image: linear-gradient(top, #0483a0, #31b2c3); } .form-wrapper #submit:active { -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; outline: 0; } .form-wrapper #submit::-moz-focus-inner { border: 0; } /** * Reset some basic elements */ body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure { margin: 0; padding: 0; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 15px; } /** * Images */ img { max-width: 100%; vertical-align: middle; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 17.5px; } /** * Lists */ ul, ol { margin-left: 30px; } li > ul, li > ol { margin-bottom: 0; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 300; } /** * Links */ a { color: #0366d6; text-decoration: none; } a:visited { color: #1756a9; } a:hover { color: #157fef; text-decoration: none; } /** * Blockquotes */ blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 15px; font-size: 20px; letter-spacing: -1px; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 18px; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #eef; } code { padding: 1px 5px; } pre { padding: 8px 12px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } /** * Wrapper */ .wrapper { max-width: calc(1600px - (30px * 2)); margin-right: auto; margin-left: auto; padding-right: 30px; padding-left: 30px; } @media screen and (max-width: 800px) { .wrapper { max-width: calc(1200px - (30px)); padding-right: 15px; padding-left: 15px; } } /** * Clearfix */ .wrapper:after, .footer-col-wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; width: 16px; height: 16px; vertical-align: middle; } .icon > svg path { fill: #828282; } b, strong { font-weight: bold; } * { -webkit-box-sizing: border-box; box-sizing: border-box; } .border { border: 1px solid #e8e8e8; } /** * Jumbotron */ .jumbotron { background: url(/images/services-codelines.svg), #fafbfc; background-position: center 10%; background-size: cover; padding: 10px; color: #648cdb; font-weight: bold; font-size: 22px; margin: 10px; text-align: center; vertical-align: middle; } /** * Site header */ .py-3 { padding-top: 3px !important; padding-bottom: 3px !important; } .site-header { border-top: 1px solid #e8e8e8; background-color: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #e8e8e8; height: 80px; z-index: 9999; position: relative; width: 100%; } .mx-auto { margin-right: auto !important; margin-left: auto !important; } .flex-items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .flex-justify-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .site-nav-container { display: -webkit-box; display: -ms-flexbox; display: flex; width: auto; max-width: 1012px; } .width-full { width: 100% !important; } .site-header { z-index: 9999; font-size: 16px; background-clip: padding-box; position: fixed; top: 0; left: 0; } .clearfix::before { display: table; content: ""; } .clearfix::after { display: table; clear: both; content: ""; } .site-title { font-size: 20px; line-height: 60px; letter-spacing: -1px; margin-bottom: 0; float: left; } .site-title, .site-title:visited { margin: 5px; margin-left: 10px; } .site-nav { float: left; line-height: 60px; } .site-nav .menu-icon { display: none; } .site-nav .page-link { color: #111; line-height: 1.5; } .site-nav .page-link:not(:first-child) { margin-left: 20px; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 30px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg { width: 18px; height: 15px; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav .trigger { clear: both; display: none; } .site-nav:hover .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; } } /** * Site footer */ .site-footer { border-top: 1px solid #e8e8e8; padding: 30px 0; } .footer-heading { font-size: 18px; margin-bottom: 15px; } .contact-list, .social-media-list { list-style: none; margin-left: 0; } .footer-col-wrapper { font-size: 15px; color: #828282; margin-left: -15px; } .footer-col { float: left; margin-bottom: 15px; padding-left: 15px; } .footer-col-1 { width: calc(35% - (30px / 2)); } .footer-col-2 { width: calc(20% - (30px / 2)); } .footer-col-3 { width: calc(45% - (30px / 2)); } @media screen and (max-width: 800px) { .footer-col-1, .footer-col-2 { width: calc(50% - (30px / 2)); } .footer-col-3 { width: calc(100% - (30px / 2)); } } @media screen and (max-width: 600px) { .footer-col { float: none; width: calc(100% - (30px / 2)); } } /** * Page content */ .page-content { padding: 30px 0; margin-top: 60px; } .page-heading { font-size: 20px; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 30px; } .post-meta { font-size: 17.5px; color: #828282; } .post-link { display: block; font-size: 24px; } /** * Posts */ .post-header { margin-bottom: 30px; } .post-title { font-size: 42px; letter-spacing: -1px; line-height: 1; } @media screen and (max-width: 800px) { .post-title { font-size: 36px; } } .post-content { margin-bottom: 30px; } .post-content h2 { font-size: 32px; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 26px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 20px; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } .header-link { color: #d2d2d2; font-size: 18px; margin-left: 5px; position: relative; opacity: 0.01; \-webkit-transition: opacity 0.2s ease-in-out 0.1s; \-moz-transition: opacity 0.2s ease-in-out 0.1s; \-ms-transition: opacity 0.2s ease-in-out 0.1s; } h1:hover .header-link, h2:hover .header-link, h3:hover .header-link, h4:hover .header-link, h5:hover .header-link, h6:hover .header-link { opacity: 1; } /* HTML5 */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } header h2 { margin: 25px 10px; font-size: 28px; text-align: center; color: cornsilk; } .container { margin: 0px auto; display: table; max-width: calc(1600px - (30px * 2)); width: 100%; } .container:after, .container:before { content: ""; clear: both; } nav.menu { background: #3678bd; position: relative; min-height: 45px; height: 100%; width: 100%; } .menu > ul > li { list-style: none; display: inline-block; color: #fff; line-height: 45px; } .menu > ul li a, .xs-menu li a { text-decoration: none; color: #fff; display: block; padding: 0px 24px; } .menu > ul li a:hover { background: #444; color: #fff; transition-duration: 0.3s; -moz-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; } .displaynone { display: none; } .xs-menu-cont { display: none; } .xs-menu-cont > a { background: none repeat scroll 0 0 #ff7f50; border-radius: 3px; padding: 3px 6px; display: block; border-bottom: 1px solid #E67248; box-shadow: 0 1px 2px #e67248; -webkit-box-shadow: 0 1px 2px #e67248; -moz-box-shadow: 0 1px 2px #e67248; } .xs-menu-cont > a:hover { cursor: pointer; } .xs-menu li { color: #fff; padding: 14px 30px; border-bottom: 1px solid #ccc; background: #FF7F50; } .xs-menu a { text-decoration: none; } .mega-menu { background: none repeat scroll 0 0 #68778a; left: 0; margin-top: -3px; position: absolute; width: 100%; padding: 15px; display: none; -webkit-transition-duration: 0.9s; transition-duration: 0.9s; } #menutoggle i { color: #fff; font-size: 33px; margin: 0; padding: 0; } /*--column--*/ .mm-6column:after, .mm-6column:before, .mm-3column:after, .mm-3column:before { content: ""; display: table; clear: both; } .mm-6column, .mm-3column { float: left; position: relative; } .mm-6column { width: 50%; } .mm-3column { width: 25%; } .responsive-img { display: block; max-width: 100%; } .left-images { margin-right: 25px; } .left-images, .left-categories-list { float: left; } .categories-list li { display: block; line-height: normal; margin: 0; padding: 5px 0; } .categories-list li :hover { background: inherit !important; } .left-images > p { background: none repeat scroll 0 0 #ff7f50; display: block; font-size: 18px; line-height: normal; margin: 0; padding: 5px 14px; } .categories-list span { font-size: 18px; padding-bottom: 5px; text-transform: uppercase; } .mm-view-more { background: none repeat scroll 0 0 #ff7f50; color: #1756a9; display: inline !important; line-height: normal; padding: 5px 8px !important; margin-top: 10px; } .display-on { display: block; -webkit-transition-duration: 0.9s; transition-duration: 0.9s; } .drop-down > a:after { content: "\f103"; color: #fff; font-family: FontAwesome; font-style: normal; margin-left: 5px; } /*MediaQuerys*/ @media (max-width: 600px) { .menu { display: none; } .xs-menu li a { padding: 0px; } .xs-menu-cont { display: block; } } /*Animation--*/ .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; } /** * Basic styling */ body { font-family: Helvetica, Arial, sans-serif; font-size: 20px; line-height: 1.5; font-weight: 300; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; }
0.40157
0.113285
body,html{height:100%;-webkit-tap-highlight-color:transparent} .page { position:absolute; top:50px; right:0; bottom:0; left:0; overflow-y:auto; -webkit-overflow-scrolling:touch; background-color:#FBF9FE } .hd {padding:2em 0} .spacing {padding:0 15px} .weui_label {width: 5em;} .page_title { color:#225FBA; text-align:center; font-size:34px; color:#3CC51F; font-weight:400; margin:0 15% } .button_sp_area { padding:10px 0; width:60%; margin:0 auto; text-align:justify; text-justify:distribute-all-lines; font-size:0 } .button_sp_area:after{ display:inline-block; width:100%; height:0; font-size:0; margin:0; padding:0; overflow:hidden; content:"." } .icon_sp_area {padding:10px 20px;text-align:left} .bk_nav { width: 100%; height: 50px; background-color: #393A3F; position: fixed; top: 0; } .bk_nav img { width: 50px; height: 50px; } .bk_nav_menu { float: right; } .bk_nav p { position: absolute; top: 0; left: 50px; right: 50px; height: 50px; line-height: 50px; text-align: center; font-size: 1.2em; color: #fff; } .bk_title { font-size: 18px; color: #000; } .bk_summary { font-size: 16px; color: #888; } .bk_time { font-size: 14px; color: #eee; } .bk_important { font-size: 16px; color: #3CC51F; } .bk_preview { width: 120px; height: 90px; } #global_menu { width: 50px; height: 50px; border-radius: 50%; background-color: #CD4A4A; opacity:0.8; position: absolute; bottom: 25px; right: 25px; } #global_menu div { width: 40px; height: 40px; border-radius: 50%; background-color: #FF2D2D; margin: 5px; } .bk_toptips {display: none; position: absolute; bottom: 50px; text-align: center; width: 100%; } .bk_toptips span {background: #444444; color: #ffffff; padding: 5px 10px; border-radius: 5px; opacity: 0.9;} .bk_bottom_tips {display: block; padding: 20px 0; width: 100%; text-align: center;}
public/css/book.css
body,html{height:100%;-webkit-tap-highlight-color:transparent} .page { position:absolute; top:50px; right:0; bottom:0; left:0; overflow-y:auto; -webkit-overflow-scrolling:touch; background-color:#FBF9FE } .hd {padding:2em 0} .spacing {padding:0 15px} .weui_label {width: 5em;} .page_title { color:#225FBA; text-align:center; font-size:34px; color:#3CC51F; font-weight:400; margin:0 15% } .button_sp_area { padding:10px 0; width:60%; margin:0 auto; text-align:justify; text-justify:distribute-all-lines; font-size:0 } .button_sp_area:after{ display:inline-block; width:100%; height:0; font-size:0; margin:0; padding:0; overflow:hidden; content:"." } .icon_sp_area {padding:10px 20px;text-align:left} .bk_nav { width: 100%; height: 50px; background-color: #393A3F; position: fixed; top: 0; } .bk_nav img { width: 50px; height: 50px; } .bk_nav_menu { float: right; } .bk_nav p { position: absolute; top: 0; left: 50px; right: 50px; height: 50px; line-height: 50px; text-align: center; font-size: 1.2em; color: #fff; } .bk_title { font-size: 18px; color: #000; } .bk_summary { font-size: 16px; color: #888; } .bk_time { font-size: 14px; color: #eee; } .bk_important { font-size: 16px; color: #3CC51F; } .bk_preview { width: 120px; height: 90px; } #global_menu { width: 50px; height: 50px; border-radius: 50%; background-color: #CD4A4A; opacity:0.8; position: absolute; bottom: 25px; right: 25px; } #global_menu div { width: 40px; height: 40px; border-radius: 50%; background-color: #FF2D2D; margin: 5px; } .bk_toptips {display: none; position: absolute; bottom: 50px; text-align: center; width: 100%; } .bk_toptips span {background: #444444; color: #ffffff; padding: 5px 10px; border-radius: 5px; opacity: 0.9;} .bk_bottom_tips {display: block; padding: 20px 0; width: 100%; text-align: center;}
0.410638
0.075109
@font-face { font-family: "Gibson"; font-weight: 100; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-style: italic; font-weight: 100; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 400; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 400; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 700; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 700; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 900; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 900; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.ttf") format("truetype"); }
tests/dummy/app/styles/_fonts/_gibson.css
@font-face { font-family: "Gibson"; font-weight: 100; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_7_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-style: italic; font-weight: 100; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_0_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 400; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_4_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 400; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_6_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 700; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_5_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 700; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_2_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 900; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.ttf") format("truetype"); } @font-face { font-family: "Gibson"; font-weight: 900; font-style: italic; src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.eot"); src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.eot?#iefix") format("embedded-opentype"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.woff2") format("woff2"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.woff") format("woff"), url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_1_0.ttf") format("truetype"); }
0.344664
0.096408
.bw-def-page-setup{height: 100%; width: 94%; margin: 0 auto; padding-left: 2%; padding-right:2%; left: 0; top: 1%;} .bw-font-serif{font-family: Times New Roman, Times, serif;} .bw-font-sans-serif{font-family: Arial, Helvetica, sans-serif } .bw-h1{ font-size: 2.312rem;} .bw-h2{ font-size: 1.965rem;} .bw-h3{ font-size: 1.67rem;} .bw-h4{ font-size: 1.419rem;} .bw-h5{ font-size: 1.206rem;} .bw-h6{ font-size: 1.025rem;} .bw-left { text-align: left; } .bw-right { text-align: right; } .bw-center { text-align: center; margin: 0 auto; } .bw-justify { text-align: justify; } .bw-code { font-family:monospace; white-space:pre-wrap; } .bw-pad1 { padding-left: 1%; padding-right: 1%; } .bw-table-stripe tr:nth-child(even){ background-color: #f0f0f0} .bw-table-col0-bold tr td:first-child { font-weight: 700;} .bw-table-compact { border-collapse: collapse; border-spacing: 0;} .bw-table-sort-upa::after { content: "\2191"; } .bw-table-sort-dna::after { content: "\2193"; } .bw-table-sort-xxa::after { content: "\00a0"; } .bw-tab-item-list { padding:0;} .bw-tab { padding-top:1%; padding-left: 1%; padding-right: 1%; padding-bottom: 20px; margin-bottom: 2%; display:inline; position:relative; border-top-right-radius: 7px; border-top-left-radius: 7px;} .bw-tab-active { background-color : #eee; font-weight:700;} .bw-tab:hover { cursor: pointer; font-weight: 700;/* font-weight: 700; border: 1px solid #bbb; */} .bw-tab-content { background-color : #eee; display: none; } .bw-tab-content, .bw-tab-active {background-color: #ddd} .bw-container { margin: 0 auto; } .bw-row { width: 100%; display: block; } .bw-row [class^="bw-col"] { float: left;} .bw-col-1 {width:8.333%; } .bw-col-2 {width:16.666%; } .bw-col-3 {width:25%; } .bw-col-4 {width:33.333%; } .bw-col-5 {width:41.666%; } .bw-col-6 {width:50%; } .bw-col-7 {width:58.333%; } .bw-col-8 {width:66.666%; } .bw-col-9 {width:75%; } .bw-col-10 {width:83.333%; } .bw-col-11 {width:91.666%; } .bw-col-12 {width:100%; } .bw-row::after { content: ""; display: table; clear: both;} .bw-box-1 {padding-top: 10px; padding-bottom: 10px; border-radius: 8px;} .bw-hide { display: none;} .bw-show { display: block;} @media only screen and (min-width: 540px) { .bw-container { width: 94%; }} @media only screen and (min-width: 720px) { .bw-container { width: 90%; }} @media only screen and (min-width: 960px) { .bw-container { width: 86%; }}
web/bitwrench.css
.bw-def-page-setup{height: 100%; width: 94%; margin: 0 auto; padding-left: 2%; padding-right:2%; left: 0; top: 1%;} .bw-font-serif{font-family: Times New Roman, Times, serif;} .bw-font-sans-serif{font-family: Arial, Helvetica, sans-serif } .bw-h1{ font-size: 2.312rem;} .bw-h2{ font-size: 1.965rem;} .bw-h3{ font-size: 1.67rem;} .bw-h4{ font-size: 1.419rem;} .bw-h5{ font-size: 1.206rem;} .bw-h6{ font-size: 1.025rem;} .bw-left { text-align: left; } .bw-right { text-align: right; } .bw-center { text-align: center; margin: 0 auto; } .bw-justify { text-align: justify; } .bw-code { font-family:monospace; white-space:pre-wrap; } .bw-pad1 { padding-left: 1%; padding-right: 1%; } .bw-table-stripe tr:nth-child(even){ background-color: #f0f0f0} .bw-table-col0-bold tr td:first-child { font-weight: 700;} .bw-table-compact { border-collapse: collapse; border-spacing: 0;} .bw-table-sort-upa::after { content: "\2191"; } .bw-table-sort-dna::after { content: "\2193"; } .bw-table-sort-xxa::after { content: "\00a0"; } .bw-tab-item-list { padding:0;} .bw-tab { padding-top:1%; padding-left: 1%; padding-right: 1%; padding-bottom: 20px; margin-bottom: 2%; display:inline; position:relative; border-top-right-radius: 7px; border-top-left-radius: 7px;} .bw-tab-active { background-color : #eee; font-weight:700;} .bw-tab:hover { cursor: pointer; font-weight: 700;/* font-weight: 700; border: 1px solid #bbb; */} .bw-tab-content { background-color : #eee; display: none; } .bw-tab-content, .bw-tab-active {background-color: #ddd} .bw-container { margin: 0 auto; } .bw-row { width: 100%; display: block; } .bw-row [class^="bw-col"] { float: left;} .bw-col-1 {width:8.333%; } .bw-col-2 {width:16.666%; } .bw-col-3 {width:25%; } .bw-col-4 {width:33.333%; } .bw-col-5 {width:41.666%; } .bw-col-6 {width:50%; } .bw-col-7 {width:58.333%; } .bw-col-8 {width:66.666%; } .bw-col-9 {width:75%; } .bw-col-10 {width:83.333%; } .bw-col-11 {width:91.666%; } .bw-col-12 {width:100%; } .bw-row::after { content: ""; display: table; clear: both;} .bw-box-1 {padding-top: 10px; padding-bottom: 10px; border-radius: 8px;} .bw-hide { display: none;} .bw-show { display: block;} @media only screen and (min-width: 540px) { .bw-container { width: 94%; }} @media only screen and (min-width: 720px) { .bw-container { width: 90%; }} @media only screen and (min-width: 960px) { .bw-container { width: 86%; }}
0.390011
0.180395
body { font-size: 14px; font-family: open sans, sans-serif; color: #1B2C49; line-height: 1.5; background-color: #F4F4F4; overflow-anchor: none; } body.blocked { position: relative; overflow: hidden; } .overflow-hidden { position: relative; overflow: hidden; } .container { width: 100%; max-width: 100%; padding: 0 15px; } .container.container--no-paddings { padding: 0; } .sidebar-container { display: flex; flex-direction: column; } .sidebar-container__sidebar{ margin-top: 30px; } .content { border-radius: 3px; margin-bottom: 10px; background-color: #fff; } .content:last-child { margin-bottom: 0; } .content.content--bg-transparent { background-color: transparent; } .content.content--shadow { box-shadow: 0 1px 5px rgba(0,0,0,.15); } .content.content--paddings { padding: 15px 10px; } input.placeholder-grey::placeholder { color: #444; } input, textarea { display: flex; justify-content: flex-start; align-items: center; min-height: 44px; border-radius: 3px; border: 1px solid #CBCED5; font-size: 16px; padding: 10px; max-width: 100%; width: 100%; transition: border-color .25s, box-shadow .25s; } input:focus, textarea:focus { outline: none; border-color: #418CCF; font-size: 16px; /*box-shadow: 0 0 1px 1px #00BEE7;*/ } textarea { min-height: 130px; border: 1px solid #CBCED5; border-radius: 3px; padding: 10px; resize: vertical; } input::placeholder { color: #abb0b9 } input.input--gray { border-color: #CBCED5; } .has-error input, .has-error textarea { border-color: #FB4E4E; } input.has-error, textarea.has-error{ border-color: #FB4E4E; } .has-error .help-block{ color: #FB4E4E; display: inline-block; font-size: 12px; } ol { margin: 0; padding: 0 0 0 20px; } ul { margin: 0; padding: 0; list-style-type: none; } /*colors*/ .error { color: #FB4E4E; } .warning { color: #FFD058; } .success { color: #2AC769; } .positive { color: #2AC769; } .negative { color: #FB4E4E; } .color--subtext { color: #7B818C; } .gray{ color: #ABB0B9; } /*colors end*/ .none{ display: none; } /*backgrounds*/ .bg-white { background-color: #fff; } .bg-gray { background: #F4F4F4; } .bg-blue { background-color: #418ccf; } .bg-error { background-color: #FB4E4E; } .bg-warning { background-color: #FFD058; } .bg-success { background-color: #2AC769; } /*backgrounds end*/ /*border*/ .border-b{ border-bottom: 1px solid #ECEEF2;; } .border-t{ border-top: 1px solid #ECEEF2;; } /*border end*/ .bb-1 { border-bottom: 1px solid #ECEEF2; } .bt-1 { border-top: 1px solid #ECEEF2; } .bl-l { border-left: 1px solid #ECEEF2; } .br-1 { border-right: 1px solid #ECEEF2; } .width-100{ width: 100%; } img { display: inline-flex; } .tag { display: inline-flex; justify-content: center; align-items: center; padding: 5px 10px; border: 1px solid #CBCED5; border-radius: 3px; color: #7B818C; font-size: 12px; cursor: pointer; transition: color .25s, border-color .25s; white-space: nowrap; line-height: 14px; } .tag.tag--no-hover { cursor: default; } .tag.tag--medium { font-size: 14px; line-height: 16px; } .tag:not(.tag--no-hover):hover, .tag:not(.tag--no-hover):active { color: #00BEE7; border-color: #00BEE7; } .tag.active { background: #418CCF; border-color: #418CCF; color: white; } .tags-list { margin-bottom: -10px; } .tags-list .tag, .tags-list .tag-bg { margin-right: 10px; margin-bottom: 10px; } .tags-list .tag:last-child, .tags-list .tag-bg:last-child { margin-right: 0; } .tag-bg { display: inline-block; color: #7B818C; background: #F4F4F4; border-radius: 3px; padding: 5px 10px; font-size: 14px; line-height: 16px; } .tag-bg.tag-bg--yellow { background: #FFEDBD; } .tag-bg.tag-bg--green { background: #DEF9D7; } .tag.tag--icon .tag__icon { display: inline-block; margin-right: 10px; } .tag.tag--icon .tag__icon img { display: block; } .title-with-text { display: flex; flex-direction: column; margin-bottom: 20px; } .title-with-text h1, .title-with-text h2, .title-with-text h3, .title-with-text h4, .title-with-text h5 { margin-bottom: 0; } .title-with-text__item { margin-bottom: 5px; } .title-with-text__item:last-child { margin-bottom: 0; } .title-with-text__item--no-wrap { flex-shrink: 0; } .color--subtext { color: #7B818C; } .gray{ color: #ABB0B9; } .tablet-visible, .desc-visible { display: none !important; } /*checkbox start*/ .checkbox-custom{ position: relative; display: flex; } .checkbox-custom__label{ position: relative; display: flex; cursor: pointer; } .checkbox-custom__default{ display: none; } .checkbox-custom__new{ border: 2px solid #ABB0B9; border-radius: 2px; width: 16px; height: 16px; flex: none; margin-top: 3px; position: relative; } .checkbox-custom__text{ font-size: 14px; } .checkbox-custom__default:checked+.checkbox-custom__new:before{ content: "\e910"; font-family: "icon-font" !important; font-style: normal; font-variant: normal; text-transform: none; line-height: 1; color: #00BEE7; position: absolute; top: calc(50% - 3px); left: calc(50% + 3px); transform: translate(-50%, -50%); font-weight: 600; z-index: 2; } .checkbox-custom__default:checked+.checkbox-custom__new:after{ content: ""; width: 8px; height: 8px; position: absolute; right: -4px; top: -3px; background: white; z-index: 1; border-radius: 50%; } .checkbox-custom.has-error .checkbox-custom__text { color: #FB4E4E; } /*checkbox end*/ .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .icon--currency { font-size: .8em; font-weight: inherit; } /*Autocomplete*/ ul.autoCompleteList:not(.autoCompleteList--like-selectric) { position: relative; z-index: 10; list-style: none; background: #fff; width: 100%; margin-top: -20px; padding: 20px 10px; display: none; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); border-radius: 0 0 5px 5px; } ul.autoCompleteList.autoCompleteList_mod { display: block; } ul.autoCompleteList li { padding: 5px 0; display: inline-block; width: 100%; } ul.autoCompleteList li a { color: #263042; white-space: pre-wrap; transition: color 0.25s ease; width: 100%; display: inline-block; } ul.autoCompleteList li a span.highlight { color: #418CCF; transition: color 0.25s ease; } ul.autoCompleteList li a:hover, ul.autoCompleteList li a:hover span.highlight { color: #00BEE7; } ul.autoCompleteList.autoCompleteList--like-selectric{ position: absolute; top: 100%; min-width: 180px; right: 0; left: 0; border-radius: 0 0 3px 3px; list-style: none; width: 100%; max-height: 280px; overflow-y: auto; /*border: 1px solid #CBCED5;*/ padding: 0; background-color: #fff; z-index: 10; display: none; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); } ul.autoCompleteList.autoCompleteList--like-selectric li{ display: flex; align-items: center; font-size: 16px; min-height: 40px; width: 100%; padding: 5px 10px; } ul.autoCompleteList.autoCompleteList--like-selectric li a{ font-size: 16px; display: inline-flex; align-items: center; min-height: 40px; width: calc(100% + 20px); padding: 5px 10px; background-color: #fff; transition: none; margin: -5px -10px; } ul.autoCompleteList.autoCompleteList--like-selectric li a:hover{ background-color: #00BEE7; color: #fff; } ul.autoCompleteList.autoCompleteList--max-height{ max-height: 200px; overflow: auto; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar { width: 6px; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar-thumb { background: #898989; border-radius: 4px; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar-track { background: #e7e7e7; } /*Autocomplete end*/ .mobile-minus-margin{ margin-left: -15px; margin-right: -15px; } /*visible-hide*/ .none{ display: none; } .tablet-visible, .desc-visible { display: none!important; } /*visible-hide #end*/ /*nelidgen-modal -- пока стили как на старой версии, на всякий случай. ХЗ как они там будут потом*/ .reklam-modal[id*="nelidgen"]{ text-align: center!important; } .reklam-modal[id*="nelidgen"]:after, .reklam-modal[id*="nelidgen"]:before{ content: none!important; } .reklam-modal[id*="nelidgen"] .modal-content{ padding: 0; background: transparent; } .reklam-modal[id*="nelidgen"] .modal-dialog{ display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; width: auto; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-width: unset; } .reklam-modal[id*="nelidgen"] .modal-body{ padding: 0; position: relative; } .reklam-modal[id*="nelidgen"] .modal-body img{ max-width: 100%; } .reklam-modal[id*="nelidgen"] .modal-body img{ max-width: 100%; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn{ position: absolute; right: 10px; top: 10px; width: 32px; height: 32px; box-shadow: none; text-shadow: none; background: rgba(0,0,0,.3); border: 0; outline: 0; z-index: 100; border-radius: 50%; transition: background-color .25s; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:before, .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:after{ position: absolute; left: 16px; top: 7px; content: " "; height: 17px; width: 1px; background: #fff; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:before{ transform: rotate(45deg); } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:after{ transform: rotate(-45deg); } .reklam-modal[id*="nelidgen"] .popup-link__1{ position: absolute; left: 0; right: 0; top: 0; bottom: 0; } /*nelidgen-modal end*/
src/css/core/common/common.css
body { font-size: 14px; font-family: open sans, sans-serif; color: #1B2C49; line-height: 1.5; background-color: #F4F4F4; overflow-anchor: none; } body.blocked { position: relative; overflow: hidden; } .overflow-hidden { position: relative; overflow: hidden; } .container { width: 100%; max-width: 100%; padding: 0 15px; } .container.container--no-paddings { padding: 0; } .sidebar-container { display: flex; flex-direction: column; } .sidebar-container__sidebar{ margin-top: 30px; } .content { border-radius: 3px; margin-bottom: 10px; background-color: #fff; } .content:last-child { margin-bottom: 0; } .content.content--bg-transparent { background-color: transparent; } .content.content--shadow { box-shadow: 0 1px 5px rgba(0,0,0,.15); } .content.content--paddings { padding: 15px 10px; } input.placeholder-grey::placeholder { color: #444; } input, textarea { display: flex; justify-content: flex-start; align-items: center; min-height: 44px; border-radius: 3px; border: 1px solid #CBCED5; font-size: 16px; padding: 10px; max-width: 100%; width: 100%; transition: border-color .25s, box-shadow .25s; } input:focus, textarea:focus { outline: none; border-color: #418CCF; font-size: 16px; /*box-shadow: 0 0 1px 1px #00BEE7;*/ } textarea { min-height: 130px; border: 1px solid #CBCED5; border-radius: 3px; padding: 10px; resize: vertical; } input::placeholder { color: #abb0b9 } input.input--gray { border-color: #CBCED5; } .has-error input, .has-error textarea { border-color: #FB4E4E; } input.has-error, textarea.has-error{ border-color: #FB4E4E; } .has-error .help-block{ color: #FB4E4E; display: inline-block; font-size: 12px; } ol { margin: 0; padding: 0 0 0 20px; } ul { margin: 0; padding: 0; list-style-type: none; } /*colors*/ .error { color: #FB4E4E; } .warning { color: #FFD058; } .success { color: #2AC769; } .positive { color: #2AC769; } .negative { color: #FB4E4E; } .color--subtext { color: #7B818C; } .gray{ color: #ABB0B9; } /*colors end*/ .none{ display: none; } /*backgrounds*/ .bg-white { background-color: #fff; } .bg-gray { background: #F4F4F4; } .bg-blue { background-color: #418ccf; } .bg-error { background-color: #FB4E4E; } .bg-warning { background-color: #FFD058; } .bg-success { background-color: #2AC769; } /*backgrounds end*/ /*border*/ .border-b{ border-bottom: 1px solid #ECEEF2;; } .border-t{ border-top: 1px solid #ECEEF2;; } /*border end*/ .bb-1 { border-bottom: 1px solid #ECEEF2; } .bt-1 { border-top: 1px solid #ECEEF2; } .bl-l { border-left: 1px solid #ECEEF2; } .br-1 { border-right: 1px solid #ECEEF2; } .width-100{ width: 100%; } img { display: inline-flex; } .tag { display: inline-flex; justify-content: center; align-items: center; padding: 5px 10px; border: 1px solid #CBCED5; border-radius: 3px; color: #7B818C; font-size: 12px; cursor: pointer; transition: color .25s, border-color .25s; white-space: nowrap; line-height: 14px; } .tag.tag--no-hover { cursor: default; } .tag.tag--medium { font-size: 14px; line-height: 16px; } .tag:not(.tag--no-hover):hover, .tag:not(.tag--no-hover):active { color: #00BEE7; border-color: #00BEE7; } .tag.active { background: #418CCF; border-color: #418CCF; color: white; } .tags-list { margin-bottom: -10px; } .tags-list .tag, .tags-list .tag-bg { margin-right: 10px; margin-bottom: 10px; } .tags-list .tag:last-child, .tags-list .tag-bg:last-child { margin-right: 0; } .tag-bg { display: inline-block; color: #7B818C; background: #F4F4F4; border-radius: 3px; padding: 5px 10px; font-size: 14px; line-height: 16px; } .tag-bg.tag-bg--yellow { background: #FFEDBD; } .tag-bg.tag-bg--green { background: #DEF9D7; } .tag.tag--icon .tag__icon { display: inline-block; margin-right: 10px; } .tag.tag--icon .tag__icon img { display: block; } .title-with-text { display: flex; flex-direction: column; margin-bottom: 20px; } .title-with-text h1, .title-with-text h2, .title-with-text h3, .title-with-text h4, .title-with-text h5 { margin-bottom: 0; } .title-with-text__item { margin-bottom: 5px; } .title-with-text__item:last-child { margin-bottom: 0; } .title-with-text__item--no-wrap { flex-shrink: 0; } .color--subtext { color: #7B818C; } .gray{ color: #ABB0B9; } .tablet-visible, .desc-visible { display: none !important; } /*checkbox start*/ .checkbox-custom{ position: relative; display: flex; } .checkbox-custom__label{ position: relative; display: flex; cursor: pointer; } .checkbox-custom__default{ display: none; } .checkbox-custom__new{ border: 2px solid #ABB0B9; border-radius: 2px; width: 16px; height: 16px; flex: none; margin-top: 3px; position: relative; } .checkbox-custom__text{ font-size: 14px; } .checkbox-custom__default:checked+.checkbox-custom__new:before{ content: "\e910"; font-family: "icon-font" !important; font-style: normal; font-variant: normal; text-transform: none; line-height: 1; color: #00BEE7; position: absolute; top: calc(50% - 3px); left: calc(50% + 3px); transform: translate(-50%, -50%); font-weight: 600; z-index: 2; } .checkbox-custom__default:checked+.checkbox-custom__new:after{ content: ""; width: 8px; height: 8px; position: absolute; right: -4px; top: -3px; background: white; z-index: 1; border-radius: 50%; } .checkbox-custom.has-error .checkbox-custom__text { color: #FB4E4E; } /*checkbox end*/ .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .icon--currency { font-size: .8em; font-weight: inherit; } /*Autocomplete*/ ul.autoCompleteList:not(.autoCompleteList--like-selectric) { position: relative; z-index: 10; list-style: none; background: #fff; width: 100%; margin-top: -20px; padding: 20px 10px; display: none; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); border-radius: 0 0 5px 5px; } ul.autoCompleteList.autoCompleteList_mod { display: block; } ul.autoCompleteList li { padding: 5px 0; display: inline-block; width: 100%; } ul.autoCompleteList li a { color: #263042; white-space: pre-wrap; transition: color 0.25s ease; width: 100%; display: inline-block; } ul.autoCompleteList li a span.highlight { color: #418CCF; transition: color 0.25s ease; } ul.autoCompleteList li a:hover, ul.autoCompleteList li a:hover span.highlight { color: #00BEE7; } ul.autoCompleteList.autoCompleteList--like-selectric{ position: absolute; top: 100%; min-width: 180px; right: 0; left: 0; border-radius: 0 0 3px 3px; list-style: none; width: 100%; max-height: 280px; overflow-y: auto; /*border: 1px solid #CBCED5;*/ padding: 0; background-color: #fff; z-index: 10; display: none; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); } ul.autoCompleteList.autoCompleteList--like-selectric li{ display: flex; align-items: center; font-size: 16px; min-height: 40px; width: 100%; padding: 5px 10px; } ul.autoCompleteList.autoCompleteList--like-selectric li a{ font-size: 16px; display: inline-flex; align-items: center; min-height: 40px; width: calc(100% + 20px); padding: 5px 10px; background-color: #fff; transition: none; margin: -5px -10px; } ul.autoCompleteList.autoCompleteList--like-selectric li a:hover{ background-color: #00BEE7; color: #fff; } ul.autoCompleteList.autoCompleteList--max-height{ max-height: 200px; overflow: auto; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar { width: 6px; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar-thumb { background: #898989; border-radius: 4px; } ul.autoCompleteList.autoCompleteList--max-height::-webkit-scrollbar-track { background: #e7e7e7; } /*Autocomplete end*/ .mobile-minus-margin{ margin-left: -15px; margin-right: -15px; } /*visible-hide*/ .none{ display: none; } .tablet-visible, .desc-visible { display: none!important; } /*visible-hide #end*/ /*nelidgen-modal -- пока стили как на старой версии, на всякий случай. ХЗ как они там будут потом*/ .reklam-modal[id*="nelidgen"]{ text-align: center!important; } .reklam-modal[id*="nelidgen"]:after, .reklam-modal[id*="nelidgen"]:before{ content: none!important; } .reklam-modal[id*="nelidgen"] .modal-content{ padding: 0; background: transparent; } .reklam-modal[id*="nelidgen"] .modal-dialog{ display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; width: auto; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-width: unset; } .reklam-modal[id*="nelidgen"] .modal-body{ padding: 0; position: relative; } .reklam-modal[id*="nelidgen"] .modal-body img{ max-width: 100%; } .reklam-modal[id*="nelidgen"] .modal-body img{ max-width: 100%; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn{ position: absolute; right: 10px; top: 10px; width: 32px; height: 32px; box-shadow: none; text-shadow: none; background: rgba(0,0,0,.3); border: 0; outline: 0; z-index: 100; border-radius: 50%; transition: background-color .25s; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:before, .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:after{ position: absolute; left: 16px; top: 7px; content: " "; height: 17px; width: 1px; background: #fff; } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:before{ transform: rotate(45deg); } .reklam-modal[id*="nelidgen"] .reklam-modal__close-btn:after{ transform: rotate(-45deg); } .reklam-modal[id*="nelidgen"] .popup-link__1{ position: absolute; left: 0; right: 0; top: 0; bottom: 0; } /*nelidgen-modal end*/
0.407451
0.077204
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap'); /*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');*/ @import url('https://fonts.googleapis.com/css2?family=Coda&display=swap'); code, code.inline { font-family: "JetBrains Mono",monospace !important; font-size: smaller; } ::-webkit-input-placeholder, body, button, input, select, textarea, header, text { font-family: "Coda" !important; } /* rest of the theme (skidded from forgottenkeep bhjkhevhjbkjsjhkn) */ .theme-dark, :root { --background-primary: #181818 !important; --background-secondary: #1d1d1d !important; --background-tertiary: #181818 !important; --background-text-area: #292929 !important; --font-display: "Coda" !important; /* fixes certain areas nt having th custom font */ } .theme-dark .scrollableContainer-2NUZem { overflow-x: hidden; overflow-y: scroll; background-color: var(--background-text-area); max-height: 50vh; border-radius: 4px; scrollbar-width: none; transition: all 0.2s; } .theme-dark .scrollableContainer-2NUZem:hover { background-color: rgb(58, 58, 58); } .theme-dark .scrollableContainer-2NUZem:active { background-color: rgb(83, 83, 83); } .theme-dark .message-2qnXI6.selected-2P5D_Z .buttons-cl5qTG, .mouse-mode .message-2qnXI6:hover .buttons-cl5qTG { opacity: 2; pointer-events: auto; } .theme-dark .container-3baos1, .container-3baos1 .avatar-SmRMf2 { -ms-flex-negative: 0; flex-shrink: 0; background-color: rgb(39, 39, 39); } .theme-dark .selected-aXhQR6 .layout-2DM8Md { background-color: rgba(79, 84, 92, 0.32); border-radius: 4px; } .theme-dark .clickable-1JJAn8:hover .layout-2DM8Md { background-color: var(--background-modifier-hover); cursor: pointer; border-radius: 4px; } .theme-dark .searchBar-3dMhjb { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; height: 24px; width: 144px; border-radius: 4px; -webkit-box-shadow: none; box-shadow: none; cursor: text; overflow: hidden; padding: 0 2px; color: var(--text-normal); background-color: var(--background-text-area); } .theme-dark .searchBar-3dMhjb:hover{ background-color: rgb(58, 58, 58); } .theme-dark .focused-31_ccS .searchBar-3dMhjb, .open-6_Y_aH .searchBar-3dMhjb{ width: 240px; background-color: rgb(58, 58, 58); } .theme-dark .item-2hkk8m { position: absolute; display: block; width: 8px; border-radius: 6px 4px 4px 6px; margin-left: -4px; background-color: var(--header-primary); } .theme-dark .scroller-3BxosC { padding: 6px 8px; background-color: rgb(34, 34, 34); border-radius: 4px; } .theme-dark .spoilerText-3p6IlD.hidden-HHr2R9 { background-color: rgb(39, 39, 39) !important; transition: all 0.2s; } .theme-dark .spoilerText-3p6IlD.hidden-HHr2R9:hover { background-color: rgb(54, 54, 54) !important; } .theme-dark .theme-dark .uploadModal-2ifh8j { background-color: #1f1f1f; -webkit-box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); } .theme-dark .footer-3mqk7D { background-color: #292929; -webkit-box-shadow: inset 0 1px 0 rgba(47,49,54,.6); box-shadow: inset 0 1px 0 rgba(47,49,54,.6); } .theme-dark .selected-1Tbx07 { background-color: var(--background-text-area); transition: all 0.2s; } .theme-dark .autocompleteInner-zh20B_ { padding-bottom: 8px; background-color: var(--background-primary); } .theme-dark .selected-1Tbx07:hover{ background-color: #303030; } .theme-dark .selected-1Tbx07:active{ background-color: #4b4b4b; } .theme-dark .peopleList-3c4jOR { padding-bottom: 8px; background-color: #2b2b2b; } .theme-dark .actionButton-uPB8Fs:hover{ animation: forwards 0.2s pop; transition: all 0.2s; background-color: rgb(70, 70, 70); } @keyframes pop{ 100%{ transform: scale(1.1); } } .theme-dark .feature-2w65J5 { background-color: var(--background-secondary-alt); transition: all 0.2s; } .theme-dark .feature-2w65J5:hover { background-color: rgb(58, 58, 58); } .theme-dark .profileBadge-2niAfJ { background-repeat: no-repeat; background-size: contain; background-position: 50%; cursor: pointer; width: 24px; transition: all 0.2s; height: 24px; } .theme-dark .profileBadge-2niAfJ:hover { transform: scale(0.8); } .theme-dark .closeButton-1tv5uR { border-color: #72767d; } .theme-dark .closeButton-1tv5uR:hover { background-color: rgb(248, 54, 54); border-color: rgb(248, 54, 54); } .theme-dark .childWrapper-anI2G9 { -webkit-transition: background-color .15s ease-out,color .15s ease-out; transition: background-color .15s ease-out,color .15s ease-out; background-color: #303030; color: var(--text-normal); } .theme-dark .embedSuppressButton-1FonMn { opacity: 0; position: absolute; top: -2px; right: -20px; cursor: pointer; padding: 2px; color: var(--interactive-normal); } .theme-dark .embedSuppressButton-1FonMn:hover{ color: red; } .theme-dark .searchBar-6Kv8R2 .searchBarComponent-32dTOx { width: 100%; height: 28px; overflow: hidden; border-radius: 4px; background-color: var(--background-text-area); -webkit-box-shadow: none; box-shadow: none; color: var(--text-muted); text-align: left; text-overflow: ellipsis; font-size: 14px; font-weight: 500; line-height: 24px; transition: all 0.2s; white-space: nowrap; } .theme-dark .searchBar-6Kv8R2 .searchBarComponent-32dTOx:hover{ background-color: rgb(51, 51, 51); } .theme-dark .input-2VB9rf { position: relative; z-index: 1; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; display: block; padding: 0 12px; font-size: 22px; border-radius: 5px; border: none; height: 70px; line-height: 70px; background-color: var(--background-text-area); color: var(--text-normal); -webkit-box-shadow: var(--elevation-high); box-shadow: var(--elevation-high); } .theme-dark .quickswitcher-3JagVE { position: relative; width: 570px; border-radius: 8px; padding: 20px 20px 0; display: -webkit-box; display: -ms-flexbox; opacity: 0.9; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2), 0 0 0 1px rgba(28,36,43,.6); box-shadow: 0 2px 10px rgba(0,0,0,.2), 0 0 0 1px rgba(28,36,43,.6); background-color: var(--background-secondary); color: var(--text-normal); } .theme-dark .expandedFolderIconWrapper-Huv7rA { width: 48px; height: 48px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background-color: #2b2b2b; } .theme-dark .expandedFolderIconWrapper-Huv7rA:hover{ background-color: #3f3f3f; } .theme-dark .closeIcon-rycxaQ:hover { color: red; } .theme-dark .body-3iLsc4, .theme-dark .footer-1fjuF6{ background-color: #1f1f1f; } .theme-dark .headerTop-3C2Zn0 { background-color: #181818; } /*.root-SR8cQa>.topSectionPlaying-1J5E4n { background: linear-gradient(90deg, lightblue, transparent); } .activity-11LB_k{ background-color: #e65b31; } .activity-1ythUs{ background-color: #e65b31; } .headerPlaying-j0WQBV .headerTop-3C2Zn0 { background-color: #ff6739; }*/ .header-QKLPzZ{ background-color: #181818; } .tabBarContainer-1s1u-z{ background-color: #272727; } .lookOutlined-3sRXeN.colorWhite-rEQuAQ:hover { color: rgb(161, 161, 161); border-color: #272727; background-color: #181818; } .textarea-2r0oV8:hover{ background-color: #272727; } .textarea-2r0oV8:focus{ background-color: #141414; } .withFrame-haYltI { height: 21px; margin-top: 4px; } .winButton-iRh8-Z { position: relative; top: -4px; cursor: pointer; width: 28px; height: 28px; pointer-events: auto; -webkit-app-region: no-drag; } .modalContent-1T1Tix{ background-color: var(--background-primary); } .theme-dark .footer-2gL1pp{ background-color: var(--background-text-area); } .lookFilled-1Gx00P.colorBrand-3pXr91 { color: #fff; background-color: rgb(29, 29, 29); } .lookFilled-1Gx00P.colorBrand-3pXr91:hover { color: #fff; background-color: rgb(75, 75, 75); } .lookFilled-1Gx00P.colorBrand-3pXr91:active { color: #fff; background-color: rgb(28, 207, 28); } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6 { color: #f6f6f7; background-color: #525252; } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:hover { color: #f6f6f7; background-color: rgb(59, 59, 59); } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:active { color: #f6f6f7; background-color: rgb(238, 54, 54); } .actionIcon-PgcMM2 { color: var(--interactive-normal); transition: all 0.1s; } .actionIcon-PgcMM2:active{ color: rgb(69, 108, 235); } .scroller-2hZ97C{ background-color: var(--background-secondary); } .theme-dark .separator-2-RRj_{ background-color: var(--background-text-area); } .lookOutlined-3sRXeN.colorGreen-29iAKY { color: #fff; border-color: #414141; transition: all 0.1s; } .lookFilled-1Gx00P.colorGreen-29iAKY { color: #fff; border-color: #292929; background-color: #292929; } .lookFilled-1Gx00P.colorGreen-29iAKY:hover { color: #fff; border-color: #292929; background-color: #555555; } .lookFilled-1Gx00P.colorGreen-29iAKY:active { color: #fff; border-color: #292929; background-color: #161616; } .close-hZ94c6 { height: 26px; padding: 4px; opacity: .5; cursor: pointer; border-radius: 3px; color: var(--interactive-normal); -webkit-box-sizing: content-box; box-sizing: content-box; } .close-hZ94c6:hover{ color: rgb(248, 54, 54); } .settingsContent-3Pxg5D{ background-color: var(--background-primary); } .header-1TKi98{ background-color: var(--background-text-area); } .content-1LAB8Z{ background-color: var(--background-primary); } .perksModalContentWrapper-2HU6uL{ background-color: var(--background-text-area); } .theme-dark .perksModal-fSYqOq { background-image: url(/assets/c486dc6….svg); background-color: var(--background-text-area); } .theme-dark .perk-2WeBWW{ background-color: var(--background-tertiary); transition: cubic-bezier(0.19, 1, 0.22, 1) 0.2s; } .theme-dark .perk-2WeBWW:hover{ background-color: rgb(65, 65, 65); transform: scale(1.1); } .theme-dark .perk-2WeBWW:active{ background-color: rgb(46, 46, 46); transform: scale(1); } .lookFilled-1Gx00P.colorBrand-3pXr91:disabled{ background-color: rgb(24, 24, 24); } .theme-dark .errorState-KkUH_2{ background-color: var(--background-primary); } .noResults-ZTbl5V, .scroller-hUf6zQ{ background-color: var(--background-secondary); } .footer-1eyGBa{ background-color: var(--background-text-area); } .container-1giJp5{ background-color: var(--background-text-area); } .quickSelectPopoutOption-opKBx9{ background-color: var(--background-text-area); } .root-217Brm{ background-color: var(--background-secondary); } .colorable-1bkp8v.red-33-Lnk.active-1QRrIS, .colorable-1bkp8v.red-33-Lnk:hover{ background: rgb(158, 28, 28); } .unread-2lAfLh { position: absolute; height: 31px; width: 3px; border-radius: 4px 14px 14px 4px; top: 14%; left: 0px; margin-top: -4px; } .unread-2lAfLh{ background-color: #ff6739; } .modeConnected-3IsKId .name-23GUGE, .modeSelected-346R90 .name-23GUGE, .modeSelected-346R90:hover .name-23GUGE, .modeUnread-1qO3K1 .name-23GUGE, .modeUnread-1qO3K1:hover .name-23GUGE, .notInteractive-1X92pj.modeConnected-3IsKId .name-23GUGE, .notInteractive-1X92pj.modeSelected-346R90 .name-23GUGE{ color: #ff6739; } .modeSelected-346R90:hover .name-23GUGE, .modeUnread-1qO3K1:hover .name-23GUGE, .notInteractive-1X92pj.modeConnected-3IsKId .name-23GUGE, .notInteractive-1X92pj.modeSelected-346R90 .name-23GUGE{ color: #ff8059; } .modeSelected-346R90 .name-23GUGE{ color: #ff3131; } .modeSelected-346R90:hover .name-23GUGE{ color: #ff5151; } .name-23GUGE:hover{ color: #bdbdbd; } /*.unreadMentionsBar-1Bu1dC{ background-color: #ff6739; }*/ .connectedAccount-36nQx7{ transition: all 0.1s; } .connectedAccount-36nQx7:hover{ background-color: rgb(56, 56, 56); } .resultsGroup-r_nuzN{ background-color: var(--background-text-area); } .theme-dark .option-96V44q:after { background: var(--background-text-area); } .emojiSection-3Fb9ix{ background: var(--background-text-area); } .guildSection-1EoFKd{ background: var(--background-secondary); } .circleIconButton-1QV--U{ color: rgb(148, 148, 148); background: var(--background-secondary); } .circleIconButton-1QV--U.selected-1JjBPm { color: #fff; background-color: #ff6739; } .circleIconButton-1QV--U:active{ background-color: #ff6739; } .scroller-1d5FgU{ background-color: var(--background-text-area); } .search-1iTphC .searchBox-2_mAlO{ background-color: var(--background-text-area); } .theme-dark .card-3DjzTQ, .theme-dark .iconMask-3b8GzQ{ background-color: var(--background-secondary); } .content-1LAB8Z{ background-color: var(--background-text-area); } .footerTitle-2CYZch{ color: #fff; } .container-UC8Ug1:hover{ background-color: rgb(82, 82, 82); } .container-UC8Ug1{ background-color: rgb(58, 58, 58); } .text-1FOLJS{ color: #fff; } .container-UC8Ug1:active{ background-color: rgb(126, 126, 126); } .title-3w8xhj{ color: #fff; } .subtitle-Nw1LLR{ color: rgb(163, 163, 163); } .templatesList-2E6rTe{ margin-top: -1px; } .content-1LAB8Z{ border-radius: 0; } .lookFilled-1Gx00P.colorGrey-2DXtkV{ color: #fff; background-color: rgb(59, 59, 59); } .lookFilled-1Gx00P.colorGrey-2DXtkV:hover{ background-color: rgb(83, 83, 83); } .lookFilled-1Gx00P.colorGrey-2DXtkV:active{ background-color: rgb(15, 85, 15); } .optionsList-3UMAjx { margin-top: 0px; padding: 0 16px 8px; } .title-LqAd9K{ color: #fff; } .subtitle-1Q3BuX{ color: rgb(163, 163, 163); } .skip-2o6MGG{ color: rgb(163, 163, 163); } .backButton-iA7KIs{ color: #fff; } .footer-2gL1pp { border-radius: 0 0 0px 0px; } .colorDefault-2K3EoJ.focused-3afm-j { background-color: var(--background-primary); color: #fff; } .colorDefault-2K3EoJ.focused-3afm-j:active { background-color: var(--background-text-area); color: #fff; } .colorDefault-2K3EoJ.focused-3afm-j:focus { background-color: var(--background-text-area); color: #fff; } /* coloured bot tags */ .botTagRegular-2HEhHi { transition: .5s; background: #ff262644; color: #ffffff; } .botTagRegular-2HEhHi:hover { transition: .5s; background: #ff2626ab; color: #ffffff; } /* fix for coloured bot tags when bot has custom presence - thanks awish */ .botTagInvert-18-95s{ transition: .5s; background-color: #ff262644; color: #ffffff; } .botTagInvert-18-95s:hover{ transition: .5s; background-color: #ff2626ab; color: #ffffff; } /* Channel icons change colour - yoinked from Corellan */ .wrapper-2jXpOf.modeUnread-1qO3K1 .icon-1DeIlz { color: #ff6739; } .wrapper-2jXpOf.modeUnread-1qO3K1:hover .icon-1DeIlz { color: #ff8059; } .wrapper-2jXpOf.modeSelected-346R90 .icon-1DeIlz { color: #ff3131; } .wrapper-2jXpOf.modeSelected-346R90:hover .icon-1DeIlz { color: #ff5151; } .wrapper-2jXpOf:hover .icon-1DeIlz { color: #bdbdbd; } /* Removes Clyde's popout */ .ephemeral-1PsL1r>.contents-2mQqc9, .ephemeral-1PsL1r .avatar-1BDn8e { pointer-events: none !important; } /* watermark */ @font-face { font-family: 'Discord'; font-weight: 700; src: url("https://raw.githubusercontent.com/powercord-org/powercord-backend/my-awesome-branch/web/src/assets/discord-font.otf") format("opentype"); } @font-face {font-family: "Uni Sans Heavy"; src: url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.eot"); src: url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.woff") format("woff"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.svg#Uni Sans Heavy") format("svg"); } .wordmark-2iDDfm:after { content: "PYROCORD"; font-size: 15px; position: absolute; width: 3500px; top: 5px; padding-left: 0px; font-family: 'Uni Sans Heavy'; color: #ff6739; } .wordmark-2iDDfm > svg { width: 0px; } /* lil icon in the watermark */ .wordmark-2iDDfm { left: 25px; } .wordmark-2iDDfm:before { content: ''; position: absolute; height: 100%; width: 50px; bottom: 0; right: 0; background: url(https://cdn.discordapp.com/attachments/764362151367278607/830478933572976660/pyrocord_logo.png) center/20px no-repeat; } /* making open folder icons more visible */ .theme-dark .expandedFolderBackground-1cujaW { position: absolute; top: 0; left: 12px; bottom: 8px; width: 48px; border-radius: 24px; -webkit-transition: background-color .15s ease-out; transition: background-color .15s ease-out; background-color: #2b2b2b; } .theme-dark .expandedFolderIconWrapper-Huv7rA { transition: .5s; } /* Inline status selection - yoinked from mackenzie#0173 */ .mask-1qbNWk.icon-1IxfJ2 { --status-icon-size: 75%; height: var(--status-icon-size); width: var(--status-icon-size); margin-left: 33%; } .animatorTop-2Y7x2r.scale-3iLZhb.didRender-33z1u8 > .menu-3sdvDG.styleFixed-sX-yHV > .scroller-3BxosC.thin-1ybCId.scrollerBase-289Jih { display: grid; align-items: center; grid-template-columns: auto auto auto auto; visibility: visible; } .item-1tOPte.colorDefault-2K3EoJ:nth-of-type(7) { grid-column: 1/5; } .animatorTop-2Y7x2r.scale-3iLZhb.didRender-33z1u8 { transition: opacity 0.15s linear 0s; } #status-picker-custom-status .status-1fhblQ { color: var(--reply-content-colour); } #status-picker-custom-status .status-1fhblQ:after { content: ', mac!'; } #status-picker-custom-status { transition: .5s; color: #ff8059; } #status-picker-custom-status:hover { transition: .5s; color: #ff6739; } #status-picker-idle .status-1fhblQ, #status-picker-dnd .status-1fhblQ, #status-picker-online .status-1fhblQ, #status-picker-invisible .status-1fhblQ, .description-2L932D, .separator-2I32lJ { display: none; } /* Calendar stuffs by Corellan */ .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day { transition: .5s; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day:hover { transition: .5s; background: #ff3131 !important; color: #fff; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day--selected { transition: .25s; background: var(--accent-primary) !important; color: #ff8059; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day--selected:hover { transition: .25s; background: #ff6739 !important; color: #fff; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day.react-datepicker__day--selected:after, .theme-light .calendarPicker-2yf6Ci .react-datepicker__day.react-datepicker__day--selected:after { background: #ff6739; color: #ff6739; } /* Making tooltips actually visible (taken from a newer version of forgottenkeep) */ .tooltip-2QfLtc { background-color: var(--background-text-area) !important; } /* Draggable title bar on Windows (by void#0001) */ .maximized .titleBar-AC4pGV { margin-top: 0; height: 22px; } .maximized .titleBar-AC4pGV .winButton-iRh8-Z { padding-top: 4px; } /* very scuffed home button */ .wrapper-1BJsBx.selected-bZ3Lue .childWrapper-anI2G9, .wrapper-1BJsBx:hover .childWrapper-anI2G9{ background-color: #ff6739; } /* Transparent Settings Screen */ .layers-3iHuyZ>.layer-3QrUeG:first-child{ transform: scale(1) !important; opacity: 1 !important; } .layers-3iHuyZ>.layer-3QrUeG:nth-child(2),.perksModal-fSYqOq{ background-color: rgba(0, 0, 0, 0.5)!important; backdrop-filter: blur(20px); } .contentRegionScroller-26nc1e,.contentRegion-3nDuYy,.standardSidebarView-3F1I7i, .sidebarRegionScroller-3MXcoP{ background: transparent; } /* user popout colours */ .activity-11LB_k{ background-color: #272727; } .activity-1ythUs{ background-color: #272727; } .headerPlaying-j0WQBV .headerTop-3C2Zn0 { background-color: #181818; } /* wumpus tooltip change cos fuck the original text (<NAME>#1166) */ .wumpusTooltip-3V90tI { font-size: 0px; } .wumpusTooltip-3V90tI::before { font-size: 12px; content: "I'm a fucking idiot or an alt" } /* reactions */ .reaction-1hd86g.reactionMe-wv5HKu{ background-color: #ff80594f !important; } .reactionMe-wv5HKu .reactionCount-2mvXRV, .reactionMe-wv5HKu:hover .reactionCount-2mvXRV{ color: #ff6739; transition: 0.2s; } .reaction-1hd86g.reactionMe-wv5HKu .reactionCount-2mvXRV { color: #ff6739; } .reaction-1hd86g.reactionMe-wv5HKu .reactionCount-2mvXRV:hover { color: #ff3131; } /* fuck sending gifts */ button[aria-label='Send a gift'] { display: none !important; opacity: 0; } ::selection { background-color: #ff6739; opacity: 50%; } /* gets rid of the colours cos fuck this new rebrand, hope the exec who made it dies in a high speed car crash */ .colorLink-2vG20E { color:#ff6739; } .reaction-1hd86g { border: none; border-radius:.25rem; } /* join server and guild discovery*/ svg .circleIcon-2_77lA { color: #ff6739; } svg .circleIcon-2_77lA:hover { color: #fff; } div .circleIconButton-hZmpE8:hover { background-color: #ff6739; }
index.css
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap'); /*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');*/ @import url('https://fonts.googleapis.com/css2?family=Coda&display=swap'); code, code.inline { font-family: "JetBrains Mono",monospace !important; font-size: smaller; } ::-webkit-input-placeholder, body, button, input, select, textarea, header, text { font-family: "Coda" !important; } /* rest of the theme (skidded from forgottenkeep bhjkhevhjbkjsjhkn) */ .theme-dark, :root { --background-primary: #181818 !important; --background-secondary: #1d1d1d !important; --background-tertiary: #181818 !important; --background-text-area: #292929 !important; --font-display: "Coda" !important; /* fixes certain areas nt having th custom font */ } .theme-dark .scrollableContainer-2NUZem { overflow-x: hidden; overflow-y: scroll; background-color: var(--background-text-area); max-height: 50vh; border-radius: 4px; scrollbar-width: none; transition: all 0.2s; } .theme-dark .scrollableContainer-2NUZem:hover { background-color: rgb(58, 58, 58); } .theme-dark .scrollableContainer-2NUZem:active { background-color: rgb(83, 83, 83); } .theme-dark .message-2qnXI6.selected-2P5D_Z .buttons-cl5qTG, .mouse-mode .message-2qnXI6:hover .buttons-cl5qTG { opacity: 2; pointer-events: auto; } .theme-dark .container-3baos1, .container-3baos1 .avatar-SmRMf2 { -ms-flex-negative: 0; flex-shrink: 0; background-color: rgb(39, 39, 39); } .theme-dark .selected-aXhQR6 .layout-2DM8Md { background-color: rgba(79, 84, 92, 0.32); border-radius: 4px; } .theme-dark .clickable-1JJAn8:hover .layout-2DM8Md { background-color: var(--background-modifier-hover); cursor: pointer; border-radius: 4px; } .theme-dark .searchBar-3dMhjb { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; height: 24px; width: 144px; border-radius: 4px; -webkit-box-shadow: none; box-shadow: none; cursor: text; overflow: hidden; padding: 0 2px; color: var(--text-normal); background-color: var(--background-text-area); } .theme-dark .searchBar-3dMhjb:hover{ background-color: rgb(58, 58, 58); } .theme-dark .focused-31_ccS .searchBar-3dMhjb, .open-6_Y_aH .searchBar-3dMhjb{ width: 240px; background-color: rgb(58, 58, 58); } .theme-dark .item-2hkk8m { position: absolute; display: block; width: 8px; border-radius: 6px 4px 4px 6px; margin-left: -4px; background-color: var(--header-primary); } .theme-dark .scroller-3BxosC { padding: 6px 8px; background-color: rgb(34, 34, 34); border-radius: 4px; } .theme-dark .spoilerText-3p6IlD.hidden-HHr2R9 { background-color: rgb(39, 39, 39) !important; transition: all 0.2s; } .theme-dark .spoilerText-3p6IlD.hidden-HHr2R9:hover { background-color: rgb(54, 54, 54) !important; } .theme-dark .theme-dark .uploadModal-2ifh8j { background-color: #1f1f1f; -webkit-box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 2px 10px 0 rgba(0,0,0,.2); } .theme-dark .footer-3mqk7D { background-color: #292929; -webkit-box-shadow: inset 0 1px 0 rgba(47,49,54,.6); box-shadow: inset 0 1px 0 rgba(47,49,54,.6); } .theme-dark .selected-1Tbx07 { background-color: var(--background-text-area); transition: all 0.2s; } .theme-dark .autocompleteInner-zh20B_ { padding-bottom: 8px; background-color: var(--background-primary); } .theme-dark .selected-1Tbx07:hover{ background-color: #303030; } .theme-dark .selected-1Tbx07:active{ background-color: #4b4b4b; } .theme-dark .peopleList-3c4jOR { padding-bottom: 8px; background-color: #2b2b2b; } .theme-dark .actionButton-uPB8Fs:hover{ animation: forwards 0.2s pop; transition: all 0.2s; background-color: rgb(70, 70, 70); } @keyframes pop{ 100%{ transform: scale(1.1); } } .theme-dark .feature-2w65J5 { background-color: var(--background-secondary-alt); transition: all 0.2s; } .theme-dark .feature-2w65J5:hover { background-color: rgb(58, 58, 58); } .theme-dark .profileBadge-2niAfJ { background-repeat: no-repeat; background-size: contain; background-position: 50%; cursor: pointer; width: 24px; transition: all 0.2s; height: 24px; } .theme-dark .profileBadge-2niAfJ:hover { transform: scale(0.8); } .theme-dark .closeButton-1tv5uR { border-color: #72767d; } .theme-dark .closeButton-1tv5uR:hover { background-color: rgb(248, 54, 54); border-color: rgb(248, 54, 54); } .theme-dark .childWrapper-anI2G9 { -webkit-transition: background-color .15s ease-out,color .15s ease-out; transition: background-color .15s ease-out,color .15s ease-out; background-color: #303030; color: var(--text-normal); } .theme-dark .embedSuppressButton-1FonMn { opacity: 0; position: absolute; top: -2px; right: -20px; cursor: pointer; padding: 2px; color: var(--interactive-normal); } .theme-dark .embedSuppressButton-1FonMn:hover{ color: red; } .theme-dark .searchBar-6Kv8R2 .searchBarComponent-32dTOx { width: 100%; height: 28px; overflow: hidden; border-radius: 4px; background-color: var(--background-text-area); -webkit-box-shadow: none; box-shadow: none; color: var(--text-muted); text-align: left; text-overflow: ellipsis; font-size: 14px; font-weight: 500; line-height: 24px; transition: all 0.2s; white-space: nowrap; } .theme-dark .searchBar-6Kv8R2 .searchBarComponent-32dTOx:hover{ background-color: rgb(51, 51, 51); } .theme-dark .input-2VB9rf { position: relative; z-index: 1; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; display: block; padding: 0 12px; font-size: 22px; border-radius: 5px; border: none; height: 70px; line-height: 70px; background-color: var(--background-text-area); color: var(--text-normal); -webkit-box-shadow: var(--elevation-high); box-shadow: var(--elevation-high); } .theme-dark .quickswitcher-3JagVE { position: relative; width: 570px; border-radius: 8px; padding: 20px 20px 0; display: -webkit-box; display: -ms-flexbox; opacity: 0.9; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2), 0 0 0 1px rgba(28,36,43,.6); box-shadow: 0 2px 10px rgba(0,0,0,.2), 0 0 0 1px rgba(28,36,43,.6); background-color: var(--background-secondary); color: var(--text-normal); } .theme-dark .expandedFolderIconWrapper-Huv7rA { width: 48px; height: 48px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background-color: #2b2b2b; } .theme-dark .expandedFolderIconWrapper-Huv7rA:hover{ background-color: #3f3f3f; } .theme-dark .closeIcon-rycxaQ:hover { color: red; } .theme-dark .body-3iLsc4, .theme-dark .footer-1fjuF6{ background-color: #1f1f1f; } .theme-dark .headerTop-3C2Zn0 { background-color: #181818; } /*.root-SR8cQa>.topSectionPlaying-1J5E4n { background: linear-gradient(90deg, lightblue, transparent); } .activity-11LB_k{ background-color: #e65b31; } .activity-1ythUs{ background-color: #e65b31; } .headerPlaying-j0WQBV .headerTop-3C2Zn0 { background-color: #ff6739; }*/ .header-QKLPzZ{ background-color: #181818; } .tabBarContainer-1s1u-z{ background-color: #272727; } .lookOutlined-3sRXeN.colorWhite-rEQuAQ:hover { color: rgb(161, 161, 161); border-color: #272727; background-color: #181818; } .textarea-2r0oV8:hover{ background-color: #272727; } .textarea-2r0oV8:focus{ background-color: #141414; } .withFrame-haYltI { height: 21px; margin-top: 4px; } .winButton-iRh8-Z { position: relative; top: -4px; cursor: pointer; width: 28px; height: 28px; pointer-events: auto; -webkit-app-region: no-drag; } .modalContent-1T1Tix{ background-color: var(--background-primary); } .theme-dark .footer-2gL1pp{ background-color: var(--background-text-area); } .lookFilled-1Gx00P.colorBrand-3pXr91 { color: #fff; background-color: rgb(29, 29, 29); } .lookFilled-1Gx00P.colorBrand-3pXr91:hover { color: #fff; background-color: rgb(75, 75, 75); } .lookFilled-1Gx00P.colorBrand-3pXr91:active { color: #fff; background-color: rgb(28, 207, 28); } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6 { color: #f6f6f7; background-color: #525252; } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:hover { color: #f6f6f7; background-color: rgb(59, 59, 59); } .theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:active { color: #f6f6f7; background-color: rgb(238, 54, 54); } .actionIcon-PgcMM2 { color: var(--interactive-normal); transition: all 0.1s; } .actionIcon-PgcMM2:active{ color: rgb(69, 108, 235); } .scroller-2hZ97C{ background-color: var(--background-secondary); } .theme-dark .separator-2-RRj_{ background-color: var(--background-text-area); } .lookOutlined-3sRXeN.colorGreen-29iAKY { color: #fff; border-color: #414141; transition: all 0.1s; } .lookFilled-1Gx00P.colorGreen-29iAKY { color: #fff; border-color: #292929; background-color: #292929; } .lookFilled-1Gx00P.colorGreen-29iAKY:hover { color: #fff; border-color: #292929; background-color: #555555; } .lookFilled-1Gx00P.colorGreen-29iAKY:active { color: #fff; border-color: #292929; background-color: #161616; } .close-hZ94c6 { height: 26px; padding: 4px; opacity: .5; cursor: pointer; border-radius: 3px; color: var(--interactive-normal); -webkit-box-sizing: content-box; box-sizing: content-box; } .close-hZ94c6:hover{ color: rgb(248, 54, 54); } .settingsContent-3Pxg5D{ background-color: var(--background-primary); } .header-1TKi98{ background-color: var(--background-text-area); } .content-1LAB8Z{ background-color: var(--background-primary); } .perksModalContentWrapper-2HU6uL{ background-color: var(--background-text-area); } .theme-dark .perksModal-fSYqOq { background-image: url(/assets/c486dc6….svg); background-color: var(--background-text-area); } .theme-dark .perk-2WeBWW{ background-color: var(--background-tertiary); transition: cubic-bezier(0.19, 1, 0.22, 1) 0.2s; } .theme-dark .perk-2WeBWW:hover{ background-color: rgb(65, 65, 65); transform: scale(1.1); } .theme-dark .perk-2WeBWW:active{ background-color: rgb(46, 46, 46); transform: scale(1); } .lookFilled-1Gx00P.colorBrand-3pXr91:disabled{ background-color: rgb(24, 24, 24); } .theme-dark .errorState-KkUH_2{ background-color: var(--background-primary); } .noResults-ZTbl5V, .scroller-hUf6zQ{ background-color: var(--background-secondary); } .footer-1eyGBa{ background-color: var(--background-text-area); } .container-1giJp5{ background-color: var(--background-text-area); } .quickSelectPopoutOption-opKBx9{ background-color: var(--background-text-area); } .root-217Brm{ background-color: var(--background-secondary); } .colorable-1bkp8v.red-33-Lnk.active-1QRrIS, .colorable-1bkp8v.red-33-Lnk:hover{ background: rgb(158, 28, 28); } .unread-2lAfLh { position: absolute; height: 31px; width: 3px; border-radius: 4px 14px 14px 4px; top: 14%; left: 0px; margin-top: -4px; } .unread-2lAfLh{ background-color: #ff6739; } .modeConnected-3IsKId .name-23GUGE, .modeSelected-346R90 .name-23GUGE, .modeSelected-346R90:hover .name-23GUGE, .modeUnread-1qO3K1 .name-23GUGE, .modeUnread-1qO3K1:hover .name-23GUGE, .notInteractive-1X92pj.modeConnected-3IsKId .name-23GUGE, .notInteractive-1X92pj.modeSelected-346R90 .name-23GUGE{ color: #ff6739; } .modeSelected-346R90:hover .name-23GUGE, .modeUnread-1qO3K1:hover .name-23GUGE, .notInteractive-1X92pj.modeConnected-3IsKId .name-23GUGE, .notInteractive-1X92pj.modeSelected-346R90 .name-23GUGE{ color: #ff8059; } .modeSelected-346R90 .name-23GUGE{ color: #ff3131; } .modeSelected-346R90:hover .name-23GUGE{ color: #ff5151; } .name-23GUGE:hover{ color: #bdbdbd; } /*.unreadMentionsBar-1Bu1dC{ background-color: #ff6739; }*/ .connectedAccount-36nQx7{ transition: all 0.1s; } .connectedAccount-36nQx7:hover{ background-color: rgb(56, 56, 56); } .resultsGroup-r_nuzN{ background-color: var(--background-text-area); } .theme-dark .option-96V44q:after { background: var(--background-text-area); } .emojiSection-3Fb9ix{ background: var(--background-text-area); } .guildSection-1EoFKd{ background: var(--background-secondary); } .circleIconButton-1QV--U{ color: rgb(148, 148, 148); background: var(--background-secondary); } .circleIconButton-1QV--U.selected-1JjBPm { color: #fff; background-color: #ff6739; } .circleIconButton-1QV--U:active{ background-color: #ff6739; } .scroller-1d5FgU{ background-color: var(--background-text-area); } .search-1iTphC .searchBox-2_mAlO{ background-color: var(--background-text-area); } .theme-dark .card-3DjzTQ, .theme-dark .iconMask-3b8GzQ{ background-color: var(--background-secondary); } .content-1LAB8Z{ background-color: var(--background-text-area); } .footerTitle-2CYZch{ color: #fff; } .container-UC8Ug1:hover{ background-color: rgb(82, 82, 82); } .container-UC8Ug1{ background-color: rgb(58, 58, 58); } .text-1FOLJS{ color: #fff; } .container-UC8Ug1:active{ background-color: rgb(126, 126, 126); } .title-3w8xhj{ color: #fff; } .subtitle-Nw1LLR{ color: rgb(163, 163, 163); } .templatesList-2E6rTe{ margin-top: -1px; } .content-1LAB8Z{ border-radius: 0; } .lookFilled-1Gx00P.colorGrey-2DXtkV{ color: #fff; background-color: rgb(59, 59, 59); } .lookFilled-1Gx00P.colorGrey-2DXtkV:hover{ background-color: rgb(83, 83, 83); } .lookFilled-1Gx00P.colorGrey-2DXtkV:active{ background-color: rgb(15, 85, 15); } .optionsList-3UMAjx { margin-top: 0px; padding: 0 16px 8px; } .title-LqAd9K{ color: #fff; } .subtitle-1Q3BuX{ color: rgb(163, 163, 163); } .skip-2o6MGG{ color: rgb(163, 163, 163); } .backButton-iA7KIs{ color: #fff; } .footer-2gL1pp { border-radius: 0 0 0px 0px; } .colorDefault-2K3EoJ.focused-3afm-j { background-color: var(--background-primary); color: #fff; } .colorDefault-2K3EoJ.focused-3afm-j:active { background-color: var(--background-text-area); color: #fff; } .colorDefault-2K3EoJ.focused-3afm-j:focus { background-color: var(--background-text-area); color: #fff; } /* coloured bot tags */ .botTagRegular-2HEhHi { transition: .5s; background: #ff262644; color: #ffffff; } .botTagRegular-2HEhHi:hover { transition: .5s; background: #ff2626ab; color: #ffffff; } /* fix for coloured bot tags when bot has custom presence - thanks awish */ .botTagInvert-18-95s{ transition: .5s; background-color: #ff262644; color: #ffffff; } .botTagInvert-18-95s:hover{ transition: .5s; background-color: #ff2626ab; color: #ffffff; } /* Channel icons change colour - yoinked from Corellan */ .wrapper-2jXpOf.modeUnread-1qO3K1 .icon-1DeIlz { color: #ff6739; } .wrapper-2jXpOf.modeUnread-1qO3K1:hover .icon-1DeIlz { color: #ff8059; } .wrapper-2jXpOf.modeSelected-346R90 .icon-1DeIlz { color: #ff3131; } .wrapper-2jXpOf.modeSelected-346R90:hover .icon-1DeIlz { color: #ff5151; } .wrapper-2jXpOf:hover .icon-1DeIlz { color: #bdbdbd; } /* Removes Clyde's popout */ .ephemeral-1PsL1r>.contents-2mQqc9, .ephemeral-1PsL1r .avatar-1BDn8e { pointer-events: none !important; } /* watermark */ @font-face { font-family: 'Discord'; font-weight: 700; src: url("https://raw.githubusercontent.com/powercord-org/powercord-backend/my-awesome-branch/web/src/assets/discord-font.otf") format("opentype"); } @font-face {font-family: "Uni Sans Heavy"; src: url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.eot"); src: url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.woff") format("woff"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/4f6fb2fa3c231278167b36e966718cbb.svg#Uni Sans Heavy") format("svg"); } .wordmark-2iDDfm:after { content: "PYROCORD"; font-size: 15px; position: absolute; width: 3500px; top: 5px; padding-left: 0px; font-family: 'Uni Sans Heavy'; color: #ff6739; } .wordmark-2iDDfm > svg { width: 0px; } /* lil icon in the watermark */ .wordmark-2iDDfm { left: 25px; } .wordmark-2iDDfm:before { content: ''; position: absolute; height: 100%; width: 50px; bottom: 0; right: 0; background: url(https://cdn.discordapp.com/attachments/764362151367278607/830478933572976660/pyrocord_logo.png) center/20px no-repeat; } /* making open folder icons more visible */ .theme-dark .expandedFolderBackground-1cujaW { position: absolute; top: 0; left: 12px; bottom: 8px; width: 48px; border-radius: 24px; -webkit-transition: background-color .15s ease-out; transition: background-color .15s ease-out; background-color: #2b2b2b; } .theme-dark .expandedFolderIconWrapper-Huv7rA { transition: .5s; } /* Inline status selection - yoinked from mackenzie#0173 */ .mask-1qbNWk.icon-1IxfJ2 { --status-icon-size: 75%; height: var(--status-icon-size); width: var(--status-icon-size); margin-left: 33%; } .animatorTop-2Y7x2r.scale-3iLZhb.didRender-33z1u8 > .menu-3sdvDG.styleFixed-sX-yHV > .scroller-3BxosC.thin-1ybCId.scrollerBase-289Jih { display: grid; align-items: center; grid-template-columns: auto auto auto auto; visibility: visible; } .item-1tOPte.colorDefault-2K3EoJ:nth-of-type(7) { grid-column: 1/5; } .animatorTop-2Y7x2r.scale-3iLZhb.didRender-33z1u8 { transition: opacity 0.15s linear 0s; } #status-picker-custom-status .status-1fhblQ { color: var(--reply-content-colour); } #status-picker-custom-status .status-1fhblQ:after { content: ', mac!'; } #status-picker-custom-status { transition: .5s; color: #ff8059; } #status-picker-custom-status:hover { transition: .5s; color: #ff6739; } #status-picker-idle .status-1fhblQ, #status-picker-dnd .status-1fhblQ, #status-picker-online .status-1fhblQ, #status-picker-invisible .status-1fhblQ, .description-2L932D, .separator-2I32lJ { display: none; } /* Calendar stuffs by Corellan */ .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day { transition: .5s; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day:hover { transition: .5s; background: #ff3131 !important; color: #fff; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day--selected { transition: .25s; background: var(--accent-primary) !important; color: #ff8059; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day--selected:hover { transition: .25s; background: #ff6739 !important; color: #fff; } .theme-dark .calendarPicker-2yf6Ci .react-datepicker__day.react-datepicker__day--selected:after, .theme-light .calendarPicker-2yf6Ci .react-datepicker__day.react-datepicker__day--selected:after { background: #ff6739; color: #ff6739; } /* Making tooltips actually visible (taken from a newer version of forgottenkeep) */ .tooltip-2QfLtc { background-color: var(--background-text-area) !important; } /* Draggable title bar on Windows (by void#0001) */ .maximized .titleBar-AC4pGV { margin-top: 0; height: 22px; } .maximized .titleBar-AC4pGV .winButton-iRh8-Z { padding-top: 4px; } /* very scuffed home button */ .wrapper-1BJsBx.selected-bZ3Lue .childWrapper-anI2G9, .wrapper-1BJsBx:hover .childWrapper-anI2G9{ background-color: #ff6739; } /* Transparent Settings Screen */ .layers-3iHuyZ>.layer-3QrUeG:first-child{ transform: scale(1) !important; opacity: 1 !important; } .layers-3iHuyZ>.layer-3QrUeG:nth-child(2),.perksModal-fSYqOq{ background-color: rgba(0, 0, 0, 0.5)!important; backdrop-filter: blur(20px); } .contentRegionScroller-26nc1e,.contentRegion-3nDuYy,.standardSidebarView-3F1I7i, .sidebarRegionScroller-3MXcoP{ background: transparent; } /* user popout colours */ .activity-11LB_k{ background-color: #272727; } .activity-1ythUs{ background-color: #272727; } .headerPlaying-j0WQBV .headerTop-3C2Zn0 { background-color: #181818; } /* wumpus tooltip change cos fuck the original text (<NAME>#1166) */ .wumpusTooltip-3V90tI { font-size: 0px; } .wumpusTooltip-3V90tI::before { font-size: 12px; content: "I'm a fucking idiot or an alt" } /* reactions */ .reaction-1hd86g.reactionMe-wv5HKu{ background-color: #ff80594f !important; } .reactionMe-wv5HKu .reactionCount-2mvXRV, .reactionMe-wv5HKu:hover .reactionCount-2mvXRV{ color: #ff6739; transition: 0.2s; } .reaction-1hd86g.reactionMe-wv5HKu .reactionCount-2mvXRV { color: #ff6739; } .reaction-1hd86g.reactionMe-wv5HKu .reactionCount-2mvXRV:hover { color: #ff3131; } /* fuck sending gifts */ button[aria-label='Send a gift'] { display: none !important; opacity: 0; } ::selection { background-color: #ff6739; opacity: 50%; } /* gets rid of the colours cos fuck this new rebrand, hope the exec who made it dies in a high speed car crash */ .colorLink-2vG20E { color:#ff6739; } .reaction-1hd86g { border: none; border-radius:.25rem; } /* join server and guild discovery*/ svg .circleIcon-2_77lA { color: #ff6739; } svg .circleIcon-2_77lA:hover { color: #fff; } div .circleIconButton-hZmpE8:hover { background-color: #ff6739; }
0.423935
0.060308
*{ word-wrap:break-word; outline:none; } body{ background:#FFF;} body, td, input, textarea, select, button{ color:#555; font:12px "Microsoft Yahei", "Lucida Grande", Verdana, Lucida, Helvetica, Arial, 'Simsun', sans-serif; } body, ul, ol, li, dl, dt , dd, p, h1, h2, h3, h4, h5, h6, form, fieldset { margin:0; padding:0; } ul,ol,li{list-style-image: none;list-style-type: none;} h1, h2, h3, h4, h5, h6{ font-size:12px; } a { color:#333; text-decoration:none; } a:hover { color:#0085CF; text-decoration:none; } a img { border:none; } a {blr:expression(this.onFocus=this.blur())} .layout{ width: 100%; height: 91px; background: url(../images/mac/body_bg.png) repeat-x 0px 0px; } .layout-header { background: url(../images/mac/bg_position.gif) no-repeat 0 0; text-align:left; width:100%; height: 91px; position:relative; z-index:1; zoom:1;} /*#title { width: 170px; height: 80px; position: absolute; top: 0px; left: 0px; background: url(../images/mac/shopnc_logo1.png) no-repeat no-repeat; float:left;}*/ /*zmr>v30*/ .top-nav { background: url(../images/mac/bg_position.png) no-repeat scroll 0px -100px; width:330px; height: 28px; position: absolute; z-index:1; top: 16px; right: 8px;} .top-nav ul { line-height: 20px; color:#999; height:20px; padding:5px 4px 3px 10px;} .top-nav li { color:#565D68; background: url(../images/mac/bg_position.png) no-repeat scroll -638px -99px; display:inline; padding-left: 4px; margin-left: 2px; float: left;} .top-nav li a { color:#565D68; line-height:16px; height:16px; border:dotted 1 #000; padding-left: 3px;} .top-nav li a:hover { color: #0085CF; text-decoration: underline;} .top-nav li a span { padding-right: 3px;} .top-nav li.adminid { background: url(../images/mac/bg_position.png) no-repeat scroll -350px -100px; white-space:nowrap; max-width:146px; _width:expression((documentElement.clientWidth >146) ? "146px" : "auto" );/* IE6 */ height:20px; padding: 0 0 0 24px; margin-right:4px; overflow: hidden;} .main-nav { height: 75px; position: absolute; z-index: 1; top: 16px; left: 152px;} .main-nav ul { height: 42px; padding-left: 1px; } .main-nav ul li { font-size: 14px; font-weight: 700; line-height: 20px; background: url(../images/mac/button_bg.png) no-repeat right -84px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 42px; float: left; display: inline; padding-right: 5px; margin-left: 3px;} .main-nav ul li a.link { background: url(../images/mac/button_bg.png) no-repeat 0 9999px; _background-image: none;/* IE6 */ height: 42px; float: left; padding-left: 9px; cursor: pointer;} .main-nav ul li a:hover.link { text-decoration: none; _text-decoration: underline; background-position: left -126px;} .main-nav ul li a.actived , #nav ul li a:hover.actived { background: url(../images/mac/button_bg.png) no-repeat 0px 0px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 42px; padding-left: 8px;} .main-nav ul li a.link span { color: #CCC; background: url(../images/mac/button_bg.png) no-repeat 0px 9999px; _background-image: none;/* IE6 */ height: 20px; float: left; padding: 11px 14px 11px 5px;} .main-nav ul li a:hover.link span { color: #FFF; background-position: right -168px;} .main-nav ul li a.actived span , #nav ul li a:hover.actived span { color: #000; background: url(../images/mac/button_bg.png) no-repeat right -42px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 20px; padding: 11px 14px 11px 5px;} .loca { line-height:24px; color: #565D68; height:24px; position: absolute; z-index: 2; top: 62px; left: 170px;} .loca div, .loca strong, .crumbs span, span.arrow { float:left; margin-left:2px;} .loca span.arrow { background: url(../images/mac/bg_position.png) no-repeat scroll -50px -155px; width: 5px; height:9px; margin: 8px 6px 7px 6px; _margin:8px 3px 7px 3px; /* IE6 */} /*左侧导航菜单栏 ------------------------------------------------------------------- */ .menutd { background: url(../images/mac/left.png) repeat-y;height:auto; float: left;position: relative} .main-menu{ position:relative; z-index:20; width:161px;} .main-menu ul { background: url(../images/mac/left.png) repeat-y 0px 0px; display:none; width: 161px; position:absolute; top:10px; left:0px;} .main-menu li a , .main-menu li a.selected{ line-height: 20px; text-decoration: none; color: #565D68; background: url(../images/mac/bg_position.png) no-repeat ; display: block; width: 120px; height: 20px; float: left; clear: left; padding: 4px 12px 4px 29px; margin: 0;} .main-menu li a { background-position: 0 -170px;} .main-menu li a.selected, .main-menu li a:hover.selected{ color: #FFF; background-color: #6C7581; background-position: -161px -170px;} .main-menu dl dt{ background-position: -322px -170px; cursor: pointer;} .main-menu li a:hover{ color: #343640; background-position: -479px -142px;} /*内容页面样式 ------------------------------------------------------------------- */ .content{ float: right; width:1700px; height: auto; position: relative; } .header_line{ height: 50px; line-height: 50px; margin-top: 10px; background:url("../images/mac/fixed_bg.png") repeat-x bottom; color: cornflowerblue; } .header_line h3{ font-size: 16px; float: left; margin-right:20px; } .tab-base {float: left; overflow: hidden; padding-top:16px; } .tab-base li { float: left;} .tab-base a { font-weight: 700; line-height: 20px; background: #FFF url(../images/sky/bg_position.png) no-repeat 0px -200px; height: 20px; float: left; padding-left: 14px; margin-right:4px; cursor: pointer;} .tab-base a:hover {color: #5E728A; background-position: 0 -220px; } .tab-base a span {color: #565D68; background: url(../images/sky/bg_position.png) no-repeat 9999px 9999px; float: left; padding-right: 10px; } .tab-base a:hover span { background-position: 100% -220px;} .tab-base a.current, .tab-base a:hover.current { background-position: 0 -240px; cursor: default;} .tab-base a.current span, .tab-base a:hover.current span{ color: #FFF; background-position: 100% -240px;} .content-group{ margin-top: 20px; } .form-group{ width: 100%; height: 59px; border-bottom: 1px solid #bbdbf1; } .group-title{ height: 20px; line-height: 20px; font-weight: bold; } .group-content{ margin-top: 10px; height: 20px; line-height: 20px; } .input-text{ width: 250px; } .group-tips{ padding-left: 20px; } /*表单元素样式*/ input[type="text"], input[type="password"], textarea, select, .type-file-text , .editable, .editable-tarea { color: #333333; background:#FAFAFA none repeat scroll 0 0 ; border-style: solid; border-width: 1px; border-color: #ABADB3 #E2E3EA #E2E3EA #ABADB3;} input[type="text"], input[type="password"], textarea, select, .type-file-text , .editable, .editable2, .editable-tarea, .editable-tarea2 { padding: 2px 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/ resize: none;/*禁止调节元素的尺寸*/} input[type="text"]:focus, input[type="text"]:hover, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:hover, input[type="password"]:active, textarea:hover, textarea:focus, textarea:active { color: #33464F; background-color: #fff; border: 1px solid ; border-color:#71CBEF /*#CBE9F3 #CBE9F3 #71CBEF*/;-moz-box-shadow:0 0 5px rgba(82, 168, 236, 0.5); -webkit-box-shadow: 0 0 5px rgba(82, 168, 236, 0.5); box-shadow: 0 0 5px rgba(82, 168, 236, 0.5);} .editable2, .editable-tarea2 { color: #33464F; background-color: #FFF; border: 1px dotted ; border-color:#71CBEF;} textarea{ resize: vertical !important;/*Textarea支持调节元素的高度*/} .editable, .editable2, input[type="text"], input[type="password"] { line-height:20px; white-space: nowrap; display:inline-block; height:20px; overflow: hidden; cursor:text;} .editable-tarea, .editable-tarea2, textarea { line-height:18px; display:inline-block; height:36px; cursor:text; overflow:auto;} .tarea { height: 75px; width: 400px;} .sort input , .sort .editable , .sort .editable2 { width:36px;} .name input , .name .editable , .name .editable2 { width:250px;} .tag input , .tag .editable , .tag .editable2 { width:480px;} .goods-name textarea , .editable-tarea , .editable-tarea2 { width:250px;} .class input , .class .editable , .class .editable2 { width:120px;} input.readonly , textarea.readonly, textarea.readonly:focus ,textarea.readonly:hover, input.readonly:focus , input.readonly:hover {backgorund:#FFF; border: solid 1px; border-color: #EEE #F5F5F5 #F5F5F5 #EEE;} .type-file-box { position:relative; width:256px; height:25px; margin:0; padding:0; float:left;} .type-file-text{ width:187px; line-height:19px; height:19px; margin:0 2px 0 0; float:left; display:inline;} .type-file-button , input.type-file-button:focus { background: url(../images/sky/bg_position.gif) no-repeat -50px -450px; display: inline; width: 57px; height: 25px; float: left; border: 0;} .type-file-file { position:absolute; top:0px; right:0px; height:25px; width:256px; filter:alpha(opacity:0); opacity: 0; cursor: pointer;} .type-file-show { float: right; margin-right:10px; cursor: help; } .type-file-preview { background: #FFF; display: none; padding:5px; border: solid 5px #71CBEF; position: absolute; z-index:999;} .image_display .type-file-show { width: 16px; height: 16px; padding: 2px; border: solid 1px #D8D8D8; cursor:auto;} /* table ------------------------------------------------------------------- */ .table { clear:both; width:100%; margin-top: 8px} .table th, .table td{ padding:6px !important; height:26px; } .tb-type1{} .tb-type1 td{ padding:5px 5px 3px 0;} .tb-type1 th{ padding:5px 5px 3px 0; line-height:21px; color: #333;} .tb-type1 td input[type="text"], .tb-type1 td select{ margin-right:4px; _margin-right:2px; margin-left:4px; _margin-left:2px; } .tb-type1 td select { width:auto;} .tb-type1 .txt-short { width:80px;} .tb-type1 .txt { width:140px;} .tb-type1 .txt2 { width:220px;} .tb-type1 .date , .tb-type1 .date:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width:70px;} .tb-type1 .date { background-color: #FAFAFA; } .tb-type1 .date:hover { background-color: #FFF;} #gcategory select{ margin-right:3px;} .tb-type1 strong{ margin-right:5px; color:#F60; } .align-center {text-align:center;} .thead {line-height: 34px; height: 34px; font-weight: bold; color: #444; text-align: center;} .thead td {border-bottom: 1px solid #bbdbf1;} .thead th { font-size: 13px; font-weight: 700; color: #333; white-space: nowrap; border-top: solid 1px #DEEFFB; } /* tb */ .tb-type2{} .tb-type2 tr.hover:hover .tips2{ color:#333; } .tb-type2 td, tb-type2 th.td{ padding:5px 5px 3px 0; border-top: 1px dotted #DFE4EA; } .tb-type2 .tfoot td {padding:5px 5px 3px 0; border-top: 1px solid #D6DDE4;} .tb-type2 th{ padding:5px 5px 3px 0; line-height:21px; font-size: 12px; } .tb-type2 .txt, .tb-type2 .txtnobd{ width:200px; margin-right:10px; } .tb-type2 .smtxt { margin-right: 5px; width: 25px; } .nowrap { white-space: nowrap; } .tb-type2 .required { padding:3px 0 3px 5px; font-weight:700; } .tb-type2 .rowform{ padding-left:5px; width: 400px; } .vatop { vertical-align:top; } a.btn { font-size: 14px; color: #FFF; font-weight: 700; line-height:18px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll 0 -280px; display: inline-block; height: 38px; padding-left: 8px; margin-right:6px; cursor: pointer;} a.btn:hover { background-position: 0 -318px; color: #FFF;} a.btn:active { background-position: 0 -356px; color: #333;} a.btn span { background: #FFF url(../images/mac/bg_position.png) no-repeat scroll 100% -280px; display: inline-block; height: 18px; padding: 8px 14px 12px 6px;} a:hover.btn span { background-position: 100% -318px;} a:active.btn span { background-position: 100% -356px;} a.btn-search { color: #555; line-height:24px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll -130px -450px; display: inline-block; width: 60px; height: 26px; margin-top: 1px; cursor: pointer;} a.btn-search:hover { background-position: -200px -450px;} a.btn-search:active { background-position: -270px -450px;} a.btns{ font-weight: 600; color: #FFF; line-height:16px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll 0 -800px; display: inline-block; height: 26px; padding-left: 7px; margin-left:5px; cursor: pointer;} a.btns:hover { background-position: 0 -830px;} a.btns:active { background-position: 0 -860px;} a.btns span { background: #FFF url(../images/mac/bg_position.png) no-repeat scroll 100% -800px; display: inline-block; height: 16px; padding: 4px 7px 6px 0;} a:hover.btns span { color: #FFF; background-position: 100% -830px;} a:active.btns span{ color: #63C7ED; background-position: 100% -860px;} a.btn-add, a.btn-add-nofloat { background: url(../images/mac/bg_position.png) no-repeat scroll 0px -720px; float: left; padding-left: 24px;} a.btn-add span, a.btn-add-nofloat span { font-weight: 700; color: #5E728A;} a:hover.btn-add span, a:hover.btn-add-nofloat span { text-decoration: underline;} a.btn-add-nofloat { display: inline-block; float:none;} .fl{ float: left; } .pagination { padding: 2px; float:right;} .pagination ul { margin: 0; padding: 0; } .pagination ul li { line-height: 22px; color: #AAA; display: inline !important; list-style-type: none; width: auto !important; height: auto !important; float: left; padding: 0px; margin: 0 1px !important;} .pagination li span {font-size: 13px; list-style-type: none; display: inline; float: left; padding: 3px 10px; margin: 0 1px 0 0; } .pagination li a span , .pagination li a:visited span { color: #0D93BF; text-decoration: none; cursor:pointer; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/} .pagination li a:hover span, .pagination li a:active span{ color: #000; background-color: #FFF; cursor:pointer; -khtml-opacity: .9; -moz-opacity: 0.9; -moz-box-shadow:0 0 3px rgba(204, 204, 204, 0.5); -webkit-box-shadow: 0 0 3px rgba(204, 204, 204, 0.5); box-shadow: 0 0 3px rgba(204, 204, 204, 0.5);} .pagination li span.currentpage{ color:#FFF; font-weight: bold; background-color: #099ACF; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/} .paixv a {text-decoration:none; color:#000} .paixv a:hover {color:#06F} .page { padding: 9px 20px 20px; text-align: left;} .fixed-bar {background: #FFF url(../images/sky/fixed_bg.png) repeat-x scroll center bottom; width: 89%; padding: 8px 20px 8px 0; position: absolute; z-index: 99;} * html .fixedbar { width: 100%; margin-top: -10px; position: relative; left: -20px;} .fixed-empty { height: 50px !important;} .item-title { line-height: 20px; margin-bottom: 0 !important; clear: both; overflow: hidden; _padding-bottom: 10px; +padding-bottom: 10px;} .item-title h3 { float: left; margin-right:20px; } .table { clear:both; width:100%; margin-top: 8px} .table th, .table td{ padding:6px !important; height:26px; } .nohover td { background:#FFF !important;} .noborder, .noborder td{ border-bottom:0; border-top:0; } .msgbg { background: url(../images/System.gif) scroll no-repeat 80px 0px; width: 250px;} .msg .tip2 { line-height: 32px; color:#999; } .space td { font-weight: 600; color: #329ED1; background-color: #F3FBFE;} #prompt th { cursor: n-resize;} #prompt td { border-top: 1px solid #DEEFFB;} #prompt div { background : url(../images/sky/prompt.gif) no-repeat 0px -30px; float:left; padding-left: 24px;} #prompt .ac { background-position: 0px 2px; } #prompt .title h5 {float:left;} #prompt .title span.up { border-color: #09C #F3FBFE #F3FBFE #F3FBFE; margin: 9px 0 0 10px; } #prompt .title span { border-width:4px; border-color:#F3FBFE #F3FBFE #09C #F3FBFE; border-style:solid; width:0; height:0; margin: 5px 0 0 10px; line-height:0; float:left;} #prompt .nobg .title span.up { border-color: #09C #FFF #FFF #FFF; margin: 9px 0 0 10px; } #prompt .nobg .title span { border-width:4px; border-color:#FFF #FFF #09C #FFF; border-style:solid; width:0; height:0; margin: 5px 0 0 10px; line-height:0; float:left;} #prompt ul {} #prompt ul li { line-height:26px; color:#888; background: url(../images/sky/bg_position.gif) no-repeat -628px -888px; padding-left:24px;} /* Used for the Switch effect: */ .cb-enable, .cb-disable, .cb-enable span, .cb-disable span { background: url(../images/form_onoff.png) repeat-x; display: block; float: left;} .cb-enable span, .cb-disable span { font-weight: bold; line-height: 24px; background-repeat: no-repeat; display: block;} .cb-enable span { background-position: left -72px; padding: 0 10px;} .cb-disable span { background-position: right -144px; padding: 0 10px;} .cb-disable.selected { background-position: 0 -24px;} .cb-disable.selected span { background-position: right -168px; color: #fff;} .cb-enable.selected { background-position: 0 -48px;} .cb-enable.selected span { background-position: left -120px; color: #fff;} .onoff label { cursor: pointer;} .onoff { position: relative; overflow: hidden; display: block;} .onoff input[type="radio"] { position: absolute; left:-999px; } .txt, select, .vmiddle , .type-file-text { vertical-align: middle;} .rowform .txt, .rowform textarea { margin-right: 10px; width: 250px;} .rowform .date , .rowform .date:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width: 226px;} .rowform .date { background-color: #FAFAFA;} .rowform .date:hover { background-color: #FFF;} .rowform .date-short , .rowform .date-short:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width: 100px;} .rowform .date-short { background-color: #FAFAFA;} .rowform .date-short:hover { background-color: #FFF;}
public/system/css/base.css
*{ word-wrap:break-word; outline:none; } body{ background:#FFF;} body, td, input, textarea, select, button{ color:#555; font:12px "Microsoft Yahei", "Lucida Grande", Verdana, Lucida, Helvetica, Arial, 'Simsun', sans-serif; } body, ul, ol, li, dl, dt , dd, p, h1, h2, h3, h4, h5, h6, form, fieldset { margin:0; padding:0; } ul,ol,li{list-style-image: none;list-style-type: none;} h1, h2, h3, h4, h5, h6{ font-size:12px; } a { color:#333; text-decoration:none; } a:hover { color:#0085CF; text-decoration:none; } a img { border:none; } a {blr:expression(this.onFocus=this.blur())} .layout{ width: 100%; height: 91px; background: url(../images/mac/body_bg.png) repeat-x 0px 0px; } .layout-header { background: url(../images/mac/bg_position.gif) no-repeat 0 0; text-align:left; width:100%; height: 91px; position:relative; z-index:1; zoom:1;} /*#title { width: 170px; height: 80px; position: absolute; top: 0px; left: 0px; background: url(../images/mac/shopnc_logo1.png) no-repeat no-repeat; float:left;}*/ /*zmr>v30*/ .top-nav { background: url(../images/mac/bg_position.png) no-repeat scroll 0px -100px; width:330px; height: 28px; position: absolute; z-index:1; top: 16px; right: 8px;} .top-nav ul { line-height: 20px; color:#999; height:20px; padding:5px 4px 3px 10px;} .top-nav li { color:#565D68; background: url(../images/mac/bg_position.png) no-repeat scroll -638px -99px; display:inline; padding-left: 4px; margin-left: 2px; float: left;} .top-nav li a { color:#565D68; line-height:16px; height:16px; border:dotted 1 #000; padding-left: 3px;} .top-nav li a:hover { color: #0085CF; text-decoration: underline;} .top-nav li a span { padding-right: 3px;} .top-nav li.adminid { background: url(../images/mac/bg_position.png) no-repeat scroll -350px -100px; white-space:nowrap; max-width:146px; _width:expression((documentElement.clientWidth >146) ? "146px" : "auto" );/* IE6 */ height:20px; padding: 0 0 0 24px; margin-right:4px; overflow: hidden;} .main-nav { height: 75px; position: absolute; z-index: 1; top: 16px; left: 152px;} .main-nav ul { height: 42px; padding-left: 1px; } .main-nav ul li { font-size: 14px; font-weight: 700; line-height: 20px; background: url(../images/mac/button_bg.png) no-repeat right -84px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 42px; float: left; display: inline; padding-right: 5px; margin-left: 3px;} .main-nav ul li a.link { background: url(../images/mac/button_bg.png) no-repeat 0 9999px; _background-image: none;/* IE6 */ height: 42px; float: left; padding-left: 9px; cursor: pointer;} .main-nav ul li a:hover.link { text-decoration: none; _text-decoration: underline; background-position: left -126px;} .main-nav ul li a.actived , #nav ul li a:hover.actived { background: url(../images/mac/button_bg.png) no-repeat 0px 0px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 42px; padding-left: 8px;} .main-nav ul li a.link span { color: #CCC; background: url(../images/mac/button_bg.png) no-repeat 0px 9999px; _background-image: none;/* IE6 */ height: 20px; float: left; padding: 11px 14px 11px 5px;} .main-nav ul li a:hover.link span { color: #FFF; background-position: right -168px;} .main-nav ul li a.actived span , #nav ul li a:hover.actived span { color: #000; background: url(../images/mac/button_bg.png) no-repeat right -42px; _background-image: url(../images/mac/button_bg.gif);/* IE6 */ height: 20px; padding: 11px 14px 11px 5px;} .loca { line-height:24px; color: #565D68; height:24px; position: absolute; z-index: 2; top: 62px; left: 170px;} .loca div, .loca strong, .crumbs span, span.arrow { float:left; margin-left:2px;} .loca span.arrow { background: url(../images/mac/bg_position.png) no-repeat scroll -50px -155px; width: 5px; height:9px; margin: 8px 6px 7px 6px; _margin:8px 3px 7px 3px; /* IE6 */} /*左侧导航菜单栏 ------------------------------------------------------------------- */ .menutd { background: url(../images/mac/left.png) repeat-y;height:auto; float: left;position: relative} .main-menu{ position:relative; z-index:20; width:161px;} .main-menu ul { background: url(../images/mac/left.png) repeat-y 0px 0px; display:none; width: 161px; position:absolute; top:10px; left:0px;} .main-menu li a , .main-menu li a.selected{ line-height: 20px; text-decoration: none; color: #565D68; background: url(../images/mac/bg_position.png) no-repeat ; display: block; width: 120px; height: 20px; float: left; clear: left; padding: 4px 12px 4px 29px; margin: 0;} .main-menu li a { background-position: 0 -170px;} .main-menu li a.selected, .main-menu li a:hover.selected{ color: #FFF; background-color: #6C7581; background-position: -161px -170px;} .main-menu dl dt{ background-position: -322px -170px; cursor: pointer;} .main-menu li a:hover{ color: #343640; background-position: -479px -142px;} /*内容页面样式 ------------------------------------------------------------------- */ .content{ float: right; width:1700px; height: auto; position: relative; } .header_line{ height: 50px; line-height: 50px; margin-top: 10px; background:url("../images/mac/fixed_bg.png") repeat-x bottom; color: cornflowerblue; } .header_line h3{ font-size: 16px; float: left; margin-right:20px; } .tab-base {float: left; overflow: hidden; padding-top:16px; } .tab-base li { float: left;} .tab-base a { font-weight: 700; line-height: 20px; background: #FFF url(../images/sky/bg_position.png) no-repeat 0px -200px; height: 20px; float: left; padding-left: 14px; margin-right:4px; cursor: pointer;} .tab-base a:hover {color: #5E728A; background-position: 0 -220px; } .tab-base a span {color: #565D68; background: url(../images/sky/bg_position.png) no-repeat 9999px 9999px; float: left; padding-right: 10px; } .tab-base a:hover span { background-position: 100% -220px;} .tab-base a.current, .tab-base a:hover.current { background-position: 0 -240px; cursor: default;} .tab-base a.current span, .tab-base a:hover.current span{ color: #FFF; background-position: 100% -240px;} .content-group{ margin-top: 20px; } .form-group{ width: 100%; height: 59px; border-bottom: 1px solid #bbdbf1; } .group-title{ height: 20px; line-height: 20px; font-weight: bold; } .group-content{ margin-top: 10px; height: 20px; line-height: 20px; } .input-text{ width: 250px; } .group-tips{ padding-left: 20px; } /*表单元素样式*/ input[type="text"], input[type="password"], textarea, select, .type-file-text , .editable, .editable-tarea { color: #333333; background:#FAFAFA none repeat scroll 0 0 ; border-style: solid; border-width: 1px; border-color: #ABADB3 #E2E3EA #E2E3EA #ABADB3;} input[type="text"], input[type="password"], textarea, select, .type-file-text , .editable, .editable2, .editable-tarea, .editable-tarea2 { padding: 2px 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/ resize: none;/*禁止调节元素的尺寸*/} input[type="text"]:focus, input[type="text"]:hover, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:hover, input[type="password"]:active, textarea:hover, textarea:focus, textarea:active { color: #33464F; background-color: #fff; border: 1px solid ; border-color:#71CBEF /*#CBE9F3 #CBE9F3 #71CBEF*/;-moz-box-shadow:0 0 5px rgba(82, 168, 236, 0.5); -webkit-box-shadow: 0 0 5px rgba(82, 168, 236, 0.5); box-shadow: 0 0 5px rgba(82, 168, 236, 0.5);} .editable2, .editable-tarea2 { color: #33464F; background-color: #FFF; border: 1px dotted ; border-color:#71CBEF;} textarea{ resize: vertical !important;/*Textarea支持调节元素的高度*/} .editable, .editable2, input[type="text"], input[type="password"] { line-height:20px; white-space: nowrap; display:inline-block; height:20px; overflow: hidden; cursor:text;} .editable-tarea, .editable-tarea2, textarea { line-height:18px; display:inline-block; height:36px; cursor:text; overflow:auto;} .tarea { height: 75px; width: 400px;} .sort input , .sort .editable , .sort .editable2 { width:36px;} .name input , .name .editable , .name .editable2 { width:250px;} .tag input , .tag .editable , .tag .editable2 { width:480px;} .goods-name textarea , .editable-tarea , .editable-tarea2 { width:250px;} .class input , .class .editable , .class .editable2 { width:120px;} input.readonly , textarea.readonly, textarea.readonly:focus ,textarea.readonly:hover, input.readonly:focus , input.readonly:hover {backgorund:#FFF; border: solid 1px; border-color: #EEE #F5F5F5 #F5F5F5 #EEE;} .type-file-box { position:relative; width:256px; height:25px; margin:0; padding:0; float:left;} .type-file-text{ width:187px; line-height:19px; height:19px; margin:0 2px 0 0; float:left; display:inline;} .type-file-button , input.type-file-button:focus { background: url(../images/sky/bg_position.gif) no-repeat -50px -450px; display: inline; width: 57px; height: 25px; float: left; border: 0;} .type-file-file { position:absolute; top:0px; right:0px; height:25px; width:256px; filter:alpha(opacity:0); opacity: 0; cursor: pointer;} .type-file-show { float: right; margin-right:10px; cursor: help; } .type-file-preview { background: #FFF; display: none; padding:5px; border: solid 5px #71CBEF; position: absolute; z-index:999;} .image_display .type-file-show { width: 16px; height: 16px; padding: 2px; border: solid 1px #D8D8D8; cursor:auto;} /* table ------------------------------------------------------------------- */ .table { clear:both; width:100%; margin-top: 8px} .table th, .table td{ padding:6px !important; height:26px; } .tb-type1{} .tb-type1 td{ padding:5px 5px 3px 0;} .tb-type1 th{ padding:5px 5px 3px 0; line-height:21px; color: #333;} .tb-type1 td input[type="text"], .tb-type1 td select{ margin-right:4px; _margin-right:2px; margin-left:4px; _margin-left:2px; } .tb-type1 td select { width:auto;} .tb-type1 .txt-short { width:80px;} .tb-type1 .txt { width:140px;} .tb-type1 .txt2 { width:220px;} .tb-type1 .date , .tb-type1 .date:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width:70px;} .tb-type1 .date { background-color: #FAFAFA; } .tb-type1 .date:hover { background-color: #FFF;} #gcategory select{ margin-right:3px;} .tb-type1 strong{ margin-right:5px; color:#F60; } .align-center {text-align:center;} .thead {line-height: 34px; height: 34px; font-weight: bold; color: #444; text-align: center;} .thead td {border-bottom: 1px solid #bbdbf1;} .thead th { font-size: 13px; font-weight: 700; color: #333; white-space: nowrap; border-top: solid 1px #DEEFFB; } /* tb */ .tb-type2{} .tb-type2 tr.hover:hover .tips2{ color:#333; } .tb-type2 td, tb-type2 th.td{ padding:5px 5px 3px 0; border-top: 1px dotted #DFE4EA; } .tb-type2 .tfoot td {padding:5px 5px 3px 0; border-top: 1px solid #D6DDE4;} .tb-type2 th{ padding:5px 5px 3px 0; line-height:21px; font-size: 12px; } .tb-type2 .txt, .tb-type2 .txtnobd{ width:200px; margin-right:10px; } .tb-type2 .smtxt { margin-right: 5px; width: 25px; } .nowrap { white-space: nowrap; } .tb-type2 .required { padding:3px 0 3px 5px; font-weight:700; } .tb-type2 .rowform{ padding-left:5px; width: 400px; } .vatop { vertical-align:top; } a.btn { font-size: 14px; color: #FFF; font-weight: 700; line-height:18px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll 0 -280px; display: inline-block; height: 38px; padding-left: 8px; margin-right:6px; cursor: pointer;} a.btn:hover { background-position: 0 -318px; color: #FFF;} a.btn:active { background-position: 0 -356px; color: #333;} a.btn span { background: #FFF url(../images/mac/bg_position.png) no-repeat scroll 100% -280px; display: inline-block; height: 18px; padding: 8px 14px 12px 6px;} a:hover.btn span { background-position: 100% -318px;} a:active.btn span { background-position: 100% -356px;} a.btn-search { color: #555; line-height:24px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll -130px -450px; display: inline-block; width: 60px; height: 26px; margin-top: 1px; cursor: pointer;} a.btn-search:hover { background-position: -200px -450px;} a.btn-search:active { background-position: -270px -450px;} a.btns{ font-weight: 600; color: #FFF; line-height:16px; background: transparent url(../images/mac/bg_position.png) no-repeat scroll 0 -800px; display: inline-block; height: 26px; padding-left: 7px; margin-left:5px; cursor: pointer;} a.btns:hover { background-position: 0 -830px;} a.btns:active { background-position: 0 -860px;} a.btns span { background: #FFF url(../images/mac/bg_position.png) no-repeat scroll 100% -800px; display: inline-block; height: 16px; padding: 4px 7px 6px 0;} a:hover.btns span { color: #FFF; background-position: 100% -830px;} a:active.btns span{ color: #63C7ED; background-position: 100% -860px;} a.btn-add, a.btn-add-nofloat { background: url(../images/mac/bg_position.png) no-repeat scroll 0px -720px; float: left; padding-left: 24px;} a.btn-add span, a.btn-add-nofloat span { font-weight: 700; color: #5E728A;} a:hover.btn-add span, a:hover.btn-add-nofloat span { text-decoration: underline;} a.btn-add-nofloat { display: inline-block; float:none;} .fl{ float: left; } .pagination { padding: 2px; float:right;} .pagination ul { margin: 0; padding: 0; } .pagination ul li { line-height: 22px; color: #AAA; display: inline !important; list-style-type: none; width: auto !important; height: auto !important; float: left; padding: 0px; margin: 0 1px !important;} .pagination li span {font-size: 13px; list-style-type: none; display: inline; float: left; padding: 3px 10px; margin: 0 1px 0 0; } .pagination li a span , .pagination li a:visited span { color: #0D93BF; text-decoration: none; cursor:pointer; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/} .pagination li a:hover span, .pagination li a:active span{ color: #000; background-color: #FFF; cursor:pointer; -khtml-opacity: .9; -moz-opacity: 0.9; -moz-box-shadow:0 0 3px rgba(204, 204, 204, 0.5); -webkit-box-shadow: 0 0 3px rgba(204, 204, 204, 0.5); box-shadow: 0 0 3px rgba(204, 204, 204, 0.5);} .pagination li span.currentpage{ color:#FFF; font-weight: bold; background-color: #099ACF; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;/*Firefox\Chrome\Safari\IE9\元素圆角效果*/} .paixv a {text-decoration:none; color:#000} .paixv a:hover {color:#06F} .page { padding: 9px 20px 20px; text-align: left;} .fixed-bar {background: #FFF url(../images/sky/fixed_bg.png) repeat-x scroll center bottom; width: 89%; padding: 8px 20px 8px 0; position: absolute; z-index: 99;} * html .fixedbar { width: 100%; margin-top: -10px; position: relative; left: -20px;} .fixed-empty { height: 50px !important;} .item-title { line-height: 20px; margin-bottom: 0 !important; clear: both; overflow: hidden; _padding-bottom: 10px; +padding-bottom: 10px;} .item-title h3 { float: left; margin-right:20px; } .table { clear:both; width:100%; margin-top: 8px} .table th, .table td{ padding:6px !important; height:26px; } .nohover td { background:#FFF !important;} .noborder, .noborder td{ border-bottom:0; border-top:0; } .msgbg { background: url(../images/System.gif) scroll no-repeat 80px 0px; width: 250px;} .msg .tip2 { line-height: 32px; color:#999; } .space td { font-weight: 600; color: #329ED1; background-color: #F3FBFE;} #prompt th { cursor: n-resize;} #prompt td { border-top: 1px solid #DEEFFB;} #prompt div { background : url(../images/sky/prompt.gif) no-repeat 0px -30px; float:left; padding-left: 24px;} #prompt .ac { background-position: 0px 2px; } #prompt .title h5 {float:left;} #prompt .title span.up { border-color: #09C #F3FBFE #F3FBFE #F3FBFE; margin: 9px 0 0 10px; } #prompt .title span { border-width:4px; border-color:#F3FBFE #F3FBFE #09C #F3FBFE; border-style:solid; width:0; height:0; margin: 5px 0 0 10px; line-height:0; float:left;} #prompt .nobg .title span.up { border-color: #09C #FFF #FFF #FFF; margin: 9px 0 0 10px; } #prompt .nobg .title span { border-width:4px; border-color:#FFF #FFF #09C #FFF; border-style:solid; width:0; height:0; margin: 5px 0 0 10px; line-height:0; float:left;} #prompt ul {} #prompt ul li { line-height:26px; color:#888; background: url(../images/sky/bg_position.gif) no-repeat -628px -888px; padding-left:24px;} /* Used for the Switch effect: */ .cb-enable, .cb-disable, .cb-enable span, .cb-disable span { background: url(../images/form_onoff.png) repeat-x; display: block; float: left;} .cb-enable span, .cb-disable span { font-weight: bold; line-height: 24px; background-repeat: no-repeat; display: block;} .cb-enable span { background-position: left -72px; padding: 0 10px;} .cb-disable span { background-position: right -144px; padding: 0 10px;} .cb-disable.selected { background-position: 0 -24px;} .cb-disable.selected span { background-position: right -168px; color: #fff;} .cb-enable.selected { background-position: 0 -48px;} .cb-enable.selected span { background-position: left -120px; color: #fff;} .onoff label { cursor: pointer;} .onoff { position: relative; overflow: hidden; display: block;} .onoff input[type="radio"] { position: absolute; left:-999px; } .txt, select, .vmiddle , .type-file-text { vertical-align: middle;} .rowform .txt, .rowform textarea { margin-right: 10px; width: 250px;} .rowform .date , .rowform .date:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width: 226px;} .rowform .date { background-color: #FAFAFA;} .rowform .date:hover { background-color: #FFF;} .rowform .date-short , .rowform .date-short:hover { background: url(../images/input_date.gif) no-repeat 0 0; padding-left: 25px; width: 100px;} .rowform .date-short { background-color: #FAFAFA;} .rowform .date-short:hover { background-color: #FFF;}
0.40439
0.126192
.create-file-button{ background-color: #2196F3; border: none; color: white; text-align: center; text-decoration: none; font-size: 40px; margin: 10px; width: 50px; height: 50px; position: fixed; bottom: 0; right: 0; } .round-button-circle { /*padding-bottom: 100%;*/ border-radius: 50%; /*border:10px solid #cfdcec;*/ overflow:hidden; } .round-button-circle:hover { background:#1976D2; } /* base css styles */ .file-template-element{ background-color: #03A9F4; border: none; overflow: overlay; } .info-container{ float: left; width: 60%; } .controls-container{ float: right; width: 40%; } .file-template-id-input{ margin: 10px; width: 90%; } .file-template-name-input{ margin: 10px; width: 90%; } .file-template-organization_id-input{ margin: 10px; width: 90%; } .file-template-description-input{ margin: 10px; width: 90%; } .file-template-edit-button{ background-color: #CDDC39; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-delete-button{ background-color: #F44336; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-save-button{ background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-subtitles-button{ background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } /* read additional classes*/ .file-template-id-input-read{ display: none; } .file-template-name-input-read{ } .file-template-organization_id-input-read{ display: none; } .file-template-description-input-read{ } .file-template-edit-button-read{ } .file-template-delete-button-read{ } .file-template-save-button-read{ display: none; } /* update additional classes */ .file-template-id-input-update{ display: none; } .file-template-name-input-update{ } .file-template-organization_id-input-update{ display: none; } .file-template-description-input-update{ } .file-template-edit-button-update{ display: none; } .file-template-delete-button-update{ } .file-template-save-button-update{ } /* create additional classes */ .file-template-id-input-create{ display: none; } .file-template-name-input-create{ } .file-template-organization_id-input-create{ display: none; } .file-template-description-input-create{ } .file-template-edit-button-create{ display: none; } .file-template-delete-button-create{ display: none; } .file-template-save-button-create{ }
layout.css
.create-file-button{ background-color: #2196F3; border: none; color: white; text-align: center; text-decoration: none; font-size: 40px; margin: 10px; width: 50px; height: 50px; position: fixed; bottom: 0; right: 0; } .round-button-circle { /*padding-bottom: 100%;*/ border-radius: 50%; /*border:10px solid #cfdcec;*/ overflow:hidden; } .round-button-circle:hover { background:#1976D2; } /* base css styles */ .file-template-element{ background-color: #03A9F4; border: none; overflow: overlay; } .info-container{ float: left; width: 60%; } .controls-container{ float: right; width: 40%; } .file-template-id-input{ margin: 10px; width: 90%; } .file-template-name-input{ margin: 10px; width: 90%; } .file-template-organization_id-input{ margin: 10px; width: 90%; } .file-template-description-input{ margin: 10px; width: 90%; } .file-template-edit-button{ background-color: #CDDC39; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-delete-button{ background-color: #F44336; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-save-button{ background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } .file-template-subtitles-button{ background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; margin: 10px; width: 90%; } /* read additional classes*/ .file-template-id-input-read{ display: none; } .file-template-name-input-read{ } .file-template-organization_id-input-read{ display: none; } .file-template-description-input-read{ } .file-template-edit-button-read{ } .file-template-delete-button-read{ } .file-template-save-button-read{ display: none; } /* update additional classes */ .file-template-id-input-update{ display: none; } .file-template-name-input-update{ } .file-template-organization_id-input-update{ display: none; } .file-template-description-input-update{ } .file-template-edit-button-update{ display: none; } .file-template-delete-button-update{ } .file-template-save-button-update{ } /* create additional classes */ .file-template-id-input-create{ display: none; } .file-template-name-input-create{ } .file-template-organization_id-input-create{ display: none; } .file-template-description-input-create{ } .file-template-edit-button-create{ display: none; } .file-template-delete-button-create{ display: none; } .file-template-save-button-create{ }
0.285671
0.05526
@media(min-width:992px) { html, body, .container { width: 100%; height: 100%; } body { overflow-y: scroll; background: #333; } .splitlayout { position: relative; min-height: 100%; width: 100%; } /* Intro sides */ .side { position: fixed; top: 0; z-index: 100; width: 50%; height: 100%; text-align: center; -webkit-backface-visibility: hidden; } .open-left .side, .open-right .side { cursor: default; } .overlay { position: absolute; top: 0; left: 0; z-index: 499; visibility: hidden; width: 100%; height: 100%; opacity: 0; } .side-left .overlay { background: rgba(0, 0, 0, 0.7); } .side-right .overlay { background: rgba(0, 0, 0, 0.3); } .side-left { left: 0; background: transparent; color: #fff; outline: 1px solid transparent; /* avoid gap */ } /* Intro content, profile image and name, back button */ .intro-content { position: absolute; top: 50%; left: 50%; padding: 0 1em; width: 50%; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); } .back { position: fixed; top: 1.8em; z-index: 500; display: block; visibility: hidden; width: 50px; height: 50px; border-radius: 50%; color: #47a3da; text-align: center; font-size: 22px; line-height: 44px; opacity: 0; pointer-events: none; } .mobile-layout .back { /* fixed positioning will make this not clickable after scrolling on some mobile devices */ position: absolute; } .back-left { left: 12.5%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } .back-right { right: 12.5%; -webkit-transform: translateX(50%); transform: translateX(50%); color: #fff; } .open-right .back-left, .open-left .back-right { visibility: visible; opacity: 1; -webkit-transition-delay: 0.3s; transition-delay: 0.3s; pointer-events: auto; } .back:hover { color: #ddd; } /* Pages */ .page { position: relative; top: 0; overflow: auto; min-height: 100%; width: 75%; height: auto; -webkit-backface-visibility: hidden; } .page-right { left: 25%; outline: 5px solid #ecf0f1; /* avoid rounding gaps */ background: #ecf0f1; color: #97a8b2; -webkit-transform: translateX(100%); transform: translateX(100%); } .splitlayout.open-right { background: #ecf0f1; } .page-left { left: 0; outline: 5px solid #34495e; /* avoid rounding gaps */ background: #34495e; color: #fff; text-align: right; -webkit-transform: translateX(-100%); transform: translateX(-100%); } .splitlayout.open-left { background: #34495e; } /* All transitions */ .side, .page { -webkit-transition: -webkit-transform 0.6s; transition: transform 0.6s; } .overlay { -webkit-transition: opacity 0.6s, visibility 0.1s 0.6s; transition: opacity 0.6s, visibility 0.1s 0.6s; } .intro-content { -webkit-transition: -webkit-transform 0.6s, top 0.6s; transition: transform 0.6s, top 0.6s; } .intro-content h1, .back { -webkit-transition: opacity 0.3s; transition: opacity 0.3s; } /* Open and close */ /* We need to set the position and overflow for the respective page scroll */ .reset-layout .page, .splitlayout.open-right .page-left, .splitlayout.open-left .page-right, .splitlayout.close-right .page-left, .splitlayout.close-left .page-right { position: absolute; overflow: hidden; height: 100%; } .splitlayout.open-right .page-right, .splitlayout.open-left .page-left { position: relative; overflow: auto; height: auto; } .open-right .side-left .overlay, .open-left .side-right .overlay { visibility: visible; opacity: 1; -webkit-transition: opacity 0.6s; transition: opacity 0.6s; } /* Right side open */ .open-right .side-left { -webkit-transform: translateX(-60%); transform: translateX(-60%); } .open-right .side-right { z-index: 200; -webkit-transform: translateX(-150%); transform: translateX(-150%); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .close-right .side-right { z-index: 200; } .open-right .side-right .intro-content { -webkit-transform: translateY(-50%) translateX(0%) scale(1); transform: translateY(-50%) translateX(0%) scale(1); } .open-right .page-right { -webkit-transform: translateX(0%); transform: translateX(0%); } /* Left side open */ .open-left .side-right { -webkit-transform: translateX(60%); transform: translateX(60%); } .open-left .side-left { z-index: 200; -webkit-transform: translateX(150%); transform: translateX(150%); } .close-left .side-left { z-index: 200; } .open-left .side-left .intro-content { -webkit-transform: translateY(-50%) translateX(-100%) scale(0.6); transform: translateY(-50%) translateX(-100%) scale(0.6); } .open-left .codropsheader { opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s, visibility 0.1s 0.3s; transition: opacity 0.3s, visibility 0.1s 0.3s; } .open-left .page-left { -webkit-transform: translateX(0%); transform: translateX(0%); } .splitlayout .page-right { position: absolute; overflow: hidden; height: 100%; } .splitlayout.open-right .page-right { position: absolute; } } /* Media Queries */ @media screen and (max-width: 83em) { .intro-content { font-size: 60%; } } @media screen and (max-width: 58em) { body { font-size: 90%; } } .side-right { right: 0; background: #fff; color: #47a3da; outline: 1px solid #fff; /* avoid gap */ } .profile { margin: 0 auto; width: 140px; height: 140px; border-radius: 50%; } .profile img { max-width: 100%; border-radius: 50%; } .intro-content h1>span:first-child { font-weight: 500; font-size: 2em; } .intro-content h1>span { display: block; white-space: nowrap; } .intro-content h1>span:nth-child(2) { position: relative; padding: 0.8em; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8em; }
css/splitlayout.css
@media(min-width:992px) { html, body, .container { width: 100%; height: 100%; } body { overflow-y: scroll; background: #333; } .splitlayout { position: relative; min-height: 100%; width: 100%; } /* Intro sides */ .side { position: fixed; top: 0; z-index: 100; width: 50%; height: 100%; text-align: center; -webkit-backface-visibility: hidden; } .open-left .side, .open-right .side { cursor: default; } .overlay { position: absolute; top: 0; left: 0; z-index: 499; visibility: hidden; width: 100%; height: 100%; opacity: 0; } .side-left .overlay { background: rgba(0, 0, 0, 0.7); } .side-right .overlay { background: rgba(0, 0, 0, 0.3); } .side-left { left: 0; background: transparent; color: #fff; outline: 1px solid transparent; /* avoid gap */ } /* Intro content, profile image and name, back button */ .intro-content { position: absolute; top: 50%; left: 50%; padding: 0 1em; width: 50%; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); } .back { position: fixed; top: 1.8em; z-index: 500; display: block; visibility: hidden; width: 50px; height: 50px; border-radius: 50%; color: #47a3da; text-align: center; font-size: 22px; line-height: 44px; opacity: 0; pointer-events: none; } .mobile-layout .back { /* fixed positioning will make this not clickable after scrolling on some mobile devices */ position: absolute; } .back-left { left: 12.5%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } .back-right { right: 12.5%; -webkit-transform: translateX(50%); transform: translateX(50%); color: #fff; } .open-right .back-left, .open-left .back-right { visibility: visible; opacity: 1; -webkit-transition-delay: 0.3s; transition-delay: 0.3s; pointer-events: auto; } .back:hover { color: #ddd; } /* Pages */ .page { position: relative; top: 0; overflow: auto; min-height: 100%; width: 75%; height: auto; -webkit-backface-visibility: hidden; } .page-right { left: 25%; outline: 5px solid #ecf0f1; /* avoid rounding gaps */ background: #ecf0f1; color: #97a8b2; -webkit-transform: translateX(100%); transform: translateX(100%); } .splitlayout.open-right { background: #ecf0f1; } .page-left { left: 0; outline: 5px solid #34495e; /* avoid rounding gaps */ background: #34495e; color: #fff; text-align: right; -webkit-transform: translateX(-100%); transform: translateX(-100%); } .splitlayout.open-left { background: #34495e; } /* All transitions */ .side, .page { -webkit-transition: -webkit-transform 0.6s; transition: transform 0.6s; } .overlay { -webkit-transition: opacity 0.6s, visibility 0.1s 0.6s; transition: opacity 0.6s, visibility 0.1s 0.6s; } .intro-content { -webkit-transition: -webkit-transform 0.6s, top 0.6s; transition: transform 0.6s, top 0.6s; } .intro-content h1, .back { -webkit-transition: opacity 0.3s; transition: opacity 0.3s; } /* Open and close */ /* We need to set the position and overflow for the respective page scroll */ .reset-layout .page, .splitlayout.open-right .page-left, .splitlayout.open-left .page-right, .splitlayout.close-right .page-left, .splitlayout.close-left .page-right { position: absolute; overflow: hidden; height: 100%; } .splitlayout.open-right .page-right, .splitlayout.open-left .page-left { position: relative; overflow: auto; height: auto; } .open-right .side-left .overlay, .open-left .side-right .overlay { visibility: visible; opacity: 1; -webkit-transition: opacity 0.6s; transition: opacity 0.6s; } /* Right side open */ .open-right .side-left { -webkit-transform: translateX(-60%); transform: translateX(-60%); } .open-right .side-right { z-index: 200; -webkit-transform: translateX(-150%); transform: translateX(-150%); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .close-right .side-right { z-index: 200; } .open-right .side-right .intro-content { -webkit-transform: translateY(-50%) translateX(0%) scale(1); transform: translateY(-50%) translateX(0%) scale(1); } .open-right .page-right { -webkit-transform: translateX(0%); transform: translateX(0%); } /* Left side open */ .open-left .side-right { -webkit-transform: translateX(60%); transform: translateX(60%); } .open-left .side-left { z-index: 200; -webkit-transform: translateX(150%); transform: translateX(150%); } .close-left .side-left { z-index: 200; } .open-left .side-left .intro-content { -webkit-transform: translateY(-50%) translateX(-100%) scale(0.6); transform: translateY(-50%) translateX(-100%) scale(0.6); } .open-left .codropsheader { opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s, visibility 0.1s 0.3s; transition: opacity 0.3s, visibility 0.1s 0.3s; } .open-left .page-left { -webkit-transform: translateX(0%); transform: translateX(0%); } .splitlayout .page-right { position: absolute; overflow: hidden; height: 100%; } .splitlayout.open-right .page-right { position: absolute; } } /* Media Queries */ @media screen and (max-width: 83em) { .intro-content { font-size: 60%; } } @media screen and (max-width: 58em) { body { font-size: 90%; } } .side-right { right: 0; background: #fff; color: #47a3da; outline: 1px solid #fff; /* avoid gap */ } .profile { margin: 0 auto; width: 140px; height: 140px; border-radius: 50%; } .profile img { max-width: 100%; border-radius: 50%; } .intro-content h1>span:first-child { font-weight: 500; font-size: 2em; } .intro-content h1>span { display: block; white-space: nowrap; } .intro-content h1>span:nth-child(2) { position: relative; padding: 0.8em; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8em; }
0.521471
0.063077
.bg-grey{ background-color: #f7f7f7; } .mytextdiv{ display:flex; flex-direction:row; align-items: center; } .mytexttitle{ flex-grow:0; } .mytexttitle h3{ font-size: 1.2rem; color: #1b6a6f; border-right: 3px solid #1b6a6f; } /* .divider{ flex-grow:1; height: 1px; background-color: rgb(224, 224, 224); } */ /* navbar */ .navbar-brand{ color: #1b6a6f !important; font-size: 1.5rem; } .navbar-brand img{ width: 80px; } .navbar-brand span{ color: #d7ac00; } nav form{ border: 1px solid rgb(204, 203, 203); } nav form input{ border: transparent !important; color: rgb(212, 212, 212); background-color: transparent !important; } input:focus{ box-shadow: 0 0 0 transparent !important; } input::placeholder{ font-size: 0.8rem; /* color: rgb(212, 212, 212); */ } input:focus::placeholder{ color: transparent; } nav form button img{ width: 20px; } .txt_green{ color: #1b6a6f !important; font-size: 0.9rem !important; text-decoration: none !important; /* border: 1px solid transparent; */ transition: all 0.3s; } .txt_green:hover{ /* border: 1px solid rgba(215, 172, 0, 0.3); */ box-shadow: 0 0 10px #f3f3f3 !important; border-radius: 5px; } .navbar .up div a:first-child img{ width: 20px; height: 20px; } .navbar .up div a img{ width: 15px; height: 15px; } nav .navbar-nav{ border-bottom: 1px solid rgb(224, 224, 224); border-top: 1px solid rgb(224, 224, 224); } nav .list2{ border-bottom: 1px solid rgb(224, 224, 224); border-top: 0px !important; } nav .navbar-nav .nav-item{ border-bottom: 2px solid transparent; transition: all 0.3s; } nav .navbar-nav .nav-item:hover{ border-bottom: 2px solid #d7ac00; } nav .navbar-nav li a{ font-size: 0.8rem; color: #1b6a6f !important; } nav .navbar-nav li a:active{ font-size: 0.8rem; background-color: transparent !important; } nav .navbar-nav li img{ width: 18px; opacity: 0.7; transition: all 0.3s; } nav .navbar-nav li:hover img{ opacity:1; } nav .position-absolute{ right: 0px; top: 0px; z-index: -1; opacity: 0.18; width: 170px; transform: rotate(90deg); } /* carousel */ .carousel{ background:linear-gradient(#fff,#f7f7f7) } /* sidebar */ .sidebar{ border: 1px solid #e0e0e0; box-shadow: 0 0 10px rgb(236, 236, 236); } .sidebar h3{ font-size: 0.9rem; border-bottom: 1px solid #e0e0e0 !important; color: rgb(121, 121, 121); } .sidebar h5 a{ font-size: 0.9rem; color:rgb(112, 112, 112); text-decoration: none !important; } .sidebar h4{ font-size: 0.8rem; color: rgb(121, 121, 121); } /*.sidebar h5{*/ /* font-size: 0.9rem;*/ /* color:rgb(112, 112, 112)*/ /*}*/ .sidebar ul{ border-bottom: 1px solid #f3f3f3; } .sidebar ul li{ list-style-type: none; text-align: right; } .sidebar ul li a{ text-decoration: none; color: rgb(144, 144, 144); font-size: 0.8rem; } /* category */ .category{ border: 1px solid #e0e0e0; overflow: hidden; border-top: 3px solid #e0e0e0; transition: all 0.3s; } .category:hover{ border-top: 3px solid #d7ac00; box-shadow: 0 0 10px #b7b8b9; cursor: pointer; } .category div{ background-color: rgb(233, 231, 231); } .category a{ font-size: 1.2rem; color: rgb(98, 98, 98); text-decoration: none; } .category a img{ width: 30px; } .category:hover .left img{ margin-right: 10px; } /* service */ .border{ border: 1px solid rgb(224, 224, 224); border-top: 3px solid #d7ac00 !important; box-shadow: 0 0 10px rgb(236, 236, 236); /* border-radius: 20px; */ } .service:hover{ cursor: pointer; } .serviceborder{ border-top: 1px solid rgba(255, 255, 255,0.3); } .service img{ width: 70px; height: 70px; /* border: 1px solid #22767c; */ /* box-shadow: 0 0 10px #15575c !important; */ /* background-color: #0a3b3f; */ transition: all 0.3s; } .service h3{ font-size: 0.8rem; /* color: rgb(87, 87, 87); */ color: #eeeeee; } .service h4{ font-size: 0.7rem; /* color: rgb(87, 87, 87); */ color: #eeeeee; opacity: 0.8; } /* product */ .product:hover{ box-shadow: 0 0 10px #c8c7c7; cursor: pointer; } .productlist{ border-left: 1px solid #e0e0e0; } .productlist .nav .nav-link{ color: #1b6a6f !important; background-color: #fff; font-size: 1rem; font-weight: bold; } .productlist .nav-link img{ width: 40px; } .product h4{ font-size: 0.9rem; color: #1b6a6f; } .product h5{ font-size: 1rem; } .saleicon{ top: 10%; left:-20px; opacity: 0; transition: all 0.3s; border: 1px solid #e0e0e0; background-color: #fff; } .product:hover .saleicon{ opacity: 1; left: 10px; } .saleicon img{ width: 20px; height: 20px; } /* article */ .article{ background-color: #fff; } .article h4{ font-size: 0.9rem; color: rgb(78, 78, 78); } .article p{ font-size: 0.8rem; color: rgb(153, 152, 152); } .articlebtn{ font-size: 0.6rem; background-color: #22767c; color: #fff !important; border-radius: 0px; } .articlebtn:hover{ background-color: #d7ac00; } .articleShow h1{ font-size: 2rem; color: #fff; background-color: #22767c; } .articleShow .desc{ line-height: 40px; color: #555555; } .articleShow .info p{ font-size: 0.8rem; color: #555555; } .articleShow .info p a{ color: #555555; } /* about */ .about{ background-image: url(img/about.jpg); color:#fff ; background-attachment: fixed; background-size: cover; } .about p{ line-height: 30px; } /* footer */ .bgfooter{ background-image: url('img/bgfooter.jpg'); background-size: contain; background-repeat: no-repeat; background-color: #1b6a6f; z-index: 1000; } .footer h3{ font-size:0.9rem; /* color:#22767c; */ color: #eeeeee !important; /* color:#22767c; */ font-weight: bold; } .footer h3 img{ width: 18px; } .footer .nav-item a { /* color: rgb(87, 87, 87) !important; */ color: rgb(238, 238, 238) !important; font-size: 0.9rem; /* opacity: 0.8; */ } .footer .nav-item a img{ width: 8px; } .footer .nav-item a:hover{ opacity:1; text-decoration: solid; } .footer li { border: none !important; } .footer li:hover { border: none !important; } .follow{ width:30px; height:30px; border: 1px solid rgb(255, 255, 255,1); /* background-color: #ffffff; */ cursor: pointer; transition: all 0.3s; } .follow:hover{ background:#d7ac00; border: 0px; border-radius: 0px; } .follow img{ width: 15px; transition: all 0.3s; } .contact h5 , .contact h4{ color: #eeeeee !important; /* color: rgb(87, 87, 87) !important; */ font-size: 0.9rem; font-weight: normal; } .contact h5{ color: #eeeeee !important; /* color: rgb(87, 87, 87) !important; */ font-size: 0.8rem; font-weight: normal; } .contact h4 img{ width: 20px; } .footer .input-group{ direction: ltr; border: 1px solid #d7ac00; background-color: #fff; } .footer .input-group > span > h5{ /* color: #a6abc8; */ color: #eeeeee; border-left:1px solid #e7edfa ; font-size: 0.8rem; } .footer .form-control{ border: 0px !important; font-size: 0.7rem; } .footer .input-group-text { border: 0px; background-color: transparent; cursor: pointer; font-size: 0.8rem; color: #1b6a6f; } .trust img{ width: 100px; border: 1px solid #b0d0d3; } .bg-end{ /* background-color: #176166; */ border-top: 1px solid #fff; } .bg-end h6{ font-size: 0.8rem; } .price-old { color: #F00; text-decoration: line-through; font-weight:normal; font-size:12px; } .price-new { font-weight: bold; } .price, .price-new { color:#3e7cb4; } .saving { background:#d7ac00; border-radius: 100% 100% 100% 100%; color: #FFFFFF; display: block; font-size: 13px; font-weight:bold; height:40px; line-height:40px; position: absolute; right: 10px; text-align: center; top: 10px; width: 40px; } #content legend{ font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #d6d4d6; } #content .title{ font-size: 2rem; color: #1e1e1e; } .gold{ color: #5f5f5f !important; } .gold:hover{ color: #d7ac00 !important; text-decoration: none; } .btn-gold{ background-color:#d7ac00 !important ; border-radius: 0px !important; font-size: 0.8rem !important; } .btn-gold:hover{ background-color:#1b6a6f !important ; } #content p > a{ color: #d7ac00; } #content .btn{ background-color: #d7ac00; color: #fff; transition: all 0.3s; } #content .btn:hover{ background-color: #414141; color: #fff; } div.required .control-label:after { content: '* '; color: #F00; font-weight: bold; } .subtitle{ font-size: 1rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #d6d4d6; } .list-item > li{ list-style-type: none; } .list-item > li >a{ text-decoration: none; color: #909090; display: block; } .list-item > li >a:hover{ text-decoration: none; } .active_li{ background: rgba(11, 46, 19, 0.04) !important ; color: rgba(11, 46, 19, 0.62) !important; font-weight: 700; border-left: 2px solid #d7ac00; position: relative; } .active_li:after{ position: absolute; content: ''; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 8px solid #d7ac00; left: -10px; top: 13px } .gold-btn{ background-color:#d7ac00 !important ; color: #fff !important; } .gold-btn:hover{ background-color: #3a3a3a !important; color: #fff !important; } .dropdown-submenu { position: relative; } .dropdown-submenu a::after { transform: rotate(90deg); position: absolute; left: 6px; top: .8em; } .dropdown-submenu .dropdown-menu { top: 0; right: 100%; margin-left: .1rem; margin-right: .1rem; } /**======= 7.7. Pagination =======**/ .pagination > li > a { color:#c68d1e !important; border:1px solid #c8c8c8 !important; padding: 5px 10px; font-size: 0.8rem; background-color:#fff; text-decoration: none; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { background-color:#c68d1e !important; border-color:#c68d1e !important; color:#fff!important; } .pagination > li > a:hover{ color:#000!important; background-color: #c68d1e !important; color:#fff !important; } .like img{ width: 15px; } .like h5{ font-size:0.8rem; color: #3b4264; }
public/frontend/style.css
.bg-grey{ background-color: #f7f7f7; } .mytextdiv{ display:flex; flex-direction:row; align-items: center; } .mytexttitle{ flex-grow:0; } .mytexttitle h3{ font-size: 1.2rem; color: #1b6a6f; border-right: 3px solid #1b6a6f; } /* .divider{ flex-grow:1; height: 1px; background-color: rgb(224, 224, 224); } */ /* navbar */ .navbar-brand{ color: #1b6a6f !important; font-size: 1.5rem; } .navbar-brand img{ width: 80px; } .navbar-brand span{ color: #d7ac00; } nav form{ border: 1px solid rgb(204, 203, 203); } nav form input{ border: transparent !important; color: rgb(212, 212, 212); background-color: transparent !important; } input:focus{ box-shadow: 0 0 0 transparent !important; } input::placeholder{ font-size: 0.8rem; /* color: rgb(212, 212, 212); */ } input:focus::placeholder{ color: transparent; } nav form button img{ width: 20px; } .txt_green{ color: #1b6a6f !important; font-size: 0.9rem !important; text-decoration: none !important; /* border: 1px solid transparent; */ transition: all 0.3s; } .txt_green:hover{ /* border: 1px solid rgba(215, 172, 0, 0.3); */ box-shadow: 0 0 10px #f3f3f3 !important; border-radius: 5px; } .navbar .up div a:first-child img{ width: 20px; height: 20px; } .navbar .up div a img{ width: 15px; height: 15px; } nav .navbar-nav{ border-bottom: 1px solid rgb(224, 224, 224); border-top: 1px solid rgb(224, 224, 224); } nav .list2{ border-bottom: 1px solid rgb(224, 224, 224); border-top: 0px !important; } nav .navbar-nav .nav-item{ border-bottom: 2px solid transparent; transition: all 0.3s; } nav .navbar-nav .nav-item:hover{ border-bottom: 2px solid #d7ac00; } nav .navbar-nav li a{ font-size: 0.8rem; color: #1b6a6f !important; } nav .navbar-nav li a:active{ font-size: 0.8rem; background-color: transparent !important; } nav .navbar-nav li img{ width: 18px; opacity: 0.7; transition: all 0.3s; } nav .navbar-nav li:hover img{ opacity:1; } nav .position-absolute{ right: 0px; top: 0px; z-index: -1; opacity: 0.18; width: 170px; transform: rotate(90deg); } /* carousel */ .carousel{ background:linear-gradient(#fff,#f7f7f7) } /* sidebar */ .sidebar{ border: 1px solid #e0e0e0; box-shadow: 0 0 10px rgb(236, 236, 236); } .sidebar h3{ font-size: 0.9rem; border-bottom: 1px solid #e0e0e0 !important; color: rgb(121, 121, 121); } .sidebar h5 a{ font-size: 0.9rem; color:rgb(112, 112, 112); text-decoration: none !important; } .sidebar h4{ font-size: 0.8rem; color: rgb(121, 121, 121); } /*.sidebar h5{*/ /* font-size: 0.9rem;*/ /* color:rgb(112, 112, 112)*/ /*}*/ .sidebar ul{ border-bottom: 1px solid #f3f3f3; } .sidebar ul li{ list-style-type: none; text-align: right; } .sidebar ul li a{ text-decoration: none; color: rgb(144, 144, 144); font-size: 0.8rem; } /* category */ .category{ border: 1px solid #e0e0e0; overflow: hidden; border-top: 3px solid #e0e0e0; transition: all 0.3s; } .category:hover{ border-top: 3px solid #d7ac00; box-shadow: 0 0 10px #b7b8b9; cursor: pointer; } .category div{ background-color: rgb(233, 231, 231); } .category a{ font-size: 1.2rem; color: rgb(98, 98, 98); text-decoration: none; } .category a img{ width: 30px; } .category:hover .left img{ margin-right: 10px; } /* service */ .border{ border: 1px solid rgb(224, 224, 224); border-top: 3px solid #d7ac00 !important; box-shadow: 0 0 10px rgb(236, 236, 236); /* border-radius: 20px; */ } .service:hover{ cursor: pointer; } .serviceborder{ border-top: 1px solid rgba(255, 255, 255,0.3); } .service img{ width: 70px; height: 70px; /* border: 1px solid #22767c; */ /* box-shadow: 0 0 10px #15575c !important; */ /* background-color: #0a3b3f; */ transition: all 0.3s; } .service h3{ font-size: 0.8rem; /* color: rgb(87, 87, 87); */ color: #eeeeee; } .service h4{ font-size: 0.7rem; /* color: rgb(87, 87, 87); */ color: #eeeeee; opacity: 0.8; } /* product */ .product:hover{ box-shadow: 0 0 10px #c8c7c7; cursor: pointer; } .productlist{ border-left: 1px solid #e0e0e0; } .productlist .nav .nav-link{ color: #1b6a6f !important; background-color: #fff; font-size: 1rem; font-weight: bold; } .productlist .nav-link img{ width: 40px; } .product h4{ font-size: 0.9rem; color: #1b6a6f; } .product h5{ font-size: 1rem; } .saleicon{ top: 10%; left:-20px; opacity: 0; transition: all 0.3s; border: 1px solid #e0e0e0; background-color: #fff; } .product:hover .saleicon{ opacity: 1; left: 10px; } .saleicon img{ width: 20px; height: 20px; } /* article */ .article{ background-color: #fff; } .article h4{ font-size: 0.9rem; color: rgb(78, 78, 78); } .article p{ font-size: 0.8rem; color: rgb(153, 152, 152); } .articlebtn{ font-size: 0.6rem; background-color: #22767c; color: #fff !important; border-radius: 0px; } .articlebtn:hover{ background-color: #d7ac00; } .articleShow h1{ font-size: 2rem; color: #fff; background-color: #22767c; } .articleShow .desc{ line-height: 40px; color: #555555; } .articleShow .info p{ font-size: 0.8rem; color: #555555; } .articleShow .info p a{ color: #555555; } /* about */ .about{ background-image: url(img/about.jpg); color:#fff ; background-attachment: fixed; background-size: cover; } .about p{ line-height: 30px; } /* footer */ .bgfooter{ background-image: url('img/bgfooter.jpg'); background-size: contain; background-repeat: no-repeat; background-color: #1b6a6f; z-index: 1000; } .footer h3{ font-size:0.9rem; /* color:#22767c; */ color: #eeeeee !important; /* color:#22767c; */ font-weight: bold; } .footer h3 img{ width: 18px; } .footer .nav-item a { /* color: rgb(87, 87, 87) !important; */ color: rgb(238, 238, 238) !important; font-size: 0.9rem; /* opacity: 0.8; */ } .footer .nav-item a img{ width: 8px; } .footer .nav-item a:hover{ opacity:1; text-decoration: solid; } .footer li { border: none !important; } .footer li:hover { border: none !important; } .follow{ width:30px; height:30px; border: 1px solid rgb(255, 255, 255,1); /* background-color: #ffffff; */ cursor: pointer; transition: all 0.3s; } .follow:hover{ background:#d7ac00; border: 0px; border-radius: 0px; } .follow img{ width: 15px; transition: all 0.3s; } .contact h5 , .contact h4{ color: #eeeeee !important; /* color: rgb(87, 87, 87) !important; */ font-size: 0.9rem; font-weight: normal; } .contact h5{ color: #eeeeee !important; /* color: rgb(87, 87, 87) !important; */ font-size: 0.8rem; font-weight: normal; } .contact h4 img{ width: 20px; } .footer .input-group{ direction: ltr; border: 1px solid #d7ac00; background-color: #fff; } .footer .input-group > span > h5{ /* color: #a6abc8; */ color: #eeeeee; border-left:1px solid #e7edfa ; font-size: 0.8rem; } .footer .form-control{ border: 0px !important; font-size: 0.7rem; } .footer .input-group-text { border: 0px; background-color: transparent; cursor: pointer; font-size: 0.8rem; color: #1b6a6f; } .trust img{ width: 100px; border: 1px solid #b0d0d3; } .bg-end{ /* background-color: #176166; */ border-top: 1px solid #fff; } .bg-end h6{ font-size: 0.8rem; } .price-old { color: #F00; text-decoration: line-through; font-weight:normal; font-size:12px; } .price-new { font-weight: bold; } .price, .price-new { color:#3e7cb4; } .saving { background:#d7ac00; border-radius: 100% 100% 100% 100%; color: #FFFFFF; display: block; font-size: 13px; font-weight:bold; height:40px; line-height:40px; position: absolute; right: 10px; text-align: center; top: 10px; width: 40px; } #content legend{ font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #d6d4d6; } #content .title{ font-size: 2rem; color: #1e1e1e; } .gold{ color: #5f5f5f !important; } .gold:hover{ color: #d7ac00 !important; text-decoration: none; } .btn-gold{ background-color:#d7ac00 !important ; border-radius: 0px !important; font-size: 0.8rem !important; } .btn-gold:hover{ background-color:#1b6a6f !important ; } #content p > a{ color: #d7ac00; } #content .btn{ background-color: #d7ac00; color: #fff; transition: all 0.3s; } #content .btn:hover{ background-color: #414141; color: #fff; } div.required .control-label:after { content: '* '; color: #F00; font-weight: bold; } .subtitle{ font-size: 1rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #d6d4d6; } .list-item > li{ list-style-type: none; } .list-item > li >a{ text-decoration: none; color: #909090; display: block; } .list-item > li >a:hover{ text-decoration: none; } .active_li{ background: rgba(11, 46, 19, 0.04) !important ; color: rgba(11, 46, 19, 0.62) !important; font-weight: 700; border-left: 2px solid #d7ac00; position: relative; } .active_li:after{ position: absolute; content: ''; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 8px solid #d7ac00; left: -10px; top: 13px } .gold-btn{ background-color:#d7ac00 !important ; color: #fff !important; } .gold-btn:hover{ background-color: #3a3a3a !important; color: #fff !important; } .dropdown-submenu { position: relative; } .dropdown-submenu a::after { transform: rotate(90deg); position: absolute; left: 6px; top: .8em; } .dropdown-submenu .dropdown-menu { top: 0; right: 100%; margin-left: .1rem; margin-right: .1rem; } /**======= 7.7. Pagination =======**/ .pagination > li > a { color:#c68d1e !important; border:1px solid #c8c8c8 !important; padding: 5px 10px; font-size: 0.8rem; background-color:#fff; text-decoration: none; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { background-color:#c68d1e !important; border-color:#c68d1e !important; color:#fff!important; } .pagination > li > a:hover{ color:#000!important; background-color: #c68d1e !important; color:#fff !important; } .like img{ width: 15px; } .like h5{ font-size:0.8rem; color: #3b4264; }
0.379378
0.078749
.center-Form { margin: 0; position: absolute; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .backForm{ display: block; width: 25vw; } .formTitle{ order: 0; color: rgb(255, 255, 255); padding-bottom: 40px; text-align: center; font-family: Arial; font-size: 2.5rem; width: 100%; letter-spacing: 2px; text-shadow: 2px 2px 5px rgb(0, 0, 0); font-weight: bold; line-height: normal; } .divForm { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; align-items: flex-start; background-color: rgb(255, 255, 255); padding: 40px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); border-radius: 2rem; width: 100%; } .formText{ color: rgba(41, 44, 52); text-align: center; margin-bottom: 0px; border: 0rem; font-family: Arial; } .formInput{ width: 100%; border-radius: 0.7rem; padding: 0.5rem 1rem; border: none; border-bottom: 2px solid rgb(59, 94, 189); margin-bottom: 30px; font-family: Arial; } .formButton{ width: 100%; background-color: rgb(59, 94, 189); border-radius: 0.7rem; color: white; transition-duration: 0.4s; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); text-shadow: 2px 2px 5px rgb(0, 0, 0); border: 0rem; padding: 0.5rem 1rem; margin-top: 20px; font-family: Arial; } .formButton:disabled{ pointer-events: none; opacity: 0.5; } .formInput:focus{ border-radius: 0rem; border: 0px; } .divChangeForm{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; align-items: baseline; width: 100%; margin-top: 40px; } .buttonChangeForm{ order: 0; background-color: white; border-radius: 0.7rem; color: rgb(59, 94, 189); transition-duration: 0.4s; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); text-shadow: 2px 2px 5px rgb(138, 138, 138); border: 0rem; padding: 0.5rem 1rem; width: fit-content; font-family: Arial; } .snackbar{ margin-top:4.5vw; position: absolute; left: 50%; width: 80vw; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } @media (max-width:1199px){ .center-Form { top: 45%; } .formTitle{ padding-top: 0px; padding-bottom: 20px; font-size: 2rem; } .divForm{ padding: 20px; } .formButton{ margin-top: 0px; } .divChangeForm{ margin-top: 20px; } .backForm{ width: 85vw; } .snackbar{ width: 100vw; margin-top: 15vw; } }
src/Ieemdb.Web/ClientApp/src/Styles/Forms.css
.center-Form { margin: 0; position: absolute; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .backForm{ display: block; width: 25vw; } .formTitle{ order: 0; color: rgb(255, 255, 255); padding-bottom: 40px; text-align: center; font-family: Arial; font-size: 2.5rem; width: 100%; letter-spacing: 2px; text-shadow: 2px 2px 5px rgb(0, 0, 0); font-weight: bold; line-height: normal; } .divForm { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; align-items: flex-start; background-color: rgb(255, 255, 255); padding: 40px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); border-radius: 2rem; width: 100%; } .formText{ color: rgba(41, 44, 52); text-align: center; margin-bottom: 0px; border: 0rem; font-family: Arial; } .formInput{ width: 100%; border-radius: 0.7rem; padding: 0.5rem 1rem; border: none; border-bottom: 2px solid rgb(59, 94, 189); margin-bottom: 30px; font-family: Arial; } .formButton{ width: 100%; background-color: rgb(59, 94, 189); border-radius: 0.7rem; color: white; transition-duration: 0.4s; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); text-shadow: 2px 2px 5px rgb(0, 0, 0); border: 0rem; padding: 0.5rem 1rem; margin-top: 20px; font-family: Arial; } .formButton:disabled{ pointer-events: none; opacity: 0.5; } .formInput:focus{ border-radius: 0rem; border: 0px; } .divChangeForm{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-around; align-items: baseline; width: 100%; margin-top: 40px; } .buttonChangeForm{ order: 0; background-color: white; border-radius: 0.7rem; color: rgb(59, 94, 189); transition-duration: 0.4s; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); text-shadow: 2px 2px 5px rgb(138, 138, 138); border: 0rem; padding: 0.5rem 1rem; width: fit-content; font-family: Arial; } .snackbar{ margin-top:4.5vw; position: absolute; left: 50%; width: 80vw; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } @media (max-width:1199px){ .center-Form { top: 45%; } .formTitle{ padding-top: 0px; padding-bottom: 20px; font-size: 2rem; } .divForm{ padding: 20px; } .formButton{ margin-top: 0px; } .divChangeForm{ margin-top: 20px; } .backForm{ width: 85vw; } .snackbar{ width: 100vw; margin-top: 15vw; } }
0.602296
0.085137
.timeline { margin: 0; padding: 0; position: relative; margin-bottom: 30px; } .timeline:before { content: ''; position: absolute; display: block; width: 4px; background: #f5f6fa; top: 0px; bottom: 0px; margin-left: 38px; } .timeline-item { margin: 0; padding: 0; } .timeline-badge { float: left; position: relative; padding-right: 30px; height: 80px; width: 80px; } .timeline-badge-userpic { width: 80px; border: 2px #319df3 solid; -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; } .timeline-badge-userpic img { -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; vertical-align: middle !important; } .timeline-icon { width: 80px; height: 80px; background-color: #f5f6fa; -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; padding-top: 30px; padding-left: 22px; } .timeline-icon i { font-size: 34px; } .timeline-body { position: relative; padding: 20px; margin-top: 20px; margin-left: 110px; background-color: #f5f6fa; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .timeline-body:before, .timeline-body:after { content: " "; display: table; } .timeline-body:after { clear: both; } .timeline-body-arrow { position: absolute; top: 30px; left: -14px; width: 0; height: 0; border-style: solid; border-width: 14px 14px 14px 0; border-color: transparent #f5f6fa transparent transparent; } .timeline-body-head { margin-bottom: 10px; } .timeline-body-head-caption { float: left; } .timeline-body-title { font-size: 16px; font-weight: 600; } .timeline-body-alerttitle { font-size: 16px; font-weight: 600; } .timeline-body-time { font-size: 14px; margin-left: 10px; } .timeline-body-head-actions { float: right; } .timeline-body-head-actions .btn-group { margin-top: -2px; } .timeline-body-content { font-size: 14px; margin-top: 35px; } .timeline-body-img { width: 100px; height: 100px; margin: 5px 20px 0 0px; } .page-container-bg-solid .timeline:before { background: #fff; } .page-container-bg-solid .timeline-badge-userpic { border-color: #fff; } .page-container-bg-solid .timeline-icon { background-color: #fff; } .page-container-bg-solid .timeline-body { background-color: #fff; } .page-container-bg-solid .timeline-body-arrow { border-color: transparent #fff transparent transparent; } @media (max-width: 768px) { .timeline-body-head-caption { width: 100%; } .timeline-body-head-actions { float: left; width: 100%; margin-top: 20px; margin-bottom: 20px; } } @media (max-width: 480px) { .timeline:before { margin-left: 28px; } .timeline-badge { padding-right: 40px; width: 60px; height: 60px; } .timeline-badge-userpic { width: 60px; } .timeline-icon { width: 60px; height: 60px; padding-top: 23px; padding-left: 18px; } .timeline-icon i { font-size: 25px; } .timeline-body { margin-left: 80px; } .timeline-body-arrow { top: 17px; } }
web-application/src/main/webapp/resources/css/timeline.css
.timeline { margin: 0; padding: 0; position: relative; margin-bottom: 30px; } .timeline:before { content: ''; position: absolute; display: block; width: 4px; background: #f5f6fa; top: 0px; bottom: 0px; margin-left: 38px; } .timeline-item { margin: 0; padding: 0; } .timeline-badge { float: left; position: relative; padding-right: 30px; height: 80px; width: 80px; } .timeline-badge-userpic { width: 80px; border: 2px #319df3 solid; -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; } .timeline-badge-userpic img { -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; vertical-align: middle !important; } .timeline-icon { width: 80px; height: 80px; background-color: #f5f6fa; -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; padding-top: 30px; padding-left: 22px; } .timeline-icon i { font-size: 34px; } .timeline-body { position: relative; padding: 20px; margin-top: 20px; margin-left: 110px; background-color: #f5f6fa; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .timeline-body:before, .timeline-body:after { content: " "; display: table; } .timeline-body:after { clear: both; } .timeline-body-arrow { position: absolute; top: 30px; left: -14px; width: 0; height: 0; border-style: solid; border-width: 14px 14px 14px 0; border-color: transparent #f5f6fa transparent transparent; } .timeline-body-head { margin-bottom: 10px; } .timeline-body-head-caption { float: left; } .timeline-body-title { font-size: 16px; font-weight: 600; } .timeline-body-alerttitle { font-size: 16px; font-weight: 600; } .timeline-body-time { font-size: 14px; margin-left: 10px; } .timeline-body-head-actions { float: right; } .timeline-body-head-actions .btn-group { margin-top: -2px; } .timeline-body-content { font-size: 14px; margin-top: 35px; } .timeline-body-img { width: 100px; height: 100px; margin: 5px 20px 0 0px; } .page-container-bg-solid .timeline:before { background: #fff; } .page-container-bg-solid .timeline-badge-userpic { border-color: #fff; } .page-container-bg-solid .timeline-icon { background-color: #fff; } .page-container-bg-solid .timeline-body { background-color: #fff; } .page-container-bg-solid .timeline-body-arrow { border-color: transparent #fff transparent transparent; } @media (max-width: 768px) { .timeline-body-head-caption { width: 100%; } .timeline-body-head-actions { float: left; width: 100%; margin-top: 20px; margin-bottom: 20px; } } @media (max-width: 480px) { .timeline:before { margin-left: 28px; } .timeline-badge { padding-right: 40px; width: 60px; height: 60px; } .timeline-badge-userpic { width: 60px; } .timeline-icon { width: 60px; height: 60px; padding-top: 23px; padding-left: 18px; } .timeline-icon i { font-size: 25px; } .timeline-body { margin-left: 80px; } .timeline-body-arrow { top: 17px; } }
0.371479
0.072047
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: Montserrat; } body { background: #121214; width: 100%; } .navbar-light .navbar-toggler { margin: 4px; } .navbar-brand { margin-right: 0px; } .navbar-toggler { padding: 6px !important; font-size: 1rem !important; } .navbar { background-color: green !important; } .nav-img { height: 50px; width: 70px; margin-top: 0px; display: inline-block; } #webTitle { display: inline-block; font-size: 25px; color: rgb(17, 17, 17); font-weight: bold; } .nav-link { color: white !important; font-size: 18px !important; padding: 13px 20px 13px 20px !important; } .current { background-color: rgba(0, 0, 0, 0.247); border-radius: 20px; margin: 5px; font-weight: bold; border: solid 2px black; } .current:hover { transition: 0.3s !important; font-size: 20px !important; background-color: lightslategrey !important; border: solid 2px black !important; font-size: 18px !important; } .container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; background: url("https://cdn.pixabay.com/photo/2016/09/27/23/03/guitar-1699501_960_720.jpg") no-repeat center center fixed; background-size: cover; } .card { width: 280px; height: 360px; background: linear-gradient(45deg, #ffcc00 0%, #ff0058 100%); margin: 40px 30px; padding: 5px; position: relative; transition: 0.5s; } .card:hover { transform: translatey(-20px); } .card::before { content: ""; width: 100%; height: 100%; position: absolute; background: inherit; top: 0; left: 0; filter: blur(30px); } .button { color: green; background-color: #fff; border: none; padding: 6px 12px; margin: 8px 0; } .button:hover { background-color: rgb(4, 26, 10); color: #fff; } .card:nth-child(1)::before, .card:nth-child(1) { background: linear-gradient(45deg, #ffcc00 0%, #ff0058 100%); } .card:nth-child(2)::before, .card:nth-child(2) { background: linear-gradient(315deg, #03a9f4 0%, #ff0058 100%); } .card:nth-child(3)::before, .card:nth-child(3) { background: linear-gradient(315deg, #4dff03 0%, #00d0ff 100%); } .card:nth-child(4)::before, .card:nth-child(4) { background: linear-gradient(315deg, #4f03ff 0%, #eb0c0c 100%); } .card:nth-child(5)::before, .card:nth-child(5) { background: linear-gradient(315deg, #18ff03 0%, #eb0ca1 100%); } .card span { position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; background: rgba(0, 0, 0, 0.5); pointer-events: none; } .content { background: linear-gradient( 90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.05) 50% ); width: 100%; height: 100%; position: relative; z-index: 2; color: #fff; padding: 40px 20px; } .content h2 { font-size: 2rem; margin-bottom: 20px; } .content p { margin-bottom: 20px; } .content a { display: inline-block; text-decoration: none; text-align: center; background: #fff; color: #121214; padding: 10px 5px; font-weight: 600; } footer { opacity: 0.9; background-color: green; text-align: center; }
About/about.css
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: Montserrat; } body { background: #121214; width: 100%; } .navbar-light .navbar-toggler { margin: 4px; } .navbar-brand { margin-right: 0px; } .navbar-toggler { padding: 6px !important; font-size: 1rem !important; } .navbar { background-color: green !important; } .nav-img { height: 50px; width: 70px; margin-top: 0px; display: inline-block; } #webTitle { display: inline-block; font-size: 25px; color: rgb(17, 17, 17); font-weight: bold; } .nav-link { color: white !important; font-size: 18px !important; padding: 13px 20px 13px 20px !important; } .current { background-color: rgba(0, 0, 0, 0.247); border-radius: 20px; margin: 5px; font-weight: bold; border: solid 2px black; } .current:hover { transition: 0.3s !important; font-size: 20px !important; background-color: lightslategrey !important; border: solid 2px black !important; font-size: 18px !important; } .container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; background: url("https://cdn.pixabay.com/photo/2016/09/27/23/03/guitar-1699501_960_720.jpg") no-repeat center center fixed; background-size: cover; } .card { width: 280px; height: 360px; background: linear-gradient(45deg, #ffcc00 0%, #ff0058 100%); margin: 40px 30px; padding: 5px; position: relative; transition: 0.5s; } .card:hover { transform: translatey(-20px); } .card::before { content: ""; width: 100%; height: 100%; position: absolute; background: inherit; top: 0; left: 0; filter: blur(30px); } .button { color: green; background-color: #fff; border: none; padding: 6px 12px; margin: 8px 0; } .button:hover { background-color: rgb(4, 26, 10); color: #fff; } .card:nth-child(1)::before, .card:nth-child(1) { background: linear-gradient(45deg, #ffcc00 0%, #ff0058 100%); } .card:nth-child(2)::before, .card:nth-child(2) { background: linear-gradient(315deg, #03a9f4 0%, #ff0058 100%); } .card:nth-child(3)::before, .card:nth-child(3) { background: linear-gradient(315deg, #4dff03 0%, #00d0ff 100%); } .card:nth-child(4)::before, .card:nth-child(4) { background: linear-gradient(315deg, #4f03ff 0%, #eb0c0c 100%); } .card:nth-child(5)::before, .card:nth-child(5) { background: linear-gradient(315deg, #18ff03 0%, #eb0ca1 100%); } .card span { position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; background: rgba(0, 0, 0, 0.5); pointer-events: none; } .content { background: linear-gradient( 90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.05) 50% ); width: 100%; height: 100%; position: relative; z-index: 2; color: #fff; padding: 40px 20px; } .content h2 { font-size: 2rem; margin-bottom: 20px; } .content p { margin-bottom: 20px; } .content a { display: inline-block; text-decoration: none; text-align: center; background: #fff; color: #121214; padding: 10px 5px; font-weight: 600; } footer { opacity: 0.9; background-color: green; text-align: center; }
0.420362
0.100879
* { margin: 0; padding: 0; } body { font-family: 'Roboto', sans-serif; } ul { list-style: none; } .menu .menu-item { padding: 0px 20px; margin-bottom: 0px; } .menu .menu-item .menu-link { width: 55px; height: 55px; display: block; text-align: center; border-radius: 50%; margin-left: auto; } .menu .menu-item .menu-link:hover { background-color: #cee9f9; } .menu .menu-item .menu-link:hover i { color: #1B95E0; } .menu .menu-item .menu-link:hover.box { display: block !important; } .menu .menu-item .menu-link i { color: #000; font-size: 25px; line-height: 55px; } .menu .menu-item .menu-link.active i { color: #1B95E0; } .menu .menu-item .box { display: none; padding: 20px; position: absolute; box-shadow: 0px 0px 10px #ccc; background-color: #fff; margin-top: -240px; margin-left: 40px; width: 300px; border-radius: 10px; text-align: left; z-index: 9; } .menu .menu-item .box .name { font-size: 16px; font-weight: 600; margin-top: 5px; } .menu .menu-item .box .username { color: #999; } .menu .menu-item .box .bio { margin-top: 10px; margin-bottom: 10px; } .menu .menu-item .box .folow { display: flex; } .menu .menu-item .box .folow a { display: inline-block; margin-right: 10px; color: #999; } .menu .menu-item .box .folow a span { color: #000 !important; font-weight: 600; } .menu .menu-item:hover .user-img-30 { border: 2px solid #1B95E0; } .menu .menu-item:hover .box { display: block; } .user-img-30 { width: 30px; height: 30px; border-radius: 50%; margin-top: 12px; border: 2px solid #fff; } .user-img-40 { width: 40px; height: 40px; border-radius: 50%; } .add-twit { background-color: #1B95E0; margin-top: 20px; } .add-twit i { color: #fff !important; } .add-twit:hover { background-color: #1677b2 !important; } .write-twit { padding: 20px 10px; display: flex; background-color: #fff; } .write-twit img { margin-bottom: 20px; } .write-twit textarea { border: 0; color: #999; padding: 10px; width: 100%; font-size: 20px; outline: 0 none; } @media (min-width: 1200px) { .card-columns { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } @media (min-width: 992px) { .card-columns { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } @media (max-width: 992px) { .card-columns { -webkit-column-count: 1; -moz-column-count: 1; column-count: 1; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } /* mardown control */ .card-text img{ max-height: 400px; max-width: 300px; }
static/css/style.css
* { margin: 0; padding: 0; } body { font-family: 'Roboto', sans-serif; } ul { list-style: none; } .menu .menu-item { padding: 0px 20px; margin-bottom: 0px; } .menu .menu-item .menu-link { width: 55px; height: 55px; display: block; text-align: center; border-radius: 50%; margin-left: auto; } .menu .menu-item .menu-link:hover { background-color: #cee9f9; } .menu .menu-item .menu-link:hover i { color: #1B95E0; } .menu .menu-item .menu-link:hover.box { display: block !important; } .menu .menu-item .menu-link i { color: #000; font-size: 25px; line-height: 55px; } .menu .menu-item .menu-link.active i { color: #1B95E0; } .menu .menu-item .box { display: none; padding: 20px; position: absolute; box-shadow: 0px 0px 10px #ccc; background-color: #fff; margin-top: -240px; margin-left: 40px; width: 300px; border-radius: 10px; text-align: left; z-index: 9; } .menu .menu-item .box .name { font-size: 16px; font-weight: 600; margin-top: 5px; } .menu .menu-item .box .username { color: #999; } .menu .menu-item .box .bio { margin-top: 10px; margin-bottom: 10px; } .menu .menu-item .box .folow { display: flex; } .menu .menu-item .box .folow a { display: inline-block; margin-right: 10px; color: #999; } .menu .menu-item .box .folow a span { color: #000 !important; font-weight: 600; } .menu .menu-item:hover .user-img-30 { border: 2px solid #1B95E0; } .menu .menu-item:hover .box { display: block; } .user-img-30 { width: 30px; height: 30px; border-radius: 50%; margin-top: 12px; border: 2px solid #fff; } .user-img-40 { width: 40px; height: 40px; border-radius: 50%; } .add-twit { background-color: #1B95E0; margin-top: 20px; } .add-twit i { color: #fff !important; } .add-twit:hover { background-color: #1677b2 !important; } .write-twit { padding: 20px 10px; display: flex; background-color: #fff; } .write-twit img { margin-bottom: 20px; } .write-twit textarea { border: 0; color: #999; padding: 10px; width: 100%; font-size: 20px; outline: 0 none; } @media (min-width: 1200px) { .card-columns { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } @media (min-width: 992px) { .card-columns { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } @media (max-width: 992px) { .card-columns { -webkit-column-count: 1; -moz-column-count: 1; column-count: 1; -webkit-column-gap: 1.25rem; -moz-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } /* mardown control */ .card-text img{ max-height: 400px; max-width: 300px; }
0.189296
0.055209
html { line-height: 1.15; -webkit-text-size-adjust: 100% } body { margin: 0 } main { display: block } h1 { font-size: 2em; margin: .67em 0; line-height: 1.2em } hr { box-sizing: content-box; height: 0; overflow: visible } pre { font-family: monospace,monospace; font-size: 1em } a { background-color: transparent } abbr[title] { border-bottom: none; text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted } b, strong { font-weight: bolder } code, kbd, samp { font-family: monospace,monospace; font-size: 1em } small { font-size: 80% } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline } sub { bottom: -.25em } sup { top: -.5em } img { border-style: none } button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0 } button, input { overflow: visible } button, select { text-transform: none } [type=button], [type=reset], [type=submit], button { -webkit-appearance: button } [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { border-style: none; padding: 0 } [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { outline: 1px dotted ButtonText } fieldset { padding: .35em .75em .625em } legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal } progress { vertical-align: baseline } textarea { overflow: auto } [type=checkbox], [type=radio] { box-sizing: border-box; padding: 0 } [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto } [type=search] { -webkit-appearance: textfield; outline-offset: -2px } [type=search]::-webkit-search-decoration { -webkit-appearance: none } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit } details { display: block } summary { display: list-item } template { display: none } [hidden] { display: none } .flex { display: flex } .flex-auto { flex: 1 1 auto } .flex-inline { display: inline-flex } .flex-even { flex: 1 1 } .flex-wrap { flex-wrap: wrap } .flex-grid { flex-direction: column; border: 1px solid var(--accent-color); border-radius: .15rem; background: var(--accent-color-lite) } .justify-start { justify-content: flex-start } .justify-end { justify-content: flex-end } .justify-center { justify-content: center } .justify-between { justify-content: space-between } .align-center { align-items: center } .mx-auto { margin: 0 auto } .text-center { text-align: center } .hidden { display: none } .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden } .badge-placeholder { display: inline-block; min-width: 4rem } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-Bold.woff2) format("woff2"),url(fonts/LiberationSans-Bold.woff) format("woff"); font-weight: 700; font-style: normal; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-BoldItalic.woff2) format("woff2"),url(fonts/LiberationSans-BoldItalic.woff) format("woff"); font-weight: 700; font-style: italic; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-Italic.woff2) format("woff2"),url(fonts/LiberationSans-Italic.woff) format("woff"); font-weight: 400; font-style: italic; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans.woff2) format("woff2"),url(fonts/LiberationSans.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: "Liberation Mono"; src: url(fonts/LiberationMono.woff2) format("woff2"),url(fonts/LiberationMono.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: "Droid Sans"; src: url(fonts/DroidSans.woff2) format("woff2"),url(fonts/DroidSans.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: Metropolis; src: url(fonts/Metropolis.woff2) format("woff2"),url(fonts/Metropolis.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: GeekdocIcons; src: url(fonts/GeekdocIcons.woff2) format("woff2"),url(fonts/GeekdocIcons.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } body { font-family: "Liberation Sans",sans-serif } .gdoc-error__title, code { font-family: "Liberation Mono",monospace } .gdoc-header { font-family: Metropolis,sans-serif } :root, :root[color-mode=light] { --header-background: #4186c9; --header-font-color: white; --body-background: white; --body-font-color: #343a40; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #0a539a; --link-color-visited: #7749bf; --code-background: #f5f6f8; --code-accent-color: #e3e7eb; --code-accent-color-lite: #eff1f3; --accent-color: #e9ecef; --accent-color-lite: #f8f9fa; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma, :root[color-mode=light] .chroma { color: #999; margin: 1rem 0 } :root .chroma code, :root[color-mode=light] .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code, :root[color-mode=light] .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code, :root[color-mode=light] .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl, :root[color-mode=light] .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma, :root[color-mode=light] .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code, :root[color-mode=light] .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .err, :root[color-mode=light] .chroma .err { color: #a61717; background-color: #e3d2d2 } :root .chroma .lntd, :root[color-mode=light] .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable, :root[color-mode=light] .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code, :root[color-mode=light] .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code, :root[color-mode=light] .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2), :root[color-mode=light] .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl, :root[color-mode=light] .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt, :root[color-mode=light] .chroma .lnt { padding: 0 .8em } :root .chroma .ln, :root[color-mode=light] .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em } :root .chroma .k, :root[color-mode=light] .chroma .k { color: #000; font-weight: 700 } :root .chroma .kc, :root[color-mode=light] .chroma .kc { color: #000; font-weight: 700 } :root .chroma .kd, :root[color-mode=light] .chroma .kd { color: #000; font-weight: 700 } :root .chroma .kn, :root[color-mode=light] .chroma .kn { color: #000; font-weight: 700 } :root .chroma .kp, :root[color-mode=light] .chroma .kp { color: #000; font-weight: 700 } :root .chroma .kr, :root[color-mode=light] .chroma .kr { color: #000; font-weight: 700 } :root .chroma .kt, :root[color-mode=light] .chroma .kt { color: #458; font-weight: 700 } :root .chroma .na, :root[color-mode=light] .chroma .na { color: teal } :root .chroma .nb, :root[color-mode=light] .chroma .nb { color: #0086b3 } :root .chroma .bp, :root[color-mode=light] .chroma .bp { color: #999 } :root .chroma .nc, :root[color-mode=light] .chroma .nc { color: #458; font-weight: 700 } :root .chroma .no, :root[color-mode=light] .chroma .no { color: teal } :root .chroma .nd, :root[color-mode=light] .chroma .nd { color: #3c5d5d; font-weight: 700 } :root .chroma .ni, :root[color-mode=light] .chroma .ni { color: purple } :root .chroma .ne, :root[color-mode=light] .chroma .ne { color: #900; font-weight: 700 } :root .chroma .nf, :root[color-mode=light] .chroma .nf { color: #900; font-weight: 700 } :root .chroma .nl, :root[color-mode=light] .chroma .nl { color: #900; font-weight: 700 } :root .chroma .nn, :root[color-mode=light] .chroma .nn { color: #555 } :root .chroma .nt, :root[color-mode=light] .chroma .nt { color: navy } :root .chroma .nv, :root[color-mode=light] .chroma .nv { color: teal } :root .chroma .vc, :root[color-mode=light] .chroma .vc { color: teal } :root .chroma .vg, :root[color-mode=light] .chroma .vg { color: teal } :root .chroma .vi, :root[color-mode=light] .chroma .vi { color: teal } :root .chroma .s, :root[color-mode=light] .chroma .s { color: #d14 } :root .chroma .sa, :root[color-mode=light] .chroma .sa { color: #d14 } :root .chroma .sb, :root[color-mode=light] .chroma .sb { color: #d14 } :root .chroma .sc, :root[color-mode=light] .chroma .sc { color: #d14 } :root .chroma .dl, :root[color-mode=light] .chroma .dl { color: #d14 } :root .chroma .sd, :root[color-mode=light] .chroma .sd { color: #d14 } :root .chroma .s2, :root[color-mode=light] .chroma .s2 { color: #d14 } :root .chroma .se, :root[color-mode=light] .chroma .se { color: #d14 } :root .chroma .sh, :root[color-mode=light] .chroma .sh { color: #d14 } :root .chroma .si, :root[color-mode=light] .chroma .si { color: #d14 } :root .chroma .sx, :root[color-mode=light] .chroma .sx { color: #d14 } :root .chroma .sr, :root[color-mode=light] .chroma .sr { color: #009926 } :root .chroma .s1, :root[color-mode=light] .chroma .s1 { color: #d14 } :root .chroma .ss, :root[color-mode=light] .chroma .ss { color: #990073 } :root .chroma .m, :root[color-mode=light] .chroma .m { color: #099 } :root .chroma .mb, :root[color-mode=light] .chroma .mb { color: #099 } :root .chroma .mf, :root[color-mode=light] .chroma .mf { color: #099 } :root .chroma .mh, :root[color-mode=light] .chroma .mh { color: #099 } :root .chroma .mi, :root[color-mode=light] .chroma .mi { color: #099 } :root .chroma .il, :root[color-mode=light] .chroma .il { color: #099 } :root .chroma .mo, :root[color-mode=light] .chroma .mo { color: #099 } :root .chroma .o, :root[color-mode=light] .chroma .o { color: #000; font-weight: 700 } :root .chroma .ow, :root[color-mode=light] .chroma .ow { color: #000; font-weight: 700 } :root .chroma .c, :root[color-mode=light] .chroma .c { color: #998; font-style: italic } :root .chroma .ch, :root[color-mode=light] .chroma .ch { color: #998; font-style: italic } :root .chroma .cm, :root[color-mode=light] .chroma .cm { color: #998; font-style: italic } :root .chroma .c1, :root[color-mode=light] .chroma .c1 { color: #998; font-style: italic } :root .chroma .cs, :root[color-mode=light] .chroma .cs { color: #999; font-weight: 700; font-style: italic } :root .chroma .cp, :root[color-mode=light] .chroma .cp { color: #999; font-weight: 700; font-style: italic } :root .chroma .cpf, :root[color-mode=light] .chroma .cpf { color: #999; font-weight: 700; font-style: italic } :root .chroma .gd, :root[color-mode=light] .chroma .gd { color: #000; background-color: #fdd } :root .chroma .ge, :root[color-mode=light] .chroma .ge { color: #000; font-style: italic } :root .chroma .gr, :root[color-mode=light] .chroma .gr { color: #a00 } :root .chroma .gh, :root[color-mode=light] .chroma .gh { color: #999 } :root .chroma .gi, :root[color-mode=light] .chroma .gi { color: #000; background-color: #dfd } :root .chroma .go, :root[color-mode=light] .chroma .go { color: #888 } :root .chroma .gp, :root[color-mode=light] .chroma .gp { color: #555 } :root .chroma .gs, :root[color-mode=light] .chroma .gs { font-weight: 700 } :root .chroma .gu, :root[color-mode=light] .chroma .gu { color: #aaa } :root .chroma .gt, :root[color-mode=light] .chroma .gt { color: #a00 } :root .chroma .gl, :root[color-mode=light] .chroma .gl { text-decoration: underline } :root .chroma .w, :root[color-mode=light] .chroma .w { color: #bbb } @media (prefers-color-scheme:light) { :root { --header-background: #4186c9; --header-font-color: white; --body-background: white; --body-font-color: #343a40; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #0a539a; --link-color-visited: #7749bf; --code-background: #f5f6f8; --code-accent-color: #e3e7eb; --code-accent-color-lite: #eff1f3; --accent-color: #e9ecef; --accent-color-lite: #f8f9fa; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma { color: #999; margin: 1rem 0 } :root .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .err { color: #a61717; background-color: #e3d2d2 } :root .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt { padding: 0 .8em } :root .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em } :root .chroma .k { color: #000; font-weight: 700 } :root .chroma .kc { color: #000; font-weight: 700 } :root .chroma .kd { color: #000; font-weight: 700 } :root .chroma .kn { color: #000; font-weight: 700 } :root .chroma .kp { color: #000; font-weight: 700 } :root .chroma .kr { color: #000; font-weight: 700 } :root .chroma .kt { color: #458; font-weight: 700 } :root .chroma .na { color: teal } :root .chroma .nb { color: #0086b3 } :root .chroma .bp { color: #999 } :root .chroma .nc { color: #458; font-weight: 700 } :root .chroma .no { color: teal } :root .chroma .nd { color: #3c5d5d; font-weight: 700 } :root .chroma .ni { color: purple } :root .chroma .ne { color: #900; font-weight: 700 } :root .chroma .nf { color: #900; font-weight: 700 } :root .chroma .nl { color: #900; font-weight: 700 } :root .chroma .nn { color: #555 } :root .chroma .nt { color: navy } :root .chroma .nv { color: teal } :root .chroma .vc { color: teal } :root .chroma .vg { color: teal } :root .chroma .vi { color: teal } :root .chroma .s { color: #d14 } :root .chroma .sa { color: #d14 } :root .chroma .sb { color: #d14 } :root .chroma .sc { color: #d14 } :root .chroma .dl { color: #d14 } :root .chroma .sd { color: #d14 } :root .chroma .s2 { color: #d14 } :root .chroma .se { color: #d14 } :root .chroma .sh { color: #d14 } :root .chroma .si { color: #d14 } :root .chroma .sx { color: #d14 } :root .chroma .sr { color: #009926 } :root .chroma .s1 { color: #d14 } :root .chroma .ss { color: #990073 } :root .chroma .m { color: #099 } :root .chroma .mb { color: #099 } :root .chroma .mf { color: #099 } :root .chroma .mh { color: #099 } :root .chroma .mi { color: #099 } :root .chroma .il { color: #099 } :root .chroma .mo { color: #099 } :root .chroma .o { color: #000; font-weight: 700 } :root .chroma .ow { color: #000; font-weight: 700 } :root .chroma .c { color: #998; font-style: italic } :root .chroma .ch { color: #998; font-style: italic } :root .chroma .cm { color: #998; font-style: italic } :root .chroma .c1 { color: #998; font-style: italic } :root .chroma .cs { color: #999; font-weight: 700; font-style: italic } :root .chroma .cp { color: #999; font-weight: 700; font-style: italic } :root .chroma .cpf { color: #999; font-weight: 700; font-style: italic } :root .chroma .gd { color: #000; background-color: #fdd } :root .chroma .ge { color: #000; font-style: italic } :root .chroma .gr { color: #a00 } :root .chroma .gh { color: #999 } :root .chroma .gi { color: #000; background-color: #dfd } :root .chroma .go { color: #888 } :root .chroma .gp { color: #555 } :root .chroma .gs { font-weight: 700 } :root .chroma .gu { color: #aaa } :root .chroma .gt { color: #a00 } :root .chroma .gl { text-decoration: underline } :root .chroma .w { color: #bbb } } :root[color-mode=dark] { --header-background: #4186c9; --header-font-color: white; --body-background: #343a40; --body-font-color: #ced3d8; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #5e92c6; --link-color-visited: #936fcc; --code-background: #2f353a; --code-accent-color: #262b2f; --code-accent-color-lite: #2b3035; --accent-color: #2b3035; --accent-color-lite: #2f353a; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root[color-mode=dark] .chroma { color: #999; margin: 1rem 0 } :root[color-mode=dark] .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root[color-mode=dark] .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root[color-mode=dark] .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root[color-mode=dark] .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root[color-mode=dark] .highlight pre.chroma { margin: 0 } :root[color-mode=dark] .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root[color-mode=dark] .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root[color-mode=dark] .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root[color-mode=dark] .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root[color-mode=dark] .chroma .lntable td code { padding: .5em 0 } :root[color-mode=dark] .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root[color-mode=dark] .chroma .hl { display: block; width: 100%; background-color: #ffc } :root[color-mode=dark] .chroma .lnt { padding: 0 .8em } :root[color-mode=dark] .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em; color: #7f7f7f } :root[color-mode=dark] .chroma .k { color: #ff79c6 } :root[color-mode=dark] .chroma .kc { color: #ff79c6 } :root[color-mode=dark] .chroma .kd { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .kn { color: #ff79c6 } :root[color-mode=dark] .chroma .kp { color: #ff79c6 } :root[color-mode=dark] .chroma .kr { color: #ff79c6 } :root[color-mode=dark] .chroma .kt { color: #8be9fd } :root[color-mode=dark] .chroma .na { color: #50fa7b } :root[color-mode=dark] .chroma .nb { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .nc { color: #50fa7b } :root[color-mode=dark] .chroma .nf { color: #50fa7b } :root[color-mode=dark] .chroma .nl { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .nt { color: #ff79c6 } :root[color-mode=dark] .chroma .nv { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vc { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vg { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vi { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .s { color: #f1fa8c } :root[color-mode=dark] .chroma .sa { color: #f1fa8c } :root[color-mode=dark] .chroma .sb { color: #f1fa8c } :root[color-mode=dark] .chroma .sc { color: #f1fa8c } :root[color-mode=dark] .chroma .dl { color: #f1fa8c } :root[color-mode=dark] .chroma .sd { color: #f1fa8c } :root[color-mode=dark] .chroma .s2 { color: #f1fa8c } :root[color-mode=dark] .chroma .se { color: #f1fa8c } :root[color-mode=dark] .chroma .sh { color: #f1fa8c } :root[color-mode=dark] .chroma .si { color: #f1fa8c } :root[color-mode=dark] .chroma .sx { color: #f1fa8c } :root[color-mode=dark] .chroma .sr { color: #f1fa8c } :root[color-mode=dark] .chroma .s1 { color: #f1fa8c } :root[color-mode=dark] .chroma .ss { color: #f1fa8c } :root[color-mode=dark] .chroma .m { color: #bd93f9 } :root[color-mode=dark] .chroma .mb { color: #bd93f9 } :root[color-mode=dark] .chroma .mf { color: #bd93f9 } :root[color-mode=dark] .chroma .mh { color: #bd93f9 } :root[color-mode=dark] .chroma .mi { color: #bd93f9 } :root[color-mode=dark] .chroma .il { color: #bd93f9 } :root[color-mode=dark] .chroma .mo { color: #bd93f9 } :root[color-mode=dark] .chroma .o { color: #ff79c6 } :root[color-mode=dark] .chroma .ow { color: #ff79c6 } :root[color-mode=dark] .chroma .c { color: #6272a4 } :root[color-mode=dark] .chroma .ch { color: #6272a4 } :root[color-mode=dark] .chroma .cm { color: #6272a4 } :root[color-mode=dark] .chroma .c1 { color: #6272a4 } :root[color-mode=dark] .chroma .cs { color: #6272a4 } :root[color-mode=dark] .chroma .cp { color: #ff79c6 } :root[color-mode=dark] .chroma .cpf { color: #ff79c6 } :root[color-mode=dark] .chroma .gd { color: #8b080b } :root[color-mode=dark] .chroma .ge { text-decoration: underline } :root[color-mode=dark] .chroma .gh { font-weight: 700 } :root[color-mode=dark] .chroma .gi { font-weight: 700 } :root[color-mode=dark] .chroma .go { color: #44475a } :root[color-mode=dark] .chroma .gu { font-weight: 700 } :root[color-mode=dark] .chroma .gl { text-decoration: underline } :root[color-mode=dark] .dark-mode-dim .gdoc-markdown img { -webkit-filter: brightness(.75) grayscale(.2); filter: brightness(.75) grayscale(.2) } :root[color-mode=dark] .gdoc-markdown .gdoc-hint { -webkit-filter: saturate(2.5) brightness(.85); filter: saturate(2.5) brightness(.85) } @media (prefers-color-scheme:dark) { :root { --header-background: #4186c9; --header-font-color: white; --body-background: #343a40; --body-font-color: #ced3d8; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #5e92c6; --link-color-visited: #936fcc; --code-background: #2f353a; --code-accent-color: #262b2f; --code-accent-color-lite: #2b3035; --accent-color: #2b3035; --accent-color-lite: #2f353a; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma { color: #999; margin: 1rem 0 } :root .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt { padding: 0 .8em } :root .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em; color: #7f7f7f } :root .chroma .k { color: #ff79c6 } :root .chroma .kc { color: #ff79c6 } :root .chroma .kd { color: #8be9fd; font-style: italic } :root .chroma .kn { color: #ff79c6 } :root .chroma .kp { color: #ff79c6 } :root .chroma .kr { color: #ff79c6 } :root .chroma .kt { color: #8be9fd } :root .chroma .na { color: #50fa7b } :root .chroma .nb { color: #8be9fd; font-style: italic } :root .chroma .nc { color: #50fa7b } :root .chroma .nf { color: #50fa7b } :root .chroma .nl { color: #8be9fd; font-style: italic } :root .chroma .nt { color: #ff79c6 } :root .chroma .nv { color: #8be9fd; font-style: italic } :root .chroma .vc { color: #8be9fd; font-style: italic } :root .chroma .vg { color: #8be9fd; font-style: italic } :root .chroma .vi { color: #8be9fd; font-style: italic } :root .chroma .s { color: #f1fa8c } :root .chroma .sa { color: #f1fa8c } :root .chroma .sb { color: #f1fa8c } :root .chroma .sc { color: #f1fa8c } :root .chroma .dl { color: #f1fa8c } :root .chroma .sd { color: #f1fa8c } :root .chroma .s2 { color: #f1fa8c } :root .chroma .se { color: #f1fa8c } :root .chroma .sh { color: #f1fa8c } :root .chroma .si { color: #f1fa8c } :root .chroma .sx { color: #f1fa8c } :root .chroma .sr { color: #f1fa8c } :root .chroma .s1 { color: #f1fa8c } :root .chroma .ss { color: #f1fa8c } :root .chroma .m { color: #bd93f9 } :root .chroma .mb { color: #bd93f9 } :root .chroma .mf { color: #bd93f9 } :root .chroma .mh { color: #bd93f9 } :root .chroma .mi { color: #bd93f9 } :root .chroma .il { color: #bd93f9 } :root .chroma .mo { color: #bd93f9 } :root .chroma .o { color: #ff79c6 } :root .chroma .ow { color: #ff79c6 } :root .chroma .c { color: #6272a4 } :root .chroma .ch { color: #6272a4 } :root .chroma .cm { color: #6272a4 } :root .chroma .c1 { color: #6272a4 } :root .chroma .cs { color: #6272a4 } :root .chroma .cp { color: #ff79c6 } :root .chroma .cpf { color: #ff79c6 } :root .chroma .gd { color: #8b080b } :root .chroma .ge { text-decoration: underline } :root .chroma .gh { font-weight: 700 } :root .chroma .gi { font-weight: 700 } :root .chroma .go { color: #44475a } :root .chroma .gu { font-weight: 700 } :root .chroma .gl { text-decoration: underline } :root .dark-mode-dim .gdoc-markdown img { -webkit-filter: brightness(.75) grayscale(.2); filter: brightness(.75) grayscale(.2) } :root .gdoc-markdown .gdoc-hint { -webkit-filter: saturate(2.5) brightness(.85); filter: saturate(2.5) brightness(.85) } } html { font-size: 16px; letter-spacing: .33px; scroll-behavior: smooth } html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_dark, html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_light { display: inline-block } html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_dark { display: none } html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_dark { display: inline-block } html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_dark { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_auto { display: inline-block } body, html { min-width: 20rem; overflow-x: hidden } body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box } body * { box-sizing: inherit } h1, h2, h3, h4, h5, h6 { font-weight: 400; display: flex; align-items: center } h4, h5, h6 { font-size: 1rem!important } a { text-decoration: none; color: var(--link-color) } a:hover { text-decoration: underline } a:visited { color: var(--link-color-visited) } img { vertical-align: middle } .fake-link:hover { background-image: linear-gradient(var(--link-color),var(--link-color)); background-position: 0 100%; background-size: 100% 1px; background-repeat: no-repeat; text-decoration: none } .wrapper { display: flex; flex-direction: column; min-height: 100vh; color: var(--body-font-color); background: var(--body-background); font-weight: 400 } .container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 1rem } .icon { display: inline-block; width: 1em; height: 1em; top: .125em; stroke-width: 0; stroke: currentColor; fill: currentColor; position: relative } .gdoc-header { background: var(--header-background); color: var(--header-font-color); border-bottom: .3em solid #2f333e } .gdoc-header__link, .gdoc-header__link:visited { color: inherit } .gdoc-header__link:hover { text-decoration: none } .gdoc-header .icon { width: 2rem; height: 2rem } .gdoc-brand { font-size: 2rem } .gdoc-brand__img { margin-right: 1rem; width: 2rem; height: 2rem } .gdoc-nav { flex: 0 0 16rem; font-size: .875rem } .gdoc-nav nav { width: 16rem; padding: 1rem 2rem 1rem 0 } .gdoc-nav nav > ul > li > * { font-weight: 400 } .gdoc-nav nav > :first-child { margin-top: 0 } .gdoc-nav__control { display: none; margin: 0; padding: 0 } .gdoc-nav__control .icon.gdoc_menu { display: inline-block } .gdoc-nav__control .icon.gdoc_arrow_back { display: none } .gdoc-nav__list { padding-left: 1em; margin: 0; padding: 0; list-style: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .gdoc-nav__list ul { padding-left: 1rem } .gdoc-nav__list li { margin: .5rem 0 } .gdoc-nav__list .icon { margin-right: .25rem } .gdoc-nav__toggle { display: none } .gdoc-nav__toggle ~ label { cursor: pointer } .gdoc-nav__toggle ~ label .icon { font-size: .7rem } .gdoc-nav__toggle:not(:checked) ~ label .icon.gdoc_keyborad_arrow_down, .gdoc-nav__toggle:not(:checked) ~ ul { display: none } .gdoc-nav__toggle:not(:checked) ~ label .icon.gdoc_keyborad_arrow_left { display: block } .gdoc-nav__toggle:checked ~ label .icon.gdoc_keyborad_arrow_down, .gdoc-nav__toggle:checked ~ ul { display: block } .gdoc-nav__toggle:checked ~ label .icon.gdoc_keyborad_arrow_left { display: none } .gdoc-nav--main > ul > li > label, .gdoc-nav--main > ul > li > label > a, .gdoc-nav--main > ul > li > span, .gdoc-nav--main > ul > li > span > a { font-weight: 700 } .gdoc-nav--more { padding-top: .5rem } .gdoc-nav__entry, .gdoc-search__entry { flex: 1; color: var(--body-font-color) } .gdoc-nav__entry.is-active, .gdoc-nav__entry:hover, .gdoc-search__entry.is-active, .gdoc-search__entry:hover { text-decoration: underline; -webkit-text-decoration-style: dashed!important; text-decoration-style: dashed!important } .gdoc-nav__entry:visited, .gdoc-search__entry:visited { color: var(--body-font-color) } .gdoc-page { min-width: 20rem; flex-grow: 1; padding: 1rem 0 } .gdoc-page__footer, .gdoc-page__header { margin-bottom: 1.2rem } .gdoc-page__footer .icon, .gdoc-page__header .icon { color: var(--control-icons) } .gdoc-page__footer a, .gdoc-page__footer a:visited, .gdoc-page__header a, .gdoc-page__header a:visited { color: var(--link-color) } .gdoc-page__header { background: var(--accent-color-lite); padding: .5rem 1rem; border-radius: .15rem } .gdoc-page__footer { margin-top: 2rem } .gdoc-page__footer a:hover { text-decoration: none } .gdoc-page__nav:hover { background-image: linear-gradient(var(--link-color),var(--link-color)); background-position: 0 100%; background-size: 100% 1px; background-repeat: no-repeat } .gdoc-page__nav--prev:before { font-family: GeekdocIcons; content: "\ea13" } .gdoc-page__nav--next:after { font-family: GeekdocIcons; content: "\ea02" } .gdoc-page__anchorwrap:hover .gdoc-page__anchor .icon { color: var(--control-icons) } .gdoc-page__anchor { min-width: 30px } .gdoc-page__anchor--left { position: absolute; margin-left: -25px; text-align: left } .gdoc-page__anchor--right { text-align: right } .gdoc-page__anchor .icon { width: 1.4rem; height: 1.4rem; color: transparent } .gdoc-post { word-wrap: break-word; border-top: 1px dashed #868e96; padding: 2rem 0; line-height: 1.5 } .gdoc-post:first-of-type { padding-top: 0 } .gdoc-post__header h1 { margin-top: 0 } .gdoc-post__header a, .gdoc-post__header a:visited { color: var(--body-font-color); text-decoration: none } .gdoc-post__header a:hover { background: 0 0; text-decoration: underline; color: var(--body-font-color) } .gdoc-post__date { margin: 1em 0 } .gdoc-post__date .icon { font-size: 1.2em } .gdoc-post:first-child { border-top: 0 } .gdoc-post:first-child h1 { margin-top: 0 } .gdoc-post__readmore { margin: 1.5rem 0 2rem 0 } .gdoc-post__readmore a:after { font-family: GeekdocIcons; content: "\ea02" } .gdoc-post__readmore a, .gdoc-post__readmore a:hover, .gdoc-post__readmore a:visited { color: var(--link-color); text-decoration: none!important } .gdoc-footer { background: var(--footer-background); color: var(--footer-font-color) } .gdoc-footer__item { margin-right: 1em; line-height: 2em } .gdoc-footer__link { color: var(--footer-link-color) } .gdoc-footer__link:visited { color: var(--footer-link-color-visited) } .gdoc-search { position: relative } .gdoc-search .icon { position: absolute; top: .625em; left: .5rem; color: var(--control-icons); width: 1rem; height: 1rem } .gdoc-search::after { display: block; content: ""; clear: both } .gdoc-search__input { width: 100%; padding: .5rem; padding-left: 2rem; border: 1px solid var(--accent-color); border-radius: .15rem; background: var(--accent-color-lite); color: var(--body-font-color) } .gdoc-search__input:required + .gdoc-search__input__spinner { display: block } .gdoc-search__spinner { position: absolute; margin: .5rem; right: 0; top: 0; width: 1rem; height: 1rem; border: 1px solid transparent; border-top-color: var(--body-font-color); border-radius: 50%; -webkit-animation: spin 1s ease infinite; animation: spin 1s ease infinite } @-webkit-keyframes spin { 100% { transform: rotate(360deg) } } @keyframes spin { 100% { transform: rotate(360deg) } } .gdoc-search__list { visibility: hidden; background: var(--body-background); border-radius: .15rem; box-shadow: 0 1px 3px 0 var(--accent-color),0 1px 2px 0 var(--accent-color-lite); position: absolute; margin: 0; padding: .5rem; list-style: none; left: 0; top: calc(100% + .5rem); width: 100%; z-index: 2 } .gdoc-search__list ul { list-style: none; margin-top: .5rem; padding-left: 0 } .gdoc-search__list li { margin: .25rem 0 } .gdoc-search__list > li > span { font-weight: 700 } .gdoc-search__list > li + li { margin-top: .5rem } .gdoc-search__list .icon { margin-right: .25rem } .gdoc-search:focus-within .gdoc-search__list.has-hits, .gdoc-search__list.has-hits:active { visibility: visible } .gdoc-error { padding: 6rem 1rem; margin: 0 auto; max-width: 45em } .gdoc-error .icon { width: 8rem; height: 8rem; color: var(--body-font-color) } .gdoc-error__link, .gdoc-error__link:visited { color: var(--link-color) } .gdoc-error__message { padding-left: 4rem } .gdoc-error__line { padding: .5rem 0 } .gdoc-error__title { font-size: 4rem } .gdoc-error__code { font-weight: bolder } .gdoc-toc__level--1 ul ul, .gdoc-toc__level--2 ul ul ul, .gdoc-toc__level--3 ul ul ul ul, .gdoc-toc__level--4 ul ul ul ul ul, .gdoc-toc__level--5 ul ul ul ul ul ul, .gdoc-toc__level--6 ul ul ul ul ul ul ul { display: none } .gdoc-toc a, .gdoc-toc a:visited { color: var(--link-color) } .gdoc-nav nav, .gdoc-page, .markdown { transition: .2s ease-in-out; transition-property: transform,margin-left,opacity; will-change: transform,margin-left } .breadcrumb { display: inline; padding: 0; margin: 0 } .breadcrumb li { display: inline } .gdoc-markdown { line-height: 1.6em } .gdoc-markdown > :first-child { margin-top: 0 } .gdoc-markdown--nested :first-child { margin-top: 0 } .gdoc-markdown--nested > :last-child { margin-bottom: 0 } .gdoc-markdown h1, .gdoc-markdown h2, .gdoc-markdown h3, .gdoc-markdown h4, .gdoc-markdown h5, .gdoc-markdown h6 { font-weight: 600 } .gdoc-markdown h1 > code, .gdoc-markdown h2 > code, .gdoc-markdown h3 > code, .gdoc-markdown h4 > code, .gdoc-markdown h5 > code, .gdoc-markdown h6 > code { border-top: 3px solid var(--accent-color); font-size: .75em!important } .gdoc-markdown h4 > code, .gdoc-markdown h5 > code, .gdoc-markdown h6 > code { font-size: .8rem!important } .gdoc-markdown b, .gdoc-markdown optgroup, .gdoc-markdown strong { font-weight: bolder } .gdoc-markdown a, .gdoc-markdown__link { text-decoration: none; border-bottom: 1px solid transparent; line-height: 1em } .gdoc-markdown a:hover, .gdoc-markdown__link:hover { text-decoration: underline } .gdoc-markdown__link--raw { text-decoration: none!important; color: #343a40!important } .gdoc-markdown__link--raw:hover { text-decoration: none!important } .gdoc-markdown__link--raw:visited { color: #343a40!important } .gdoc-markdown img { max-width: 100%; border-radius: .15rem } .gdoc-markdown__figure { padding: .25rem; margin: 1rem 0; background-color: var(--accent-color); display: table; border-top-left-radius: .15rem; border-top-right-radius: .15rem } .gdoc-markdown__figure figcaption { display: table-caption; caption-side: bottom; background-color: var(--accent-color); padding: 0 .25rem .25rem; text-align: center; border-bottom-left-radius: .15rem; border-bottom-right-radius: .15rem } .gdoc-markdown__figure img { max-width: 100%; height: auto } .gdoc-markdown blockquote { margin: 1rem 0; padding: .5rem 1rem .5rem .75rem; border-left: 3px solid var(--accent-color); border-radius: .15rem } .gdoc-markdown blockquote :first-child { margin-top: 0 } .gdoc-markdown blockquote :last-child { margin-bottom: 0 } .gdoc-markdown table { overflow: auto; display: block; border-spacing: 0; border-collapse: collapse; margin-top: 1rem; margin-bottom: 1rem } .gdoc-markdown table tr td, .gdoc-markdown table tr th { padding: .5rem 1rem; border: 1px solid var(--accent-color) } .gdoc-markdown table tr:nth-child(2n) { background: var(--accent-color-lite) } .gdoc-markdown hr { height: 1.5px; border: none; background: var(--accent-color) } .gdoc-markdown ol, .gdoc-markdown ul { padding-left: 2rem } .gdoc-markdown dl dt { font-weight: bolder; margin-top: 1rem } .gdoc-markdown dl dd { margin-left: 2rem } .gdoc-markdown pre { margin: 1rem 0 } .gdoc-markdown code { background-color: var(--code-background); font-size: .85em; line-height: 1.45em; padding: .2em .4em } .gdoc-markdown pre code { display: block; padding: 1rem; width: 100%; overflow: auto } .gdoc-expand { margin-top: 1rem; margin-bottom: 1rem; border: 1px solid var(--accent-color); border-radius: .15rem; overflow: hidden } .gdoc-expand__head { background: var(--accent-color-lite); padding: .5rem 1rem; cursor: pointer } .gdoc-expand__content { display: none; padding: 1rem } .gdoc-expand__control:checked + .gdoc-expand__content { display: block } .gdoc-expand .gdoc-page__anchor { display: none } .gdoc-tabs { margin-top: 1rem; margin-bottom: 1rem; border: 1px solid var(--accent-color); border-radius: .15rem; overflow: hidden; display: flex; flex-wrap: wrap } .gdoc-tabs__label { display: inline-block; padding: .5rem 1rem; border-bottom: 1px transparent; cursor: pointer } .gdoc-tabs__content { order: 999; width: 100%; border-top: 1px solid var(--accent-color-lite); padding: 1rem; display: none } .gdoc-tabs__control:checked + .gdoc-tabs__label { border-bottom: 1.5px solid var(--link-color) } .gdoc-tabs__control:checked + .gdoc-tabs__label + .gdoc-tabs__content { display: block } .gdoc-columns { margin-left: -1rem; margin-right: -1rem } .gdoc-columns__content { margin: 1rem 0; min-width: 13.2rem; padding: 0 1rem } .gdoc-columns .gdoc-page__anchor { display: none } .gdoc-button { display: inline-block; background: var(--accent-color-lite); border: 1px solid var(--accent-color); border-radius: .15rem; margin: .5rem 0; cursor: pointer } .gdoc-button__link { display: inline-block; color: inherit!important; text-decoration: none!important; padding: .25rem 1rem } .gdoc-button:hover { background: var(--button-background); border-color: var(--button-border-color); color: #f8f9fa } .gdoc-hint.info { border-left-color: #0091ea; background-color: #f3f9fd; color: #343a40 } .gdoc-hint.ok { border-left-color: #00c853; background-color: #f2fdf6; color: #343a40 } .gdoc-hint.warning { border-left-color: #ffab00; background-color: #fdfaf4; color: #343a40 } .gdoc-hint.danger { border-left-color: #d50000; background-color: #fdf2f2; color: #343a40 } .gdoc-mermaid { font-family: "Liberation Sans",sans-serif }
quickstart/themes/hugo-geekdoc/assets/main.css
html { line-height: 1.15; -webkit-text-size-adjust: 100% } body { margin: 0 } main { display: block } h1 { font-size: 2em; margin: .67em 0; line-height: 1.2em } hr { box-sizing: content-box; height: 0; overflow: visible } pre { font-family: monospace,monospace; font-size: 1em } a { background-color: transparent } abbr[title] { border-bottom: none; text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted } b, strong { font-weight: bolder } code, kbd, samp { font-family: monospace,monospace; font-size: 1em } small { font-size: 80% } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline } sub { bottom: -.25em } sup { top: -.5em } img { border-style: none } button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0 } button, input { overflow: visible } button, select { text-transform: none } [type=button], [type=reset], [type=submit], button { -webkit-appearance: button } [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { border-style: none; padding: 0 } [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { outline: 1px dotted ButtonText } fieldset { padding: .35em .75em .625em } legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal } progress { vertical-align: baseline } textarea { overflow: auto } [type=checkbox], [type=radio] { box-sizing: border-box; padding: 0 } [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto } [type=search] { -webkit-appearance: textfield; outline-offset: -2px } [type=search]::-webkit-search-decoration { -webkit-appearance: none } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit } details { display: block } summary { display: list-item } template { display: none } [hidden] { display: none } .flex { display: flex } .flex-auto { flex: 1 1 auto } .flex-inline { display: inline-flex } .flex-even { flex: 1 1 } .flex-wrap { flex-wrap: wrap } .flex-grid { flex-direction: column; border: 1px solid var(--accent-color); border-radius: .15rem; background: var(--accent-color-lite) } .justify-start { justify-content: flex-start } .justify-end { justify-content: flex-end } .justify-center { justify-content: center } .justify-between { justify-content: space-between } .align-center { align-items: center } .mx-auto { margin: 0 auto } .text-center { text-align: center } .hidden { display: none } .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden } .badge-placeholder { display: inline-block; min-width: 4rem } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-Bold.woff2) format("woff2"),url(fonts/LiberationSans-Bold.woff) format("woff"); font-weight: 700; font-style: normal; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-BoldItalic.woff2) format("woff2"),url(fonts/LiberationSans-BoldItalic.woff) format("woff"); font-weight: 700; font-style: italic; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans-Italic.woff2) format("woff2"),url(fonts/LiberationSans-Italic.woff) format("woff"); font-weight: 400; font-style: italic; font-display: swap } @font-face { font-family: "Liberation Sans"; src: url(fonts/LiberationSans.woff2) format("woff2"),url(fonts/LiberationSans.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: "Liberation Mono"; src: url(fonts/LiberationMono.woff2) format("woff2"),url(fonts/LiberationMono.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: "Droid Sans"; src: url(fonts/DroidSans.woff2) format("woff2"),url(fonts/DroidSans.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: Metropolis; src: url(fonts/Metropolis.woff2) format("woff2"),url(fonts/Metropolis.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } @font-face { font-family: GeekdocIcons; src: url(fonts/GeekdocIcons.woff2) format("woff2"),url(fonts/GeekdocIcons.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap } body { font-family: "Liberation Sans",sans-serif } .gdoc-error__title, code { font-family: "Liberation Mono",monospace } .gdoc-header { font-family: Metropolis,sans-serif } :root, :root[color-mode=light] { --header-background: #4186c9; --header-font-color: white; --body-background: white; --body-font-color: #343a40; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #0a539a; --link-color-visited: #7749bf; --code-background: #f5f6f8; --code-accent-color: #e3e7eb; --code-accent-color-lite: #eff1f3; --accent-color: #e9ecef; --accent-color-lite: #f8f9fa; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma, :root[color-mode=light] .chroma { color: #999; margin: 1rem 0 } :root .chroma code, :root[color-mode=light] .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code, :root[color-mode=light] .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code, :root[color-mode=light] .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl, :root[color-mode=light] .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma, :root[color-mode=light] .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code, :root[color-mode=light] .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .err, :root[color-mode=light] .chroma .err { color: #a61717; background-color: #e3d2d2 } :root .chroma .lntd, :root[color-mode=light] .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable, :root[color-mode=light] .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code, :root[color-mode=light] .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code, :root[color-mode=light] .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2), :root[color-mode=light] .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl, :root[color-mode=light] .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt, :root[color-mode=light] .chroma .lnt { padding: 0 .8em } :root .chroma .ln, :root[color-mode=light] .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em } :root .chroma .k, :root[color-mode=light] .chroma .k { color: #000; font-weight: 700 } :root .chroma .kc, :root[color-mode=light] .chroma .kc { color: #000; font-weight: 700 } :root .chroma .kd, :root[color-mode=light] .chroma .kd { color: #000; font-weight: 700 } :root .chroma .kn, :root[color-mode=light] .chroma .kn { color: #000; font-weight: 700 } :root .chroma .kp, :root[color-mode=light] .chroma .kp { color: #000; font-weight: 700 } :root .chroma .kr, :root[color-mode=light] .chroma .kr { color: #000; font-weight: 700 } :root .chroma .kt, :root[color-mode=light] .chroma .kt { color: #458; font-weight: 700 } :root .chroma .na, :root[color-mode=light] .chroma .na { color: teal } :root .chroma .nb, :root[color-mode=light] .chroma .nb { color: #0086b3 } :root .chroma .bp, :root[color-mode=light] .chroma .bp { color: #999 } :root .chroma .nc, :root[color-mode=light] .chroma .nc { color: #458; font-weight: 700 } :root .chroma .no, :root[color-mode=light] .chroma .no { color: teal } :root .chroma .nd, :root[color-mode=light] .chroma .nd { color: #3c5d5d; font-weight: 700 } :root .chroma .ni, :root[color-mode=light] .chroma .ni { color: purple } :root .chroma .ne, :root[color-mode=light] .chroma .ne { color: #900; font-weight: 700 } :root .chroma .nf, :root[color-mode=light] .chroma .nf { color: #900; font-weight: 700 } :root .chroma .nl, :root[color-mode=light] .chroma .nl { color: #900; font-weight: 700 } :root .chroma .nn, :root[color-mode=light] .chroma .nn { color: #555 } :root .chroma .nt, :root[color-mode=light] .chroma .nt { color: navy } :root .chroma .nv, :root[color-mode=light] .chroma .nv { color: teal } :root .chroma .vc, :root[color-mode=light] .chroma .vc { color: teal } :root .chroma .vg, :root[color-mode=light] .chroma .vg { color: teal } :root .chroma .vi, :root[color-mode=light] .chroma .vi { color: teal } :root .chroma .s, :root[color-mode=light] .chroma .s { color: #d14 } :root .chroma .sa, :root[color-mode=light] .chroma .sa { color: #d14 } :root .chroma .sb, :root[color-mode=light] .chroma .sb { color: #d14 } :root .chroma .sc, :root[color-mode=light] .chroma .sc { color: #d14 } :root .chroma .dl, :root[color-mode=light] .chroma .dl { color: #d14 } :root .chroma .sd, :root[color-mode=light] .chroma .sd { color: #d14 } :root .chroma .s2, :root[color-mode=light] .chroma .s2 { color: #d14 } :root .chroma .se, :root[color-mode=light] .chroma .se { color: #d14 } :root .chroma .sh, :root[color-mode=light] .chroma .sh { color: #d14 } :root .chroma .si, :root[color-mode=light] .chroma .si { color: #d14 } :root .chroma .sx, :root[color-mode=light] .chroma .sx { color: #d14 } :root .chroma .sr, :root[color-mode=light] .chroma .sr { color: #009926 } :root .chroma .s1, :root[color-mode=light] .chroma .s1 { color: #d14 } :root .chroma .ss, :root[color-mode=light] .chroma .ss { color: #990073 } :root .chroma .m, :root[color-mode=light] .chroma .m { color: #099 } :root .chroma .mb, :root[color-mode=light] .chroma .mb { color: #099 } :root .chroma .mf, :root[color-mode=light] .chroma .mf { color: #099 } :root .chroma .mh, :root[color-mode=light] .chroma .mh { color: #099 } :root .chroma .mi, :root[color-mode=light] .chroma .mi { color: #099 } :root .chroma .il, :root[color-mode=light] .chroma .il { color: #099 } :root .chroma .mo, :root[color-mode=light] .chroma .mo { color: #099 } :root .chroma .o, :root[color-mode=light] .chroma .o { color: #000; font-weight: 700 } :root .chroma .ow, :root[color-mode=light] .chroma .ow { color: #000; font-weight: 700 } :root .chroma .c, :root[color-mode=light] .chroma .c { color: #998; font-style: italic } :root .chroma .ch, :root[color-mode=light] .chroma .ch { color: #998; font-style: italic } :root .chroma .cm, :root[color-mode=light] .chroma .cm { color: #998; font-style: italic } :root .chroma .c1, :root[color-mode=light] .chroma .c1 { color: #998; font-style: italic } :root .chroma .cs, :root[color-mode=light] .chroma .cs { color: #999; font-weight: 700; font-style: italic } :root .chroma .cp, :root[color-mode=light] .chroma .cp { color: #999; font-weight: 700; font-style: italic } :root .chroma .cpf, :root[color-mode=light] .chroma .cpf { color: #999; font-weight: 700; font-style: italic } :root .chroma .gd, :root[color-mode=light] .chroma .gd { color: #000; background-color: #fdd } :root .chroma .ge, :root[color-mode=light] .chroma .ge { color: #000; font-style: italic } :root .chroma .gr, :root[color-mode=light] .chroma .gr { color: #a00 } :root .chroma .gh, :root[color-mode=light] .chroma .gh { color: #999 } :root .chroma .gi, :root[color-mode=light] .chroma .gi { color: #000; background-color: #dfd } :root .chroma .go, :root[color-mode=light] .chroma .go { color: #888 } :root .chroma .gp, :root[color-mode=light] .chroma .gp { color: #555 } :root .chroma .gs, :root[color-mode=light] .chroma .gs { font-weight: 700 } :root .chroma .gu, :root[color-mode=light] .chroma .gu { color: #aaa } :root .chroma .gt, :root[color-mode=light] .chroma .gt { color: #a00 } :root .chroma .gl, :root[color-mode=light] .chroma .gl { text-decoration: underline } :root .chroma .w, :root[color-mode=light] .chroma .w { color: #bbb } @media (prefers-color-scheme:light) { :root { --header-background: #4186c9; --header-font-color: white; --body-background: white; --body-font-color: #343a40; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #0a539a; --link-color-visited: #7749bf; --code-background: #f5f6f8; --code-accent-color: #e3e7eb; --code-accent-color-lite: #eff1f3; --accent-color: #e9ecef; --accent-color-lite: #f8f9fa; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma { color: #999; margin: 1rem 0 } :root .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .err { color: #a61717; background-color: #e3d2d2 } :root .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt { padding: 0 .8em } :root .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em } :root .chroma .k { color: #000; font-weight: 700 } :root .chroma .kc { color: #000; font-weight: 700 } :root .chroma .kd { color: #000; font-weight: 700 } :root .chroma .kn { color: #000; font-weight: 700 } :root .chroma .kp { color: #000; font-weight: 700 } :root .chroma .kr { color: #000; font-weight: 700 } :root .chroma .kt { color: #458; font-weight: 700 } :root .chroma .na { color: teal } :root .chroma .nb { color: #0086b3 } :root .chroma .bp { color: #999 } :root .chroma .nc { color: #458; font-weight: 700 } :root .chroma .no { color: teal } :root .chroma .nd { color: #3c5d5d; font-weight: 700 } :root .chroma .ni { color: purple } :root .chroma .ne { color: #900; font-weight: 700 } :root .chroma .nf { color: #900; font-weight: 700 } :root .chroma .nl { color: #900; font-weight: 700 } :root .chroma .nn { color: #555 } :root .chroma .nt { color: navy } :root .chroma .nv { color: teal } :root .chroma .vc { color: teal } :root .chroma .vg { color: teal } :root .chroma .vi { color: teal } :root .chroma .s { color: #d14 } :root .chroma .sa { color: #d14 } :root .chroma .sb { color: #d14 } :root .chroma .sc { color: #d14 } :root .chroma .dl { color: #d14 } :root .chroma .sd { color: #d14 } :root .chroma .s2 { color: #d14 } :root .chroma .se { color: #d14 } :root .chroma .sh { color: #d14 } :root .chroma .si { color: #d14 } :root .chroma .sx { color: #d14 } :root .chroma .sr { color: #009926 } :root .chroma .s1 { color: #d14 } :root .chroma .ss { color: #990073 } :root .chroma .m { color: #099 } :root .chroma .mb { color: #099 } :root .chroma .mf { color: #099 } :root .chroma .mh { color: #099 } :root .chroma .mi { color: #099 } :root .chroma .il { color: #099 } :root .chroma .mo { color: #099 } :root .chroma .o { color: #000; font-weight: 700 } :root .chroma .ow { color: #000; font-weight: 700 } :root .chroma .c { color: #998; font-style: italic } :root .chroma .ch { color: #998; font-style: italic } :root .chroma .cm { color: #998; font-style: italic } :root .chroma .c1 { color: #998; font-style: italic } :root .chroma .cs { color: #999; font-weight: 700; font-style: italic } :root .chroma .cp { color: #999; font-weight: 700; font-style: italic } :root .chroma .cpf { color: #999; font-weight: 700; font-style: italic } :root .chroma .gd { color: #000; background-color: #fdd } :root .chroma .ge { color: #000; font-style: italic } :root .chroma .gr { color: #a00 } :root .chroma .gh { color: #999 } :root .chroma .gi { color: #000; background-color: #dfd } :root .chroma .go { color: #888 } :root .chroma .gp { color: #555 } :root .chroma .gs { font-weight: 700 } :root .chroma .gu { color: #aaa } :root .chroma .gt { color: #a00 } :root .chroma .gl { text-decoration: underline } :root .chroma .w { color: #bbb } } :root[color-mode=dark] { --header-background: #4186c9; --header-font-color: white; --body-background: #343a40; --body-font-color: #ced3d8; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #5e92c6; --link-color-visited: #936fcc; --code-background: #2f353a; --code-accent-color: #262b2f; --code-accent-color-lite: #2b3035; --accent-color: #2b3035; --accent-color-lite: #2f353a; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root[color-mode=dark] .chroma { color: #999; margin: 1rem 0 } :root[color-mode=dark] .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root[color-mode=dark] .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root[color-mode=dark] .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root[color-mode=dark] .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root[color-mode=dark] .highlight pre.chroma { margin: 0 } :root[color-mode=dark] .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root[color-mode=dark] .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root[color-mode=dark] .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root[color-mode=dark] .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root[color-mode=dark] .chroma .lntable td code { padding: .5em 0 } :root[color-mode=dark] .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root[color-mode=dark] .chroma .hl { display: block; width: 100%; background-color: #ffc } :root[color-mode=dark] .chroma .lnt { padding: 0 .8em } :root[color-mode=dark] .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em; color: #7f7f7f } :root[color-mode=dark] .chroma .k { color: #ff79c6 } :root[color-mode=dark] .chroma .kc { color: #ff79c6 } :root[color-mode=dark] .chroma .kd { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .kn { color: #ff79c6 } :root[color-mode=dark] .chroma .kp { color: #ff79c6 } :root[color-mode=dark] .chroma .kr { color: #ff79c6 } :root[color-mode=dark] .chroma .kt { color: #8be9fd } :root[color-mode=dark] .chroma .na { color: #50fa7b } :root[color-mode=dark] .chroma .nb { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .nc { color: #50fa7b } :root[color-mode=dark] .chroma .nf { color: #50fa7b } :root[color-mode=dark] .chroma .nl { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .nt { color: #ff79c6 } :root[color-mode=dark] .chroma .nv { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vc { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vg { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .vi { color: #8be9fd; font-style: italic } :root[color-mode=dark] .chroma .s { color: #f1fa8c } :root[color-mode=dark] .chroma .sa { color: #f1fa8c } :root[color-mode=dark] .chroma .sb { color: #f1fa8c } :root[color-mode=dark] .chroma .sc { color: #f1fa8c } :root[color-mode=dark] .chroma .dl { color: #f1fa8c } :root[color-mode=dark] .chroma .sd { color: #f1fa8c } :root[color-mode=dark] .chroma .s2 { color: #f1fa8c } :root[color-mode=dark] .chroma .se { color: #f1fa8c } :root[color-mode=dark] .chroma .sh { color: #f1fa8c } :root[color-mode=dark] .chroma .si { color: #f1fa8c } :root[color-mode=dark] .chroma .sx { color: #f1fa8c } :root[color-mode=dark] .chroma .sr { color: #f1fa8c } :root[color-mode=dark] .chroma .s1 { color: #f1fa8c } :root[color-mode=dark] .chroma .ss { color: #f1fa8c } :root[color-mode=dark] .chroma .m { color: #bd93f9 } :root[color-mode=dark] .chroma .mb { color: #bd93f9 } :root[color-mode=dark] .chroma .mf { color: #bd93f9 } :root[color-mode=dark] .chroma .mh { color: #bd93f9 } :root[color-mode=dark] .chroma .mi { color: #bd93f9 } :root[color-mode=dark] .chroma .il { color: #bd93f9 } :root[color-mode=dark] .chroma .mo { color: #bd93f9 } :root[color-mode=dark] .chroma .o { color: #ff79c6 } :root[color-mode=dark] .chroma .ow { color: #ff79c6 } :root[color-mode=dark] .chroma .c { color: #6272a4 } :root[color-mode=dark] .chroma .ch { color: #6272a4 } :root[color-mode=dark] .chroma .cm { color: #6272a4 } :root[color-mode=dark] .chroma .c1 { color: #6272a4 } :root[color-mode=dark] .chroma .cs { color: #6272a4 } :root[color-mode=dark] .chroma .cp { color: #ff79c6 } :root[color-mode=dark] .chroma .cpf { color: #ff79c6 } :root[color-mode=dark] .chroma .gd { color: #8b080b } :root[color-mode=dark] .chroma .ge { text-decoration: underline } :root[color-mode=dark] .chroma .gh { font-weight: 700 } :root[color-mode=dark] .chroma .gi { font-weight: 700 } :root[color-mode=dark] .chroma .go { color: #44475a } :root[color-mode=dark] .chroma .gu { font-weight: 700 } :root[color-mode=dark] .chroma .gl { text-decoration: underline } :root[color-mode=dark] .dark-mode-dim .gdoc-markdown img { -webkit-filter: brightness(.75) grayscale(.2); filter: brightness(.75) grayscale(.2) } :root[color-mode=dark] .gdoc-markdown .gdoc-hint { -webkit-filter: saturate(2.5) brightness(.85); filter: saturate(2.5) brightness(.85) } @media (prefers-color-scheme:dark) { :root { --header-background: #4186c9; --header-font-color: white; --body-background: #343a40; --body-font-color: #ced3d8; --button-background: #498bcb; --button-border-color: #4186c9; --link-color: #5e92c6; --link-color-visited: #936fcc; --code-background: #2f353a; --code-accent-color: #262b2f; --code-accent-color-lite: #2b3035; --accent-color: #2b3035; --accent-color-lite: #2f353a; --control-icons: #b2bac1; --footer-background: #2f333e; --footer-font-color: white; --footer-link-color: #ffa31e; --footer-link-color-visited: #ffa31e } :root .chroma { color: #999; margin: 1rem 0 } :root .chroma code { background-color: var(--code-background); display: block; line-height: 1.45; font-size: .85em; border-radius: .15rem } :root .chroma .lntable td:first-child code { border-radius: 0; border-top-left-radius: .15rem; border-bottom-left-radius: .15rem } :root .chroma .lntable td:nth-child(2) code { border-radius: 0; border-top-right-radius: .15rem; border-bottom-right-radius: .15rem; padding-left: .5em } :root .chroma .lntable td:nth-child(2) code .hl { width: auto; margin-left: -.5em; padding: 0 .5em } :root .highlight pre.chroma { margin: 0 } :root .highlight > pre.chroma code { padding: 1rem; width: 100%; overflow: auto } :root .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0 } :root .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block } :root .chroma .lntable td:first-child code { background-color: var(--code-accent-color-lite); border-right: 1px solid var(--code-accent-color); padding: .5em 0 } :root .chroma .lntable td code { padding: .5em 0 } :root .chroma .lntable td:nth-child(2) { width: 100%; margin-left: 2em } :root .chroma .hl { display: block; width: 100%; background-color: #ffc } :root .chroma .lnt { padding: 0 .8em } :root .chroma .ln { margin-right: .4em; padding: 0 .4em 0 .4em; color: #7f7f7f } :root .chroma .k { color: #ff79c6 } :root .chroma .kc { color: #ff79c6 } :root .chroma .kd { color: #8be9fd; font-style: italic } :root .chroma .kn { color: #ff79c6 } :root .chroma .kp { color: #ff79c6 } :root .chroma .kr { color: #ff79c6 } :root .chroma .kt { color: #8be9fd } :root .chroma .na { color: #50fa7b } :root .chroma .nb { color: #8be9fd; font-style: italic } :root .chroma .nc { color: #50fa7b } :root .chroma .nf { color: #50fa7b } :root .chroma .nl { color: #8be9fd; font-style: italic } :root .chroma .nt { color: #ff79c6 } :root .chroma .nv { color: #8be9fd; font-style: italic } :root .chroma .vc { color: #8be9fd; font-style: italic } :root .chroma .vg { color: #8be9fd; font-style: italic } :root .chroma .vi { color: #8be9fd; font-style: italic } :root .chroma .s { color: #f1fa8c } :root .chroma .sa { color: #f1fa8c } :root .chroma .sb { color: #f1fa8c } :root .chroma .sc { color: #f1fa8c } :root .chroma .dl { color: #f1fa8c } :root .chroma .sd { color: #f1fa8c } :root .chroma .s2 { color: #f1fa8c } :root .chroma .se { color: #f1fa8c } :root .chroma .sh { color: #f1fa8c } :root .chroma .si { color: #f1fa8c } :root .chroma .sx { color: #f1fa8c } :root .chroma .sr { color: #f1fa8c } :root .chroma .s1 { color: #f1fa8c } :root .chroma .ss { color: #f1fa8c } :root .chroma .m { color: #bd93f9 } :root .chroma .mb { color: #bd93f9 } :root .chroma .mf { color: #bd93f9 } :root .chroma .mh { color: #bd93f9 } :root .chroma .mi { color: #bd93f9 } :root .chroma .il { color: #bd93f9 } :root .chroma .mo { color: #bd93f9 } :root .chroma .o { color: #ff79c6 } :root .chroma .ow { color: #ff79c6 } :root .chroma .c { color: #6272a4 } :root .chroma .ch { color: #6272a4 } :root .chroma .cm { color: #6272a4 } :root .chroma .c1 { color: #6272a4 } :root .chroma .cs { color: #6272a4 } :root .chroma .cp { color: #ff79c6 } :root .chroma .cpf { color: #ff79c6 } :root .chroma .gd { color: #8b080b } :root .chroma .ge { text-decoration: underline } :root .chroma .gh { font-weight: 700 } :root .chroma .gi { font-weight: 700 } :root .chroma .go { color: #44475a } :root .chroma .gu { font-weight: 700 } :root .chroma .gl { text-decoration: underline } :root .dark-mode-dim .gdoc-markdown img { -webkit-filter: brightness(.75) grayscale(.2); filter: brightness(.75) grayscale(.2) } :root .gdoc-markdown .gdoc-hint { -webkit-filter: saturate(2.5) brightness(.85); filter: saturate(2.5) brightness(.85) } } html { font-size: 16px; letter-spacing: .33px; scroll-behavior: smooth } html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_dark, html.color-toggle-hidden #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_light { display: inline-block } html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-light #gdoc-dark-mode .gdoc_brightness_dark { display: none } html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_dark { display: inline-block } html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_auto, html.color-toggle-dark #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_light { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_dark { display: none } html.color-toggle-auto #gdoc-dark-mode .gdoc_brightness_auto { display: inline-block } body, html { min-width: 20rem; overflow-x: hidden } body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box } body * { box-sizing: inherit } h1, h2, h3, h4, h5, h6 { font-weight: 400; display: flex; align-items: center } h4, h5, h6 { font-size: 1rem!important } a { text-decoration: none; color: var(--link-color) } a:hover { text-decoration: underline } a:visited { color: var(--link-color-visited) } img { vertical-align: middle } .fake-link:hover { background-image: linear-gradient(var(--link-color),var(--link-color)); background-position: 0 100%; background-size: 100% 1px; background-repeat: no-repeat; text-decoration: none } .wrapper { display: flex; flex-direction: column; min-height: 100vh; color: var(--body-font-color); background: var(--body-background); font-weight: 400 } .container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 1rem } .icon { display: inline-block; width: 1em; height: 1em; top: .125em; stroke-width: 0; stroke: currentColor; fill: currentColor; position: relative } .gdoc-header { background: var(--header-background); color: var(--header-font-color); border-bottom: .3em solid #2f333e } .gdoc-header__link, .gdoc-header__link:visited { color: inherit } .gdoc-header__link:hover { text-decoration: none } .gdoc-header .icon { width: 2rem; height: 2rem } .gdoc-brand { font-size: 2rem } .gdoc-brand__img { margin-right: 1rem; width: 2rem; height: 2rem } .gdoc-nav { flex: 0 0 16rem; font-size: .875rem } .gdoc-nav nav { width: 16rem; padding: 1rem 2rem 1rem 0 } .gdoc-nav nav > ul > li > * { font-weight: 400 } .gdoc-nav nav > :first-child { margin-top: 0 } .gdoc-nav__control { display: none; margin: 0; padding: 0 } .gdoc-nav__control .icon.gdoc_menu { display: inline-block } .gdoc-nav__control .icon.gdoc_arrow_back { display: none } .gdoc-nav__list { padding-left: 1em; margin: 0; padding: 0; list-style: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .gdoc-nav__list ul { padding-left: 1rem } .gdoc-nav__list li { margin: .5rem 0 } .gdoc-nav__list .icon { margin-right: .25rem } .gdoc-nav__toggle { display: none } .gdoc-nav__toggle ~ label { cursor: pointer } .gdoc-nav__toggle ~ label .icon { font-size: .7rem } .gdoc-nav__toggle:not(:checked) ~ label .icon.gdoc_keyborad_arrow_down, .gdoc-nav__toggle:not(:checked) ~ ul { display: none } .gdoc-nav__toggle:not(:checked) ~ label .icon.gdoc_keyborad_arrow_left { display: block } .gdoc-nav__toggle:checked ~ label .icon.gdoc_keyborad_arrow_down, .gdoc-nav__toggle:checked ~ ul { display: block } .gdoc-nav__toggle:checked ~ label .icon.gdoc_keyborad_arrow_left { display: none } .gdoc-nav--main > ul > li > label, .gdoc-nav--main > ul > li > label > a, .gdoc-nav--main > ul > li > span, .gdoc-nav--main > ul > li > span > a { font-weight: 700 } .gdoc-nav--more { padding-top: .5rem } .gdoc-nav__entry, .gdoc-search__entry { flex: 1; color: var(--body-font-color) } .gdoc-nav__entry.is-active, .gdoc-nav__entry:hover, .gdoc-search__entry.is-active, .gdoc-search__entry:hover { text-decoration: underline; -webkit-text-decoration-style: dashed!important; text-decoration-style: dashed!important } .gdoc-nav__entry:visited, .gdoc-search__entry:visited { color: var(--body-font-color) } .gdoc-page { min-width: 20rem; flex-grow: 1; padding: 1rem 0 } .gdoc-page__footer, .gdoc-page__header { margin-bottom: 1.2rem } .gdoc-page__footer .icon, .gdoc-page__header .icon { color: var(--control-icons) } .gdoc-page__footer a, .gdoc-page__footer a:visited, .gdoc-page__header a, .gdoc-page__header a:visited { color: var(--link-color) } .gdoc-page__header { background: var(--accent-color-lite); padding: .5rem 1rem; border-radius: .15rem } .gdoc-page__footer { margin-top: 2rem } .gdoc-page__footer a:hover { text-decoration: none } .gdoc-page__nav:hover { background-image: linear-gradient(var(--link-color),var(--link-color)); background-position: 0 100%; background-size: 100% 1px; background-repeat: no-repeat } .gdoc-page__nav--prev:before { font-family: GeekdocIcons; content: "\ea13" } .gdoc-page__nav--next:after { font-family: GeekdocIcons; content: "\ea02" } .gdoc-page__anchorwrap:hover .gdoc-page__anchor .icon { color: var(--control-icons) } .gdoc-page__anchor { min-width: 30px } .gdoc-page__anchor--left { position: absolute; margin-left: -25px; text-align: left } .gdoc-page__anchor--right { text-align: right } .gdoc-page__anchor .icon { width: 1.4rem; height: 1.4rem; color: transparent } .gdoc-post { word-wrap: break-word; border-top: 1px dashed #868e96; padding: 2rem 0; line-height: 1.5 } .gdoc-post:first-of-type { padding-top: 0 } .gdoc-post__header h1 { margin-top: 0 } .gdoc-post__header a, .gdoc-post__header a:visited { color: var(--body-font-color); text-decoration: none } .gdoc-post__header a:hover { background: 0 0; text-decoration: underline; color: var(--body-font-color) } .gdoc-post__date { margin: 1em 0 } .gdoc-post__date .icon { font-size: 1.2em } .gdoc-post:first-child { border-top: 0 } .gdoc-post:first-child h1 { margin-top: 0 } .gdoc-post__readmore { margin: 1.5rem 0 2rem 0 } .gdoc-post__readmore a:after { font-family: GeekdocIcons; content: "\ea02" } .gdoc-post__readmore a, .gdoc-post__readmore a:hover, .gdoc-post__readmore a:visited { color: var(--link-color); text-decoration: none!important } .gdoc-footer { background: var(--footer-background); color: var(--footer-font-color) } .gdoc-footer__item { margin-right: 1em; line-height: 2em } .gdoc-footer__link { color: var(--footer-link-color) } .gdoc-footer__link:visited { color: var(--footer-link-color-visited) } .gdoc-search { position: relative } .gdoc-search .icon { position: absolute; top: .625em; left: .5rem; color: var(--control-icons); width: 1rem; height: 1rem } .gdoc-search::after { display: block; content: ""; clear: both } .gdoc-search__input { width: 100%; padding: .5rem; padding-left: 2rem; border: 1px solid var(--accent-color); border-radius: .15rem; background: var(--accent-color-lite); color: var(--body-font-color) } .gdoc-search__input:required + .gdoc-search__input__spinner { display: block } .gdoc-search__spinner { position: absolute; margin: .5rem; right: 0; top: 0; width: 1rem; height: 1rem; border: 1px solid transparent; border-top-color: var(--body-font-color); border-radius: 50%; -webkit-animation: spin 1s ease infinite; animation: spin 1s ease infinite } @-webkit-keyframes spin { 100% { transform: rotate(360deg) } } @keyframes spin { 100% { transform: rotate(360deg) } } .gdoc-search__list { visibility: hidden; background: var(--body-background); border-radius: .15rem; box-shadow: 0 1px 3px 0 var(--accent-color),0 1px 2px 0 var(--accent-color-lite); position: absolute; margin: 0; padding: .5rem; list-style: none; left: 0; top: calc(100% + .5rem); width: 100%; z-index: 2 } .gdoc-search__list ul { list-style: none; margin-top: .5rem; padding-left: 0 } .gdoc-search__list li { margin: .25rem 0 } .gdoc-search__list > li > span { font-weight: 700 } .gdoc-search__list > li + li { margin-top: .5rem } .gdoc-search__list .icon { margin-right: .25rem } .gdoc-search:focus-within .gdoc-search__list.has-hits, .gdoc-search__list.has-hits:active { visibility: visible } .gdoc-error { padding: 6rem 1rem; margin: 0 auto; max-width: 45em } .gdoc-error .icon { width: 8rem; height: 8rem; color: var(--body-font-color) } .gdoc-error__link, .gdoc-error__link:visited { color: var(--link-color) } .gdoc-error__message { padding-left: 4rem } .gdoc-error__line { padding: .5rem 0 } .gdoc-error__title { font-size: 4rem } .gdoc-error__code { font-weight: bolder } .gdoc-toc__level--1 ul ul, .gdoc-toc__level--2 ul ul ul, .gdoc-toc__level--3 ul ul ul ul, .gdoc-toc__level--4 ul ul ul ul ul, .gdoc-toc__level--5 ul ul ul ul ul ul, .gdoc-toc__level--6 ul ul ul ul ul ul ul { display: none } .gdoc-toc a, .gdoc-toc a:visited { color: var(--link-color) } .gdoc-nav nav, .gdoc-page, .markdown { transition: .2s ease-in-out; transition-property: transform,margin-left,opacity; will-change: transform,margin-left } .breadcrumb { display: inline; padding: 0; margin: 0 } .breadcrumb li { display: inline } .gdoc-markdown { line-height: 1.6em } .gdoc-markdown > :first-child { margin-top: 0 } .gdoc-markdown--nested :first-child { margin-top: 0 } .gdoc-markdown--nested > :last-child { margin-bottom: 0 } .gdoc-markdown h1, .gdoc-markdown h2, .gdoc-markdown h3, .gdoc-markdown h4, .gdoc-markdown h5, .gdoc-markdown h6 { font-weight: 600 } .gdoc-markdown h1 > code, .gdoc-markdown h2 > code, .gdoc-markdown h3 > code, .gdoc-markdown h4 > code, .gdoc-markdown h5 > code, .gdoc-markdown h6 > code { border-top: 3px solid var(--accent-color); font-size: .75em!important } .gdoc-markdown h4 > code, .gdoc-markdown h5 > code, .gdoc-markdown h6 > code { font-size: .8rem!important } .gdoc-markdown b, .gdoc-markdown optgroup, .gdoc-markdown strong { font-weight: bolder } .gdoc-markdown a, .gdoc-markdown__link { text-decoration: none; border-bottom: 1px solid transparent; line-height: 1em } .gdoc-markdown a:hover, .gdoc-markdown__link:hover { text-decoration: underline } .gdoc-markdown__link--raw { text-decoration: none!important; color: #343a40!important } .gdoc-markdown__link--raw:hover { text-decoration: none!important } .gdoc-markdown__link--raw:visited { color: #343a40!important } .gdoc-markdown img { max-width: 100%; border-radius: .15rem } .gdoc-markdown__figure { padding: .25rem; margin: 1rem 0; background-color: var(--accent-color); display: table; border-top-left-radius: .15rem; border-top-right-radius: .15rem } .gdoc-markdown__figure figcaption { display: table-caption; caption-side: bottom; background-color: var(--accent-color); padding: 0 .25rem .25rem; text-align: center; border-bottom-left-radius: .15rem; border-bottom-right-radius: .15rem } .gdoc-markdown__figure img { max-width: 100%; height: auto } .gdoc-markdown blockquote { margin: 1rem 0; padding: .5rem 1rem .5rem .75rem; border-left: 3px solid var(--accent-color); border-radius: .15rem } .gdoc-markdown blockquote :first-child { margin-top: 0 } .gdoc-markdown blockquote :last-child { margin-bottom: 0 } .gdoc-markdown table { overflow: auto; display: block; border-spacing: 0; border-collapse: collapse; margin-top: 1rem; margin-bottom: 1rem } .gdoc-markdown table tr td, .gdoc-markdown table tr th { padding: .5rem 1rem; border: 1px solid var(--accent-color) } .gdoc-markdown table tr:nth-child(2n) { background: var(--accent-color-lite) } .gdoc-markdown hr { height: 1.5px; border: none; background: var(--accent-color) } .gdoc-markdown ol, .gdoc-markdown ul { padding-left: 2rem } .gdoc-markdown dl dt { font-weight: bolder; margin-top: 1rem } .gdoc-markdown dl dd { margin-left: 2rem } .gdoc-markdown pre { margin: 1rem 0 } .gdoc-markdown code { background-color: var(--code-background); font-size: .85em; line-height: 1.45em; padding: .2em .4em } .gdoc-markdown pre code { display: block; padding: 1rem; width: 100%; overflow: auto } .gdoc-expand { margin-top: 1rem; margin-bottom: 1rem; border: 1px solid var(--accent-color); border-radius: .15rem; overflow: hidden } .gdoc-expand__head { background: var(--accent-color-lite); padding: .5rem 1rem; cursor: pointer } .gdoc-expand__content { display: none; padding: 1rem } .gdoc-expand__control:checked + .gdoc-expand__content { display: block } .gdoc-expand .gdoc-page__anchor { display: none } .gdoc-tabs { margin-top: 1rem; margin-bottom: 1rem; border: 1px solid var(--accent-color); border-radius: .15rem; overflow: hidden; display: flex; flex-wrap: wrap } .gdoc-tabs__label { display: inline-block; padding: .5rem 1rem; border-bottom: 1px transparent; cursor: pointer } .gdoc-tabs__content { order: 999; width: 100%; border-top: 1px solid var(--accent-color-lite); padding: 1rem; display: none } .gdoc-tabs__control:checked + .gdoc-tabs__label { border-bottom: 1.5px solid var(--link-color) } .gdoc-tabs__control:checked + .gdoc-tabs__label + .gdoc-tabs__content { display: block } .gdoc-columns { margin-left: -1rem; margin-right: -1rem } .gdoc-columns__content { margin: 1rem 0; min-width: 13.2rem; padding: 0 1rem } .gdoc-columns .gdoc-page__anchor { display: none } .gdoc-button { display: inline-block; background: var(--accent-color-lite); border: 1px solid var(--accent-color); border-radius: .15rem; margin: .5rem 0; cursor: pointer } .gdoc-button__link { display: inline-block; color: inherit!important; text-decoration: none!important; padding: .25rem 1rem } .gdoc-button:hover { background: var(--button-background); border-color: var(--button-border-color); color: #f8f9fa } .gdoc-hint.info { border-left-color: #0091ea; background-color: #f3f9fd; color: #343a40 } .gdoc-hint.ok { border-left-color: #00c853; background-color: #f2fdf6; color: #343a40 } .gdoc-hint.warning { border-left-color: #ffab00; background-color: #fdfaf4; color: #343a40 } .gdoc-hint.danger { border-left-color: #d50000; background-color: #fdf2f2; color: #343a40 } .gdoc-mermaid { font-family: "Liberation Sans",sans-serif }
0.417865
0.071754
*{ margin: 0; padding: 0; overflow: hidden; } body{ margin:0; height:100vh; background-repeat: no-repeat; background-color: black; /* overflow: hidden; */ } #particles-js{ background-color: black; margin: 0; padding: 0; height: 100vh; background-repeat: no-repeat; background-position: center; background-size: cover; /* overflow: hidden; */ } /* #type{ background-color: cornflowerblue; display:block; border-radius:2px; border: #ccc 1px solid; } */ .blink{ animation:blinkingText 0.8s infinite; font-weight: 10px; } @keyframes blinkingText{ 0%{ color: rgb(219, 36, 36); } 49%{ color: rgb(94, 228, 32); } 50%{ color: rgb(100, 79, 224); } 99%{ color: rgb(214, 24, 129); } 100%{ color: rgb(89, 250, 210);} } .btext{ color: #f9f3f4; position: absolute; text-align: center; top: 40%; width: 100%; letter-spacing: 9px; } .btextone{ color: #f9f3f4; position: absolute; margin-left: 50px; top: 30%; width: 100%; border:#fff; border-radius: 2px; } .btext2{ color: #f9f3f4; position: absolute; margin-left: 50px; top: 70%; width: 100%; } .btext_m{ color: #f9f3f4; position: absolute; text-align: center; top: 90px; width: 100%; letter-spacing: 7px; text-align: center; left: 500px; } .cdn{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: gray; } .cdn2{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: blue; } .cdn3{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: green; } .cdn4{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: red; } h1{ margin-top:10px; top: 20%; } .btn{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 10px 15px; border-radius: 8px; line-height: 4em; text-align: center; } .btn:hover{ color: red; border: #fff 1px solid; } .cards{ background-color:#8E24AA; width: 10em; text-align: center; font-size:32px; } .navbar { background-color: transparent; } .table{ margin-top: 260px; background-color: transparent; }
css/style.css
*{ margin: 0; padding: 0; overflow: hidden; } body{ margin:0; height:100vh; background-repeat: no-repeat; background-color: black; /* overflow: hidden; */ } #particles-js{ background-color: black; margin: 0; padding: 0; height: 100vh; background-repeat: no-repeat; background-position: center; background-size: cover; /* overflow: hidden; */ } /* #type{ background-color: cornflowerblue; display:block; border-radius:2px; border: #ccc 1px solid; } */ .blink{ animation:blinkingText 0.8s infinite; font-weight: 10px; } @keyframes blinkingText{ 0%{ color: rgb(219, 36, 36); } 49%{ color: rgb(94, 228, 32); } 50%{ color: rgb(100, 79, 224); } 99%{ color: rgb(214, 24, 129); } 100%{ color: rgb(89, 250, 210);} } .btext{ color: #f9f3f4; position: absolute; text-align: center; top: 40%; width: 100%; letter-spacing: 9px; } .btextone{ color: #f9f3f4; position: absolute; margin-left: 50px; top: 30%; width: 100%; border:#fff; border-radius: 2px; } .btext2{ color: #f9f3f4; position: absolute; margin-left: 50px; top: 70%; width: 100%; } .btext_m{ color: #f9f3f4; position: absolute; text-align: center; top: 90px; width: 100%; letter-spacing: 7px; text-align: center; left: 500px; } .cdn{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: gray; } .cdn2{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: blue; } .cdn3{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: green; } .cdn4{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 5px 10px; border-radius: 8px; line-height: 2em; background-color: red; } h1{ margin-top:10px; top: 20%; } .btn{ color: #fff; text-decoration: none; border: #ccc 1px solid; padding: 10px 15px; border-radius: 8px; line-height: 4em; text-align: center; } .btn:hover{ color: red; border: #fff 1px solid; } .cards{ background-color:#8E24AA; width: 10em; text-align: center; font-size:32px; } .navbar { background-color: transparent; } .table{ margin-top: 260px; background-color: transparent; }
0.532911
0.05621
.base_header { position: fixed; height: 170px; width: 100%; z-index: 10; background-color: #222; } .base_content { position: absolute; top: 170px; z-index: 5 } .eventadd{ margin-left: 10px; border: 3px solid #00a350; border-radius: 30px; } .fbrow { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } .fbcol { display: flex; flex-direction: column; flex-basis: 100%; flex: 1; } table.standard { border-collapse: collapse; font-size: 11pt; } .standard thead { position: sticky; inset-block-start: 0; } .standard th { background: #058d95; border: 1px solid #058d95; padding: 0 2px 0 2px; } .standard td { text-align: left; background: #334 !important; color: #bbc !important; border: 1px solid #058d95; padding: 0 2px 0 2px; } .property td { padding: 0 8px 0 0px; } .user_image { padding-right: 5px; width: 70px; height: 70px; border-radius: 50%; } .flexcontainer { display: flex; flex-direction: row; align-items: center; gap: 10px; } .flexcontainertop { display: flex; flex-direction: row; align-items: top; gap: 10px; } .flexitem { flex-basis: | auto; } /* Bands */ .bands { display: flex; } .band { width: 20px; height: 20px; border: 1px solid rgba(255, 255, 255, .5); } .black { background: #000; } .blue { background: #00f; } .brown { background: #8b4513; } .green { background: #0f0; } .orange { background: #ffa500; } .pink { background: #ffc0cb; } .purple { background: #a020f0; } .red { background: #f00; } .tut { background: #fafad2; } .white { background: #fff; } .yellow { background: #ff0; } .bigband { width: 50px; height: 50px; } /* Bootstrap */ .btn-tiny { padding: 2px 2px; font-size: 11px; border-radius: 5px; } /* General */ body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: #222; color: #bbc; margin-left: 5px; margin-right: 5px; } input, select { background-color: #222; color: #bbc; } h1, h2, h3, h4, h5, h6 { color: #bbc; } /* Input */ input:focus { background: #222; } input:hover { background: #333; } /* Links */ a:link, a:visited { color: #88a3e0; } a:hover, a:active { color: #ccc; background: #336; } /* Info link */ .infolink:before { content: '?'; display: inline-block; font-family: sans-serif; font-weight: bold; text-align: center; width: 20px; height: 20px; font-size: 12pt; line-height: 2.4ex; border-radius: 15px; margin-right: 4px; padding: 1px; color: blue; background: white; border: 1px solid blue; text-decoration: none; } .infolink:hover:before { color: white; background: blue; border-color: white; text-decoration: none; }
api/static/css/main.css
.base_header { position: fixed; height: 170px; width: 100%; z-index: 10; background-color: #222; } .base_content { position: absolute; top: 170px; z-index: 5 } .eventadd{ margin-left: 10px; border: 3px solid #00a350; border-radius: 30px; } .fbrow { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } .fbcol { display: flex; flex-direction: column; flex-basis: 100%; flex: 1; } table.standard { border-collapse: collapse; font-size: 11pt; } .standard thead { position: sticky; inset-block-start: 0; } .standard th { background: #058d95; border: 1px solid #058d95; padding: 0 2px 0 2px; } .standard td { text-align: left; background: #334 !important; color: #bbc !important; border: 1px solid #058d95; padding: 0 2px 0 2px; } .property td { padding: 0 8px 0 0px; } .user_image { padding-right: 5px; width: 70px; height: 70px; border-radius: 50%; } .flexcontainer { display: flex; flex-direction: row; align-items: center; gap: 10px; } .flexcontainertop { display: flex; flex-direction: row; align-items: top; gap: 10px; } .flexitem { flex-basis: | auto; } /* Bands */ .bands { display: flex; } .band { width: 20px; height: 20px; border: 1px solid rgba(255, 255, 255, .5); } .black { background: #000; } .blue { background: #00f; } .brown { background: #8b4513; } .green { background: #0f0; } .orange { background: #ffa500; } .pink { background: #ffc0cb; } .purple { background: #a020f0; } .red { background: #f00; } .tut { background: #fafad2; } .white { background: #fff; } .yellow { background: #ff0; } .bigband { width: 50px; height: 50px; } /* Bootstrap */ .btn-tiny { padding: 2px 2px; font-size: 11px; border-radius: 5px; } /* General */ body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: #222; color: #bbc; margin-left: 5px; margin-right: 5px; } input, select { background-color: #222; color: #bbc; } h1, h2, h3, h4, h5, h6 { color: #bbc; } /* Input */ input:focus { background: #222; } input:hover { background: #333; } /* Links */ a:link, a:visited { color: #88a3e0; } a:hover, a:active { color: #ccc; background: #336; } /* Info link */ .infolink:before { content: '?'; display: inline-block; font-family: sans-serif; font-weight: bold; text-align: center; width: 20px; height: 20px; font-size: 12pt; line-height: 2.4ex; border-radius: 15px; margin-right: 4px; padding: 1px; color: blue; background: white; border: 1px solid blue; text-decoration: none; } .infolink:hover:before { color: white; background: blue; border-color: white; text-decoration: none; }
0.561696
0.116789
/*index*/ .header {height:80px; width:100%; position:fixed;background:url(../images/header_bg.png);border-bottom:1px solid #ddd;z-index:999} .wrap{width:1140px; margin:0 auto;} .top{ width:100%; margin-top:39px; position:absolute; z-index:1;} .top .logo{display:block;width:230px; height:100px; float:left;text-indent:-999999px;} .top .phone{text-align:right; margin-top:24px;} .nav{width:600px;height:80px;float:right;} .nav ul{padding:0;} .nav li{height:80px;float:left;} .nav li a{height:80px; width:100px; line-height:80px; color:#444;display:block;font-size:14px; text-align:center;} .nav li a.curr,.nav li a:hover{color:#fff;background:#389fea} .nav .m{position:relative; float:left; height:38px; background:url(../images/nav_li.gif) center 0 no-repeat;z-index:999;} .nav h3{float:left; overflow:hidden; font-weight:normal} .nav h3 a{height:80px;} .nav .on h3 a{color:#fff;background:#389fea} .nav .sub{ display:none; /*默认隐藏*/ width:600px; position:absolute; height:40px; left:0px; top:80px; text-align:center;} .nav .sub li{float:left;width:auto;height:40px;background:#2b2f30;color:#fff;line-height:40px;} .nav .sub li.xx{float:left;width:20px;} .nav .sub li a{ height:40px; line-height:40px; display:block;width:auto; color:#fff;font-size:12px;padding:0 2px;} .nav .sub li a:hover{ color:#389fea; background:#2b2f30;} /*search*/ .search{width:180px; height:38px; background:url(../images/ss_bg.gif) 0 center no-repeat;} .search .s_pad{padding:7px 0} .search .ss_txt{ width:148px; height:26px; text-indent:4px; line-height:26px; float:left; border:none; background:none; font-size:14px; color:#333;overflow:hidden;} .search .ss_bott{ width:28px; height:26px; float:right; border:none; background:none; cursor:pointer; overflow:hidden;} /*banner*/ .banner{ width:100%;height:800px; overflow:hidden;} .focusBox{position:relative;width:100%;height:800px;overflow:hidden} .focusBox .pic{position:relative;z-index:0} .focusBox .pic li{width:100%;height:800px; display:block} .focusBox .pic li a{width:100%;height:800px; display:block} .focusBox .hd{width:100%;position:absolute;bottom:30px;text-align:center;font-size:0;z-index:99999} .focusBox .hd li{margin:0 3px;background:url(../images/dot.png) no-repeat 0 -17px;height:17px;overflow:hidden;width:17px;cursor:pointer;display:inline-block;*display:inline;zoom:1;_background:url(../images/dot8.png) no-repeat 0 -17px} .focusBox .hd .on{background-position:0 0} .focusBox .prev,.focusBox .next{width:40px;height:60px;margin:-60px 0 0;display:none;background:url(../images/ad_ctr.png) no-repeat 0 0;position:absolute;top:50%;z-index:10;cursor:pointer;text-indent:-9999px;filter:alpha(opacity=20);opacity:0.2} .focusBox .prev{left:0} .focusBox .next{background-position:0 -60px;right:0} .focusBox .prev:hover,.focusBox .next:hover{filter:alpha(opacity=50) !important;opacity:0.5 !important} /*sub*/ .about_con {width:100%; padding:140px 0 50px 0;} .main_con{color:#555px; font-size:14px; line-height:2em;padding:25px 20px;} .left{width:260px; float:left;} .left .tit{width:260px; height:140px; line-height:140px;background:#d6d6d6;color:#fff;font-size:30px;text-align:center} .right{width:835px; float:right;} h1.a_tit{font-size:30px; text-align:center;line-height:2em;padding:0 0 20px 0; font-weight:normal} h1.a_tit2{font-size:24px; text-align:center;line-height:2em;color:#444;padding:0 0 20px 0; font-weight:normal} .s_list{padding:0;border-top:1px solid #e7e7e7;} .s_list li{float:left; width:260px; height:39px;} .s_list li a{line-height:38px;color: #333; display:block; font-size: 14px; text-align:center; border-left:1px solid #e7e7e7;border-right:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;} .s_list li a.curr, .s_list li a:hover {color: #fff;font-weight:bold;border-left:1px solid #717984;border-right:1px solid #717984;border-bottom:1px solid #717984;background:#717984} .s_ban{ width:100%;height:466px; overflow:hidden;} .manager{width:1172px;padding-bottom:30px;} .manager li{width:260px;float:left;margin-right:33px;display:inline;margin-top:33px;} .manager li a{display:block;width:260px;height:392px;background:#f7f7f7;color:#777;line-height:1.8em;font-size:12px;} .manager li img{width:260px;height:300px} .manager li em{padding:3px 7px;display:block;font-style:normal} .manager li h3{font-weight:normal;font-size:16px; color:#333;display:inline-block; font-weight:normal;line-height:2em} .manager li span{color:#555} .manager li a:hover, .manager li a h3:hover, .manager li a span:hover{background:#389fea;color:#fff} .jj_list{height:130px;width:100%; background:url(../images/jj_bg.gif) right 0 no-repeat;} .jj_list .l_time{height:90px;width:145px;float:left; text-align:center;line-height:54px; color:#aaa;font-size:16px; font-family:arial} .jj_list .r_text{height:90px;width:620px;float:right;} .jj_list .r_text h2{font-size:20px;line-height:46px; font-weight:normal;margin-bottom:6px} span.phone{font-size:24px;color:#389fea} a.down{color:#389fea} a.yuyue{display:blcok; float:right;width:120px; height:36px; border:1px solid #277dba;background:#389fea;color:#fff;text-align:center;line-height:36px;} /*弹出*/ .box{position:relative; width:100%;height:100%; opacity:0.5;z-index:4; opacity:1; } .box_bg{} .box2{ width:100%; height:100%; margin:0 auto; display:none; z-index:5; position:fixed; background:rgba(0, 0, 0, 0.6) none repeat scroll 0% 0%; opacity:1;} .box_all{width:720px;height:320px;margin:200px auto 0px;background:#fff; box-shadow:0 0 10px #222} .login5{height:50px;padding:0 20px; background:#389fea; position:relative; } .login5 h2{width:400px;height:50px; float:left;display:block;font-size:20px; line-height:50px; color:#fff;} .login5 a{ background:url(../images/close.gif) 0px 0px no-repeat; float:right;display:block; width:30px; height:50px; cursor:pointer} .login51{padding:30px 25px;} .login5left{ float:left; width:340px; height:200px; font-size:14px;} .login5left1{ width:100%; height:54px; float:left; position:relative; display:block;} .login5left1 .l_nme{ width:76px; line-height:32px; float:left;} .login5left1 input{ text-indent:10px; width:220px; color:#999; font-size:13px; height:34px; line-height:34px; border:1px solid #ccc;} .login5left1 a.ljyy{float:left; width:124px; height:36px; line-height:36px; text-align:center; background:#ff5500; display:block; font-size:14px;border:1px solid #d24500;color:#fff} .login5left1 a.ljyy:hover{ background:#e54c00;border:1px solid #c74200;} .login5right{float:left; width:300px;height:200px; border-left:1px solid #CBCBCB; padding-left:35px;} .case_list{width:1172px;padding-bottom:30px;} .case_list li { width:260px;float:left;margin-right:33px;display:inline;margin-top:33px;overflow: hidden;} .case_list li a.picitem { display: block; height: 260px; overflow: hidden; position: relative; width: 260px; } .case_list li a img { height: 260px; width: 260px; } .case_list li a em { background: rgba(0, 0, 0, 0) url("../images/big.png") no-repeat scroll center 320px; color: #fff; display: block; height: 260px; position: absolute; top: 0; transition: opacity 0.3s ease-in 0s; width: 260px;} .case_list li a:hover em { background: rgba(0, 0, 0, 0.3) url("../images/big.png") no-repeat scroll center center; transition: all 0.2s ease 0s;}
templates/xuyang/css/main.css
/*index*/ .header {height:80px; width:100%; position:fixed;background:url(../images/header_bg.png);border-bottom:1px solid #ddd;z-index:999} .wrap{width:1140px; margin:0 auto;} .top{ width:100%; margin-top:39px; position:absolute; z-index:1;} .top .logo{display:block;width:230px; height:100px; float:left;text-indent:-999999px;} .top .phone{text-align:right; margin-top:24px;} .nav{width:600px;height:80px;float:right;} .nav ul{padding:0;} .nav li{height:80px;float:left;} .nav li a{height:80px; width:100px; line-height:80px; color:#444;display:block;font-size:14px; text-align:center;} .nav li a.curr,.nav li a:hover{color:#fff;background:#389fea} .nav .m{position:relative; float:left; height:38px; background:url(../images/nav_li.gif) center 0 no-repeat;z-index:999;} .nav h3{float:left; overflow:hidden; font-weight:normal} .nav h3 a{height:80px;} .nav .on h3 a{color:#fff;background:#389fea} .nav .sub{ display:none; /*默认隐藏*/ width:600px; position:absolute; height:40px; left:0px; top:80px; text-align:center;} .nav .sub li{float:left;width:auto;height:40px;background:#2b2f30;color:#fff;line-height:40px;} .nav .sub li.xx{float:left;width:20px;} .nav .sub li a{ height:40px; line-height:40px; display:block;width:auto; color:#fff;font-size:12px;padding:0 2px;} .nav .sub li a:hover{ color:#389fea; background:#2b2f30;} /*search*/ .search{width:180px; height:38px; background:url(../images/ss_bg.gif) 0 center no-repeat;} .search .s_pad{padding:7px 0} .search .ss_txt{ width:148px; height:26px; text-indent:4px; line-height:26px; float:left; border:none; background:none; font-size:14px; color:#333;overflow:hidden;} .search .ss_bott{ width:28px; height:26px; float:right; border:none; background:none; cursor:pointer; overflow:hidden;} /*banner*/ .banner{ width:100%;height:800px; overflow:hidden;} .focusBox{position:relative;width:100%;height:800px;overflow:hidden} .focusBox .pic{position:relative;z-index:0} .focusBox .pic li{width:100%;height:800px; display:block} .focusBox .pic li a{width:100%;height:800px; display:block} .focusBox .hd{width:100%;position:absolute;bottom:30px;text-align:center;font-size:0;z-index:99999} .focusBox .hd li{margin:0 3px;background:url(../images/dot.png) no-repeat 0 -17px;height:17px;overflow:hidden;width:17px;cursor:pointer;display:inline-block;*display:inline;zoom:1;_background:url(../images/dot8.png) no-repeat 0 -17px} .focusBox .hd .on{background-position:0 0} .focusBox .prev,.focusBox .next{width:40px;height:60px;margin:-60px 0 0;display:none;background:url(../images/ad_ctr.png) no-repeat 0 0;position:absolute;top:50%;z-index:10;cursor:pointer;text-indent:-9999px;filter:alpha(opacity=20);opacity:0.2} .focusBox .prev{left:0} .focusBox .next{background-position:0 -60px;right:0} .focusBox .prev:hover,.focusBox .next:hover{filter:alpha(opacity=50) !important;opacity:0.5 !important} /*sub*/ .about_con {width:100%; padding:140px 0 50px 0;} .main_con{color:#555px; font-size:14px; line-height:2em;padding:25px 20px;} .left{width:260px; float:left;} .left .tit{width:260px; height:140px; line-height:140px;background:#d6d6d6;color:#fff;font-size:30px;text-align:center} .right{width:835px; float:right;} h1.a_tit{font-size:30px; text-align:center;line-height:2em;padding:0 0 20px 0; font-weight:normal} h1.a_tit2{font-size:24px; text-align:center;line-height:2em;color:#444;padding:0 0 20px 0; font-weight:normal} .s_list{padding:0;border-top:1px solid #e7e7e7;} .s_list li{float:left; width:260px; height:39px;} .s_list li a{line-height:38px;color: #333; display:block; font-size: 14px; text-align:center; border-left:1px solid #e7e7e7;border-right:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;} .s_list li a.curr, .s_list li a:hover {color: #fff;font-weight:bold;border-left:1px solid #717984;border-right:1px solid #717984;border-bottom:1px solid #717984;background:#717984} .s_ban{ width:100%;height:466px; overflow:hidden;} .manager{width:1172px;padding-bottom:30px;} .manager li{width:260px;float:left;margin-right:33px;display:inline;margin-top:33px;} .manager li a{display:block;width:260px;height:392px;background:#f7f7f7;color:#777;line-height:1.8em;font-size:12px;} .manager li img{width:260px;height:300px} .manager li em{padding:3px 7px;display:block;font-style:normal} .manager li h3{font-weight:normal;font-size:16px; color:#333;display:inline-block; font-weight:normal;line-height:2em} .manager li span{color:#555} .manager li a:hover, .manager li a h3:hover, .manager li a span:hover{background:#389fea;color:#fff} .jj_list{height:130px;width:100%; background:url(../images/jj_bg.gif) right 0 no-repeat;} .jj_list .l_time{height:90px;width:145px;float:left; text-align:center;line-height:54px; color:#aaa;font-size:16px; font-family:arial} .jj_list .r_text{height:90px;width:620px;float:right;} .jj_list .r_text h2{font-size:20px;line-height:46px; font-weight:normal;margin-bottom:6px} span.phone{font-size:24px;color:#389fea} a.down{color:#389fea} a.yuyue{display:blcok; float:right;width:120px; height:36px; border:1px solid #277dba;background:#389fea;color:#fff;text-align:center;line-height:36px;} /*弹出*/ .box{position:relative; width:100%;height:100%; opacity:0.5;z-index:4; opacity:1; } .box_bg{} .box2{ width:100%; height:100%; margin:0 auto; display:none; z-index:5; position:fixed; background:rgba(0, 0, 0, 0.6) none repeat scroll 0% 0%; opacity:1;} .box_all{width:720px;height:320px;margin:200px auto 0px;background:#fff; box-shadow:0 0 10px #222} .login5{height:50px;padding:0 20px; background:#389fea; position:relative; } .login5 h2{width:400px;height:50px; float:left;display:block;font-size:20px; line-height:50px; color:#fff;} .login5 a{ background:url(../images/close.gif) 0px 0px no-repeat; float:right;display:block; width:30px; height:50px; cursor:pointer} .login51{padding:30px 25px;} .login5left{ float:left; width:340px; height:200px; font-size:14px;} .login5left1{ width:100%; height:54px; float:left; position:relative; display:block;} .login5left1 .l_nme{ width:76px; line-height:32px; float:left;} .login5left1 input{ text-indent:10px; width:220px; color:#999; font-size:13px; height:34px; line-height:34px; border:1px solid #ccc;} .login5left1 a.ljyy{float:left; width:124px; height:36px; line-height:36px; text-align:center; background:#ff5500; display:block; font-size:14px;border:1px solid #d24500;color:#fff} .login5left1 a.ljyy:hover{ background:#e54c00;border:1px solid #c74200;} .login5right{float:left; width:300px;height:200px; border-left:1px solid #CBCBCB; padding-left:35px;} .case_list{width:1172px;padding-bottom:30px;} .case_list li { width:260px;float:left;margin-right:33px;display:inline;margin-top:33px;overflow: hidden;} .case_list li a.picitem { display: block; height: 260px; overflow: hidden; position: relative; width: 260px; } .case_list li a img { height: 260px; width: 260px; } .case_list li a em { background: rgba(0, 0, 0, 0) url("../images/big.png") no-repeat scroll center 320px; color: #fff; display: block; height: 260px; position: absolute; top: 0; transition: opacity 0.3s ease-in 0s; width: 260px;} .case_list li a:hover em { background: rgba(0, 0, 0, 0.3) url("../images/big.png") no-repeat scroll center center; transition: all 0.2s ease 0s;}
0.281208
0.084947
.file-icons-enabled .show-file-icons .vscode_getting_started_page-name-file-icon.file-icon::before { content: ' '; background-image: url('../../../../browser/media/code-icon.svg'); } .monaco-workbench .part.editor > .content .gettingStartedContainer { box-sizing: border-box; padding: 10px 20px; line-height: 22px; position: relative; overflow: hidden; height: inherit; width: 100%; user-select: initial; -webkit-user-select: initial; } .monaco-workbench .part.editor > .content .gettingStartedContainer img { max-width: 100%; max-height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide { width: 100%; height: 100%; position: absolute; left: 0; top: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer.animationReady .gettingStartedSlide { /* keep consistant with SLIDE_TRANSITION_TIME_MS in gettingStarted.ts */ transition: left 0.25s, opacity 0.25s; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories { display: flex; flex-direction: column; overflow: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .gap { flex: 150px 0 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .header { display: flex; align-items: center; justify-content: center; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-title { margin-bottom: 4px; font-weight: 600; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-description-container { width: 100% } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-progress { margin-top: 12px; font-size: 12px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .progress-bar-outer { height: 8px; border-radius: 4px; margin-top: 4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .progress-bar-inner { height: 100%; border-radius: 4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-categories-container { display: flex; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 32px auto; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-categories-scrolling-container { overflow: scroll; height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category { width: 330px; min-height: 80px; font-size: 13px; line-height: normal; margin: 12px; text-align: left; display: flex; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-category { padding-right: 46px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category .codicon { margin-right: 10px; font-size: 32px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category img.category-icon { margin-right: 10px; max-width: 32px; max-height: 32px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail { display: flex; flex-direction: column; overflow: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .gap { flex: 150px 0 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-category { width: 330px; display: flex; padding: 10px 0 20px 12px; margin: 0; min-height: auto; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns .gap { flex: 150px 1 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-category .codicon { margin-left:0; font-size: 22pt; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns { display: flex; justify-content: flex-start; padding: 40px 40px 0; max-height: calc(100% - 40px); } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task { display: flex; width: 100%; overflow: hidden; transition: height .1s linear; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) { height: 54px; background: none; opacity: 0.8; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns .getting-started-detail-left > div { width: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .task-description, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .image-description, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .actions, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) button, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) a { visibility: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-description-container { width: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-description { padding-top: 8px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .actions { margin-top: 12px; display: flex; align-items: center; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-next { margin-left: auto; margin-right: 10px; padding: 6px 12px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .codicon.hidden { display: none; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .codicon { margin-right: 8px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task-action { padding: 6px 12px; font-size: 13px; margin-bottom: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-left { min-width: 330px; width: 40%; max-width: 400px; display: flex; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .full-height-scrollable { height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-container { height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .gettingStartedDetailsContent { height: 100%; display: flex; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-right { display: flex; align-items: flex-start; justify-content: center; width: 66%; min-height: 300px; padding: 0px 0 20px 44px; min-width: 400px; max-width: 800px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-right img { object-fit: contain; } .monaco-workbench .part.editor > .content .gettingStartedContainer button { border: none; color: inherit; text-align: left; padding: 16px; margin: 1px 0; /* makes room for focus border */ font-family: inherit; } .monaco-workbench .part.editor > .content .gettingStartedContainer button:hover { cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer button:focus { outline-style: solid; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button.button-link { position: absolute; left: 40px; top: 5px; padding: 0 2px 2px; margin: 10px; z-index: 1; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button:hover { cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button .codicon { position: relative; top: 3px; left: -4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .skip { display: block; margin: 2px auto; width: fit-content; text-align: center; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h1 { font-size: 32px; font-weight: normal; border-bottom: none; margin: 0; padding: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h2 { font-weight: normal; line-height: 26px; margin: 0 0 4px 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h3 { font-size: 13px; font-weight: 700; margin: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .subtitle { font-size: 16px; margin: 0; padding: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStarted.showCategories .detail { left: 100%; opacity: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStarted.showDetails .categories { left: -100%; opacity: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .button-link { padding: 0; background: transparent; margin: 2px; cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer .button-link:hover { text-decoration: underline; background: transparent; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .showOnStartup { text-align: center; }
src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.css
.file-icons-enabled .show-file-icons .vscode_getting_started_page-name-file-icon.file-icon::before { content: ' '; background-image: url('../../../../browser/media/code-icon.svg'); } .monaco-workbench .part.editor > .content .gettingStartedContainer { box-sizing: border-box; padding: 10px 20px; line-height: 22px; position: relative; overflow: hidden; height: inherit; width: 100%; user-select: initial; -webkit-user-select: initial; } .monaco-workbench .part.editor > .content .gettingStartedContainer img { max-width: 100%; max-height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide { width: 100%; height: 100%; position: absolute; left: 0; top: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer.animationReady .gettingStartedSlide { /* keep consistant with SLIDE_TRANSITION_TIME_MS in gettingStarted.ts */ transition: left 0.25s, opacity 0.25s; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories { display: flex; flex-direction: column; overflow: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .gap { flex: 150px 0 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .header { display: flex; align-items: center; justify-content: center; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-title { margin-bottom: 4px; font-weight: 600; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-description-container { width: 100% } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .category-progress { margin-top: 12px; font-size: 12px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .progress-bar-outer { height: 8px; border-radius: 4px; margin-top: 4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .progress-bar-inner { height: 100%; border-radius: 4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-categories-container { display: flex; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 32px auto; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-categories-scrolling-container { overflow: scroll; height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category { width: 330px; min-height: 80px; font-size: 13px; line-height: normal; margin: 12px; text-align: left; display: flex; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.categories .getting-started-category { padding-right: 46px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category .codicon { margin-right: 10px; font-size: 32px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .getting-started-category img.category-icon { margin-right: 10px; max-width: 32px; max-height: 32px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail { display: flex; flex-direction: column; overflow: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .gap { flex: 150px 0 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-category { width: 330px; display: flex; padding: 10px 0 20px 12px; margin: 0; min-height: auto; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns .gap { flex: 150px 1 1000 } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-category .codicon { margin-left:0; font-size: 22pt; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns { display: flex; justify-content: flex-start; padding: 40px 40px 0; max-height: calc(100% - 40px); } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task { display: flex; width: 100%; overflow: hidden; transition: height .1s linear; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) { height: 54px; background: none; opacity: 0.8; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-columns .getting-started-detail-left > div { width: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .task-description, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .image-description, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) .actions, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) button, .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task:not(.expanded) a { visibility: hidden; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-description-container { width: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-description { padding-top: 8px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .actions { margin-top: 12px; display: flex; align-items: center; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .task-next { margin-left: auto; margin-right: 10px; padding: 6px 12px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .codicon.hidden { display: none; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task .codicon { margin-right: 8px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-task-action { padding: 6px 12px; font-size: 13px; margin-bottom: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-left { min-width: 330px; width: 40%; max-width: 400px; display: flex; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .full-height-scrollable { height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-container { height: 100%; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .gettingStartedDetailsContent { height: 100%; display: flex; flex-direction: column; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-right { display: flex; align-items: flex-start; justify-content: center; width: 66%; min-height: 300px; padding: 0px 0 20px 44px; min-width: 400px; max-width: 800px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide.detail .getting-started-detail-right img { object-fit: contain; } .monaco-workbench .part.editor > .content .gettingStartedContainer button { border: none; color: inherit; text-align: left; padding: 16px; margin: 1px 0; /* makes room for focus border */ font-family: inherit; } .monaco-workbench .part.editor > .content .gettingStartedContainer button:hover { cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer button:focus { outline-style: solid; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button.button-link { position: absolute; left: 40px; top: 5px; padding: 0 2px 2px; margin: 10px; z-index: 1; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button:hover { cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer .prev-button .codicon { position: relative; top: 3px; left: -4px; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .skip { display: block; margin: 2px auto; width: fit-content; text-align: center; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h1 { font-size: 32px; font-weight: normal; border-bottom: none; margin: 0; padding: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h2 { font-weight: normal; line-height: 26px; margin: 0 0 4px 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide h3 { font-size: 13px; font-weight: 700; margin: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .subtitle { font-size: 16px; margin: 0; padding: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStarted.showCategories .detail { left: 100%; opacity: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStarted.showDetails .categories { left: -100%; opacity: 0; } .monaco-workbench .part.editor > .content .gettingStartedContainer .button-link { padding: 0; background: transparent; margin: 2px; cursor: pointer; } .monaco-workbench .part.editor > .content .gettingStartedContainer .button-link:hover { text-decoration: underline; background: transparent; } .monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlide .showOnStartup { text-align: center; }
0.368747
0.05163
.widget-respimg{display: table-cell!important;text-align:center;vertical-align: middle;} .widget-respimg img{max-height: 100%;max-width: 100%} /* ---------------------------------------------------------- */ /* */ /* 璁℃暟鍣� */ /* */ /* 閰嶅悎JS浣跨敤 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .num_conts{position: relative; width: 100%;} .num_conts.abso{position: absolute; width: 520px; height: 166px; top: 50%; left: 50%; margin-top: -83px; margin-left: -260px;} .num_cont{float: left; width: 25%; line-height: 20px; color:#fff; text-align: center;} .num_cont i{display: inline-block;border: 1px #eee solid;width: 120px;height: 120px;border-radius: 100%;line-height: 120px;font-size: 40px;background-color: rgba(255,255,255,.1);} .num_cont span{font-size: 48px;display: block;line-height: 48px;margin: 20px 0 4px;font-family: 'DIN Condensed Bold';font-weight: 700;} .num_cont p{font-size: 14px} /* ---------------------------------------------------------- */ /* */ /* RGBA妯″紡閬僵灞� */ /* */ /* 閰嶅悎JS浣跨敤 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ /*鏍峰紡1*/ .shade{position:absolute;top:0;left:0;z-index:999;width:100%;height:100%;transition:all .5s ease} a:hover .shade{z-index:999;background:url("../img/plus2.png")/*tpa=http://response.lyqingfeng.cn/DEMO/no18/web/img/plus2.png*/ center center no-repeat rgba(0,0,0,.5)} /*鏍峰紡2*/ .mask{position:absolute;top:0;right:0;bottom:0;left:0;display:none;padding-top:20%;background:url("../img/an_hover.png")/*tpa=http://response.lyqingfeng.cn/DEMO/no18/web/img/an_hover.png*/ no-repeat;background-size:101%;color:#FFF;content:"";font-size:18px} a:hover .mask{display:block} /*鏍峰紡2*/ .mask2{position:absolute;top:0;right:0;bottom:0;left:0;display:none;padding-top:20%;padding-left:25%;background:rgba(158,74,79,.8);color:#FFF;content:"";text-align:left;font-size:18px} .mask2 span{display:block;font-size:14px} .mask2 i{font-size:24px} a:hover .mask2{display:block} /* ---------------------------------------------------------- */ /* */ /* 鑳屾櫙鍥惧眰 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .parallax { background-position: center center; background-repeat: no-repeat; background-attachment: fixed; -webkit-background-size: cover; background-size: cover; } /* ---------------------------------------------------------- */ /* */ /* 鍒嗗壊浠� */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .widget-split { position: relative; display: block; text-align: center; } .widget-split:before, .widget-split:after { position: absolute; content: ''; width: 120px; height: 1px; background-color: #eee; bottom: 15px; z-index: 1; } .widget-split:before { left: 50%; -webkit-transform: translateX(-126%); -ms-transform: translateX(-126%); -o-transform: translateX(-126%); transform: translateX(-126%); } .widget-split:after { right: 50%; -webkit-transform: translateX(126%); -ms-transform: translateX(126%); -o-transform: translateX(126%); transform: translateX(126%); } .widget-split i { width: 40px; height: 28px; display: inline-block; z-index: 10; position: relative; } .widget-split i:before { line-height: 28px; font-size: 18px; } /* skin 鐨偆 ----------------------------------------------------*/ .orange{ color:#e3943a;} .green{ color:#2ea464;} .green01{ color:#669933; font-size:18px; font-weight:bold} .red{ color:#dd1517} .white{ color:#fff;} .gray{ color:#999;} .gray-line{ color:#888; text-decoration:line-through; font-size:12px;} .blue{ color:#3366cc} .price{ float:right;color:#777676} .pt10{padding-top:10px;} .pt22{padding-top:22px;} .pt45{padding-top:45px;} .ml5{margin-left:5px;} .ml10{margin-left:10px;} .ml15{margin-left:15px;} .ml65{margin-left:65px;} .mr5{margin-right:5px;} .mr10{margin-right:10px;} .mr15{margin-right:15px;} .mt5{ margin-top:5px;} .mt10{ margin-top:10px;} .mt15{ margin-top:15px;} .mt20{ margin-top:20px;} .mt30{ margin-top:30px;} .mt45{ margin-top:45px;} .mt50{ margin-top:50px;} .mt55{ margin-top:55px;} .mt60{ margin-top:60px;} .mb30{ margin-bottom:30px;} /* grid 甯冨眬 ----------------------------------------------------*/ .box-sflex{ display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -moz-flex; display: -ms-flexbox; display: flex; /* 姘村钩灞呬腑*/ -webkit-box-align: center; -moz-box-align: center; -ms-flex-align:center;/* IE 10 */ -webkit-justify-content: center; -moz-justify-content: center; justify-content: center;/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/ /* 鍨傜洿灞呬腑 */ -webkit-box-pack: center; -moz-box-pack: center; -ms-flex-pack:center;/* IE 10 */ -webkit-align-items: center; -moz-align-items: center; align-items: center; } /*鍨傜洿灞呬腑*/ .ghost-center:before{content: " ";display: inline-block;height: 100%;width: 1%;vertical-align: middle;} .ghost-center p{display: inline-block;vertical-align: middle;} /*鍙岃竟绾跨洅瀛�*/ .seg{padding: 5px;border: 1px solid #d5d5d5;margin-bottom: 15px;} .seg .segin{padding: 10%;border: 1px solid #d5d5d5;} /* module 妯″潡 ----------------------------------------------------*/ /* 琛ㄥ崟 */ .m-form {padding: 0 0 10px 0} .m-form legend{font-size: 20px;color: #444;padding-bottom: 8px;} .m-form .btn{width: 100%;border-radius: 0;padding:10px 10px;margin-top:0;border:1px solid #ff8e00;background: #ff8e00;color: #fff;} .m-form .btn { transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s;-webkit-transition-duration: .5s;} .m-form .btn-default:focus, .m-form .btn-default.focus{color: #fff; opacity: 0.8} .m-form .btn-default:hover{color: #fff; opacity: 0.8;border-color:#ff8e00;background-color: #ff8e00;} .m-form .btn[type='reset']{background-color: #797979;border:1px solid #797979;} .form-label{display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: normal;font-size: 14px} /*input label锛�<label class="control-label" for="name">Input with success</label>*/ .form-control { box-sizing:border-box; display: block; width: 100%; height: 40px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #eae7e7; /*#ccc;*/ border-radius: 0; /*4px;*/ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } .form-control:focus{border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);} .form-control::-moz-placeholder{color: #999; opacity: 1;} .form-control:-ms-input-placeholder{color: #999;} .form-control::-webkit-input-placeholder{color: #999;} .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{background-color: #eee; opacity: 1;} .form-control[disabled], fieldset[disabled] .form-control{cursor: not-allowed;} textarea.form-control{height: auto;} input[type="search"]{-webkit-appearance: none;} @media (min-width: 768px){ .form-inline .form-group { /*瀹氫箟*/ width: 100%; border-bottom: 1px solid #eae7e7; border-left: 1px solid #eae7e7; padding: 10px 0; /*榛樿*/ display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { /*榛樿*/ display: inline-block; width: auto; vertical-align: middle; /*瀹氫箟*/ width: 60% } .form-inline .form-label{ padding-left: 15px; width: 86px; text-align: left; } select.form-control { /*margin-left: -4px;*/ } } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group {margin-bottom: 15px;} .radio, .checkbox{position: relative; display: block; margin-top: 10px; margin-bottom: 10px;} .radio label, .checkbox label{min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer;} .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"]{position: absolute; margin-top: 4px \9; margin-left: -20px;} .radio + .radio, .checkbox + .checkbox{margin-top: -5px;} .radio-inline, .checkbox-inline{position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer;} .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline{margin-top: 0; margin-left: 10px;} input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"]{cursor: not-allowed;} .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline{cursor: not-allowed;} .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label{cursor: not-allowed;} .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label{color: #3c763d;} .has-success .form-control{border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-success .form-control:focus{border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;} .has-success .input-group-addon{color: #3c763d; background-color: #dff0d8; border-color: #3c763d;} .has-success .form-control-feedback{color: #3c763d;} .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control{border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-warning .form-control:focus{border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;} .has-warning .input-group-addon{color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b;} .has-warning .form-control-feedback{color: #8a6d3b;} .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control{border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-error .form-control:focus{border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;} .has-error .input-group-addon{color: #a94442; background-color: #f2dede; border-color: #a94442;} .has-error .form-control-feedback{color: #a94442;} .has-feedback label ~ .form-control-feedback{top: 25px;} .has-feedback label.sr-only ~ .form-control-feedback{top: 0;} .help-block{display: block; margin-top: 5px; margin-bottom: 10px; color: #737373;} :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #fff; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #fff; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #fff; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #fff; } /* 绠€鏄撴暟鎹〃鏍�-鏍艰竟妗� */ .m-table{table-layout:fixed;width:100%;line-height:1.5;} .m-table th,.m-table td{padding:10px;border:1px solid #e8e8e8; text-align:center;} .m-table th{font-weight:bold;} .m-table tbody tr:nth-child(2n){background:#fafafa;} .m-table tbody tr:hover{background:#e4f4e9;} .m-table tbody tr:nth-child(2n):hover{background:#fff;} .m-table .cola{width:100px;} .m-table .colb{width:200px;} /* 绠€鏄撴暟鎹〃鏍�-琛岃竟妗�*/ .m-table-row th,.m-table-row td{border-width:0 0 1px;} /* 绠€鏄撴暟鎹〃鏍�-鍦嗚*/ .m-table-rds{border-collapse:separate;border:1px solid #ddd;border-width:0 1px 1px 0;border-radius:5px;} .m-table-rds th,.m-table-rds td{border-width:1px 0 0 1px;} .m-table-rds > :first-child > :first-child > :first-child{border-top-left-radius:5px;} .m-table-rds > :first-child > :first-child > :last-child{border-top-right-radius:5px;} .m-table-rds > :last-child > :last-child > :first-child{border-bottom-left-radius:5px;} .m-table-rds > :last-child > :last-child > :last-child{border-bottom-right-radius:5px;} /* unit 鍏冧欢 ----------------------------------------------------*/ .btn{display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px;} .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px;} .btn:hover, .btn:focus, .btn.focus{color: #333; text-decoration: none;} .btn:active, .btn.active{background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);} .btn.disabled, .btn[disabled], fieldset[disabled] .btn{cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65;} a.btn.disabled, fieldset[disabled] a.btn{pointer-events: none;} .btn-default{color: #333; background-color: #fff; border-color: #ccc;} .btn-default:focus, .btn-default.focus{color: #333; background-color: #e6e6e6; border-color: #8c8c8c;} .btn-default:hover{color: #333; background-color: #e6e6e6; border-color: #adadad;} .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default{color: #333; background-color: #e6e6e6; border-color: #adadad;} .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus{color: #333; background-color: #d4d4d4; border-color: #8c8c8c;} .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default{background-image: none;} .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active{background-color: #fff; border-color: #ccc;} .btn-default .badge{color: #fff; background-color: #333;} /* functions 鍑芥暟 ----------------------------------------------------*/ .f-cb:after,.f-cbli li:after{display:block;clear:both;visibility:hidden;height:0;overflow:hidden;content:".";} .f-cb,.f-cbli li{zoom:1;} .f-ib{display:inline-block;*display:inline;*zoom:1;} .f-dn{display:none;} .f-db{display:block;} .f-fl{float:left;} .f-fr{float:right;} .f-pr{position:relative;} .f-prz{position:relative;zoom:1;} .f-pa{position:absolute;} .f-oh{overflow:hidden;} .f-ff0{font-family:arial,\5b8b\4f53;} .f-ff1{font-family:"Microsoft YaHei",\5fae\8f6f\96c5\9ed1,arial,\5b8b\4f53;} .f-fs1{font-size:12px;} .f-fs2{font-size:14px;} .f-fwn{font-weight:normal;} .f-fwb{font-weight:bold;} .f-tal{text-align:left;} .f-tac{text-align:center!important;} .f-tar{text-align:right;} .f-taj{text-align:justify;text-justify:inter-ideograph;} .f-vam,.f-vama *{vertical-align:middle;} .f-wsn{word-wrap:normal;white-space:nowrap;} .f-pre{overflow:hidden;text-align:left;white-space:pre-wrap;word-wrap:break-word;word-break:break-all;} .f-wwb{white-space:normal;word-wrap:break-word;word-break:break-all;} .f-ti{overflow:hidden;text-indent:-30000px;} .f-ti2{text-indent:2em;} .f-lhn{line-height:normal;} .f-tdu,.f-tdu:hover{text-decoration:underline;} .f-tdn,.f-tdn:hover{text-decoration:none;} .f-toe{overflow:hidden;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis;} .f-csp{cursor:pointer;} .f-csd{cursor:default;} .f-csh{cursor:help;} .f-csm{cursor:move;} .f-usn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;} .f-cen{margin:0 auto;} .small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em;} .large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;} .overflow{text-indent:-9999px;font-size:0;line-height:0;} .overflow a{display:block;width:100%;height:100%;}
public/web/Templates/skin_cn/web/css/base.css
.widget-respimg{display: table-cell!important;text-align:center;vertical-align: middle;} .widget-respimg img{max-height: 100%;max-width: 100%} /* ---------------------------------------------------------- */ /* */ /* 璁℃暟鍣� */ /* */ /* 閰嶅悎JS浣跨敤 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .num_conts{position: relative; width: 100%;} .num_conts.abso{position: absolute; width: 520px; height: 166px; top: 50%; left: 50%; margin-top: -83px; margin-left: -260px;} .num_cont{float: left; width: 25%; line-height: 20px; color:#fff; text-align: center;} .num_cont i{display: inline-block;border: 1px #eee solid;width: 120px;height: 120px;border-radius: 100%;line-height: 120px;font-size: 40px;background-color: rgba(255,255,255,.1);} .num_cont span{font-size: 48px;display: block;line-height: 48px;margin: 20px 0 4px;font-family: 'DIN Condensed Bold';font-weight: 700;} .num_cont p{font-size: 14px} /* ---------------------------------------------------------- */ /* */ /* RGBA妯″紡閬僵灞� */ /* */ /* 閰嶅悎JS浣跨敤 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ /*鏍峰紡1*/ .shade{position:absolute;top:0;left:0;z-index:999;width:100%;height:100%;transition:all .5s ease} a:hover .shade{z-index:999;background:url("../img/plus2.png")/*tpa=http://response.lyqingfeng.cn/DEMO/no18/web/img/plus2.png*/ center center no-repeat rgba(0,0,0,.5)} /*鏍峰紡2*/ .mask{position:absolute;top:0;right:0;bottom:0;left:0;display:none;padding-top:20%;background:url("../img/an_hover.png")/*tpa=http://response.lyqingfeng.cn/DEMO/no18/web/img/an_hover.png*/ no-repeat;background-size:101%;color:#FFF;content:"";font-size:18px} a:hover .mask{display:block} /*鏍峰紡2*/ .mask2{position:absolute;top:0;right:0;bottom:0;left:0;display:none;padding-top:20%;padding-left:25%;background:rgba(158,74,79,.8);color:#FFF;content:"";text-align:left;font-size:18px} .mask2 span{display:block;font-size:14px} .mask2 i{font-size:24px} a:hover .mask2{display:block} /* ---------------------------------------------------------- */ /* */ /* 鑳屾櫙鍥惧眰 */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .parallax { background-position: center center; background-repeat: no-repeat; background-attachment: fixed; -webkit-background-size: cover; background-size: cover; } /* ---------------------------------------------------------- */ /* */ /* 鍒嗗壊浠� */ /* */ /* */ /* - Time : 2016.07.15 */ /* - Author: BoBo */ /* */ /* ---------------------------------------------------------- */ .widget-split { position: relative; display: block; text-align: center; } .widget-split:before, .widget-split:after { position: absolute; content: ''; width: 120px; height: 1px; background-color: #eee; bottom: 15px; z-index: 1; } .widget-split:before { left: 50%; -webkit-transform: translateX(-126%); -ms-transform: translateX(-126%); -o-transform: translateX(-126%); transform: translateX(-126%); } .widget-split:after { right: 50%; -webkit-transform: translateX(126%); -ms-transform: translateX(126%); -o-transform: translateX(126%); transform: translateX(126%); } .widget-split i { width: 40px; height: 28px; display: inline-block; z-index: 10; position: relative; } .widget-split i:before { line-height: 28px; font-size: 18px; } /* skin 鐨偆 ----------------------------------------------------*/ .orange{ color:#e3943a;} .green{ color:#2ea464;} .green01{ color:#669933; font-size:18px; font-weight:bold} .red{ color:#dd1517} .white{ color:#fff;} .gray{ color:#999;} .gray-line{ color:#888; text-decoration:line-through; font-size:12px;} .blue{ color:#3366cc} .price{ float:right;color:#777676} .pt10{padding-top:10px;} .pt22{padding-top:22px;} .pt45{padding-top:45px;} .ml5{margin-left:5px;} .ml10{margin-left:10px;} .ml15{margin-left:15px;} .ml65{margin-left:65px;} .mr5{margin-right:5px;} .mr10{margin-right:10px;} .mr15{margin-right:15px;} .mt5{ margin-top:5px;} .mt10{ margin-top:10px;} .mt15{ margin-top:15px;} .mt20{ margin-top:20px;} .mt30{ margin-top:30px;} .mt45{ margin-top:45px;} .mt50{ margin-top:50px;} .mt55{ margin-top:55px;} .mt60{ margin-top:60px;} .mb30{ margin-bottom:30px;} /* grid 甯冨眬 ----------------------------------------------------*/ .box-sflex{ display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -moz-flex; display: -ms-flexbox; display: flex; /* 姘村钩灞呬腑*/ -webkit-box-align: center; -moz-box-align: center; -ms-flex-align:center;/* IE 10 */ -webkit-justify-content: center; -moz-justify-content: center; justify-content: center;/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/ /* 鍨傜洿灞呬腑 */ -webkit-box-pack: center; -moz-box-pack: center; -ms-flex-pack:center;/* IE 10 */ -webkit-align-items: center; -moz-align-items: center; align-items: center; } /*鍨傜洿灞呬腑*/ .ghost-center:before{content: " ";display: inline-block;height: 100%;width: 1%;vertical-align: middle;} .ghost-center p{display: inline-block;vertical-align: middle;} /*鍙岃竟绾跨洅瀛�*/ .seg{padding: 5px;border: 1px solid #d5d5d5;margin-bottom: 15px;} .seg .segin{padding: 10%;border: 1px solid #d5d5d5;} /* module 妯″潡 ----------------------------------------------------*/ /* 琛ㄥ崟 */ .m-form {padding: 0 0 10px 0} .m-form legend{font-size: 20px;color: #444;padding-bottom: 8px;} .m-form .btn{width: 100%;border-radius: 0;padding:10px 10px;margin-top:0;border:1px solid #ff8e00;background: #ff8e00;color: #fff;} .m-form .btn { transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s;-webkit-transition-duration: .5s;} .m-form .btn-default:focus, .m-form .btn-default.focus{color: #fff; opacity: 0.8} .m-form .btn-default:hover{color: #fff; opacity: 0.8;border-color:#ff8e00;background-color: #ff8e00;} .m-form .btn[type='reset']{background-color: #797979;border:1px solid #797979;} .form-label{display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: normal;font-size: 14px} /*input label锛�<label class="control-label" for="name">Input with success</label>*/ .form-control { box-sizing:border-box; display: block; width: 100%; height: 40px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #eae7e7; /*#ccc;*/ border-radius: 0; /*4px;*/ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } .form-control:focus{border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);} .form-control::-moz-placeholder{color: #999; opacity: 1;} .form-control:-ms-input-placeholder{color: #999;} .form-control::-webkit-input-placeholder{color: #999;} .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{background-color: #eee; opacity: 1;} .form-control[disabled], fieldset[disabled] .form-control{cursor: not-allowed;} textarea.form-control{height: auto;} input[type="search"]{-webkit-appearance: none;} @media (min-width: 768px){ .form-inline .form-group { /*瀹氫箟*/ width: 100%; border-bottom: 1px solid #eae7e7; border-left: 1px solid #eae7e7; padding: 10px 0; /*榛樿*/ display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { /*榛樿*/ display: inline-block; width: auto; vertical-align: middle; /*瀹氫箟*/ width: 60% } .form-inline .form-label{ padding-left: 15px; width: 86px; text-align: left; } select.form-control { /*margin-left: -4px;*/ } } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group {margin-bottom: 15px;} .radio, .checkbox{position: relative; display: block; margin-top: 10px; margin-bottom: 10px;} .radio label, .checkbox label{min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer;} .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"]{position: absolute; margin-top: 4px \9; margin-left: -20px;} .radio + .radio, .checkbox + .checkbox{margin-top: -5px;} .radio-inline, .checkbox-inline{position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer;} .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline{margin-top: 0; margin-left: 10px;} input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"]{cursor: not-allowed;} .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline{cursor: not-allowed;} .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label{cursor: not-allowed;} .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label{color: #3c763d;} .has-success .form-control{border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-success .form-control:focus{border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;} .has-success .input-group-addon{color: #3c763d; background-color: #dff0d8; border-color: #3c763d;} .has-success .form-control-feedback{color: #3c763d;} .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control{border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-warning .form-control:focus{border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;} .has-warning .input-group-addon{color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b;} .has-warning .form-control-feedback{color: #8a6d3b;} .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control{border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);} .has-error .form-control:focus{border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;} .has-error .input-group-addon{color: #a94442; background-color: #f2dede; border-color: #a94442;} .has-error .form-control-feedback{color: #a94442;} .has-feedback label ~ .form-control-feedback{top: 25px;} .has-feedback label.sr-only ~ .form-control-feedback{top: 0;} .help-block{display: block; margin-top: 5px; margin-bottom: 10px; color: #737373;} :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #fff; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #fff; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #fff; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #fff; } /* 绠€鏄撴暟鎹〃鏍�-鏍艰竟妗� */ .m-table{table-layout:fixed;width:100%;line-height:1.5;} .m-table th,.m-table td{padding:10px;border:1px solid #e8e8e8; text-align:center;} .m-table th{font-weight:bold;} .m-table tbody tr:nth-child(2n){background:#fafafa;} .m-table tbody tr:hover{background:#e4f4e9;} .m-table tbody tr:nth-child(2n):hover{background:#fff;} .m-table .cola{width:100px;} .m-table .colb{width:200px;} /* 绠€鏄撴暟鎹〃鏍�-琛岃竟妗�*/ .m-table-row th,.m-table-row td{border-width:0 0 1px;} /* 绠€鏄撴暟鎹〃鏍�-鍦嗚*/ .m-table-rds{border-collapse:separate;border:1px solid #ddd;border-width:0 1px 1px 0;border-radius:5px;} .m-table-rds th,.m-table-rds td{border-width:1px 0 0 1px;} .m-table-rds > :first-child > :first-child > :first-child{border-top-left-radius:5px;} .m-table-rds > :first-child > :first-child > :last-child{border-top-right-radius:5px;} .m-table-rds > :last-child > :last-child > :first-child{border-bottom-left-radius:5px;} .m-table-rds > :last-child > :last-child > :last-child{border-bottom-right-radius:5px;} /* unit 鍏冧欢 ----------------------------------------------------*/ .btn{display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px;} .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px;} .btn:hover, .btn:focus, .btn.focus{color: #333; text-decoration: none;} .btn:active, .btn.active{background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);} .btn.disabled, .btn[disabled], fieldset[disabled] .btn{cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65;} a.btn.disabled, fieldset[disabled] a.btn{pointer-events: none;} .btn-default{color: #333; background-color: #fff; border-color: #ccc;} .btn-default:focus, .btn-default.focus{color: #333; background-color: #e6e6e6; border-color: #8c8c8c;} .btn-default:hover{color: #333; background-color: #e6e6e6; border-color: #adadad;} .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default{color: #333; background-color: #e6e6e6; border-color: #adadad;} .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus{color: #333; background-color: #d4d4d4; border-color: #8c8c8c;} .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default{background-image: none;} .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active{background-color: #fff; border-color: #ccc;} .btn-default .badge{color: #fff; background-color: #333;} /* functions 鍑芥暟 ----------------------------------------------------*/ .f-cb:after,.f-cbli li:after{display:block;clear:both;visibility:hidden;height:0;overflow:hidden;content:".";} .f-cb,.f-cbli li{zoom:1;} .f-ib{display:inline-block;*display:inline;*zoom:1;} .f-dn{display:none;} .f-db{display:block;} .f-fl{float:left;} .f-fr{float:right;} .f-pr{position:relative;} .f-prz{position:relative;zoom:1;} .f-pa{position:absolute;} .f-oh{overflow:hidden;} .f-ff0{font-family:arial,\5b8b\4f53;} .f-ff1{font-family:"Microsoft YaHei",\5fae\8f6f\96c5\9ed1,arial,\5b8b\4f53;} .f-fs1{font-size:12px;} .f-fs2{font-size:14px;} .f-fwn{font-weight:normal;} .f-fwb{font-weight:bold;} .f-tal{text-align:left;} .f-tac{text-align:center!important;} .f-tar{text-align:right;} .f-taj{text-align:justify;text-justify:inter-ideograph;} .f-vam,.f-vama *{vertical-align:middle;} .f-wsn{word-wrap:normal;white-space:nowrap;} .f-pre{overflow:hidden;text-align:left;white-space:pre-wrap;word-wrap:break-word;word-break:break-all;} .f-wwb{white-space:normal;word-wrap:break-word;word-break:break-all;} .f-ti{overflow:hidden;text-indent:-30000px;} .f-ti2{text-indent:2em;} .f-lhn{line-height:normal;} .f-tdu,.f-tdu:hover{text-decoration:underline;} .f-tdn,.f-tdn:hover{text-decoration:none;} .f-toe{overflow:hidden;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis;} .f-csp{cursor:pointer;} .f-csd{cursor:default;} .f-csh{cursor:help;} .f-csm{cursor:move;} .f-usn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;} .f-cen{margin:0 auto;} .small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em;} .large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;} .overflow{text-indent:-9999px;font-size:0;line-height:0;} .overflow a{display:block;width:100%;height:100%;}
0.167627
0.040087
margin:2rem auto; width:80rem; height:56rem; } #content_left{ float:left; width:13rem; height:56rem; background:#25242C; color:white; } #content_right{ float:left; height:56rem; width:67rem; } .right_top{ height:6rem; border-bottom:1px solid #F2D2D5; } .head_img img{ width:8rem; height:8rem; border-radius:50%; margin: 2.5rem 2.5rem 0.6rem; } .head_img h2{ text-align:center; } .account{ text-align:center; } .account h3{ margin:1rem 0 0; } .account p span{ color:#E9451D; font-size:1.5rem; } .order_center{ margin-top:3rem; } .order_center li{ text-align:center; font-size:1.5rem; margin-top:2rem; } .order_center li a{ color:white; display: block; width: 13rem; height:4rem; } .order_center li a img{ margin-left:2.5rem; margin-top:1.2rem; float:left; } .order_center li a p{ float:left; margin-top:1rem; } .order_center li a:hover{ background:#E4461C; } .right_top img{ float:left; } .right_top p{ float:left; margin-top:2rem; margin-left:16rem; } .right_top p span{ font-size:1.5rem; } .right_top p span em{ font-size:1.8rem; font-weight:bold; } .right_top form{ float:right; display:block width:6rem; height:3rem; font-size:1.4rem; margin-right:3rem; margin-top:2.2rem; } .right_top form .logout{ background:none; border:none; } .right_top form .logout:hover{ color:red; } .rule{ margin-top:1rem; height:9rem; border-bottom:1px solid #F2D2D5; } .rule .rule_des{ float:left; text-indent:2rem; } .rule .rule_des h2{ color:#EC491D; font-size:1.5rem; } .rule .rule_des p{ margin-top:.5rem; } .rule .rule_des p span{ color:#EC491D; } .rule h1 a{ display:block; float:left; width:9rem; height:4rem; background:#ED4A1C; border-radius:.5rem; color:white; line-height:4rem; text-align:center; margin:2rem 12rem;; } .right_center{ height:40rem; border-bottom:1px solid #F2D2D5; overflow:hidden; position: relative; } .right_center ul{ position: absolute; top: 0px; left: 0px; } .right_center .get_order{ position:absolute; top:8rem; left:22rem; } .right_center .get_order .search{ position:absolute; top:4rem; left:9rem; } .right_center .order_detail{ width:35rem; height:25rem; box-shadow: 0 0 10px #BDBDBD; background:white; position:absolute; top:6rem; left:16rem; } .right_center .order_detail .order_one{ float:left; width:15rem; height:20rem; border:1px solid #E2481A; margin:2.5rem 1rem 1rem; margin-left:1.2rem; border-radius:.6rem; } .right_center .order_detail .order_one .people_name{ margin-top:1rem; } .right_center .order_detail .order_one div{ width:15rem; height:2.2rem; margin-left:1rem; } .right_center .order_detail .order_one div img{ float:left; } .right_center .order_detail .order_one div p{ float:left; margin-left:.5rem; } .right_center .order_detail .order_one .click_order{ width:15rem; height:3.6rem; background:#E2481A; border-radius:0 0 .6rem .6rem; color:white; text-align:center; font-size:1.5rem; line-height:3.6rem; } .right_center .order_detail .close{ font-size:1.5rem; position:absolute; top:.4rem; right:1rem; } .right_center ul li{ float:left; width:15rem; height:6rem; border:1px solid #C2BDBF; border-radius:.5rem; margin:1rem 0 1rem 1.2rem;; } .right_center ul li p{ margin:.6rem; text-indent:1rem; } .right_center ul li p em{ color:#828282; } .table-b{ width:64rem; margin:1rem auto; } .table-b tr{ height:3rem; padding-top:1rem; padding:7px; } .table-b tr td{ text-align:center; } .page{ text-align: center; line-height:30px; padding:20px 0; } .page a,.page span{ color:#666; display: inline-block; padding:0 12px; margin:0 3px; border:1px solid #ddd ; font-size:14px; border-radius: 3px; } .page a:hover,.page span.paging_number{ color:#fff; border:1px solid #eb4200 ; background: #eb4200; }
api/web/css/shop/home.css
margin:2rem auto; width:80rem; height:56rem; } #content_left{ float:left; width:13rem; height:56rem; background:#25242C; color:white; } #content_right{ float:left; height:56rem; width:67rem; } .right_top{ height:6rem; border-bottom:1px solid #F2D2D5; } .head_img img{ width:8rem; height:8rem; border-radius:50%; margin: 2.5rem 2.5rem 0.6rem; } .head_img h2{ text-align:center; } .account{ text-align:center; } .account h3{ margin:1rem 0 0; } .account p span{ color:#E9451D; font-size:1.5rem; } .order_center{ margin-top:3rem; } .order_center li{ text-align:center; font-size:1.5rem; margin-top:2rem; } .order_center li a{ color:white; display: block; width: 13rem; height:4rem; } .order_center li a img{ margin-left:2.5rem; margin-top:1.2rem; float:left; } .order_center li a p{ float:left; margin-top:1rem; } .order_center li a:hover{ background:#E4461C; } .right_top img{ float:left; } .right_top p{ float:left; margin-top:2rem; margin-left:16rem; } .right_top p span{ font-size:1.5rem; } .right_top p span em{ font-size:1.8rem; font-weight:bold; } .right_top form{ float:right; display:block width:6rem; height:3rem; font-size:1.4rem; margin-right:3rem; margin-top:2.2rem; } .right_top form .logout{ background:none; border:none; } .right_top form .logout:hover{ color:red; } .rule{ margin-top:1rem; height:9rem; border-bottom:1px solid #F2D2D5; } .rule .rule_des{ float:left; text-indent:2rem; } .rule .rule_des h2{ color:#EC491D; font-size:1.5rem; } .rule .rule_des p{ margin-top:.5rem; } .rule .rule_des p span{ color:#EC491D; } .rule h1 a{ display:block; float:left; width:9rem; height:4rem; background:#ED4A1C; border-radius:.5rem; color:white; line-height:4rem; text-align:center; margin:2rem 12rem;; } .right_center{ height:40rem; border-bottom:1px solid #F2D2D5; overflow:hidden; position: relative; } .right_center ul{ position: absolute; top: 0px; left: 0px; } .right_center .get_order{ position:absolute; top:8rem; left:22rem; } .right_center .get_order .search{ position:absolute; top:4rem; left:9rem; } .right_center .order_detail{ width:35rem; height:25rem; box-shadow: 0 0 10px #BDBDBD; background:white; position:absolute; top:6rem; left:16rem; } .right_center .order_detail .order_one{ float:left; width:15rem; height:20rem; border:1px solid #E2481A; margin:2.5rem 1rem 1rem; margin-left:1.2rem; border-radius:.6rem; } .right_center .order_detail .order_one .people_name{ margin-top:1rem; } .right_center .order_detail .order_one div{ width:15rem; height:2.2rem; margin-left:1rem; } .right_center .order_detail .order_one div img{ float:left; } .right_center .order_detail .order_one div p{ float:left; margin-left:.5rem; } .right_center .order_detail .order_one .click_order{ width:15rem; height:3.6rem; background:#E2481A; border-radius:0 0 .6rem .6rem; color:white; text-align:center; font-size:1.5rem; line-height:3.6rem; } .right_center .order_detail .close{ font-size:1.5rem; position:absolute; top:.4rem; right:1rem; } .right_center ul li{ float:left; width:15rem; height:6rem; border:1px solid #C2BDBF; border-radius:.5rem; margin:1rem 0 1rem 1.2rem;; } .right_center ul li p{ margin:.6rem; text-indent:1rem; } .right_center ul li p em{ color:#828282; } .table-b{ width:64rem; margin:1rem auto; } .table-b tr{ height:3rem; padding-top:1rem; padding:7px; } .table-b tr td{ text-align:center; } .page{ text-align: center; line-height:30px; padding:20px 0; } .page a,.page span{ color:#666; display: inline-block; padding:0 12px; margin:0 3px; border:1px solid #ddd ; font-size:14px; border-radius: 3px; } .page a:hover,.page span.paging_number{ color:#fff; border:1px solid #eb4200 ; background: #eb4200; }
0.368974
0.054199
.main{ background: #FAFAFA; } .input { border:1px solid #ccc; height:16px; line-height:16px; padding:5px; border-radius: 4px; } .red { color: #f00; } textarea { width: 250px; height: 60px; border:1px solid #ccc; padding:5px; border-radius: 4px; } select { border: 1px solid #ccc; padding: 4px 5px; height : 28px; line-height : 28px; border-radius: 4px; } select option { height : 24px; padding : 2px; } /*CSS3 INPUT获取焦点时效果*/ textarea:focus, select:focus, input[type="text"]:focus, input[type="password"]:focus { border-color: rgba(82, 168, 236, 0.8); outline: 0; outline: thin dotted \9; /* IE6-9 */ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); } /*****左侧*****/ #left{ width:149px; height:641px; padding:20px 0; background:#EFF8FC; border-right: 1px solid #E2EEF4; } #left .left_nav{ width:49px; height:auto; } #left .left_nav li{ width:129px; height:38px; overflow: hidden; padding-left:20px; } #left .left_nav li a{ display: block; height:38px; line-height:38px; _padding: 12px 0; width:129px; color:#888888; font-size: 14px; } #left .left_nav li a i{ vertical-align: -4px; } #left .group{ width:149px; height:auto; margin-top:30px; } #left .group fieldset{ border:0; border-top:1px solid #D7EEFB; padding-left: 15px; } #left .group fieldset legend{ padding:0 5px; color:#B8B7B7; font-weight: bold; } #left .group ul{ margin:10px 0; } #left .group ul li{ width:129px; height:38px; overflow: hidden; padding-left: 20px; } #left .group ul li a{ display: block; height:38px; line-height:38px; _padding: 12px 0; width:129px; color:#888888; font-size: 13px; } #left .group ul li a i{ vertical-align: -4px; } #create_group{ display: block; width:80px; margin-left: 20px; font-size:12px; color:#2B96E1; cursor: pointer; } /*****创建分组弹出框*****/ #add-group { width: 300px; height: auto; overflow: hidden; z-index: 5; position: absolute; background:#fff; border:3px solid #9D9D9D; border-radius: 4px; display: none; } #add-group .group_head{ width:300px; height:29px; background: #F6F6F6; border-bottom: 1px solid #FF9B00; } #add-group .group_head .group_text{ display:block; width:300px; height:30px; line-height:30px; font-weight: bold; text-indent: 1em; cursor: move; } #add-group .group-name { width: 260px; height: 36px; line-height: 36px; margin: 20px auto; background: #f9f9f9; text-align: center; border-radius: 2px; } #add-group .gp-btn-wrap { width: 300px; height: 36px; line-height: 36px; text-align: right; margin-bottom: 10px; } #add-group .gp-btn-wrap span { display: inline-block; width: 58px; height: 22px; line-height: 22px; border: 1px solid #ccc; border-radius: 4px; text-align: center; cursor: pointer; margin-right: 10px; } #add-group .gp-btn-wrap .add-group-sub { background: #F9AB00; color: #fff; font-weight: bold; border:1px solid #FF9B00; } #add-group .gp-btn-wrap .group-cencle { background: #f6f6f6; } /**********右侧**********/ #right{ width: 830px; height: auto; overflow: hidden; float: right; } #right ul { width: 750px; height: 36px; margin: 20px 40px; border-bottom: 1px solid #E0E0E0; } #right ul li { width: 58px; padding: 10px 15px; height: 8px; line-height: 8px; margin-right: 10px; text-align: center; float: left; border-radius: 4px; border: 1px solid #D1EEFF; background: #EFF8FC; cursor: pointer; color: #BFB7BC; } #right ul .edit-cur { color: #48B4F2; } /**基本信息**/ .form { width: 750px; height: auto; margin: 10px auto; } .form p { width: 650px; padding :20px 50px; } .form p label { display: inline-block; width: 100px; text-align: right; padding: 0 20px; } .form p .intro { display: block; float: left; height: 90px; line-height: 90px; } .edit-sub { width: 80px; height: 28px; line-height: 28px; background: #89D623; border: 1px solid #53CD00; border-radius: 4px; cursor: pointer; color: #fff; margin-left: 200px; } .form .account { text-indent: 5em; } .form .account span { padding-left: 24px; color: #ADB1BC; } .form .edit-face { width: 300px; text-align: center; height: auto; padding-top: 30px; margin-left: 160px; } .form .edit-face p { width: 300px; padding: 20px 0; } .form .edit-face p .edit-sub { margin: 0; } .form p #face { text-align: left; padding: 0; margin: 0 auto; } /**********底部**********/ #bottom{ width:980px; height:auto; overflow: hidden; background:#FAFAFA; margin:0 auto; margin-top:30px; } #copy{ width: 980px; height:53px; background: #333333;} #copy div{ height: 33px; margin: 0 auto; background: url(../Images/bottom_logo.gif) no-repeat; padding: 10px 0; } #copy div p{ height: 33px; line-height: 33px; color: #fff; margin-left: 250px; } /*****jQuery Validate 错误信息*****/ input.error{ border:1px solid red; } input.valid { border:1px solid #1d95f6; } span.error{ background : url(../Images/unchecked.gif) no-repeat 0 0; padding-left: 16px; color: #f00; } span.success{ background : url(../Images/checked.gif) no-repeat 0 0; padding-left: 16px; }
Public/Css/edit.css
.main{ background: #FAFAFA; } .input { border:1px solid #ccc; height:16px; line-height:16px; padding:5px; border-radius: 4px; } .red { color: #f00; } textarea { width: 250px; height: 60px; border:1px solid #ccc; padding:5px; border-radius: 4px; } select { border: 1px solid #ccc; padding: 4px 5px; height : 28px; line-height : 28px; border-radius: 4px; } select option { height : 24px; padding : 2px; } /*CSS3 INPUT获取焦点时效果*/ textarea:focus, select:focus, input[type="text"]:focus, input[type="password"]:focus { border-color: rgba(82, 168, 236, 0.8); outline: 0; outline: thin dotted \9; /* IE6-9 */ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); } /*****左侧*****/ #left{ width:149px; height:641px; padding:20px 0; background:#EFF8FC; border-right: 1px solid #E2EEF4; } #left .left_nav{ width:49px; height:auto; } #left .left_nav li{ width:129px; height:38px; overflow: hidden; padding-left:20px; } #left .left_nav li a{ display: block; height:38px; line-height:38px; _padding: 12px 0; width:129px; color:#888888; font-size: 14px; } #left .left_nav li a i{ vertical-align: -4px; } #left .group{ width:149px; height:auto; margin-top:30px; } #left .group fieldset{ border:0; border-top:1px solid #D7EEFB; padding-left: 15px; } #left .group fieldset legend{ padding:0 5px; color:#B8B7B7; font-weight: bold; } #left .group ul{ margin:10px 0; } #left .group ul li{ width:129px; height:38px; overflow: hidden; padding-left: 20px; } #left .group ul li a{ display: block; height:38px; line-height:38px; _padding: 12px 0; width:129px; color:#888888; font-size: 13px; } #left .group ul li a i{ vertical-align: -4px; } #create_group{ display: block; width:80px; margin-left: 20px; font-size:12px; color:#2B96E1; cursor: pointer; } /*****创建分组弹出框*****/ #add-group { width: 300px; height: auto; overflow: hidden; z-index: 5; position: absolute; background:#fff; border:3px solid #9D9D9D; border-radius: 4px; display: none; } #add-group .group_head{ width:300px; height:29px; background: #F6F6F6; border-bottom: 1px solid #FF9B00; } #add-group .group_head .group_text{ display:block; width:300px; height:30px; line-height:30px; font-weight: bold; text-indent: 1em; cursor: move; } #add-group .group-name { width: 260px; height: 36px; line-height: 36px; margin: 20px auto; background: #f9f9f9; text-align: center; border-radius: 2px; } #add-group .gp-btn-wrap { width: 300px; height: 36px; line-height: 36px; text-align: right; margin-bottom: 10px; } #add-group .gp-btn-wrap span { display: inline-block; width: 58px; height: 22px; line-height: 22px; border: 1px solid #ccc; border-radius: 4px; text-align: center; cursor: pointer; margin-right: 10px; } #add-group .gp-btn-wrap .add-group-sub { background: #F9AB00; color: #fff; font-weight: bold; border:1px solid #FF9B00; } #add-group .gp-btn-wrap .group-cencle { background: #f6f6f6; } /**********右侧**********/ #right{ width: 830px; height: auto; overflow: hidden; float: right; } #right ul { width: 750px; height: 36px; margin: 20px 40px; border-bottom: 1px solid #E0E0E0; } #right ul li { width: 58px; padding: 10px 15px; height: 8px; line-height: 8px; margin-right: 10px; text-align: center; float: left; border-radius: 4px; border: 1px solid #D1EEFF; background: #EFF8FC; cursor: pointer; color: #BFB7BC; } #right ul .edit-cur { color: #48B4F2; } /**基本信息**/ .form { width: 750px; height: auto; margin: 10px auto; } .form p { width: 650px; padding :20px 50px; } .form p label { display: inline-block; width: 100px; text-align: right; padding: 0 20px; } .form p .intro { display: block; float: left; height: 90px; line-height: 90px; } .edit-sub { width: 80px; height: 28px; line-height: 28px; background: #89D623; border: 1px solid #53CD00; border-radius: 4px; cursor: pointer; color: #fff; margin-left: 200px; } .form .account { text-indent: 5em; } .form .account span { padding-left: 24px; color: #ADB1BC; } .form .edit-face { width: 300px; text-align: center; height: auto; padding-top: 30px; margin-left: 160px; } .form .edit-face p { width: 300px; padding: 20px 0; } .form .edit-face p .edit-sub { margin: 0; } .form p #face { text-align: left; padding: 0; margin: 0 auto; } /**********底部**********/ #bottom{ width:980px; height:auto; overflow: hidden; background:#FAFAFA; margin:0 auto; margin-top:30px; } #copy{ width: 980px; height:53px; background: #333333;} #copy div{ height: 33px; margin: 0 auto; background: url(../Images/bottom_logo.gif) no-repeat; padding: 10px 0; } #copy div p{ height: 33px; line-height: 33px; color: #fff; margin-left: 250px; } /*****jQuery Validate 错误信息*****/ input.error{ border:1px solid red; } input.valid { border:1px solid #1d95f6; } span.error{ background : url(../Images/unchecked.gif) no-repeat 0 0; padding-left: 16px; color: #f00; } span.success{ background : url(../Images/checked.gif) no-repeat 0 0; padding-left: 16px; }
0.277669
0.068725
:root { --yellow: #ffb100; --red: #c60900; --white: #ffffff; --black: #000000; --hover-color: #e5ff002c; --box-shadow: 0 0.2rem 1rem #000000b0; --primary-font-family: sans-serif; --secondary-font-family: "Nunito", "Nunito Sans", sans-serif; } * { margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box; } html { font-size: 10px; } body { align-items: center; justify-content: center; min-height: 100vh; background: no-repeat 0 33% / cover url(../img/freddie.jpg) var(--yellow); background-blend-mode: darken; } body, .container, .speed, .speed-bar { display: flex; } .video { height: 50rem; width: 41rem; object-fit: cover; box-shadow: var(--box-shadow); border: 1rem solid var(--yellow); background-color: var(--yellow); } video::-webkit-media-controls-panel { transition: 0.7s ease; background-color: var(--hover-color); } video::-webkit-media-controls-timeline { width: 33rem; padding-bottom: 0; border-radius: 2rem; margin: 0 auto 2rem; background-color: var(--yellow); } .speed { width: 4.2rem; border-radius: 5rem; margin: 1rem 0 1rem 1rem; overflow: hidden; cursor: pointer; align-items: flex-start; background-color: var(--red); box-shadow: var(--box-shadow); -webkit-tap-highlight-color: transparent; } .speed-bar { width: 100%; height: 23%; padding: 0.2rem; font-size: 1.5rem; user-select: none; align-items: center; justify-content: center; color: var(--white); background-color: var(--yellow); font-family: var(--primary-font-family); } p { color: var(--white); font-family: var(--secondary-font-family); } .text { position: relative; left: -16%; } p:first-child { font-size: 10rem; } p:last-child { font-size: 6rem; text-indent: 7rem; } ::selection { color: var(--black); background-color: var(--yellow); } /* loader start */ #loadingDiv { display: flex; align-items: center; justify-content: center; z-index: 100; width: 100vw; height: 100vh; position: absolute; background-color: var(--yellow); } .loader { width: 7rem; height: 7rem; background: center / contain no-repeat url(../img/loader.gif); } /* loader end */ /* media queries start */ @media screen and (max-width: 1260px) { .text { display: none; } } @media screen and (max-width: 550px) { html { font-size: 8px; } } @media screen and (max-width: 420px) { html { font-size: 7px; } video::-webkit-media-controls-timeline { width: 31rem; } } @media screen and (max-width: 360px) { html { font-size: 5.7px; } } /* media queries end */
css/style.css
:root { --yellow: #ffb100; --red: #c60900; --white: #ffffff; --black: #000000; --hover-color: #e5ff002c; --box-shadow: 0 0.2rem 1rem #000000b0; --primary-font-family: sans-serif; --secondary-font-family: "Nunito", "Nunito Sans", sans-serif; } * { margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box; } html { font-size: 10px; } body { align-items: center; justify-content: center; min-height: 100vh; background: no-repeat 0 33% / cover url(../img/freddie.jpg) var(--yellow); background-blend-mode: darken; } body, .container, .speed, .speed-bar { display: flex; } .video { height: 50rem; width: 41rem; object-fit: cover; box-shadow: var(--box-shadow); border: 1rem solid var(--yellow); background-color: var(--yellow); } video::-webkit-media-controls-panel { transition: 0.7s ease; background-color: var(--hover-color); } video::-webkit-media-controls-timeline { width: 33rem; padding-bottom: 0; border-radius: 2rem; margin: 0 auto 2rem; background-color: var(--yellow); } .speed { width: 4.2rem; border-radius: 5rem; margin: 1rem 0 1rem 1rem; overflow: hidden; cursor: pointer; align-items: flex-start; background-color: var(--red); box-shadow: var(--box-shadow); -webkit-tap-highlight-color: transparent; } .speed-bar { width: 100%; height: 23%; padding: 0.2rem; font-size: 1.5rem; user-select: none; align-items: center; justify-content: center; color: var(--white); background-color: var(--yellow); font-family: var(--primary-font-family); } p { color: var(--white); font-family: var(--secondary-font-family); } .text { position: relative; left: -16%; } p:first-child { font-size: 10rem; } p:last-child { font-size: 6rem; text-indent: 7rem; } ::selection { color: var(--black); background-color: var(--yellow); } /* loader start */ #loadingDiv { display: flex; align-items: center; justify-content: center; z-index: 100; width: 100vw; height: 100vh; position: absolute; background-color: var(--yellow); } .loader { width: 7rem; height: 7rem; background: center / contain no-repeat url(../img/loader.gif); } /* loader end */ /* media queries start */ @media screen and (max-width: 1260px) { .text { display: none; } } @media screen and (max-width: 550px) { html { font-size: 8px; } } @media screen and (max-width: 420px) { html { font-size: 7px; } video::-webkit-media-controls-timeline { width: 31rem; } } @media screen and (max-width: 360px) { html { font-size: 5.7px; } } /* media queries end */
0.352425
0.146636
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic'); body { width: 100%; height: 100%; font-family: 'Lato',sans-serif; font-weight: 300; color: #666; background-color: #fff; } html { width: 100%; height: 100%; } h1, h2, h3, h4, h5, h6 { margin: 0 0 30px; text-transform: uppercase; font-family: Montserrat,sans-serif; font-weight: 700; letter-spacing: 1px; text-align: center; } p { margin: 0 0 20px; font-size: 16px; line-height: 1.6em; text-align: center; } p.lead { font-weight: 600; } a { color: #28c3ab; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } a:hover, a:focus { text-decoration: none; color: #176e61; } .light { font-weight: 400; } address { margin-left: 0; padding: 0; } /* misc */ hr { margin-top: 10px; } /* margins */ .marginbot-0{margin-bottom:0 !important;} .marginbot-10{margin-bottom:10px !important;} .marginbot-20{margin-bottom:20px !important;} .marginbot-30{margin-bottom:30px !important;} .marginbot-40{margin-bottom:40px !important;} .marginbot-50{margin-bottom:50px !important;} /* =========================== --- General sections ============================ */ .home-section { padding-top: 110px; padding-bottom: 110px; display:block; position:relative; z-index:120; } .section-heading h2 { font-size: 40px; } .section-heading i { margin-bottom: 20px; } /* --- section bg var --- */ .bg-white { background: #fff; } .bg-gray { background: #f8f8f8; } .bg-dark { background: #575757; } /* --- section color var --- */ .text-light { color: #fff; } /* ============================ --- Menu ============================= */ @font-face { font-weight: normal; font-style: normal; font-family: 'ecoicons'; src: url("../fonts/ecoicons/ecoicons.eot"); src: url("../fonts/ecoicons/ecoicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ecoicons/ecoicons.woff") format("woff"), url("../fonts/ecoicons/ecoicons.ttf") format("truetype"), url("../fonts/ecoicons/ecoicons.svg#ecoicons") format("svg"); } .gn-menu-main, .gn-menu-main ul { margin: 0; padding: 0; background: #fff; color: #eb5d1e; list-style: none; text-transform: none; font-weight: 300; font-family: 'Lato', Arial, sans-serif; line-height: 60px; z-index:150; } .gn-menu-main { position: fixed; top: 0; left: 0; width: 100%; height: 60px; font-size: 13px; } .gn-menu-main a { display: block; height: 100%; color: #eb5d1e; text-decoration: none; cursor: pointer; } .no-touch .gn-menu-main a:hover, .no-touch .gn-menu li.gn-search-item:hover, .no-touch .gn-menu li.gn-search-item:hover a { background: #eb5d1e; color: white; } .gn-menu-main > li { display: block; float: left; height: 100%; border-right: 1px solid #c6d0da; text-align: center; } /* icon-only trigger (menu item) */ .gn-menu-main li.gn-trigger { position: relative; width: 60px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .gn-menu-main > li:last-child { float: right; border-right: none; } .gn-menu-main > li > a { padding: 0 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; } .gn-menu-main:after { display: table; clear: both; content: ""; } .gn-menu-wrapper { position: fixed; top: 60px; bottom: 0; left: 0; overflow: hidden; width: 60px; border-top: 1px solid #c6d0da; background: white; -webkit-transform: translateX(-60px); -moz-transform: translateX(-60px); transform: translateX(-60px); -webkit-transition: -webkit-transform 0.3s, width 0.3s; -moz-transition: -moz-transform 0.3s, width 0.3s; transition: transform 0.3s, width 0.3s; } .gn-scroller { position: absolute; overflow-y: scroll; width: 370px; height: 100%; } .gn-menu { border-bottom: 1px solid #c6d0da; text-align: left; font-size: 18px; } .gn-menu li:not(:first-child), .gn-menu li li { box-shadow: inset 0 1px #c6d0da } .gn-submenu li { overflow: hidden; height: 0; -webkit-transition: height 0.3s; -moz-transition: height 0.3s; transition: height 0.3s; } .gn-submenu li a { color: #c1c9d1 } input.gn-search { position: relative; z-index: 10; padding-left: 60px; outline: none; border: none; background: transparent; color: #eb5d1e; font-weight: 300; font-family: 'Lato', Arial, sans-serif; cursor: pointer; } /* placeholder */ .gn-search::-webkit-input-placeholder { color: #eb5d1e } .gn-search:-moz-placeholder { color: #eb5d1e } .gn-search::-moz-placeholder { color: #eb5d1e } .gn-search:-ms-input-placeholder { color: #eb5d1e } /* hide placeholder when active in Chrome */ .gn-search:focus::-webkit-input-placeholder, .no-touch .gn-menu li.gn-search-item:hover .gn-search:focus::-webkit-input-placeholder { color: transparent } input.gn-search:focus { cursor: text } .no-touch .gn-menu li.gn-search-item:hover input.gn-search { color: white } /* placeholder */ .no-touch .gn-menu li.gn-search-item:hover .gn-search::-webkit-input-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search:-moz-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search::-moz-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search:-ms-input-placeholder { color: white } .gn-menu-main a.gn-icon-search { position: absolute; top: 0; left: 0; height: 60px; } .gn-icon::before { display: inline-block; width: 60px; text-align: center; text-transform: none; font-weight: normal; font-style: normal; font-variant: normal; font-family: 'ecoicons'; line-height: 1; speak: none; -webkit-font-smoothing: antialiased; } .gn-icon-help::before { content: "\e000" } .gn-icon-earth::before { content: "\e004" } .gn-icon-cog::before { content: "\e006" } .gn-icon-search::before { content: "\e005" } .gn-icon-download::before { content: "\e007" } .gn-icon-photoshop::before { content: "\e001" } .gn-icon-illustrator::before { content: "\e002" } .gn-icon-archive::before { content: "\e00d" } .gn-icon-article::before { content: "\e003" } .gn-icon-pictures::before { content: "\e008" } .gn-icon-videos::before { content: "\e009" } /* if an icon anchor has a span, hide the span */ .gn-icon span { width: 0; height: 0; display: block; overflow: hidden; } .gn-icon-menu::before { margin-left: -15px; vertical-align: -2px; width: 30px; height: 3px; background: #eb5d1e; box-shadow: 0 3px white, 0 -6px #eb5d1e, 0 -9px white, 0 -12px #eb5d1e; content: ''; } .no-touch .gn-icon-menu:hover::before, .no-touch .gn-icon-menu.gn-selected:hover::before { background: white; box-shadow: 0 3px #eb5d1e, 0 -6px white, 0 -9px #eb5d1e, 0 -12px white; } .gn-icon-menu.gn-selected::before { background: #eb5d1e; box-shadow: 0 3px white, 0 -6px #eb5d1e, 0 -9px white, 0 -12px #eb5d1e; } /* styles for opening menu */ .gn-menu-wrapper.gn-open-all, .gn-menu-wrapper.gn-open-part { -webkit-transform: translateX(0px); -moz-transform: translateX(0px); transform: translateX(0px); } .gn-menu-wrapper.gn-open-all { width: 340px } .gn-menu-wrapper.gn-open-all .gn-submenu li { height: 60px } @media screen and (max-width: 422px) { .gn-menu-wrapper.gn-open-all { -webkit-transform: translateX(0px); -moz-transform: translateX(0px); transform: translateX(0px); width: 100%; } .gn-menu-wrapper.gn-open-all .gn-scroller { width: 130% } } #sidebar ul{ display: inline; } /* =========================== --- Intro ============================ */ .intro { width:100%; position:relative; } #intro{ background-image: url(../img/img-bg.jpg); background-size: cover; } .intro .slogan { padding:250px 0 60px; text-align: center; } .intro .slogan h1 { color: #fff; line-height: 1.1em; margin-bottom: 20px; font-size: 40px; } .intro .slogan p { color: #eee; margin-bottom: 50px; font-size: 20px; } .brand-heading { font-size: 40px; } .intro-text { font-size: 18px; } /* slider */ .tp-caption.custom_large_white { color: #FFF; text-shadow: none; font-size: 60px; line-height: 60px; font-weight: 700; font-family: Montserrat, sans-serif; background-color: rgba(0, 0, 0, 0); text-decoration: none; text-transform: uppercase; border-width: 0px; border-color: #000; border-style: none; } .tp-caption a.btn { color: #fff; } /* =========================== --- About ============================ */ .boxed-grey { background: #eee; padding: 20px; } .team h5 { margin-bottom: 10px; } .team p.subtitle { margin-bottom: 10px; } .avatar { margin-bottom: 20px; } .team-social { margin-left: 0; padding-left: 0; } .team-social { text-align: center; } .team-social li{ display: inline-block; margin:0 !important; padding:0; } .team-social a{ margin:0; padding:0; display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; background: #3bbec0; color: #fff; -webkit-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .team-social a i{ text-align: center; margin:0; padding:0; } .team-social .social-facebook a{background: #3873ae;} .team-social .social-twitter a{background: #62c6f8;} .team-social .social-dribble a{background: #d74980;} .team-social .social-deviantart a{background: #8da356;} .team-social .social-google a{background: #000;} .team-social .social-vimeo a{background: #51a6d3;} .team-social .social-facebook a:hover{background: #4893ce;} .team-social .social-twitter a:hover{background: #82e6ff;} .team-social .social-dribble a:hover{background: #f769a0;} .team-social .social-deviantart a:hover{background: #adc376;} .team-social .social-google a:hover{background: #333;} .team-social .social-vimeo a:hover{background: #71c6f3;} /* =========================== --- Services ============================ */ .service-icon { margin-bottom: 20px; } /* =========================== --- Works ============================ */ .gallery-item > div { margin-bottom: 30px; } /* =========================== --- Contact ============================ */ form#contact-form .form-group label { text-align: left !important; display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; } form#contact-form input,form#contact-form select,form#contact-form textarea { border-radius: 0; border: 1px solid #eee; -webkit-box-shadow: none; box-shadow: none; } form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus { -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); box-shadow: 0 1px 2px rgba(0, 0, 0, .05); } .input-group-addon { background-color: #fefefe; border: 1px solid #eee; border-radius: 0; } .widget-contact { text-align: left; margin-top: 30px; } .company-social { margin-left: 0; padding-left: 0; margin-top: 10px; } .company-social { text-align: left; } .company-social li{ display: inline-block; margin:0 !important; padding:0; } .company-social a{ margin:0; padding:0; display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; background: #3bbec0; color: #fff; -webkit-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .company-social a i{ text-align: center; margin:0; padding:0; } .company-social .social-facebook a{background: #3873ae;} .company-social .social-twitter a{background: #62c6f8;} .company-social .social-dribble a{background: #d74980;} .company-social .social-deviantart a{background: #8da356;} .company-social .social-google a{background: #000;} .company-social .social-vimeo a{background: #51a6d3;} .company-social .social-facebook a:hover{background: #4893ce;} .company-social .social-twitter a:hover{background: #82e6ff;} .company-social .social-dribble a:hover{background: #f769a0;} .company-social .social-deviantart a:hover{background: #adc376;} .company-social .social-google a:hover{background: #333;} .company-social .social-vimeo a:hover{background: #71c6f3;} /* =========================== --- Footer ============================ */ footer { text-align: center; padding: 50px 0 ; } footer p { color: #f8f8f8; } footer a { color: #fefefe; } footer a:hover { color: #fff; } /* =========================== --- Elements ============================ */ .btn { border-radius: 0; text-transform: uppercase; font-family: Montserrat,sans-serif; font-weight: 400; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } .btn-circle { width: 70px; height: 70px; margin-top: 15px; padding: 7px 16px; border: 2px solid #fff; border-radius: 50%; font-size: 40px; color: #fff; background: 0 0; -webkit-transition: background .3s ease-in-out; -moz-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .btn-circle.btn-dark { border: 2px solid #666; color: #666; } .btn-circle:hover, .btn-circle:focus { outline: 0; color: #fff; background: rgba(255,255,255,.1); } .btn-circle.btn-dark :hover, .btn-circle.btn-dark :focus { outline: 0; color: #999; background: #fff; } .btn-circle.btn-dark :hover i, .btn-circle.btn-dark :focus i{ color: #999; } .page-scroll .btn-circle i.animated { -webkit-transition-property: -webkit-transform; -webkit-transition-duration: 1s; -moz-transition-property: -moz-transform; -moz-transition-duration: 1s; } .page-scroll .btn-circle:hover i.animated { -webkit-animation-name: pulse; -moz-animation-name: pulse; -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-timing-function: linear; } @-webkit-keyframes pulse { 0 { -webkit-transform: scale(1); transform: scale(1); } 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @-moz-keyframes pulse { 0 { -moz-transform: scale(1); transform: scale(1); } 50% { -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -moz-transform: scale(1); transform: scale(1); } } #text { color: #fff; background: #ffcc00; } #map { height: 500px; } .btn-skin:hover, .btn-skin:focus, .btn-skin:active, .btn-skin.active { color: #fff; background-color: #666; border-color: #666; } .btn-default:hover, .btn-default:focus { border: 1px solid #28c3ab; outline: 0; color: #000; background-color: #28c3ab; } .btn-huge { padding: 25px; font-size: 26px; } .banner-social-buttons { margin-top: 0; } /* Media queries */ @media(min-width:767px) { .intro { height: 100%; padding: 0; } .brand-heading { font-size: 100px; } .intro-text { font-size: 25px; } } @media (max-width:768px) { .team.boxed-grey { margin-bottom: 30px; } .boxed-grey { margin-bottom: 30px; } .intro .slogan { padding:100px 0 60px; } } @media (max-width:480px) { .intro .slogan { padding:170px 0 60px; } }
assets/bootstrap/css/style.css
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic'); body { width: 100%; height: 100%; font-family: 'Lato',sans-serif; font-weight: 300; color: #666; background-color: #fff; } html { width: 100%; height: 100%; } h1, h2, h3, h4, h5, h6 { margin: 0 0 30px; text-transform: uppercase; font-family: Montserrat,sans-serif; font-weight: 700; letter-spacing: 1px; text-align: center; } p { margin: 0 0 20px; font-size: 16px; line-height: 1.6em; text-align: center; } p.lead { font-weight: 600; } a { color: #28c3ab; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } a:hover, a:focus { text-decoration: none; color: #176e61; } .light { font-weight: 400; } address { margin-left: 0; padding: 0; } /* misc */ hr { margin-top: 10px; } /* margins */ .marginbot-0{margin-bottom:0 !important;} .marginbot-10{margin-bottom:10px !important;} .marginbot-20{margin-bottom:20px !important;} .marginbot-30{margin-bottom:30px !important;} .marginbot-40{margin-bottom:40px !important;} .marginbot-50{margin-bottom:50px !important;} /* =========================== --- General sections ============================ */ .home-section { padding-top: 110px; padding-bottom: 110px; display:block; position:relative; z-index:120; } .section-heading h2 { font-size: 40px; } .section-heading i { margin-bottom: 20px; } /* --- section bg var --- */ .bg-white { background: #fff; } .bg-gray { background: #f8f8f8; } .bg-dark { background: #575757; } /* --- section color var --- */ .text-light { color: #fff; } /* ============================ --- Menu ============================= */ @font-face { font-weight: normal; font-style: normal; font-family: 'ecoicons'; src: url("../fonts/ecoicons/ecoicons.eot"); src: url("../fonts/ecoicons/ecoicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ecoicons/ecoicons.woff") format("woff"), url("../fonts/ecoicons/ecoicons.ttf") format("truetype"), url("../fonts/ecoicons/ecoicons.svg#ecoicons") format("svg"); } .gn-menu-main, .gn-menu-main ul { margin: 0; padding: 0; background: #fff; color: #eb5d1e; list-style: none; text-transform: none; font-weight: 300; font-family: 'Lato', Arial, sans-serif; line-height: 60px; z-index:150; } .gn-menu-main { position: fixed; top: 0; left: 0; width: 100%; height: 60px; font-size: 13px; } .gn-menu-main a { display: block; height: 100%; color: #eb5d1e; text-decoration: none; cursor: pointer; } .no-touch .gn-menu-main a:hover, .no-touch .gn-menu li.gn-search-item:hover, .no-touch .gn-menu li.gn-search-item:hover a { background: #eb5d1e; color: white; } .gn-menu-main > li { display: block; float: left; height: 100%; border-right: 1px solid #c6d0da; text-align: center; } /* icon-only trigger (menu item) */ .gn-menu-main li.gn-trigger { position: relative; width: 60px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .gn-menu-main > li:last-child { float: right; border-right: none; } .gn-menu-main > li > a { padding: 0 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; } .gn-menu-main:after { display: table; clear: both; content: ""; } .gn-menu-wrapper { position: fixed; top: 60px; bottom: 0; left: 0; overflow: hidden; width: 60px; border-top: 1px solid #c6d0da; background: white; -webkit-transform: translateX(-60px); -moz-transform: translateX(-60px); transform: translateX(-60px); -webkit-transition: -webkit-transform 0.3s, width 0.3s; -moz-transition: -moz-transform 0.3s, width 0.3s; transition: transform 0.3s, width 0.3s; } .gn-scroller { position: absolute; overflow-y: scroll; width: 370px; height: 100%; } .gn-menu { border-bottom: 1px solid #c6d0da; text-align: left; font-size: 18px; } .gn-menu li:not(:first-child), .gn-menu li li { box-shadow: inset 0 1px #c6d0da } .gn-submenu li { overflow: hidden; height: 0; -webkit-transition: height 0.3s; -moz-transition: height 0.3s; transition: height 0.3s; } .gn-submenu li a { color: #c1c9d1 } input.gn-search { position: relative; z-index: 10; padding-left: 60px; outline: none; border: none; background: transparent; color: #eb5d1e; font-weight: 300; font-family: 'Lato', Arial, sans-serif; cursor: pointer; } /* placeholder */ .gn-search::-webkit-input-placeholder { color: #eb5d1e } .gn-search:-moz-placeholder { color: #eb5d1e } .gn-search::-moz-placeholder { color: #eb5d1e } .gn-search:-ms-input-placeholder { color: #eb5d1e } /* hide placeholder when active in Chrome */ .gn-search:focus::-webkit-input-placeholder, .no-touch .gn-menu li.gn-search-item:hover .gn-search:focus::-webkit-input-placeholder { color: transparent } input.gn-search:focus { cursor: text } .no-touch .gn-menu li.gn-search-item:hover input.gn-search { color: white } /* placeholder */ .no-touch .gn-menu li.gn-search-item:hover .gn-search::-webkit-input-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search:-moz-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search::-moz-placeholder { color: white } .no-touch .gn-menu li.gn-search-item:hover .gn-search:-ms-input-placeholder { color: white } .gn-menu-main a.gn-icon-search { position: absolute; top: 0; left: 0; height: 60px; } .gn-icon::before { display: inline-block; width: 60px; text-align: center; text-transform: none; font-weight: normal; font-style: normal; font-variant: normal; font-family: 'ecoicons'; line-height: 1; speak: none; -webkit-font-smoothing: antialiased; } .gn-icon-help::before { content: "\e000" } .gn-icon-earth::before { content: "\e004" } .gn-icon-cog::before { content: "\e006" } .gn-icon-search::before { content: "\e005" } .gn-icon-download::before { content: "\e007" } .gn-icon-photoshop::before { content: "\e001" } .gn-icon-illustrator::before { content: "\e002" } .gn-icon-archive::before { content: "\e00d" } .gn-icon-article::before { content: "\e003" } .gn-icon-pictures::before { content: "\e008" } .gn-icon-videos::before { content: "\e009" } /* if an icon anchor has a span, hide the span */ .gn-icon span { width: 0; height: 0; display: block; overflow: hidden; } .gn-icon-menu::before { margin-left: -15px; vertical-align: -2px; width: 30px; height: 3px; background: #eb5d1e; box-shadow: 0 3px white, 0 -6px #eb5d1e, 0 -9px white, 0 -12px #eb5d1e; content: ''; } .no-touch .gn-icon-menu:hover::before, .no-touch .gn-icon-menu.gn-selected:hover::before { background: white; box-shadow: 0 3px #eb5d1e, 0 -6px white, 0 -9px #eb5d1e, 0 -12px white; } .gn-icon-menu.gn-selected::before { background: #eb5d1e; box-shadow: 0 3px white, 0 -6px #eb5d1e, 0 -9px white, 0 -12px #eb5d1e; } /* styles for opening menu */ .gn-menu-wrapper.gn-open-all, .gn-menu-wrapper.gn-open-part { -webkit-transform: translateX(0px); -moz-transform: translateX(0px); transform: translateX(0px); } .gn-menu-wrapper.gn-open-all { width: 340px } .gn-menu-wrapper.gn-open-all .gn-submenu li { height: 60px } @media screen and (max-width: 422px) { .gn-menu-wrapper.gn-open-all { -webkit-transform: translateX(0px); -moz-transform: translateX(0px); transform: translateX(0px); width: 100%; } .gn-menu-wrapper.gn-open-all .gn-scroller { width: 130% } } #sidebar ul{ display: inline; } /* =========================== --- Intro ============================ */ .intro { width:100%; position:relative; } #intro{ background-image: url(../img/img-bg.jpg); background-size: cover; } .intro .slogan { padding:250px 0 60px; text-align: center; } .intro .slogan h1 { color: #fff; line-height: 1.1em; margin-bottom: 20px; font-size: 40px; } .intro .slogan p { color: #eee; margin-bottom: 50px; font-size: 20px; } .brand-heading { font-size: 40px; } .intro-text { font-size: 18px; } /* slider */ .tp-caption.custom_large_white { color: #FFF; text-shadow: none; font-size: 60px; line-height: 60px; font-weight: 700; font-family: Montserrat, sans-serif; background-color: rgba(0, 0, 0, 0); text-decoration: none; text-transform: uppercase; border-width: 0px; border-color: #000; border-style: none; } .tp-caption a.btn { color: #fff; } /* =========================== --- About ============================ */ .boxed-grey { background: #eee; padding: 20px; } .team h5 { margin-bottom: 10px; } .team p.subtitle { margin-bottom: 10px; } .avatar { margin-bottom: 20px; } .team-social { margin-left: 0; padding-left: 0; } .team-social { text-align: center; } .team-social li{ display: inline-block; margin:0 !important; padding:0; } .team-social a{ margin:0; padding:0; display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; background: #3bbec0; color: #fff; -webkit-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .team-social a i{ text-align: center; margin:0; padding:0; } .team-social .social-facebook a{background: #3873ae;} .team-social .social-twitter a{background: #62c6f8;} .team-social .social-dribble a{background: #d74980;} .team-social .social-deviantart a{background: #8da356;} .team-social .social-google a{background: #000;} .team-social .social-vimeo a{background: #51a6d3;} .team-social .social-facebook a:hover{background: #4893ce;} .team-social .social-twitter a:hover{background: #82e6ff;} .team-social .social-dribble a:hover{background: #f769a0;} .team-social .social-deviantart a:hover{background: #adc376;} .team-social .social-google a:hover{background: #333;} .team-social .social-vimeo a:hover{background: #71c6f3;} /* =========================== --- Services ============================ */ .service-icon { margin-bottom: 20px; } /* =========================== --- Works ============================ */ .gallery-item > div { margin-bottom: 30px; } /* =========================== --- Contact ============================ */ form#contact-form .form-group label { text-align: left !important; display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; } form#contact-form input,form#contact-form select,form#contact-form textarea { border-radius: 0; border: 1px solid #eee; -webkit-box-shadow: none; box-shadow: none; } form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus { -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); box-shadow: 0 1px 2px rgba(0, 0, 0, .05); } .input-group-addon { background-color: #fefefe; border: 1px solid #eee; border-radius: 0; } .widget-contact { text-align: left; margin-top: 30px; } .company-social { margin-left: 0; padding-left: 0; margin-top: 10px; } .company-social { text-align: left; } .company-social li{ display: inline-block; margin:0 !important; padding:0; } .company-social a{ margin:0; padding:0; display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; background: #3bbec0; color: #fff; -webkit-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .company-social a i{ text-align: center; margin:0; padding:0; } .company-social .social-facebook a{background: #3873ae;} .company-social .social-twitter a{background: #62c6f8;} .company-social .social-dribble a{background: #d74980;} .company-social .social-deviantart a{background: #8da356;} .company-social .social-google a{background: #000;} .company-social .social-vimeo a{background: #51a6d3;} .company-social .social-facebook a:hover{background: #4893ce;} .company-social .social-twitter a:hover{background: #82e6ff;} .company-social .social-dribble a:hover{background: #f769a0;} .company-social .social-deviantart a:hover{background: #adc376;} .company-social .social-google a:hover{background: #333;} .company-social .social-vimeo a:hover{background: #71c6f3;} /* =========================== --- Footer ============================ */ footer { text-align: center; padding: 50px 0 ; } footer p { color: #f8f8f8; } footer a { color: #fefefe; } footer a:hover { color: #fff; } /* =========================== --- Elements ============================ */ .btn { border-radius: 0; text-transform: uppercase; font-family: Montserrat,sans-serif; font-weight: 400; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } .btn-circle { width: 70px; height: 70px; margin-top: 15px; padding: 7px 16px; border: 2px solid #fff; border-radius: 50%; font-size: 40px; color: #fff; background: 0 0; -webkit-transition: background .3s ease-in-out; -moz-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .btn-circle.btn-dark { border: 2px solid #666; color: #666; } .btn-circle:hover, .btn-circle:focus { outline: 0; color: #fff; background: rgba(255,255,255,.1); } .btn-circle.btn-dark :hover, .btn-circle.btn-dark :focus { outline: 0; color: #999; background: #fff; } .btn-circle.btn-dark :hover i, .btn-circle.btn-dark :focus i{ color: #999; } .page-scroll .btn-circle i.animated { -webkit-transition-property: -webkit-transform; -webkit-transition-duration: 1s; -moz-transition-property: -moz-transform; -moz-transition-duration: 1s; } .page-scroll .btn-circle:hover i.animated { -webkit-animation-name: pulse; -moz-animation-name: pulse; -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-timing-function: linear; } @-webkit-keyframes pulse { 0 { -webkit-transform: scale(1); transform: scale(1); } 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @-moz-keyframes pulse { 0 { -moz-transform: scale(1); transform: scale(1); } 50% { -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -moz-transform: scale(1); transform: scale(1); } } #text { color: #fff; background: #ffcc00; } #map { height: 500px; } .btn-skin:hover, .btn-skin:focus, .btn-skin:active, .btn-skin.active { color: #fff; background-color: #666; border-color: #666; } .btn-default:hover, .btn-default:focus { border: 1px solid #28c3ab; outline: 0; color: #000; background-color: #28c3ab; } .btn-huge { padding: 25px; font-size: 26px; } .banner-social-buttons { margin-top: 0; } /* Media queries */ @media(min-width:767px) { .intro { height: 100%; padding: 0; } .brand-heading { font-size: 100px; } .intro-text { font-size: 25px; } } @media (max-width:768px) { .team.boxed-grey { margin-bottom: 30px; } .boxed-grey { margin-bottom: 30px; } .intro .slogan { padding:100px 0 60px; } } @media (max-width:480px) { .intro .slogan { padding:170px 0 60px; } }
0.187504
0.041076
.col0 { color: hsla(0, 0%, 100%, .6); } .col1, .col1b, .col1b:hover, .indexboy a, .intro-wrap .info-wrap a, .index .themes, .index .pop_top, .index .rec-list_2b8oe, .index .rec-list_2b8oe a { color: hsla(0, 0%, 100%, .87); } .col2, .col2b, .index .hot-item, .col2:hover { color: rgba(255, 255, 255, 0.6) !important; } .col3 { color: rgba(255, 255, 255, 0.380392); } .col4, .index .col04 { color: hsla(0, 0%, 100%, .5); } .pack-ykpack:hover a, .active, .blue, .col5b:hover, .col1:hover, .col2b:hover, .content_playlist li a:hover, .intro-wrap .info-wrap a:hover, .index .rec-list_2b8oe a:hover { color: #0d9bff !important; } .col5, .col5b { color: #222; } .col6, .col04 { color: #999; } .col7 { color: hsla(0, 0%, 100%, .14); } .col8 { color: #dfdfdf; } .col9 { color: #18191e; } .orange, .loadia1, .ec-rank1 { color: #ff7256 !important } .mauve, .loadia0, .loadia3, .ec-rank2 { color: #fc4274 !important } .yellow, .loadia2, .ec-rank3 { color: #fcb80a !important } .box, .mac_results { background-color: #fff; -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1); z-index: 8888; box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .3); border-radius: 4px } .button, .content_detail .playbtn.o_bg a { border: 0; background-image: -webkit-linear-gradient(135deg, #00d3ff, #00b7ff); background-image: -o-linear-gradient(135deg, #00d3ff 0, #00b7ff 100%); background-image: linear-gradient(-45deg, #00d3ff, #00b7ff); background-repeat: repeat-x; color: #f3f4f7 !important } .button:hover, .palyconnt .swiper-slide .actorlist_box:hover { background: #00b7ff; } .coverbox { border-radius: 4px; background: #25252b; overflow: hidden } .triangle { width: 0; height: 0; border: 6px solid transparent; border-bottom-color: #fff; } .index { background: #191a20; } .index .ec-footer { border-top: none; } a:hover { color: #0d9bff; text-decoration: none; } .play_source_tab a.active:after, .pack-packtag, .fn-share-code-btn { background: #0d9bff !important } .ecblue, .comment .baffle .b-btn, .rat-list-left .subnav-l a:hover, .subnav-hover, .widget-title:before { background-color: #0d9bff !important } .index .hot-search-list .hot-item:hover, .ec-footer a:hover, .ec-footer span:hover { color: #0d9bff !important; }
template/ec_IQ/css/skin_1.css
.col0 { color: hsla(0, 0%, 100%, .6); } .col1, .col1b, .col1b:hover, .indexboy a, .intro-wrap .info-wrap a, .index .themes, .index .pop_top, .index .rec-list_2b8oe, .index .rec-list_2b8oe a { color: hsla(0, 0%, 100%, .87); } .col2, .col2b, .index .hot-item, .col2:hover { color: rgba(255, 255, 255, 0.6) !important; } .col3 { color: rgba(255, 255, 255, 0.380392); } .col4, .index .col04 { color: hsla(0, 0%, 100%, .5); } .pack-ykpack:hover a, .active, .blue, .col5b:hover, .col1:hover, .col2b:hover, .content_playlist li a:hover, .intro-wrap .info-wrap a:hover, .index .rec-list_2b8oe a:hover { color: #0d9bff !important; } .col5, .col5b { color: #222; } .col6, .col04 { color: #999; } .col7 { color: hsla(0, 0%, 100%, .14); } .col8 { color: #dfdfdf; } .col9 { color: #18191e; } .orange, .loadia1, .ec-rank1 { color: #ff7256 !important } .mauve, .loadia0, .loadia3, .ec-rank2 { color: #fc4274 !important } .yellow, .loadia2, .ec-rank3 { color: #fcb80a !important } .box, .mac_results { background-color: #fff; -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1); z-index: 8888; box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .3); border-radius: 4px } .button, .content_detail .playbtn.o_bg a { border: 0; background-image: -webkit-linear-gradient(135deg, #00d3ff, #00b7ff); background-image: -o-linear-gradient(135deg, #00d3ff 0, #00b7ff 100%); background-image: linear-gradient(-45deg, #00d3ff, #00b7ff); background-repeat: repeat-x; color: #f3f4f7 !important } .button:hover, .palyconnt .swiper-slide .actorlist_box:hover { background: #00b7ff; } .coverbox { border-radius: 4px; background: #25252b; overflow: hidden } .triangle { width: 0; height: 0; border: 6px solid transparent; border-bottom-color: #fff; } .index { background: #191a20; } .index .ec-footer { border-top: none; } a:hover { color: #0d9bff; text-decoration: none; } .play_source_tab a.active:after, .pack-packtag, .fn-share-code-btn { background: #0d9bff !important } .ecblue, .comment .baffle .b-btn, .rat-list-left .subnav-l a:hover, .subnav-hover, .widget-title:before { background-color: #0d9bff !important } .index .hot-search-list .hot-item:hover, .ec-footer a:hover, .ec-footer span:hover { color: #0d9bff !important; }
0.507568
0.229212
SCSS3 (c) 2011 Motion Média Inspired by http://css3please.com/ */ .clearfix { zoom: 1; } .clearfix:before, .clearfix:after { content: '.'; display: block; overflow: hidden; visibility: hidden; font-size: 0; line-height: 0; width: 0; height: 0; } .clearfix:after { clear: both; } .reset-box { margin: 0; padding: 0; } html.frontadmin { padding-bottom: 24px; } html.frontadmin.frontadmin-show-toolbars { margin-top: 30px; } html.frontadmin.frontadmin-show-toolbars .frontadmin-block-content { cursor: pointer; } .frontadmin-toolbar-frame { width: 100%; display: block; height: 24px; margin: 0; border: 1px solid #ccc; z-index: 100000; -webkit-box-shadow: 0 0 1px white; -moz-box-shadow: 0 0 1px white; box-shadow: 0 0 1px white; -moz-border-radius: 2px 2px 2px 2px; -webkit-border-radius: 2px 2px 2px 2px; border-radius: 2px 2px 2px 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -khtml-opacity: 0.55; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)"; filter: alpha(opacity=55); opacity: 0.55; display: none; } .frontadmin-show-toolbars .frontadmin-block:hover .frontadmin-toolbar-frame, .frontadmin-show-toolbars .frontadmin-toolbar-frame:hover { -khtml-opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; } .frontadmin-show-toolbars .frontadmin-toolbar-frame, .frontadmin-show-toolbars .frontadmin-block { display: block; } .frontadmin-show-toolbars .frontadmin-block *:hover .frontadmin-block-content, .frontadmin-show-toolbars .frontadmin-block:hover .frontadmin-block-content > * { /*background-color: #def!important;*/ background-color: rgba(1, 174, 240, 0.1) !important; } /* Main frontadmin bar */ #frontadmin-bar-frame { display: block; height: 30px; margin: 0; position: fixed; right: 0; top: 0; left: 0; z-index: 99999999; border: 0; -webkit-box-shadow: 0 0 1px white; -moz-box-shadow: 0 0 1px white; box-shadow: 0 0 1px white; } /* Editing popups */ #frontadmin-iframe-window { background: #222222 url(../img/loading.gif) no-repeat center center; border: 1px solid #555; -webkit-box-shadow: 0 0 100px white; -moz-box-shadow: 0 0 100px white; box-shadow: 0 0 100px white; -moz-border-radius: 3px 3px 3px 3px; -webkit-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #frontadmin-iframe-window iframe { -moz-border-radius: 3px 3px 3px 3px; -webkit-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #frontadmin-iframe-window.saving iframe { display: none; }
frontadmin/static/frontadmin/css/frontadmin.css
SCSS3 (c) 2011 Motion Média Inspired by http://css3please.com/ */ .clearfix { zoom: 1; } .clearfix:before, .clearfix:after { content: '.'; display: block; overflow: hidden; visibility: hidden; font-size: 0; line-height: 0; width: 0; height: 0; } .clearfix:after { clear: both; } .reset-box { margin: 0; padding: 0; } html.frontadmin { padding-bottom: 24px; } html.frontadmin.frontadmin-show-toolbars { margin-top: 30px; } html.frontadmin.frontadmin-show-toolbars .frontadmin-block-content { cursor: pointer; } .frontadmin-toolbar-frame { width: 100%; display: block; height: 24px; margin: 0; border: 1px solid #ccc; z-index: 100000; -webkit-box-shadow: 0 0 1px white; -moz-box-shadow: 0 0 1px white; box-shadow: 0 0 1px white; -moz-border-radius: 2px 2px 2px 2px; -webkit-border-radius: 2px 2px 2px 2px; border-radius: 2px 2px 2px 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -khtml-opacity: 0.55; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)"; filter: alpha(opacity=55); opacity: 0.55; display: none; } .frontadmin-show-toolbars .frontadmin-block:hover .frontadmin-toolbar-frame, .frontadmin-show-toolbars .frontadmin-toolbar-frame:hover { -khtml-opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; } .frontadmin-show-toolbars .frontadmin-toolbar-frame, .frontadmin-show-toolbars .frontadmin-block { display: block; } .frontadmin-show-toolbars .frontadmin-block *:hover .frontadmin-block-content, .frontadmin-show-toolbars .frontadmin-block:hover .frontadmin-block-content > * { /*background-color: #def!important;*/ background-color: rgba(1, 174, 240, 0.1) !important; } /* Main frontadmin bar */ #frontadmin-bar-frame { display: block; height: 30px; margin: 0; position: fixed; right: 0; top: 0; left: 0; z-index: 99999999; border: 0; -webkit-box-shadow: 0 0 1px white; -moz-box-shadow: 0 0 1px white; box-shadow: 0 0 1px white; } /* Editing popups */ #frontadmin-iframe-window { background: #222222 url(../img/loading.gif) no-repeat center center; border: 1px solid #555; -webkit-box-shadow: 0 0 100px white; -moz-box-shadow: 0 0 100px white; box-shadow: 0 0 100px white; -moz-border-radius: 3px 3px 3px 3px; -webkit-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #frontadmin-iframe-window iframe { -moz-border-radius: 3px 3px 3px 3px; -webkit-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } #frontadmin-iframe-window.saving iframe { display: none; }
0.245085
0.107157
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { /* TODO(dbeam): remove this soon. Prefer dir= in HTML. */ direction: ltr; background-color: #f7f7f7; box-sizing: border-box; min-height: 100vh; /*min-height: 100%; 取消同步竖滚动条*/ -webkit-overflow-scrolling: touch; overflow: auto; /*窗口滚动条自动出现*/ height: 100%; } body { margin: 0; font-family: Roboto, 'Segoe UI', Arial, 'Microsoft Yahei', sans-serif; font-size: 81.25%; } .profile, .footer-content { width: 80%; margin: 0 auto; } .projects-wrap{ width: 80%; margin: 0 auto; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select { padding: 6px 12px; border-radius: 0px; font-size: 0.875rem; letter-spacing: 0px; font-weight: 600; -webkit-box-shadow: none; box-shadow: none; color: #6a6a6a; background: #fff; background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); border: 1px solid #e9e9e9; display: block; width: 100%; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select { height: 45px; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } /* ↑ 主体 */ /* ↓ 个体 */ a { text-decoration: none; color: #2b3f55; transition: all 0.2s ease-in-out; } a:hover { color: #f8504b; transition: all 0.2s ease-in-out; } /*第一分区开始*/ .header { background-color: #fff; width: 100%; } .profile { max-width: 1250px; padding: 80px 20px; margin: 0 auto; box-sizing: border-box; } .profile h1 img { height: 2.1875rem; vertical-align: middle; position: relative; top: -5px; margin-right: 2px; } .projects-wrap { margin: 1.5625rem auto 0; } .projects-wrap { flex-grow: 1; margin: 1.5625rem auto; } @media (min-width:820px) { .w-8 { width: 800px; } .projects.jstc-c { justify-content: center; } } .profile h1 { font-weight: bolder; font-size: 2.1875rem; } .profile .links { margin: 20px 0; } .profile h1 { font-weight: bolder; } .links img { width: 22px; margin-right: 1.3em; } .links img:hover { opacity: 0.7; filter: alpha(opacity=70); } input[type="submit"], input[type="reset"]{ border: 0; background-color: #f8504b; color: #ffffff; font-size: 0.938rem; display: inline-block; border-radius: 50px; padding: 10px 40px; margin: 0px; transition: all 0.3s ease-in-out; outline: none; -webkit-appearance: button; cursor: pointer; } input[type="submit"]:hover, input[type="reset"]:hover, label[for="fuzzy"]:hover{ font-weight: bolder; } input[type="submit"]:active, input[type="reset"]:active { color: #f8504b; background-color: white; cursor: pointer; position: relative; transform: scale(1.08, 1.08); transition: all 300ms; } input#fuzzy { display: none; } label[for="fuzzy"]{ border: 0; background-color: #f8504b66; color: #ffffff; font-size: 0.938rem; display: inline-block; border-radius: 50px; padding: 10px 40px; margin: 0px; transition: all 0.3s ease-in-out; outline: none; -webkit-appearance: button; cursor: pointer; -webkit-tap-highlight-color: transparent; outline: none; } label[for="fuzzy"].checked{ background-color: #f8504b; } .search-examples strong { cursor: default; display: inline-block; margin-right: .8em; } .search-examples a { cursor: pointer; display: inline-block; margin-right: .8em; } .search-examples a:hover, .search-examples a:active{ color: #2b3f55; text-decoration: underline; } /*第一分区结束*/ /*第三分区开始*/ span#result_count { margin: 4px; } .result_count { max-width: 1250px; padding: 0px 20px; margin: 0 auto 15px auto; box-sizing: border-box; } .projects-wrap h2 { margin-bottom: 30px; font-size: 1.3em; } .projects { display: flex; flex-wrap: wrap; justify-content: space-between; min-height: 90px; } .projects div { transition: transform 0.5s, box-shadow 0.5s; } .projects div.project { transition: all 300ms linear; } .projects div.project:hover { background-color: #f8504b66; position: relative; transform: scale(1.1); box-shadow: 0px 5px 10px 0px #999; transition: all 100ms linear; } .projects div.project:hover .imgHolder i { text-shadow: 2px 2px #f8504b; transition: all 100ms linear; } .imgHolder { width: auto; height: 80px; position: relative; cursor: pointer; } .project img { min-width: 50px; width: auto; max-width: 100%; border-radius: 4px; margin: 0 auto; height: inherit; display: block; object-fit: cover; } .project .cover img { object-fit: cover; } .project { height: 100%; width: auto; background-color: #fff; padding: 3px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); border-radius: 5px; transition: all 300ms linear; margin: 4px 4px; } .profile a { width: -webkit-fit-content; } .project h3 { font-weight: bold; margin-top: 10px; margin-bottom: 0; font-size: 1.3em; } .project p { margin-top: 5px; margin-bottom: 0; font-weight: 200; transition: all 300ms; position: absolute; display: none; } p.desc { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; max-height: 36px; transition: all 300ms linear; } .projects div.project:hover>p.desc { display: block; max-height: 90px; -webkit-line-clamp: 6; transition: all 300ms linear; } .project span { font-weight: 200; margin-right: 10px; } .imgHolder i { position: absolute; top: -3px; left: 2px; color: white; text-shadow: 2px 2px black; font-size: 1.5rem; font-weight: bolder; z-index: 99; } /*第三分区结束*/ /*第四分区开始*/ footer { background-color: #fff; padding: 0; margin: 0; width: 100%; box-shadow: 0 -2px 8px #eee; } .footer-content { max-width: 1250px; margin: 0 auto; padding: 30px 20px; display: flex; flex-wrap: nowrap; justify-content: space-between; box-sizing: border-box; } .site-info, .cc-footer-license { color: #aaabab; } .site-info { text-align: left; line-height: 190%; } .site-info a, .cc-footer-license a { color: #aaabab; } .site-info a:hover, .cc-footer-license a:hover { color: #ea4c89; } /*第四分区结束*/ /* ↓ 全局淡入效果 */ .fade-in { animation-delay: 150ms; animation-duration: 200ms; animation-fill-mode: forwards; animation-name: fade-in; animation-timing-function: ease-in; opacity: 0; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } /* ↑ 全局淡入效果 */ :host { bottom: 0; left: 0; margin: auto; overflow: hidden; position: absolute; right: 0; top: 0; z-index: -1; } /* ↑ 浮动元素*/ /*响应式设计*/ @media (max-width:820px) { .profile, .info, .footer-content { width: 90%; } .projects-wrap { width: 95%; } .info { display: block; flex-wrap: wrap; padding: 70px 0; } .info div { margin-bottom: 50px; } .footer-content { margin: 0 auto; padding: 50px 20px; /*上下外边距*/ display: block; } .footer-content .site-info, .cc-footer-license { margin-bottom: 20px; width: 100%; } .header { width: 100%; } .project { max-width: 350px; margin-right: auto; margin-left: auto; margin-bottom: 8px; } .projects { padding: unset; } #blue-circle { left: calc(32% - 50px); top: calc(22% - 26px); } #yellow-dots { left: 32%; top: 22%; } #green-rectangle { right: 16px; } #red-triangle { bottom: 8%; left: 28%; } } /*返回顶部开始*/ .scroll-up { background-color: #f8504b; color: #ffffff; transition: transform 0.5s; border-radius: 50px; bottom: 30px; padding: 3px; display: none; height: 50px; opacity: 1; position: fixed; right: 30px; text-align: center; width: 50px; overflow: hidden; z-index: 9999; line-height: 2.5; color: #ffffff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3); } .scroll-up:hover, .scroll-up:focus { background-color: #f8504b; color: #ffffff; transform: scale(1.1, 1.1); transition: all 100ms; } @media (max-width: 992px) { .scroll-up { bottom: 70px; right: 40px; width: 45px; height: 45px; } } /*返回顶部结束*/
css/master.css
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { /* TODO(dbeam): remove this soon. Prefer dir= in HTML. */ direction: ltr; background-color: #f7f7f7; box-sizing: border-box; min-height: 100vh; /*min-height: 100%; 取消同步竖滚动条*/ -webkit-overflow-scrolling: touch; overflow: auto; /*窗口滚动条自动出现*/ height: 100%; } body { margin: 0; font-family: Roboto, 'Segoe UI', Arial, 'Microsoft Yahei', sans-serif; font-size: 81.25%; } .profile, .footer-content { width: 80%; margin: 0 auto; } .projects-wrap{ width: 80%; margin: 0 auto; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select { padding: 6px 12px; border-radius: 0px; font-size: 0.875rem; letter-spacing: 0px; font-weight: 600; -webkit-box-shadow: none; box-shadow: none; color: #6a6a6a; background: #fff; background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); border: 1px solid #e9e9e9; display: block; width: 100%; } input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select { height: 45px; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } /* ↑ 主体 */ /* ↓ 个体 */ a { text-decoration: none; color: #2b3f55; transition: all 0.2s ease-in-out; } a:hover { color: #f8504b; transition: all 0.2s ease-in-out; } /*第一分区开始*/ .header { background-color: #fff; width: 100%; } .profile { max-width: 1250px; padding: 80px 20px; margin: 0 auto; box-sizing: border-box; } .profile h1 img { height: 2.1875rem; vertical-align: middle; position: relative; top: -5px; margin-right: 2px; } .projects-wrap { margin: 1.5625rem auto 0; } .projects-wrap { flex-grow: 1; margin: 1.5625rem auto; } @media (min-width:820px) { .w-8 { width: 800px; } .projects.jstc-c { justify-content: center; } } .profile h1 { font-weight: bolder; font-size: 2.1875rem; } .profile .links { margin: 20px 0; } .profile h1 { font-weight: bolder; } .links img { width: 22px; margin-right: 1.3em; } .links img:hover { opacity: 0.7; filter: alpha(opacity=70); } input[type="submit"], input[type="reset"]{ border: 0; background-color: #f8504b; color: #ffffff; font-size: 0.938rem; display: inline-block; border-radius: 50px; padding: 10px 40px; margin: 0px; transition: all 0.3s ease-in-out; outline: none; -webkit-appearance: button; cursor: pointer; } input[type="submit"]:hover, input[type="reset"]:hover, label[for="fuzzy"]:hover{ font-weight: bolder; } input[type="submit"]:active, input[type="reset"]:active { color: #f8504b; background-color: white; cursor: pointer; position: relative; transform: scale(1.08, 1.08); transition: all 300ms; } input#fuzzy { display: none; } label[for="fuzzy"]{ border: 0; background-color: #f8504b66; color: #ffffff; font-size: 0.938rem; display: inline-block; border-radius: 50px; padding: 10px 40px; margin: 0px; transition: all 0.3s ease-in-out; outline: none; -webkit-appearance: button; cursor: pointer; -webkit-tap-highlight-color: transparent; outline: none; } label[for="fuzzy"].checked{ background-color: #f8504b; } .search-examples strong { cursor: default; display: inline-block; margin-right: .8em; } .search-examples a { cursor: pointer; display: inline-block; margin-right: .8em; } .search-examples a:hover, .search-examples a:active{ color: #2b3f55; text-decoration: underline; } /*第一分区结束*/ /*第三分区开始*/ span#result_count { margin: 4px; } .result_count { max-width: 1250px; padding: 0px 20px; margin: 0 auto 15px auto; box-sizing: border-box; } .projects-wrap h2 { margin-bottom: 30px; font-size: 1.3em; } .projects { display: flex; flex-wrap: wrap; justify-content: space-between; min-height: 90px; } .projects div { transition: transform 0.5s, box-shadow 0.5s; } .projects div.project { transition: all 300ms linear; } .projects div.project:hover { background-color: #f8504b66; position: relative; transform: scale(1.1); box-shadow: 0px 5px 10px 0px #999; transition: all 100ms linear; } .projects div.project:hover .imgHolder i { text-shadow: 2px 2px #f8504b; transition: all 100ms linear; } .imgHolder { width: auto; height: 80px; position: relative; cursor: pointer; } .project img { min-width: 50px; width: auto; max-width: 100%; border-radius: 4px; margin: 0 auto; height: inherit; display: block; object-fit: cover; } .project .cover img { object-fit: cover; } .project { height: 100%; width: auto; background-color: #fff; padding: 3px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); border-radius: 5px; transition: all 300ms linear; margin: 4px 4px; } .profile a { width: -webkit-fit-content; } .project h3 { font-weight: bold; margin-top: 10px; margin-bottom: 0; font-size: 1.3em; } .project p { margin-top: 5px; margin-bottom: 0; font-weight: 200; transition: all 300ms; position: absolute; display: none; } p.desc { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; max-height: 36px; transition: all 300ms linear; } .projects div.project:hover>p.desc { display: block; max-height: 90px; -webkit-line-clamp: 6; transition: all 300ms linear; } .project span { font-weight: 200; margin-right: 10px; } .imgHolder i { position: absolute; top: -3px; left: 2px; color: white; text-shadow: 2px 2px black; font-size: 1.5rem; font-weight: bolder; z-index: 99; } /*第三分区结束*/ /*第四分区开始*/ footer { background-color: #fff; padding: 0; margin: 0; width: 100%; box-shadow: 0 -2px 8px #eee; } .footer-content { max-width: 1250px; margin: 0 auto; padding: 30px 20px; display: flex; flex-wrap: nowrap; justify-content: space-between; box-sizing: border-box; } .site-info, .cc-footer-license { color: #aaabab; } .site-info { text-align: left; line-height: 190%; } .site-info a, .cc-footer-license a { color: #aaabab; } .site-info a:hover, .cc-footer-license a:hover { color: #ea4c89; } /*第四分区结束*/ /* ↓ 全局淡入效果 */ .fade-in { animation-delay: 150ms; animation-duration: 200ms; animation-fill-mode: forwards; animation-name: fade-in; animation-timing-function: ease-in; opacity: 0; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } /* ↑ 全局淡入效果 */ :host { bottom: 0; left: 0; margin: auto; overflow: hidden; position: absolute; right: 0; top: 0; z-index: -1; } /* ↑ 浮动元素*/ /*响应式设计*/ @media (max-width:820px) { .profile, .info, .footer-content { width: 90%; } .projects-wrap { width: 95%; } .info { display: block; flex-wrap: wrap; padding: 70px 0; } .info div { margin-bottom: 50px; } .footer-content { margin: 0 auto; padding: 50px 20px; /*上下外边距*/ display: block; } .footer-content .site-info, .cc-footer-license { margin-bottom: 20px; width: 100%; } .header { width: 100%; } .project { max-width: 350px; margin-right: auto; margin-left: auto; margin-bottom: 8px; } .projects { padding: unset; } #blue-circle { left: calc(32% - 50px); top: calc(22% - 26px); } #yellow-dots { left: 32%; top: 22%; } #green-rectangle { right: 16px; } #red-triangle { bottom: 8%; left: 28%; } } /*返回顶部开始*/ .scroll-up { background-color: #f8504b; color: #ffffff; transition: transform 0.5s; border-radius: 50px; bottom: 30px; padding: 3px; display: none; height: 50px; opacity: 1; position: fixed; right: 30px; text-align: center; width: 50px; overflow: hidden; z-index: 9999; line-height: 2.5; color: #ffffff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3); } .scroll-up:hover, .scroll-up:focus { background-color: #f8504b; color: #ffffff; transform: scale(1.1, 1.1); transition: all 100ms; } @media (max-width: 992px) { .scroll-up { bottom: 70px; right: 40px; width: 45px; height: 45px; } } /*返回顶部结束*/
0.200245
0.08061
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap'); :root { --color--primary: 0, 0, 0; --color--text--primary: 47, 60, 79; --color--text--secondary: 80, 111, 134; --color--accent: 251, 176, 64; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Nunito", sans-serif; font-weight: 400; font-size: 1.25em; line-height: 1.5; color: rgb(var(--color--text--primary)); width: 40em; max-width: 90vw; margin: 5% auto; background-color: #fff; } .floater { -webkit-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); -moz-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); /* box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */ border-radius: 10px; padding: 1em; } .header .container { display: flex; flex-direction: column; justify-content: center; text-align: center; margin-bottom: 1em; } .floater .payment-method { width: auto; height: auto; margin: 1em auto; } .profilePicture { width: 10em; height: auto; align-self: center; border-radius: 100%; } a, a:visited { color: rgb(var(--color--text--secondary)); text-decoration: none; } .social-icons { font-size: 1.5em; } .social-icons a { color: rgb(var(--color--text--secondary)); } .social-icons a i:hover { color: rgb(var(--color--accent)); animation: jiggle 0.15s ease-out; } h2 { border-bottom: 1px solid rgb(var(--color--text--primary)); font-size: 1.5em; } h4 { color: rgb(var(--color--text--secondary)); } @keyframes jiggle { 0% { transform: rotate(0deg); } 80% { transform: rotate(-18deg); } 100% { transform: rotate(-15deg); } } a:hover { text-decoration: underline; transition: 0.1s; } .emphasis { color: rgb(var(--color--accent)); font-weight: bold; } section { margin: 2em 5px; } h2 + .container { padding: 0.5em 2em; display: flex; flex-direction: column; } .item { display: flex; justify-content: space-between; height: auto; } .item > img { width: 200px; height: 200px; border-radius: 10%; margin: auto; } .item > .content { padding-left: 1em; } .item:nth-child(even) { flex-direction: row-reverse; } .item:nth-child(even) > .content { padding-left: 0; padding-right: 1.3em; } .item { margin: 1em 0; } .creation { fill: rgb(var(--color--primary)); -webkit-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); -moz-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); /* box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */ border-radius: 10px; width: 45%; transform: scale(1); transition: transform 0.15s ease-out; } .creation:hover { transform: scale(1.03); cursor: pointer; } .creation .content { padding: 1em; } .creation img { width: 100%; height: 10em; border-top-right-radius: 10px; border-top-left-radius: 10px; } .creations { display: flex; padding: 0.5em 2em; flex-direction: row; justify-content: space-around; } .completed { text-decoration: line-through; } .completed-date { font-style: italic; text-align: right; padding-left: 1em; } .completed-date::before { content: "completed on "; } h6 { text-align: center; } body ~ .container { margin: auto; } footer { color: inherit; text-align: center; } @media only screen and (max-width: 768px) { h2 { text-align: center; } .item { flex-direction: column-reverse; text-align: center; } .item img { width: 100%; } .item:nth-child(even) { flex-direction: column-reverse; } .item:nth-child(even) > .content { padding-left: 0; padding-right: 0; } .creation { width: 100%; } .creations { flex-direction: column; } .creation:not(:first-child) { margin-top: 1em; } }
assets/css/styles.css
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap'); :root { --color--primary: 0, 0, 0; --color--text--primary: 47, 60, 79; --color--text--secondary: 80, 111, 134; --color--accent: 251, 176, 64; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Nunito", sans-serif; font-weight: 400; font-size: 1.25em; line-height: 1.5; color: rgb(var(--color--text--primary)); width: 40em; max-width: 90vw; margin: 5% auto; background-color: #fff; } .floater { -webkit-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); -moz-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); /* box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */ border-radius: 10px; padding: 1em; } .header .container { display: flex; flex-direction: column; justify-content: center; text-align: center; margin-bottom: 1em; } .floater .payment-method { width: auto; height: auto; margin: 1em auto; } .profilePicture { width: 10em; height: auto; align-self: center; border-radius: 100%; } a, a:visited { color: rgb(var(--color--text--secondary)); text-decoration: none; } .social-icons { font-size: 1.5em; } .social-icons a { color: rgb(var(--color--text--secondary)); } .social-icons a i:hover { color: rgb(var(--color--accent)); animation: jiggle 0.15s ease-out; } h2 { border-bottom: 1px solid rgb(var(--color--text--primary)); font-size: 1.5em; } h4 { color: rgb(var(--color--text--secondary)); } @keyframes jiggle { 0% { transform: rotate(0deg); } 80% { transform: rotate(-18deg); } 100% { transform: rotate(-15deg); } } a:hover { text-decoration: underline; transition: 0.1s; } .emphasis { color: rgb(var(--color--accent)); font-weight: bold; } section { margin: 2em 5px; } h2 + .container { padding: 0.5em 2em; display: flex; flex-direction: column; } .item { display: flex; justify-content: space-between; height: auto; } .item > img { width: 200px; height: 200px; border-radius: 10%; margin: auto; } .item > .content { padding-left: 1em; } .item:nth-child(even) { flex-direction: row-reverse; } .item:nth-child(even) > .content { padding-left: 0; padding-right: 1.3em; } .item { margin: 1em 0; } .creation { fill: rgb(var(--color--primary)); -webkit-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); -moz-box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); box-shadow: 0px 0px 40px 5px rgba(204, 204, 204, 0.6); /* box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */ border-radius: 10px; width: 45%; transform: scale(1); transition: transform 0.15s ease-out; } .creation:hover { transform: scale(1.03); cursor: pointer; } .creation .content { padding: 1em; } .creation img { width: 100%; height: 10em; border-top-right-radius: 10px; border-top-left-radius: 10px; } .creations { display: flex; padding: 0.5em 2em; flex-direction: row; justify-content: space-around; } .completed { text-decoration: line-through; } .completed-date { font-style: italic; text-align: right; padding-left: 1em; } .completed-date::before { content: "completed on "; } h6 { text-align: center; } body ~ .container { margin: auto; } footer { color: inherit; text-align: center; } @media only screen and (max-width: 768px) { h2 { text-align: center; } .item { flex-direction: column-reverse; text-align: center; } .item img { width: 100%; } .item:nth-child(even) { flex-direction: column-reverse; } .item:nth-child(even) > .content { padding-left: 0; padding-right: 0; } .creation { width: 100%; } .creations { flex-direction: column; } .creation:not(:first-child) { margin-top: 1em; } }
0.472197
0.142202
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } /* * Global */ body { font-family: 'Roboto', sans-serif; background: #333333; } b, strong { font-weight: bold } i { font-style: italic } em { color: #ffcc33} img.small { display: block; width: auto; margin-left: auto; margin-right: auto; } img.large { height: auto; max-width: 100%; } img.large-tall { max-height: 95%; width: auto; } h1, h2, h3 { margin-bottom: 25px; font-weight: regular ; } h1 { border-bottom: 2.5px dashed #F5F5F5; padding: 1%; font-size: 60px; } h2 { font-size: 50px; } h3 { font-size: 30px; } h4 { font-size: 40px; padding: 5%; } h5 { font-size: 45px; padding: 5%; } h6 { border-top: 1px dashed #F5F5F5; border-bottom: 1px dashed #F5F5F5; padding: 1%; font-size: 45px; } p { font-size: 25px; margin-bottom: 20px; margin-top: 20px; } pre, .code { font-size: 52px; font-family: fixed-width, Courier; } /* * Pig overrides */ div.slide { padding: 5%; } .slide.fullscreen { padding: 0; } a { background: #F5F5F5; } /* * Slide types */ /* * Map */ #final-map { height: 600px; } /* * Other styles */ a.source { font-size: 24px; } .hidden-text { opacity: 0; } .quote { padding: 125px; } .left, .right { float: left; } .right { padding-left: 100px; } } .highlighted { background: yellow; } /* * Scroll chart */ #scroll-chart { position: fixed; bottom: 0; right: 0; left: 0; height: 10px; width: 100%; z-index: -10; } img.positioned { position: relative; margin: inherit; }
Class_8_Lecture/css/base.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } /* * Global */ body { font-family: 'Roboto', sans-serif; background: #333333; } b, strong { font-weight: bold } i { font-style: italic } em { color: #ffcc33} img.small { display: block; width: auto; margin-left: auto; margin-right: auto; } img.large { height: auto; max-width: 100%; } img.large-tall { max-height: 95%; width: auto; } h1, h2, h3 { margin-bottom: 25px; font-weight: regular ; } h1 { border-bottom: 2.5px dashed #F5F5F5; padding: 1%; font-size: 60px; } h2 { font-size: 50px; } h3 { font-size: 30px; } h4 { font-size: 40px; padding: 5%; } h5 { font-size: 45px; padding: 5%; } h6 { border-top: 1px dashed #F5F5F5; border-bottom: 1px dashed #F5F5F5; padding: 1%; font-size: 45px; } p { font-size: 25px; margin-bottom: 20px; margin-top: 20px; } pre, .code { font-size: 52px; font-family: fixed-width, Courier; } /* * Pig overrides */ div.slide { padding: 5%; } .slide.fullscreen { padding: 0; } a { background: #F5F5F5; } /* * Slide types */ /* * Map */ #final-map { height: 600px; } /* * Other styles */ a.source { font-size: 24px; } .hidden-text { opacity: 0; } .quote { padding: 125px; } .left, .right { float: left; } .right { padding-left: 100px; } } .highlighted { background: yellow; } /* * Scroll chart */ #scroll-chart { position: fixed; bottom: 0; right: 0; left: 0; height: 10px; width: 100%; z-index: -10; } img.positioned { position: relative; margin: inherit; }
0.494141
0.116966
.add-row a, .button, input[name="_save"], input[name="_continue"] { background-color: #eee; background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; border: none; border-radius: .3em; box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 -.25em 0 hsla(0,0%,0%,.5), 0 .25em .25em hsla(0,0%,0%,.1); color: #444; cursor: pointer; display: inline-block; font-family: sans-serif; font-size: 0.8em; font-weight: bold; line-height: 1.5; margin: 0 .3em .3em .3em !important; padding: .3em .8em .5em .8em !important; text-decoration: none; vertical-align: middle; position:relative; outline: none; } .add-row a:hover, .button:hover, input[name="_save"]:hover, input[name="_continue"]:hover { outline: none; opacity: 1; } .add-row a:hover, .add-row a:focus, .button:hover, .button:focus, input[name="_save"]:hover, input[name="_save"]:focus, input[name="_continue"]:hover, input[name="_continue"]:focus { box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 -.25em 0 hsla(0,0%,0%,.5), 0 .25em .25em hsla(0,0%,0%,.1); } .add-row a:active, .button:active, input[name="_save"]:active, input[name="_continue"]:active { box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 .25em .5em hsla(0,0%,0%,.05), 0 -1px 1px hsla(0,0%,0%,.1); outline: none; margin: .1em .3em .2em .3em !important; } .red { color: darkred; background-color: #e66;} .wide { width: 160px; } .empty { opacity: 0.3; }
cvapp/cv/static/css/buttons_bak.css
.add-row a, .button, input[name="_save"], input[name="_continue"] { background-color: #eee; background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1)) !important; border: none; border-radius: .3em; box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 -.25em 0 hsla(0,0%,0%,.5), 0 .25em .25em hsla(0,0%,0%,.1); color: #444; cursor: pointer; display: inline-block; font-family: sans-serif; font-size: 0.8em; font-weight: bold; line-height: 1.5; margin: 0 .3em .3em .3em !important; padding: .3em .8em .5em .8em !important; text-decoration: none; vertical-align: middle; position:relative; outline: none; } .add-row a:hover, .button:hover, input[name="_save"]:hover, input[name="_continue"]:hover { outline: none; opacity: 1; } .add-row a:hover, .add-row a:focus, .button:hover, .button:focus, input[name="_save"]:hover, input[name="_save"]:focus, input[name="_continue"]:hover, input[name="_continue"]:focus { box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 -.25em 0 hsla(0,0%,0%,.5), 0 .25em .25em hsla(0,0%,0%,.1); } .add-row a:active, .button:active, input[name="_save"]:active, input[name="_continue"]:active { box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.25), inset 0 .25em .5em hsla(0,0%,0%,.05), 0 -1px 1px hsla(0,0%,0%,.1); outline: none; margin: .1em .3em .2em .3em !important; } .red { color: darkred; background-color: #e66;} .wide { width: 160px; } .empty { opacity: 0.3; }
0.291283
0.104477
.acf-map { width: 100%; height: 400px; border: #ccc solid 1px; margin: 20px 0; } /* fixes potential theme css conflict */ .acf-map img { max-width: inherit !important; } .metabox { padding-top: 8px; padding-bottom: 8px; background-color: #e8e8e8; } .metabox__blog-home-link { font-weight: normal; } .metabox__blog-home-link:hover { background-color: #b22025; color: #e8e8e8; font-weight: 700; cursor: pointer; } .pid_sub_market_hidden { display: none; } .pid_sub_market_label { padding: 0px 3px; margin: 0px 3px; background-color: #c8c8c8; color: #646464; border-radius: 5px; display: inline-block; white-space: nowrap; } .pid_sub_market_label:hover { cursor: pointer; background-color: #b22025; color: white; } .pid_sub_market_label_heading { padding: 0px 3px; margin: 0px 3px; background-color: #b22025; color: #c8c8c8; border-radius: 5px; white-space: nowrap; } .pid_sub_market_close { background-color: #b22025; color: #c8c8c8; border-radius: 50%; } .pid_sub_market_close:hover { background-color: #c8c8c8; color: #b22025; } .pid_sub_select { background-color: #c8c8c8; color: #b22025; font-weight: bold; } .pid_sub_market_filtered { text-decoration: underline overline; } .pid_section_leading_icon { width: 60px; height: 40px; float: left; margin-right: 3px; padding: 0px 10px; } .pid_clicked_table_row{ color: darkorange; } .cma_result_header{ background-color: #e8e8e8; } .pid_section_content { text-align: left; } .pid_section_wrapper { background-color: #e8e8e8; padding: 5px 0; position: relative; } .pid_section_two_columns { position: relative; } .pid_float_right { // float: right; display: block; text-align: right; position: absolute; right: 0; top: -35px; } .pid_float_right_bottom { display: block; // text-align: right; // position: absolute; // right: 0; // bottom: 0; } .pid_cn_class { font-family: "<NAME>"; font-size: 3rem; } .lang_cn { background-image: url("https://pidhomes.ca/wp-content/uploads/2020/08/chinese-icon-25X25.png"); background-repeat: no-repeat; background-position: center; padding-left: 1px; } .menu_gva { background-position: 20px 12px; background-color: lightskyblue; color: white; } #market_share_this { width: 100%; height: 100%; margin: 0 auto; left: 0; } #market_share_this .social { opacity: 1; visibility: visible; width: 100%; margin-left: 0; display: block; position: relative; } #market_share_this .social ul li { left: 10%; bottom: 30px; } .community { height: auto; padding-bottom: 20px; } .community_empty { padding-top: 20px; padding-bottom: 10px; } .school { padding-bottom: 20px; } .select_chart_params { padding-top: 5px; padding-bottom: 2px; background-color: #c8c8c8; // white-space: nowrap; } .rh_wrap--padding { padding: 0 5rem; } /* class applies to select element itself, not a wrapper element */ .pid_select_month { display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: 0; // 0.6em 1.4em 0.5em 0.8em; text-indent: 15px; width: 100%; max-width: 100%; /* useful when width is set to anything other than 100% */ box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04); border-radius: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference */ background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%); background-repeat: no-repeat, repeat; /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/ background-position: right 0.7em top 50%, 0 0; /* icon size, then gradient */ background-size: 0.65em auto, 100%; } /* Hide arrow icon in IE browsers */ .select-css::-ms-expand { display: none; } /* Hover style */ .select-css:hover { border-color: #888; } /* Focus style */ .select-css:focus { border-color: #aaa; /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */ box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7); box-shadow: 0 0 0 3px -moz-mac-focusring; color: rgb(87, 85, 85); outline: none; } .pid_home_page_h1 { font-size: 3.5rem; } .bootstrap-realtypress { width: 100%; } .pid_more_communities { // display: flex; justify-content: space-between; list-style: none; flex-wrap: wrap; } .pid_more_community_label { padding: 5px 2px; margin: 10px 5px; background-color: #c8c8c8; color: #646464; border-radius: 5px; display: block; white-space: nowrap; } .pid_more_community_label:hover { cursor: pointer; background-color: #b22025; color: white; } .pid_housing_inventory{ padding: 3.5rem 0; } /* Set options to normal weight */ .select-css option { font-weight: normal; } .rh_wrap--topPadding { padding: 3rem; } /* Portrait */ @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) { .rh_wrap--padding { padding: 0 1rem; } .rh_wrap--topPadding { padding: 1rem; } .pid_wrap--padding { padding: 0 1rem; } .rh_page { width: 100%; padding: 0; } .rh_page__listing_page { padding: 0; } .rh_page__main{ padding: 0; } .entry-content { padding: 0; } .lang_cn { background-position: 20px 12px; background-color: lightskyblue; color: white; } .lang_cn a { color: white; } .pid_section--content_padding { padding: 3rem 3rem 0 3rem } #pid-mobile {display: none;} .pid_cma_result{ width: 400px; } } /* Landscape */ @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) { .rh_wrap--padding { padding: 0 10px; } .rh_wrap--topPadding { padding: 1rem; } .rh_page { padding: 0; } .rh_page__listing_page { padding: 0; } .rh_page__main{ padding: 0; } .pid_wrap--padding { padding: 0 10px; } .entry-content { padding: 0; } .lang_cn { background-position: 20px 12px; background-color: lightskyblue; color: white; } .lang_cn a { color: white; } .rh_page { width: 100%; padding: 0 2rem 3rem 2rem; } #pid-mobile {display: none;} } .metabox__blog-home-link-active { color: #b22025; font-weight: 700; } body { font-family: "Montserrat", sans-serif; } .bootstrap-realtypress p, .bootstrap-realtypress .table, .bootstrap-realtypress .table tr td, .bootstrap-realtypress .table tbody tr td, .bootstrap-realtypress .table thead tr th { font-family: "Montserrat", sans-serif; } .agents-list-widget .agent-widget-content { text-align: left; } .agents-list-widget .agent-widget-content:not(.no-agent-thumbnail) { width: calc(100% - 103px); } .agents-list-widget .agent-thumbnail { font-variant: JIS04; font-variant: JIS04; width: 90px; height: 90px; margin: 0 18px 0 0; margin-top: 0px; margin-right: 8px; margin-bottom: 0px; margin-left: 0px; } h1, h2, h3, h4, h5, h6 { font-family: "Montserrat", sans-serif; font-weight: 700; margin-top: 2rem; margin-bottom: 0; line-height: 1.2; color: #1a1a1a; } button .input-group-btn { font-family: "Montserrat", sans-serif; } .bootstrap-realtypress .bx-slider li { border: 0 !important; } h4.rh_feature__title { font-size: 2rem !important; } #scroll-top { background-color: transparent; background-image: url("stamp-pid.59X57.png"); height: 60px; width: 60px; } #scroll-top .fa { padding-top: 20px; color: white; } #pid_pro, #pid_int, #pid_dil { font-size: 1em; padding-top: 5px; } #pid_dil { padding-bottom: 5px; } .pid_community .rh_wrap--padding { padding: 0; } .pid_separator { padding: 20px 0; text-align: left; } .pid_h2 { font-size: 20px; } .pid_separator--first-line { text-align: left; padding-bottom: 10px; margin: 0; font-size: 3rem; } .pid_separator--second-line { text-align: left; padding-bottom: 10px; margin: 0; font-size: 2rem; font-family: Lucida Console, Monaco, monospace; } .pid_community_h1{ padding: 2rem 0; font-size: 3.5rem; text-align: left; } .demographic-wrapper h2 { font-size: 2.5rem; } .cma_subject { padding: 0 10px; } .cma_label { color: navy; padding-bottom: 10px; } .pid_cma_result { border-width: 2px; border-color: navy; border-style: solid; background-color: navy; border-radius: 2rem; color: white; font-size: 2rem; } .pid_cma_sub_title { font-size: 2.2rem; background-color: lightgrey; } .pid_link { color: darkblue; } .pid_link:hover{ color: darkorange; } .pid_table_header{ white-space: normal!important; word-wrap: normal; } .pid_input_text{ width: 95%; } .pid_home_session { position: relative; } .rh_page__head .pid_page_title.title { font-size: 2.5rem; } .pid_home_overlay { background-color: rgba(232, 232, 232, 0.5); position: absolute; width: 100%; height: 100%; z-index: -1; left: 0; top: 0; visibility: hidden; } .pid_wpdatatable_hidden_column { display: none; } div .pid_market { font-size: 16px; text-align: left; display: block; } canvas { border: 1px; border-style: solid; border-color: #337ab7; } .acf-map h3 { padding: 0; margin: 0; } .wpDataTablesWrapper .dataTables_paginate { font-size: 13px !important; font-family: sans-serif !important; } .wpDataTablesWrapper .dataTables_paginate .paginate_button { min-width: 1.5em; padding: 0.6em 1.164em 0.4em 1.164em; text-align: center; text-decoration: none !important; cursor: pointer; color: #666; -o-transition: 0.5s; -ms-transition: 0.5s; -moz-transition: 0.5s; -webkit-transition: 0.5s; transition: 0.5s; } .wpDataTablesWrapper .dataTables_paginate>.paginate_button { font: 0/0 a; background-color: transparent; border: 0; text-shadow: none; text-indent: -9999em; } .wpDataTablesWrapper .dataTables_paginate a.paginate_button:focus { outline: none !important; box-shadow: none; } .wpDataTablesWrapper .dataTables_paginate .paginate_button:hover:not(.disabled) { color: #666; background-color: #f5f5f5; } .wpDataTablesWrapper .dataTables_paginate .ellipsis { margin: 0 2px; } .wpDataTablesWrapper .dataTables_paginate .paginate_button.current, .wpDataTablesWrapper .dataTables_paginate .paginate_button.current:hover { color: #666; background-color: #e8e8e8; } .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:before, .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:hover:before, .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:active:before { cursor: default !important; opacity: 0.4; color: #666; background: none !important; box-shadow: none; } .wpDataTablesWrapper .paginate_button.next:before { content: "\e001" !important; padding: 0.9em 1.1em 0.601em 1.1em; } .wpDataTablesWrapper .paginate_button.previous:before { content: "\e002" !important; padding: 0.9em 1.08em 0.601em 1.08em; } .wpDataTablesWrapper .paginate_button.last:before { content: "\e003"; padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.first:before { content: "\e004"; padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.next:hover:before { padding: 0.9em 1.1em 0.601em 1.1em; } .wpDataTablesWrapper .paginate_button.previous:hover:before { padding: 0.9em 1.08em 0.601em 1.08em; } .wpDataTablesWrapper .paginate_button.last:hover:before { padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.first:hover:before { padding: 0.9em 0.95em 0.601em 0.95em; } .loadmore2 { background-color: #ddd; border-radius: 2px; display: block; text-align: center; font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; cursor: pointer; text-transform: uppercase; padding: 10px 0; transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out; } .loadmore2:hover { background-color: #767676; color: #fff; } @media (min-width: 768px) { #menu-main-menu-2 { font-size: 20px; } .rh_menu__user { font-size: 20px; } .contact-number { font-size: 20px !important; } } .rh_logo_inner { width: 261px; height: 56px; } .rh_logo_inner img { width: 261px; height: 56px; }
css/child-custom.css
.acf-map { width: 100%; height: 400px; border: #ccc solid 1px; margin: 20px 0; } /* fixes potential theme css conflict */ .acf-map img { max-width: inherit !important; } .metabox { padding-top: 8px; padding-bottom: 8px; background-color: #e8e8e8; } .metabox__blog-home-link { font-weight: normal; } .metabox__blog-home-link:hover { background-color: #b22025; color: #e8e8e8; font-weight: 700; cursor: pointer; } .pid_sub_market_hidden { display: none; } .pid_sub_market_label { padding: 0px 3px; margin: 0px 3px; background-color: #c8c8c8; color: #646464; border-radius: 5px; display: inline-block; white-space: nowrap; } .pid_sub_market_label:hover { cursor: pointer; background-color: #b22025; color: white; } .pid_sub_market_label_heading { padding: 0px 3px; margin: 0px 3px; background-color: #b22025; color: #c8c8c8; border-radius: 5px; white-space: nowrap; } .pid_sub_market_close { background-color: #b22025; color: #c8c8c8; border-radius: 50%; } .pid_sub_market_close:hover { background-color: #c8c8c8; color: #b22025; } .pid_sub_select { background-color: #c8c8c8; color: #b22025; font-weight: bold; } .pid_sub_market_filtered { text-decoration: underline overline; } .pid_section_leading_icon { width: 60px; height: 40px; float: left; margin-right: 3px; padding: 0px 10px; } .pid_clicked_table_row{ color: darkorange; } .cma_result_header{ background-color: #e8e8e8; } .pid_section_content { text-align: left; } .pid_section_wrapper { background-color: #e8e8e8; padding: 5px 0; position: relative; } .pid_section_two_columns { position: relative; } .pid_float_right { // float: right; display: block; text-align: right; position: absolute; right: 0; top: -35px; } .pid_float_right_bottom { display: block; // text-align: right; // position: absolute; // right: 0; // bottom: 0; } .pid_cn_class { font-family: "<NAME>"; font-size: 3rem; } .lang_cn { background-image: url("https://pidhomes.ca/wp-content/uploads/2020/08/chinese-icon-25X25.png"); background-repeat: no-repeat; background-position: center; padding-left: 1px; } .menu_gva { background-position: 20px 12px; background-color: lightskyblue; color: white; } #market_share_this { width: 100%; height: 100%; margin: 0 auto; left: 0; } #market_share_this .social { opacity: 1; visibility: visible; width: 100%; margin-left: 0; display: block; position: relative; } #market_share_this .social ul li { left: 10%; bottom: 30px; } .community { height: auto; padding-bottom: 20px; } .community_empty { padding-top: 20px; padding-bottom: 10px; } .school { padding-bottom: 20px; } .select_chart_params { padding-top: 5px; padding-bottom: 2px; background-color: #c8c8c8; // white-space: nowrap; } .rh_wrap--padding { padding: 0 5rem; } /* class applies to select element itself, not a wrapper element */ .pid_select_month { display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: 0; // 0.6em 1.4em 0.5em 0.8em; text-indent: 15px; width: 100%; max-width: 100%; /* useful when width is set to anything other than 100% */ box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04); border-radius: 0.5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference */ background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%); background-repeat: no-repeat, repeat; /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/ background-position: right 0.7em top 50%, 0 0; /* icon size, then gradient */ background-size: 0.65em auto, 100%; } /* Hide arrow icon in IE browsers */ .select-css::-ms-expand { display: none; } /* Hover style */ .select-css:hover { border-color: #888; } /* Focus style */ .select-css:focus { border-color: #aaa; /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */ box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7); box-shadow: 0 0 0 3px -moz-mac-focusring; color: rgb(87, 85, 85); outline: none; } .pid_home_page_h1 { font-size: 3.5rem; } .bootstrap-realtypress { width: 100%; } .pid_more_communities { // display: flex; justify-content: space-between; list-style: none; flex-wrap: wrap; } .pid_more_community_label { padding: 5px 2px; margin: 10px 5px; background-color: #c8c8c8; color: #646464; border-radius: 5px; display: block; white-space: nowrap; } .pid_more_community_label:hover { cursor: pointer; background-color: #b22025; color: white; } .pid_housing_inventory{ padding: 3.5rem 0; } /* Set options to normal weight */ .select-css option { font-weight: normal; } .rh_wrap--topPadding { padding: 3rem; } /* Portrait */ @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) { .rh_wrap--padding { padding: 0 1rem; } .rh_wrap--topPadding { padding: 1rem; } .pid_wrap--padding { padding: 0 1rem; } .rh_page { width: 100%; padding: 0; } .rh_page__listing_page { padding: 0; } .rh_page__main{ padding: 0; } .entry-content { padding: 0; } .lang_cn { background-position: 20px 12px; background-color: lightskyblue; color: white; } .lang_cn a { color: white; } .pid_section--content_padding { padding: 3rem 3rem 0 3rem } #pid-mobile {display: none;} .pid_cma_result{ width: 400px; } } /* Landscape */ @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) { .rh_wrap--padding { padding: 0 10px; } .rh_wrap--topPadding { padding: 1rem; } .rh_page { padding: 0; } .rh_page__listing_page { padding: 0; } .rh_page__main{ padding: 0; } .pid_wrap--padding { padding: 0 10px; } .entry-content { padding: 0; } .lang_cn { background-position: 20px 12px; background-color: lightskyblue; color: white; } .lang_cn a { color: white; } .rh_page { width: 100%; padding: 0 2rem 3rem 2rem; } #pid-mobile {display: none;} } .metabox__blog-home-link-active { color: #b22025; font-weight: 700; } body { font-family: "Montserrat", sans-serif; } .bootstrap-realtypress p, .bootstrap-realtypress .table, .bootstrap-realtypress .table tr td, .bootstrap-realtypress .table tbody tr td, .bootstrap-realtypress .table thead tr th { font-family: "Montserrat", sans-serif; } .agents-list-widget .agent-widget-content { text-align: left; } .agents-list-widget .agent-widget-content:not(.no-agent-thumbnail) { width: calc(100% - 103px); } .agents-list-widget .agent-thumbnail { font-variant: JIS04; font-variant: JIS04; width: 90px; height: 90px; margin: 0 18px 0 0; margin-top: 0px; margin-right: 8px; margin-bottom: 0px; margin-left: 0px; } h1, h2, h3, h4, h5, h6 { font-family: "Montserrat", sans-serif; font-weight: 700; margin-top: 2rem; margin-bottom: 0; line-height: 1.2; color: #1a1a1a; } button .input-group-btn { font-family: "Montserrat", sans-serif; } .bootstrap-realtypress .bx-slider li { border: 0 !important; } h4.rh_feature__title { font-size: 2rem !important; } #scroll-top { background-color: transparent; background-image: url("stamp-pid.59X57.png"); height: 60px; width: 60px; } #scroll-top .fa { padding-top: 20px; color: white; } #pid_pro, #pid_int, #pid_dil { font-size: 1em; padding-top: 5px; } #pid_dil { padding-bottom: 5px; } .pid_community .rh_wrap--padding { padding: 0; } .pid_separator { padding: 20px 0; text-align: left; } .pid_h2 { font-size: 20px; } .pid_separator--first-line { text-align: left; padding-bottom: 10px; margin: 0; font-size: 3rem; } .pid_separator--second-line { text-align: left; padding-bottom: 10px; margin: 0; font-size: 2rem; font-family: Lucida Console, Monaco, monospace; } .pid_community_h1{ padding: 2rem 0; font-size: 3.5rem; text-align: left; } .demographic-wrapper h2 { font-size: 2.5rem; } .cma_subject { padding: 0 10px; } .cma_label { color: navy; padding-bottom: 10px; } .pid_cma_result { border-width: 2px; border-color: navy; border-style: solid; background-color: navy; border-radius: 2rem; color: white; font-size: 2rem; } .pid_cma_sub_title { font-size: 2.2rem; background-color: lightgrey; } .pid_link { color: darkblue; } .pid_link:hover{ color: darkorange; } .pid_table_header{ white-space: normal!important; word-wrap: normal; } .pid_input_text{ width: 95%; } .pid_home_session { position: relative; } .rh_page__head .pid_page_title.title { font-size: 2.5rem; } .pid_home_overlay { background-color: rgba(232, 232, 232, 0.5); position: absolute; width: 100%; height: 100%; z-index: -1; left: 0; top: 0; visibility: hidden; } .pid_wpdatatable_hidden_column { display: none; } div .pid_market { font-size: 16px; text-align: left; display: block; } canvas { border: 1px; border-style: solid; border-color: #337ab7; } .acf-map h3 { padding: 0; margin: 0; } .wpDataTablesWrapper .dataTables_paginate { font-size: 13px !important; font-family: sans-serif !important; } .wpDataTablesWrapper .dataTables_paginate .paginate_button { min-width: 1.5em; padding: 0.6em 1.164em 0.4em 1.164em; text-align: center; text-decoration: none !important; cursor: pointer; color: #666; -o-transition: 0.5s; -ms-transition: 0.5s; -moz-transition: 0.5s; -webkit-transition: 0.5s; transition: 0.5s; } .wpDataTablesWrapper .dataTables_paginate>.paginate_button { font: 0/0 a; background-color: transparent; border: 0; text-shadow: none; text-indent: -9999em; } .wpDataTablesWrapper .dataTables_paginate a.paginate_button:focus { outline: none !important; box-shadow: none; } .wpDataTablesWrapper .dataTables_paginate .paginate_button:hover:not(.disabled) { color: #666; background-color: #f5f5f5; } .wpDataTablesWrapper .dataTables_paginate .ellipsis { margin: 0 2px; } .wpDataTablesWrapper .dataTables_paginate .paginate_button.current, .wpDataTablesWrapper .dataTables_paginate .paginate_button.current:hover { color: #666; background-color: #e8e8e8; } .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:before, .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:hover:before, .wpDataTablesWrapper .dataTables_paginate .paginate_button.disabled:active:before { cursor: default !important; opacity: 0.4; color: #666; background: none !important; box-shadow: none; } .wpDataTablesWrapper .paginate_button.next:before { content: "\e001" !important; padding: 0.9em 1.1em 0.601em 1.1em; } .wpDataTablesWrapper .paginate_button.previous:before { content: "\e002" !important; padding: 0.9em 1.08em 0.601em 1.08em; } .wpDataTablesWrapper .paginate_button.last:before { content: "\e003"; padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.first:before { content: "\e004"; padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.next:hover:before { padding: 0.9em 1.1em 0.601em 1.1em; } .wpDataTablesWrapper .paginate_button.previous:hover:before { padding: 0.9em 1.08em 0.601em 1.08em; } .wpDataTablesWrapper .paginate_button.last:hover:before { padding: 0.9em 0.95em 0.601em 0.95em; } .wpDataTablesWrapper .paginate_button.first:hover:before { padding: 0.9em 0.95em 0.601em 0.95em; } .loadmore2 { background-color: #ddd; border-radius: 2px; display: block; text-align: center; font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; cursor: pointer; text-transform: uppercase; padding: 10px 0; transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out; } .loadmore2:hover { background-color: #767676; color: #fff; } @media (min-width: 768px) { #menu-main-menu-2 { font-size: 20px; } .rh_menu__user { font-size: 20px; } .contact-number { font-size: 20px !important; } } .rh_logo_inner { width: 261px; height: 56px; } .rh_logo_inner img { width: 261px; height: 56px; }
0.464416
0.079496
.switcher h3 { font-size: 13px; margin: 1px 0 6px 0; color: #626064; } .switcher { border-radius: 5px 0 5px 5px; left: 0; width: 140px; padding: 10px; position: fixed; top: 180px; z-index: 1000; font-family: Verdana,Geneva,sans-serif; } .switcher-inner { background: none repeat scroll 0 0 #EFEFEF; border-radius: 5px 5px 5px 5px; box-shadow: 0 0 8px rgba(50, 50, 50, 0.5); padding: 5px 10px; } .switcher h2 { color: #626064; font-size: 14px; border-bottom: 1px dotted #ccc; padding: 5px 0 6px 0; margin: 0; } .switcher h2 a { background: url(../images/Setting-icon.png) no-repeat 0 0; border-radius: 0 4px 4px 0; display: block; height: 47px; position: absolute; right: -35px; text-indent: -9999px; top: 35px; width: 45px; outline: none; font-family: Verdana,Geneva,sans-serif; } .switcher .content { padding: 5px 0 5px 0; overflow: hidden; } .layout-switcher { margin: 0 0 10px 0; overflow: hidden; } .layout-switcher a.layout { padding: 6px 7px 8px 7px; border-radius: 2px; color: #797878; border: 2px solid #EAEAEA; width: 39px; cursor: pointer; float: left; display: block; margin: 0 6px 0 0; text-align: center; background: white; } .switcher-box { height: auto; overflow: hidden; margin-bottom: 6px; } ul.color_schemes { margin: 0; padding: 0; list-style: none; } ul.color_schemes li { color: #000; font-size: 12px; line-height: 25px; } ul.color_schemes li a { display: inline-block; } ul.color_schemes li a { width: 100px; height: 25px; color: #fff; font-weight: bold; font-size: 12px; line-height: 25px; font-family: Verdana,Geneva,sans-serif; text-align: center; display: inline-block; border-radius: 5px; margin: 0 4px 4px 0; cursor: pointer; } ul.color_schemes li a:hover { text-decoration: none; } .styleswitch#default { background-color: #096A9F; } .styleswitch#default:hover { background-color: #871128; } .styleswitch#orange { background-color: #f7800a; } .styleswitch#orange:hover { background-color: #c06409; } .styleswitch#blue { background-color: #0a3b56; } .styleswitch#blue:hover { background-color: #0a334a; } .styleswitch#skyblue { background-color: #00a6d0; } .styleswitch#skyblue:hover { background-color: #016984; } .bg { height: auto; overflow: hidden; margin-bottom: 6px; } .pattern { width: 21px; height: 24px; display: block; cursor: pointer; margin: 0 4px 4px 0; float: left; box-shadow: 0 0 0 1px #D6D2D2 inset; } .pattern#crossed { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/crossed.png") no-repeat; } .pattern#fabric { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/fabric.png") no-repeat; } .pattern#linen { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/linen.png") no-repeat; } .pattern#wood { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/wood.png") no-repeat; } .pattern#diagmonds { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/diagmonds.png") no-repeat; } .pattern#triangles { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/triangles.png") no-repeat; } .pattern#black_mamba { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/black_mamba.png") no-repeat; } .pattern#vichy { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/vichy.png") no-repeat; } .pattern#back_pattern { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/back_pattern.png") no-repeat; } .pattern#checkered_pattern { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/checkered_pattern.png") no-repeat; } .pattern#diamond_upholstery { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/diamond_upholstery.png") no-repeat; } .pattern#lyonnette { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/lyonnette.png") no-repeat; } .pattern#graphy { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/graphy.png") no-repeat; } .pattern#black_thread { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/black_thread.png") no-repeat; } .pattern#subtlenet2 { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/subtlenet2.png") no-repeat; } a.dark-style { display: block; padding: 9px 0 11px 0; text-align: center; background: #292929; color: #fff; }
src/assets/css/switcher.css
.switcher h3 { font-size: 13px; margin: 1px 0 6px 0; color: #626064; } .switcher { border-radius: 5px 0 5px 5px; left: 0; width: 140px; padding: 10px; position: fixed; top: 180px; z-index: 1000; font-family: Verdana,Geneva,sans-serif; } .switcher-inner { background: none repeat scroll 0 0 #EFEFEF; border-radius: 5px 5px 5px 5px; box-shadow: 0 0 8px rgba(50, 50, 50, 0.5); padding: 5px 10px; } .switcher h2 { color: #626064; font-size: 14px; border-bottom: 1px dotted #ccc; padding: 5px 0 6px 0; margin: 0; } .switcher h2 a { background: url(../images/Setting-icon.png) no-repeat 0 0; border-radius: 0 4px 4px 0; display: block; height: 47px; position: absolute; right: -35px; text-indent: -9999px; top: 35px; width: 45px; outline: none; font-family: Verdana,Geneva,sans-serif; } .switcher .content { padding: 5px 0 5px 0; overflow: hidden; } .layout-switcher { margin: 0 0 10px 0; overflow: hidden; } .layout-switcher a.layout { padding: 6px 7px 8px 7px; border-radius: 2px; color: #797878; border: 2px solid #EAEAEA; width: 39px; cursor: pointer; float: left; display: block; margin: 0 6px 0 0; text-align: center; background: white; } .switcher-box { height: auto; overflow: hidden; margin-bottom: 6px; } ul.color_schemes { margin: 0; padding: 0; list-style: none; } ul.color_schemes li { color: #000; font-size: 12px; line-height: 25px; } ul.color_schemes li a { display: inline-block; } ul.color_schemes li a { width: 100px; height: 25px; color: #fff; font-weight: bold; font-size: 12px; line-height: 25px; font-family: Verdana,Geneva,sans-serif; text-align: center; display: inline-block; border-radius: 5px; margin: 0 4px 4px 0; cursor: pointer; } ul.color_schemes li a:hover { text-decoration: none; } .styleswitch#default { background-color: #096A9F; } .styleswitch#default:hover { background-color: #871128; } .styleswitch#orange { background-color: #f7800a; } .styleswitch#orange:hover { background-color: #c06409; } .styleswitch#blue { background-color: #0a3b56; } .styleswitch#blue:hover { background-color: #0a334a; } .styleswitch#skyblue { background-color: #00a6d0; } .styleswitch#skyblue:hover { background-color: #016984; } .bg { height: auto; overflow: hidden; margin-bottom: 6px; } .pattern { width: 21px; height: 24px; display: block; cursor: pointer; margin: 0 4px 4px 0; float: left; box-shadow: 0 0 0 1px #D6D2D2 inset; } .pattern#crossed { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/crossed.png") no-repeat; } .pattern#fabric { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/fabric.png") no-repeat; } .pattern#linen { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/linen.png") no-repeat; } .pattern#wood { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/wood.png") no-repeat; } .pattern#diagmonds { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/diagmonds.png") no-repeat; } .pattern#triangles { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/triangles.png") no-repeat; } .pattern#black_mamba { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/black_mamba.png") no-repeat; } .pattern#vichy { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/vichy.png") no-repeat; } .pattern#back_pattern { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/back_pattern.png") no-repeat; } .pattern#checkered_pattern { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/checkered_pattern.png") no-repeat; } .pattern#diamond_upholstery { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/diamond_upholstery.png") no-repeat; } .pattern#lyonnette { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/lyonnette.png") no-repeat; } .pattern#graphy { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/graphy.png") no-repeat; } .pattern#black_thread { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/black_thread.png") no-repeat; } .pattern#subtlenet2 { background: url("http://themes.jozoor.com/crevision/white/css/layout/icons/subtlenet2.png") no-repeat; } a.dark-style { display: block; padding: 9px 0 11px 0; text-align: center; background: #292929; color: #fff; }
0.424054
0.175609
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700|Roboto:300,400,500,700&display=swap"); @import url(font-awesome.min.css); /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_extends.scss */ .btn_2:hover, .btn_3 { background-image: -webkit-linear-gradient(right, #7f00ff 0%, #e100ff 50%, #247aed 100%); background-image: linear-gradient(to left, #7f00ff 0%, #247aed 50%, #247aed 100%); } /**************** common css start ****************/ /* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ body { font-family: "Roboto", sans-serif; padding: 0; margin: 0; font-size: 14px; background-color: #E9F2FD; } /* line 9, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .message_submit_form:focus { outline: none; } /* line 12, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ input:hover, input:focus { outline: none !important; } /* line 15, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .gray_bg { background-color: #f7f7f7; } /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 140px 0px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 80px 0px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } @media (max-width: 576px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 140px !important; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media (max-width: 576px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 80px !important; } } /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 140px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } @media (max-width: 576px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 140px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } @media (max-width: 576px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } /* line 78, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a { text-decoration: none; -webkit-transition: 0.5s; transition: 0.5s; } /* line 81, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a:hover { outline: none; text-decoration: none; } /* line 87, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h1, h2, h3, h4, h5, h6 { color: #060606; font-family: "Roboto", sans-serif; } /* line 91, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ p { color: #818181; font-family: "Roboto", sans-serif; line-height: 30px; font-size: 16px; margin-bottom: 0px; font-weight: 300; } /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 44px; line-height: 28px; color: #060606; font-weight: 600; line-height: 1.222; } @media (max-width: 576px) { /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 22px; line-height: 25px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 24px; line-height: 25px; } } /* line 117, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h3 { font-size: 24px; line-height: 25px; } @media (max-width: 576px) { /* line 117, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h3 { font-size: 20px; } } /* line 126, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h5 { font-size: 18px; line-height: 22px; } /* line 131, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ img { max-width: 100%; } /* line 134, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a:focus, .button:focus, button:focus, .btn:focus { text-decoration: none; outline: none; box-shadow: none; -webkit-transition: 1s; transition: 1s; } .section_tittle { margin-bottom: 70px; } @media (max-width: 576px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 36px; color: #060606; line-height: 27px; font-weight: 700; position: relative; margin-bottom: 35px; } @media (max-width: 991px) { /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 25px; line-height: 35px; margin-bottom: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; } } /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { font-weight: 300; text-transform: capitalize; font-size: 16px; line-height: 30px; } @media (max-width: 576px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } /* line 192, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ ul { list-style: none; margin: 0; padding: 0; } /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_110 { margin-bottom: 110px; } @media (max-width: 576px) { /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_110 { margin-bottom: 220px; } } /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 130px; } @media (max-width: 576px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 130px; } @media (max-width: 576px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } /* line 234, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_less_40 { margin-bottom: -50px; } /* line 237, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .z_index { z-index: 9 !important; position: relative; } @media only screen and (min-width: 1440px) and (max-width: 1680px) { /* line 243, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .container { max-width: 1170px; } } @media (max-width: 1200px) { /* line 248, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ [class*="hero-ani-"] { display: none !important; } } /* line 252, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .form-control:focus { box-shadow: none; } /* line 255, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ input:-internal-autofill-selected { background-color: transparent !important; background-image: none !important; color: black !important; } /**************** common css end ****************/ /* Main Button Area css ============================================================================================ */ /* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ .btn_2 { display: inline-block; padding: 13.5px 40px; text-align: center; font-size: 16px; font-weight: 700; color: #8d00ff; background-color: #fff; -o-transition: all .4s ease-in-out; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out; text-transform: uppercase; border: 1px solid #8d00ff; border-radius: 2px; font-family: "Roboto", sans-serif; border-bottom-right-radius: 20px; border-top-left-radius: 20px; background-size: 200% auto; z-index: 9999; } /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ .btn_2:hover { color: #fff; border: 1px solid transparent; background-position: right; z-index: 9999; } /* End Main Button Area css ============================================================================================ */ /**************menu part start*****************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .home_menu { position: fixed; left: 0; top: 0; width: 100%; z-index: 999; } /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { padding: 0rem !important; } @media (max-width: 576px) { /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { max-width: 120px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { max-width: 130px; } } /* line 23, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-toggler { position: relative; z-index: 1; } /* line 27, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-toggler:after { position: absolute; content: ""; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; background-size: 200% auto; } /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 0; } @media (max-width: 576px) { /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } } /* line 52, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { text-align: right; justify-content: right; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 52, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { padding-left: 25px; } } /* line 61, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll { color: #fff; font-size: 16px; padding: 40px 25px; font-family: "Roboto", sans-serif; line-height: 13px; text-transform: capitalize; font-weight: 500; border-top: 2px solid transparent; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 61, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll { padding: 35px 16px; } } /* line 74, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll:hover { border-top: 2px solid #000; color: #000; } /* line 84, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .btn_2 { padding: 10.5px 39px; margin-left: 55px; color: #fff; background-color: transparent; border: 1px solid #fff; } /* line 90, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .btn_2:hover { border: 1px solid transparent; } /* line 97, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown-menu { border: 0px solid rgba(0, 0, 0, 0.15) !important; background-color: #fafafa; } /* line 103, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu { transition: all 0.5s; overflow: hidden; transform-origin: top center; transform: scale(1, 0); display: block; margin-top: -1px; } /* line 110, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu .dropdown-item { font-size: 14px; padding: 9px 18px !important; color: #000 !important; text-transform: capitalize; } /* line 115, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu .dropdown-item:hover { color: #8d00ff !important; } /* line 122, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown:hover .dropdown-menu { transform: scale(1); } @media (max-width: 991px) { /* line 132, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .navbar-collapse ul li .smoothScroll { color: #000 !important; } /* line 140, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } /* line 144, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-light .navbar-toggler { border-color: transparent; padding: 0; } /* line 147, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-light .navbar-toggler span { color: #fff; font-size: 25px; } /* line 153, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-collapse { z-index: 9999 !important; position: absolute; left: 0; top: 62px; width: 100%; background-color: #fff; text-align: center !important; box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2); } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { text-align: left !important; } /* line 167, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item .nav-item { padding: 5px 15px !important; } /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item .nav-item a { padding: 10px 15px !important; color: #000 !important; } /* line 177, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-nav { align-items: start !important; padding: 10px 0; } /* line 183, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu { transform: scale(1, 0); display: none; margin-top: 10px; } /* line 190, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown:hover .dropdown-menu { transform: scale(1); display: block; color: #8d00ff; } /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-item:hover { color: #8d00ff !important; } } /* line 316, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .main-menu-item ul li .smoothScroll { color: #fff; font-size: 15px; padding: 0px 24px; font-family: "Roboto", sans-serif; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 316, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .main-menu-item ul li .smoothScroll { padding: 0px 16px; } } /* line 332, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed { position: fixed; z-index: 9999 !important; width: 100%; background-color: #8d00ff; top: 0; } /* line 339, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .logo_2 { display: inherit; } /* line 343, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .logo_1 { display: none; } /* line 349, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .main-menu-item ul li .smoothScroll { color: #fff; } /**************** banner part css start ****************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 950px; position: relative; background-image: url(../img/banner_img.png); background-repeat: no-repeat; background-size: cover; background-position: center; } @media (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { display: table; width: 100%; height: 850px; margin-top: 0px; } /* line 26, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .banner_text_iner { display: table-cell; vertical-align: middle; } @media (max-width: 991px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { text-align: center; padding-top: 0px; height: 700px; margin-top: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { height: 750px; margin-top: 80px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { height: 850px; } } /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 30px; text-transform: capitalize; font-weight: 700; margin-bottom: 5px; line-height: 85px; color: #fff; } @media (max-width: 576px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.4; } } /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 span { color: #8d00ff; } /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { font-size: 14px; line-height: 1.8; font-family: "Roboto", sans-serif; padding: 0 70px; color: #fff; font-weight: 300; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { padding: 0; margin-bottom: 55px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { margin-top: 12px; padding: 0; margin-bottom: 55px; } } /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 22px; position: relative; z-index: 0; } @media (max-width: 991px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 0px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 0px; } } .banner_part img { margin-top: -110px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part img { margin-top: -30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part img { margin-top: -30px } } /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { position: absolute; bottom: -225px; } @media (max-width: 991px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { position: relative; bottom: -180px; max-width: 400px; margin: 0 auto; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { bottom: 90px; max-width: 320px; margin: 0 auto; } } /* line 127, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner { position: relative; } /* line 129, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner .extends_video { text-align: center; position: absolute; left: 0; right: 0; top: 45%; } /* line 135, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner .extends_video #play-video_1 { width: 69px; height: 50px; display: inline-block; background-color: red; border-radius: 10px; color: #fff; font-size: 20px; text-align: center; line-height: 50px; } .featured-property-half { position: relative; background: #fff; margin-top: -300px; -webkit-box-shadow: 0 0px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0px 20px -5px rgba(0, 0, 0, 0.1); } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-property-half { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-property-half { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); } } .featured-property-half .image { margin-left: 30px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image { margin: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image { margin-left: 30px; } } .featured-property-half .image .btn { margin-top: 30px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image .btn { margin-top: 0px; font-size: 11px; padding: 3px 8px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image .btn { margin-top: 0px; padding: 3px 8px; } } .featured-property-half .image img { margin-top: 10px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image img { margin-top: 5px; } } .featured-property-half .text { padding: -20x; padding-top: 75px; padding-right: 30px } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text { padding: 15px; padding-top: 5px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text { padding: 15px; } } .featured-property-half .text .btn { margin-bottom: 5px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text .btn { font-size: 11px; padding: 3px 10px; margin-bottom: 5px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text .btn { font-size: 14px; margin-bottom: 5px; } } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 16px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 18px; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 16px; } } .featured-property-half .text p { line-height: 24px; font-size: 15px; color: #000; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 14px; line-height: 22px; color: #000; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 14px; color: #000; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 13px; line-height: 22px; color: #000; } } .featured-property-half .text ul { list-style: none; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul { margin-top: -5px; } } .featured-property-half .text ul li { display: inline-block; padding: 5px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li { font-size: 10px; } } .featured-property-half .text ul li img { width: 50px; height: 50px; border-radius: 50%; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li img { width: 30px; height: 30px; border-radius: 50%; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li img { width: 50px; height: 50px; border-radius: 50%; } } .featured-property-half .text .list-unstyled { margin-top: -40px; } .featured-property-half .text .list-unstyled li { display: inline; margin-right: 32px; color: #999999; cursor: pointer; font-weight: 400; -webkit-transition: 0.5s; transition: 0.5s; position: relative; } .featured-property-half .text .list-unstyled li:after { position: absolute; content: ""; right: -15px; top: 5px; width: 2px; height: 15px; background-color: #777777; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li { margin-right: 20px; } } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:after { right: -12px; height: 10px; } } /* line 150, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:last-child:after { display: none; } /* line 156, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text.list-unstyled li:hover { color: #8d00ff; } /* line 159, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:hover a { color: #8d00ff; } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li a { margin-right: 3px; color: #7f7f7f; } /**********************content part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .bg { position: relative; background: #fff; margin-top: -1px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg { position: relative; background: #fff; margin-top: -1px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } } .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding-left: 30px; padding-top: 55px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding: 15px; padding-top: 45px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding: 15px; padding-top: 45px; } } .section-heading h4 { font-weight: 700; margin-bottom: 10px; } @media only screen and (max-width: 767px) { .section-heading h4 { font-size: 20px; } } .section-heading .line { width: 150px; height: 1px; background-color: #4e5152; margin: 0 auto; position: relative; z-index: 1; margin-bottom: -10px; } .section-heading .line::after { width: 60px; height: 2px; background-color: #db4437; content: ''; position: absolute; bottom: 0; left: 50%; margin-left: -30px; } .section-heading.style-2 { text-align: left; } .section-heading.style-2 .line { width: 100%; } .section-heading.style-2 .line::after { left: 0; margin-left: 0; } #scrollUp { background-color: #0f1112; border-radius: 0; bottom: 50px; color: #ffffff; font-size: 14px; height: 40px; line-height: 42px; right: 50px; text-align: center; width: 40px; border-radius: 0%; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); } #scrollUp:hover, #scrollUp:focus { background-color: #db4437; color: #ffffff; } @media only screen and (max-width: 767px) { #scrollUp { bottom: 30px; right: 30px; line-height: 32px; width: 30px; height: 30px; } } .vizew-btn { background-color: #db4437; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; position: relative; z-index: 1; display: inline-block; min-width: 160px; height: 50px; color: #ffffff; border-radius: 0; padding: 0 30px; font-size: 16px; line-height: 50px; font-weight: 500; text-transform: capitalize; } .vizew-btn:hover, .vizew-btn:focus { font-size: 16px; font-weight: 500; background-color: #0f1112; color: #ffffff; box-shadow: none; } .featured-post-slides { position: relative; z-index: 1; padding-left: 30px; margin-top: -20px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-post-slides { position: relative; z-index: 1; padding: 15px; margin-top: -30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-post-slides { position: relative; z-index: 1; padding: 15px; margin-top: -30px; } } .sport-video-slides, .business-video-slides { position: relative; z-index: 1; } .featured-post-slides .owl-prev, .featured-post-slides .owl-next, .sport-video-slides .owl-prev, .sport-video-slides .owl-next, .business-video-slides .owl-prev, .business-video-slides .owl-next { background-color: #1b1e1f; width: 30px; height: 30px; border-radius: 2px; font-size: 16px; color: #ffffff; text-align: center; line-height: 30px; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; position: absolute; top: -88px; right: 38px; } .featured-post-slides .owl-prev:hover, .featured-post-slides .owl-prev:focus, .featured-post-slides .owl-next:hover, .featured-post-slides .owl-next:focus, .sport-video-slides .owl-prev:hover, .sport-video-slides .owl-prev:focus, .sport-video-slides .owl-next:hover, .sport-video-slides .owl-next:focus, .business-video-slides .owl-prev:hover, .business-video-slides .owl-prev:focus, .business-video-slides .owl-next:hover, .business-video-slides .owl-next:focus { background-color: #0e0f10; } .featured-post-slides .owl-next, .sport-video-slides .owl-next, .business-video-slides .owl-next { right: 0; } .single-feature-post.video-post { position: relative; z-index: 1; width: 100%; height: 280px; } .single-feature-post.video-post img { background-size: auto; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .single-feature-post.video-post { height: 240px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-feature-post.video-post { height: 230px; padding-left: -20px; } } @media only screen and (max-width: 767px) { .single-feature-post.video-post { height: 210px; padding-left: -20px; } } .single-feature-post.video-post::before { content: ""; position: absolute; height: 50%; width: 100%; z-index: 5; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.5); background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); } .single-feature-post.video-post .play-btn { position: absolute; margin-top: -40px; margin-left: -30px; top: 50%; left: 50%; width: 60px; height: 60px; font-size: 20px; background-color: #db4437; border-radius: 50%; color: #ffffff; line-height: 60px; text-align: center; padding: 0 0 0 3px; z-index: 99; } @media only screen and (max-width: 767px) { .single-feature-post.video-post .play-btn { width: 50px; height: 50px; line-height: 50px; font-size: 20px; margin-top: -40px; margin-left: -20px; } } .single-feature-post.video-post .play-btn:hover, .single-feature-post.video-post .play-btn:focus { background-color: #0f1112; } .single-feature-post.video-post .post-content { position: absolute; left: 40px; bottom: 0px; z-index: 59; width: 80%; } @media only screen and (max-width: 767px) { .single-feature-post.video-post .post-content { left: 20px; bottom: 5px; } } .single-feature-post.video-post .post-content .post-title { font-size: 20px; display: block; color: #ffffff; margin-bottom: 30px; } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-feature-post.video-post .post-content .post-title { font-size: 18px; } } @media only screen and (max-width: 767px) { .single-feature-post.video-post .post-content .post-title { font-size: 16px; } } .single-feature-post.video-post .post-content .post-title:hover, .single-feature-post.video-post .post-content .post-title:focus { color: #0f1112; } .single-feature-post.video-post .post-content .post-meta { position: relative; z-index: 1; } .single-feature-post.video-post .post-content .post-meta a { display: inline-block; margin-right: 30px; color: #ffffff; } .single-feature-post.video-post .post-content .post-meta a:hover, .single-feature-post.video-post .post-content .post-meta a:focus { color: #db4437; } .single-feature-post.video-post .video-duration { display: inline-block; position: absolute; right: 30px; bottom: 30px; background-color: #0f1112; padding: 6px 12px; border-radius: 2px; font-size: 14px; color: #ffffff; line-height: 1; z-index: 79; } .bg .text { padding-top: 50px; padding-right: 30px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text { padding: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text { padding: 15px; } } .bg .text .btn { padding: 4px 25px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text .btn { font-size: 11px; padding: 3px 20px; margin-top: -20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text .btn { font-size: 11px; padding: 5px 20px; margin-top: -20px; } } .bg .text p { margin-top: 10px; font-size: 15px; line-height: 25px; color: #000; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text p { font-size: 13px; margin-top: 5px; line-height: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text p { font-size: 14px; margin-top: 5px; line-height: 24px; } } .bg .text br { font-size: 45px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text br { font-size: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text br { font-size: 30px; } } .pad { padding-left: 30px; padding-right: 30px; margin-top: 40px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { padding: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { padding: 15px; } } .single-post-area { position: relative; z-index: 1; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { margin-top: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { margin-top: 15px; } } .single-post-area .post-thumbnail { position: relative; z-index: 1; } .single-post-area .post-thumbnail img { height: 200px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .single-post-area .post-thumbnail img { width: 100%; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .single-post-area .post-thumbnail img { width: 100%; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-post-area .post-thumbnail { margin-bottom: 10px; } } @media only screen and (max-width: 767px) { .single-post-area .post-thumbnail { margin-bottom: 10px; } } .single-post-area .post-content { position: relative; z-index: 1; margin-top: 20px; } .single-post-area .post-content .post-title { display: block; color: #000; margin-bottom: 15px; font-size: 20px; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .single-post-area .post-content .post-title { font-size: 17px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-post-area .post-content .post-title { font-size: 16px; } } @media only screen and (max-width: 767px) { .single-post-area .post-content .post-title { font-size: 16px; } } .single-post-area .post-content .post-title:hover, .single-post-area .post-content .post-title:focus { color: blue; } .pad .single-post-area .post-content p { color: #000; font-size: 15px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content p { font-size: 13px; line-height: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content p { font-size: 13px; line-height: 24px; } } .pad .single-post-area .post-content .list-unstyled { margin-top: 20px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content .list-unstyled { margin-bottom: 40px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content .list-unstyled { margin-bottom: 40px } } .pad .single-post-area .post-content .list-unstyled li { display: inline; margin-right: 32px; color: #999999; cursor: pointer; font-weight: 400; -webkit-transition: 0.5s; transition: 0.5s; position: relative; } .pad .single-post-area .post-content .list-unstyled li:after { position: absolute; content: ""; right: -18px; top: 1px; width: 2px; height: 15px; background-color: #777777; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li { margin-right: 20px; font-size: 11px; } } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:after { right: -12px; height: 10px; } } /* line 150, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:last-child:after { display: none; } /* line 156, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content.list-unstyled li:hover { color: #8d00ff; } /* line 159, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:hover a { color: #8d00ff; } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li a { margin-right: 3px; color: #7f7f7f; } .bg .viewall { margin: 40px; margin-top: 50px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .viewall { margin-top: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .viewall { margin-top: 20px; } } .bg .viewall .btn { padding: 6px 50px; } /**********************kasus part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .kasus .bg { margin-top: 50px; padding-left: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg { padding: 15px; margin-top: 30px; } } .kasus .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .btn { font-size: 14px; padding: 3px 20px; } } .kasus .bg h4 { margin-top: 20px; margin-bottom: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg h4 { font-size: 18px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg h4 { font-size: 20px; } } .kasus .bg .pad { padding-left: 0px; width: 100%; } @media (max-width: 571px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .pad { text-align: center; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .pad { padding-left: 0px; } } @media (max-width: 571px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .pad .form { padding: 0px 90px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .pad .form { padding-left: 0px; } } .bg .count-box { padding-top: 50px; width: 100%; } .bg .count-box .box1 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: #FF8C00; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box1 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box1 span { font-size: 24px; } } .bg .count-box .box2 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: #228B22; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box2 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box2 span { font-size: 24px; } } .bg .count-box .box3 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: red; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box3 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box3 span { font-size: 24px; } } .bg .count-box p { padding-top: 10px; padding-left: 10px; margin: 0; font-family: "Roboto", sans-serif; font-size: 14px; } .kasus .bg .pad p { margin-top: -20px; padding: 0px 0px 10px 0px; font-size: 14px; } .kasus .bg .pad .form .har { padding-right: 50px; padding-left: 40px; font-size: 16px; } .kasus .bg .pad .form select:hover { padding: 5px 20px; } .kasus .kasus-odp { margin-top: 30px; } .kasus .kasus-pdp { margin-top: 30px; } .kasus .kasus-odp .box1 span { font-size: 24px; line-height: 24px; display: block; font-weight: 700; padding: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .kasus-odp .box1 span { font-size: 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .kasus-odp .box1 span { font-size: 20px; } } .kasus .kasus-pdp .box2 span { font-size: 24px; line-height: 24px; display: block; font-weight: 700; padding: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .kasus-pdp .box2 span { font-size: 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .kasus-pdp .box2 span { font-size: 20px; } } .kasus .text-peta { margin-top: 40px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .text-peta { margin-top: 50px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .text-peta { margin-top: 50px; } } .kasus .peta { margin-top: 10px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .text-peta { margin-top: 50px; } } /**********************Hotline part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .hotline .bg { margin-top: 50px; padding-left: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .hotline .bg { padding: 15px; margin-top: 30px; } } .hotline .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .hotline .bg .btn { font-size: 14px; padding: 3px 20px; } } .hotline .bg .text { margin-top: -20px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text { margin-top: 10px; } } .hotline .bg .text h4 { color: #247aed; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text h4 { font-size: 20px; } } .hotline .bg .text1 h4 { color: black; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text1 h4 { font-size: 18px; } } .hotline .bg .text p { color: #247aed; margin-top: 20px; } .hotline .bg .tombol { margin: 20px; } .hotline .bg .tombol .btn { border-radius: 14px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .tombol .btn { margin-top: -20px; } } .hotline .bg .tombol img { width: 30px; padding-top: 4px; padding-bottom: 4px; margin-right: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .tombol img { width: 20px; margin-right: 6px; } } .hotline .bg .rumah-sakit .btn { float: right; margin-right: 15px; margin-top: 15px; color: black; font-size: 18px; padding-top: 20px; padding-right: 60px; padding-left: 55px; } .hotline .bg .rumah-sakit .btn img { height: 30px; padding-right: 15px; } .hotline .bg .rumah-sakit .btn p { padding-top: 20px; font-size: 15px; } .hotline .bg .rumah-sakit2 .btn { float: left; margin-left: 15px; margin-top: 15px; color: black; font-size: 18px; padding-top: 20px; padding-right: 30px; } .hotline .bg .rumah-sakit2 .btn img { height: 30px; padding-right: 15px; } .hotline .bg .rumah-sakit2 .btn p { padding-top: 20px; font-size: 15px; } .hotline .bg .catatan p { font-size: 13px; padding: 15px; margin-bottom: 20px; } /**********************team part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .team .bg { margin-top: 50px; padding-left: 30px; padding-right: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .team .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .team .bg { padding: 15px; margin-top: 30px; } } .team .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .team .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .team .bg .btn { font-size: 14px; padding: 3px 20px; } } .team .bg h4 { margin-top: 20px; } .site-section { margin-top: -100px; padding: -13em -10em; } @media (min-width: 768px) { .site-section { padding: 7em 0; } } .site-section.site-section-sm { padding: 4em 0; } @media (max-width: 767.98px) { .display-3, .display-2, .display-4 { font-size: 2rem !important; } } @media (max-width: 991.98px) { .bg-md-height { height: 300px; } } @media (max-width: 767.98px) { .bg-sm-height { height: 300px; } } .text-gray-100 { color: #f8f9fa !important; } .text-gray-200 { color: #e9ecef !important; } .text-gray-300 { color: #dee2e6 !important; } .text-gray-400 { color: #ced4da !important; } .text-gray-500 { color: #adb5bd !important; } .text-gray-600 { color: #6c757d !important; } .text-gray-700 { color: #495057 !important; } .text-gray-800 { color: #343a40 !important; } .text-gray-900 { color: #212529 !important; } .row-wrap { margin-left: 35px; margin-right: 35px; } .overflow-hidden { overflow: hidden; } .row-items { height: calc(50% - 15px); margin-bottom: 15px; } .row-items.last { margin-bottom: 0; } @media (max-width: 991.98px) { .responsive-md-height { height: 500px !important; margin-bottom: 15px; } } .block-13, .slide-one-item { position: relative; z-index: 1; } .block-13 .owl-nav, .slide-one-item .owl-nav { position: relative; position: absolute; bottom: 0px; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } .block-13 .owl-nav .owl-prev, .block-13 .owl-nav .owl-next, .slide-one-item .owl-nav .owl-prev, .slide-one-item .owl-nav .owl-next { position: relative; display: inline-block; padding: 20px; font-size: 30px; color: #fff; } .block-13 .owl-nav .owl-prev.disabled, .block-13 .owl-nav .owl-next.disabled, .slide-one-item .owl-nav .owl-prev.disabled, .slide-one-item .owl-nav .owl-next.disabled { opacity: .2; } .block-13 .owl-stage-outer { padding-top: 30px; padding-bottom: 30px; } .block-13 .owl-dots { text-align: center; } .block-13 .owl-dots .owl-dot { display: inline-block; margin: 5px; } .block-13 .owl-dots .owl-dot span { line-height: 0; display: inline-block; width: 28px; height: 4px; border: none; float: left; background: #cccccc; -webkit-transition: .3s all ease; -o-transition: .3s all ease; transition: .3s all ease; } .block-13 .owl-dots .owl-dot.active>span { background: #e3c4a8; } .slide-one-item.home-slider .owl-nav { position: absolute !important; top: 50% !important; bottom: auto !important; width: 100%; } .slide-one-item.home-slider .owl-prev { left: 10px !important; } .slide-one-item.home-slider .owl-next { right: 10px !important; } .slide-one-item.home-slider .owl-prev, .slide-one-item.home-slider .owl-next { color: #fff; position: absolute !important; top: 50%; padding: 0px; height: 50px; width: 50px; border-radius: 0%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); background: rgba(0, 0, 0, 0.2); -webkit-transition: .3s all ease-in-out; -o-transition: .3s all ease-in-out; transition: .3s all ease-in-out; line-height: 0; text-align: center; font-size: 25px; } @media (min-width: 768px) { .slide-one-item.home-slider .owl-prev, .slide-one-item.home-slider .owl-next { font-size: 25px; } } .slide-one-item.home-slider .owl-prev>span, .slide-one-item.home-slider .owl-next>span { position: absolute; line-height: 0; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .slide-one-item.home-slider .owl-prev:hover, .slide-one-item.home-slider .owl-prev:focus, .slide-one-item.home-slider .owl-next:hover, .slide-one-item.home-slider .owl-next:focus { background: black; } .slide-one-item.home-slider:hover .owl-nav, .slide-one-item.home-slider:focus .owl-nav, .slide-one-item.home-slider:active .owl-nav { opacity: 10; visibility: visible; } /**********************footer part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { background-color: #faf4ff; padding: 130px 0px 25px; } @media (max-width: 576px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } /* line 17, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part p { font-size: 15px; } /* line 20, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_logo { padding-bottom: 22px; } /* line 23, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours { margin-top: 30px; } /* line 25, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours h5 { font-size: 15px; color: #555; font-weight: 300; } /* line 31, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li { display: flex; justify-content: space-between; position: relative; z-index: 1; } /* line 36, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li:after { position: absolute; content: ""; left: 0; bottom: 10px; z-index: -1; width: 100%; height: 1px; border: 1px dotted #555555; } /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li p { color: #555555; background-color: #faf4ff; display: inline-block; margin-bottom: 0; } /* line 53, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li span { line-height: 30px; float: right; color: #555555; font-weight: 300; background-color: #faf4ff; display: inline-block; } @media (max-width: 576px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { font-size: 20px; color: #000; margin-bottom: 30px; font-weight: 600; text-transform: capitalize; } @media (max-width: 576px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } /* line 96, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part p { color: #555555; line-height: 25px; margin-bottom: 10px; } /* line 102, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part a img { margin-top: 20px; } /* line 108, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .list-unstyled li a { color: #555; margin-bottom: 15px; display: inline-block; } /* line 112, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .list-unstyled li a:hover { color: #8d00ff !important; } /* line 118, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon { float: left; margin-top: 38px; } @media (max-width: 991px) { /* line 118, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon { margin-top: 15px; } } /* line 128, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon li a { margin-left: 0; margin-right: 25px; } /* line 136, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part { position: relative; } /* line 138, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part input { padding: 8px 22px; font-size: 13px; border-radius: 20px 0 20px 0; border: 2px solid #fff; margin-top: 20px; width: 100%; } /* line 146, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part .email_icon { position: absolute; right: 0px; top: 20px; text-align: center; color: #fff; line-height: 10px; background-color: #9300ff; border: 1px solid #9300ff; } /* line 157, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part .button-contactForm { color: #fff; border-color: #edeff2; padding: 12px 15px; border-radius: 0 0 20px 0; } /* line 165, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part hr { background-color: #d7d7d7; margin-top: 50px; margin-bottom: 25px; } /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon { text-align: right; } /* line 172, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li { display: inline-block; } /* line 174, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a { font-size: 14px; color: #a7a4aa; margin-left: 30px; -webkit-transition: 0.5s; transition: 0.5s; } @media (max-width: 991px) { /* line 174, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a { margin-left: 5px; margin-right: 5px; } } /* line 186, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a :hover { color: #8d00ff; } @media (max-width: 991px) { /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon { float: none; margin-top: 15px; text-align: center; } } @media (max-width: 991px) { /* line 200, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text { text-align: center; } } /* line 207, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p { color: #888; } /* line 210, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text span { color: #8d00ff; font-size: 12px; } /* line 215, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p a { color: #8d00ff; -webkit-transition: 0.5s; transition: 0.5s; } /* line 218, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p a:hover { color: #8d00ff; } /* line 222, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .info { color: red !important; } /* line 226, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_img img { width: 25%; float: left; padding-right: 8px; margin-bottom: 8px; } .my-custom-scrollbar { position: relative; height: 500px; overflow: auto; } .table-wrapper-scroll-y { display: block; } /*# sourceMappingURL=style.css.map */
public/asset/css/style.css
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700|Roboto:300,400,500,700&display=swap"); @import url(font-awesome.min.css); /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_extends.scss */ .btn_2:hover, .btn_3 { background-image: -webkit-linear-gradient(right, #7f00ff 0%, #e100ff 50%, #247aed 100%); background-image: linear-gradient(to left, #7f00ff 0%, #247aed 50%, #247aed 100%); } /**************** common css start ****************/ /* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ body { font-family: "Roboto", sans-serif; padding: 0; margin: 0; font-size: 14px; background-color: #E9F2FD; } /* line 9, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .message_submit_form:focus { outline: none; } /* line 12, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ input:hover, input:focus { outline: none !important; } /* line 15, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .gray_bg { background-color: #f7f7f7; } /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 140px 0px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 80px 0px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } @media (max-width: 576px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 18, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_padding { padding: 70px 0px; } } /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 140px !important; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media (max-width: 576px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 70px !important; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 33, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .single_padding_top { padding-top: 80px !important; } } /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 140px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } @media (max-width: 576px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 48, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_top { padding-top: 70px; } } /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 140px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } @media (max-width: 576px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 63, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_bottom { padding-bottom: 70px; } } /* line 78, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a { text-decoration: none; -webkit-transition: 0.5s; transition: 0.5s; } /* line 81, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a:hover { outline: none; text-decoration: none; } /* line 87, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h1, h2, h3, h4, h5, h6 { color: #060606; font-family: "Roboto", sans-serif; } /* line 91, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ p { color: #818181; font-family: "Roboto", sans-serif; line-height: 30px; font-size: 16px; margin-bottom: 0px; font-weight: 300; } /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 44px; line-height: 28px; color: #060606; font-weight: 600; line-height: 1.222; } @media (max-width: 576px) { /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 22px; line-height: 25px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 100, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h2 { font-size: 24px; line-height: 25px; } } /* line 117, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h3 { font-size: 24px; line-height: 25px; } @media (max-width: 576px) { /* line 117, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h3 { font-size: 20px; } } /* line 126, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ h5 { font-size: 18px; line-height: 22px; } /* line 131, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ img { max-width: 100%; } /* line 134, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ a:focus, .button:focus, button:focus, .btn:focus { text-decoration: none; outline: none; box-shadow: none; -webkit-transition: 1s; transition: 1s; } .section_tittle { margin-bottom: 70px; } @media (max-width: 576px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 141, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle { margin-bottom: 50px; } } /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 36px; color: #060606; line-height: 27px; font-weight: 700; position: relative; margin-bottom: 35px; } @media (max-width: 991px) { /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 25px; line-height: 35px; margin-bottom: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 155, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; } } /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { font-weight: 300; text-transform: capitalize; font-size: 16px; line-height: 30px; } @media (max-width: 576px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 173, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .section_tittle p { margin-bottom: 10px; } } /* line 192, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ ul { list-style: none; margin: 0; padding: 0; } /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_110 { margin-bottom: 110px; } @media (max-width: 576px) { /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_110 { margin-bottom: 220px; } } /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 130px; } @media (max-width: 576px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 204, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mt_130 { margin-top: 70px; } } /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 130px; } @media (max-width: 576px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 219, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .mb_130 { margin-bottom: 70px; } } /* line 234, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .padding_less_40 { margin-bottom: -50px; } /* line 237, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .z_index { z-index: 9 !important; position: relative; } @media only screen and (min-width: 1440px) and (max-width: 1680px) { /* line 243, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .container { max-width: 1170px; } } @media (max-width: 1200px) { /* line 248, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ [class*="hero-ani-"] { display: none !important; } } /* line 252, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ .form-control:focus { box-shadow: none; } /* line 255, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_common.scss */ input:-internal-autofill-selected { background-color: transparent !important; background-image: none !important; color: black !important; } /**************** common css end ****************/ /* Main Button Area css ============================================================================================ */ /* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ .btn_2 { display: inline-block; padding: 13.5px 40px; text-align: center; font-size: 16px; font-weight: 700; color: #8d00ff; background-color: #fff; -o-transition: all .4s ease-in-out; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out; text-transform: uppercase; border: 1px solid #8d00ff; border-radius: 2px; font-family: "Roboto", sans-serif; border-bottom-right-radius: 20px; border-top-left-radius: 20px; background-size: 200% auto; z-index: 9999; } /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_button.scss */ .btn_2:hover { color: #fff; border: 1px solid transparent; background-position: right; z-index: 9999; } /* End Main Button Area css ============================================================================================ */ /**************menu part start*****************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .home_menu { position: fixed; left: 0; top: 0; width: 100%; z-index: 999; } /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { padding: 0rem !important; } @media (max-width: 576px) { /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { max-width: 120px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 11, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-brand { max-width: 130px; } } /* line 23, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-toggler { position: relative; z-index: 1; } /* line 27, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar-toggler:after { position: absolute; content: ""; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; background-size: 200% auto; } /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 0; } @media (max-width: 576px) { /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 40, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } } /* line 52, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { text-align: right; justify-content: right; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 52, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { padding-left: 25px; } } /* line 61, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll { color: #fff; font-size: 16px; padding: 40px 25px; font-family: "Roboto", sans-serif; line-height: 13px; text-transform: capitalize; font-weight: 500; border-top: 2px solid transparent; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 61, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll { padding: 35px 16px; } } /* line 74, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item ul li .smoothScroll:hover { border-top: 2px solid #000; color: #000; } /* line 84, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .btn_2 { padding: 10.5px 39px; margin-left: 55px; color: #fff; background-color: transparent; border: 1px solid #fff; } /* line 90, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .btn_2:hover { border: 1px solid transparent; } /* line 97, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown-menu { border: 0px solid rgba(0, 0, 0, 0.15) !important; background-color: #fafafa; } /* line 103, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu { transition: all 0.5s; overflow: hidden; transform-origin: top center; transform: scale(1, 0); display: block; margin-top: -1px; } /* line 110, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu .dropdown-item { font-size: 14px; padding: 9px 18px !important; color: #000 !important; text-transform: capitalize; } /* line 115, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu .dropdown-item:hover { color: #8d00ff !important; } /* line 122, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown:hover .dropdown-menu { transform: scale(1); } @media (max-width: 991px) { /* line 132, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .navbar-collapse ul li .smoothScroll { color: #000 !important; } /* line 140, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .navbar { padding: 15px 0; } /* line 144, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-light .navbar-toggler { border-color: transparent; padding: 0; } /* line 147, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-light .navbar-toggler span { color: #fff; font-size: 25px; } /* line 153, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-collapse { z-index: 9999 !important; position: absolute; left: 0; top: 62px; width: 100%; background-color: #fff; text-align: center !important; box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2); } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item { text-align: left !important; } /* line 167, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item .nav-item { padding: 5px 15px !important; } /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .main_menu .main-menu-item .nav-item a { padding: 10px 15px !important; color: #000 !important; } /* line 177, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .navbar-nav { align-items: start !important; padding: 10px 0; } /* line 183, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-menu { transform: scale(1, 0); display: none; margin-top: 10px; } /* line 190, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown:hover .dropdown-menu { transform: scale(1); display: block; color: #8d00ff; } /* line 197, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .dropdown .dropdown-item:hover { color: #8d00ff !important; } } /* line 316, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .main-menu-item ul li .smoothScroll { color: #fff; font-size: 15px; padding: 0px 24px; font-family: "Roboto", sans-serif; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 316, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .single_page_menu .main-menu-item ul li .smoothScroll { padding: 0px 16px; } } /* line 332, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed { position: fixed; z-index: 9999 !important; width: 100%; background-color: #8d00ff; top: 0; } /* line 339, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .logo_2 { display: inherit; } /* line 343, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .logo_1 { display: none; } /* line 349, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_menu.scss */ .menu_fixed .main-menu-item ul li .smoothScroll { color: #fff; } /**************** banner part css start ****************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 950px; position: relative; background-image: url(../img/banner_img.png); background-repeat: no-repeat; background-size: cover; background-position: center; } @media (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part { height: 800px; } } /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { display: table; width: 100%; height: 850px; margin-top: 0px; } /* line 26, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .banner_text_iner { display: table-cell; vertical-align: middle; } @media (max-width: 991px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { text-align: center; padding-top: 0px; height: 700px; margin-top: 80px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { height: 750px; margin-top: 80px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 21, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text { height: 850px; } } /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 30px; text-transform: capitalize; font-weight: 700; margin-bottom: 5px; line-height: 85px; color: #fff; } @media (max-width: 576px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.3; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 { font-size: 20px; margin-bottom: 45px; line-height: 1.4; } } /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text h2 span { color: #8d00ff; } /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { font-size: 14px; line-height: 1.8; font-family: "Roboto", sans-serif; padding: 0 70px; color: #fff; font-weight: 300; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { padding: 0; margin-bottom: 55px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text p { margin-top: 12px; padding: 0; margin-bottom: 55px; } } /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 22px; position: relative; z-index: 0; } @media (max-width: 991px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 0px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_text .btn_2 { margin-top: 0px; } } .banner_part img { margin-top: -110px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part img { margin-top: -30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part img { margin-top: -30px } } /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { position: absolute; bottom: -225px; } @media (max-width: 991px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { position: relative; bottom: -180px; max-width: 400px; margin: 0 auto; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video { bottom: 90px; max-width: 320px; margin: 0 auto; } } /* line 127, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner { position: relative; } /* line 129, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner .extends_video { text-align: center; position: absolute; left: 0; right: 0; top: 45%; } /* line 135, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .banner_part .banner_video .banner_video_iner .extends_video #play-video_1 { width: 69px; height: 50px; display: inline-block; background-color: red; border-radius: 10px; color: #fff; font-size: 20px; text-align: center; line-height: 50px; } .featured-property-half { position: relative; background: #fff; margin-top: -300px; -webkit-box-shadow: 0 0px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0px 20px -5px rgba(0, 0, 0, 0.1); } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-property-half { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-property-half { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1); } } .featured-property-half .image { margin-left: 30px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image { margin: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image { margin-left: 30px; } } .featured-property-half .image .btn { margin-top: 30px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image .btn { margin-top: 0px; font-size: 11px; padding: 3px 8px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image .btn { margin-top: 0px; padding: 3px 8px; } } .featured-property-half .image img { margin-top: 10px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .image img { margin-top: 5px; } } .featured-property-half .text { padding: -20x; padding-top: 75px; padding-right: 30px } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text { padding: 15px; padding-top: 5px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text { padding: 15px; } } .featured-property-half .text .btn { margin-bottom: 5px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text .btn { font-size: 11px; padding: 3px 10px; margin-bottom: 5px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text .btn { font-size: 14px; margin-bottom: 5px; } } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 16px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 18px; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text h3 { font-size: 16px; } } .featured-property-half .text p { line-height: 24px; font-size: 15px; color: #000; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 14px; line-height: 22px; color: #000; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 14px; color: #000; } } @media (max-width: 576px) { /* line 111, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text p { font-size: 13px; line-height: 22px; color: #000; } } .featured-property-half .text ul { list-style: none; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul { margin-top: -5px; } } .featured-property-half .text ul li { display: inline-block; padding: 5px; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li { font-size: 10px; } } .featured-property-half .text ul li img { width: 50px; height: 50px; border-radius: 50%; } @media (max-width: 991px) { /* line 82, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li img { width: 30px; height: 30px; border-radius: 50%; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 99, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_banner.scss */ .featured-property-half .text ul li img { width: 50px; height: 50px; border-radius: 50%; } } .featured-property-half .text .list-unstyled { margin-top: -40px; } .featured-property-half .text .list-unstyled li { display: inline; margin-right: 32px; color: #999999; cursor: pointer; font-weight: 400; -webkit-transition: 0.5s; transition: 0.5s; position: relative; } .featured-property-half .text .list-unstyled li:after { position: absolute; content: ""; right: -15px; top: 5px; width: 2px; height: 15px; background-color: #777777; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li { margin-right: 20px; } } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:after { right: -12px; height: 10px; } } /* line 150, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:last-child:after { display: none; } /* line 156, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text.list-unstyled li:hover { color: #8d00ff; } /* line 159, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li:hover a { color: #8d00ff; } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .featured-property-half .text .list-unstyled li a { margin-right: 3px; color: #7f7f7f; } /**********************content part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .bg { position: relative; background: #fff; margin-top: -1px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg { position: relative; background: #fff; margin-top: -1px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg { position: relative; background: #fff; margin-top: -150px; -webkit-box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 20px 20px -5px rgba(0, 0, 0, 0.1); } } .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding-left: 30px; padding-top: 55px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding: 15px; padding-top: 45px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .section-heading { position: relative; z-index: 1; margin-bottom: 50px; text-align: center; padding: 15px; padding-top: 45px; } } .section-heading h4 { font-weight: 700; margin-bottom: 10px; } @media only screen and (max-width: 767px) { .section-heading h4 { font-size: 20px; } } .section-heading .line { width: 150px; height: 1px; background-color: #4e5152; margin: 0 auto; position: relative; z-index: 1; margin-bottom: -10px; } .section-heading .line::after { width: 60px; height: 2px; background-color: #db4437; content: ''; position: absolute; bottom: 0; left: 50%; margin-left: -30px; } .section-heading.style-2 { text-align: left; } .section-heading.style-2 .line { width: 100%; } .section-heading.style-2 .line::after { left: 0; margin-left: 0; } #scrollUp { background-color: #0f1112; border-radius: 0; bottom: 50px; color: #ffffff; font-size: 14px; height: 40px; line-height: 42px; right: 50px; text-align: center; width: 40px; border-radius: 0%; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); } #scrollUp:hover, #scrollUp:focus { background-color: #db4437; color: #ffffff; } @media only screen and (max-width: 767px) { #scrollUp { bottom: 30px; right: 30px; line-height: 32px; width: 30px; height: 30px; } } .vizew-btn { background-color: #db4437; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; position: relative; z-index: 1; display: inline-block; min-width: 160px; height: 50px; color: #ffffff; border-radius: 0; padding: 0 30px; font-size: 16px; line-height: 50px; font-weight: 500; text-transform: capitalize; } .vizew-btn:hover, .vizew-btn:focus { font-size: 16px; font-weight: 500; background-color: #0f1112; color: #ffffff; box-shadow: none; } .featured-post-slides { position: relative; z-index: 1; padding-left: 30px; margin-top: -20px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-post-slides { position: relative; z-index: 1; padding: 15px; margin-top: -30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .featured-post-slides { position: relative; z-index: 1; padding: 15px; margin-top: -30px; } } .sport-video-slides, .business-video-slides { position: relative; z-index: 1; } .featured-post-slides .owl-prev, .featured-post-slides .owl-next, .sport-video-slides .owl-prev, .sport-video-slides .owl-next, .business-video-slides .owl-prev, .business-video-slides .owl-next { background-color: #1b1e1f; width: 30px; height: 30px; border-radius: 2px; font-size: 16px; color: #ffffff; text-align: center; line-height: 30px; -webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; position: absolute; top: -88px; right: 38px; } .featured-post-slides .owl-prev:hover, .featured-post-slides .owl-prev:focus, .featured-post-slides .owl-next:hover, .featured-post-slides .owl-next:focus, .sport-video-slides .owl-prev:hover, .sport-video-slides .owl-prev:focus, .sport-video-slides .owl-next:hover, .sport-video-slides .owl-next:focus, .business-video-slides .owl-prev:hover, .business-video-slides .owl-prev:focus, .business-video-slides .owl-next:hover, .business-video-slides .owl-next:focus { background-color: #0e0f10; } .featured-post-slides .owl-next, .sport-video-slides .owl-next, .business-video-slides .owl-next { right: 0; } .single-feature-post.video-post { position: relative; z-index: 1; width: 100%; height: 280px; } .single-feature-post.video-post img { background-size: auto; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .single-feature-post.video-post { height: 240px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-feature-post.video-post { height: 230px; padding-left: -20px; } } @media only screen and (max-width: 767px) { .single-feature-post.video-post { height: 210px; padding-left: -20px; } } .single-feature-post.video-post::before { content: ""; position: absolute; height: 50%; width: 100%; z-index: 5; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.5); background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); } .single-feature-post.video-post .play-btn { position: absolute; margin-top: -40px; margin-left: -30px; top: 50%; left: 50%; width: 60px; height: 60px; font-size: 20px; background-color: #db4437; border-radius: 50%; color: #ffffff; line-height: 60px; text-align: center; padding: 0 0 0 3px; z-index: 99; } @media only screen and (max-width: 767px) { .single-feature-post.video-post .play-btn { width: 50px; height: 50px; line-height: 50px; font-size: 20px; margin-top: -40px; margin-left: -20px; } } .single-feature-post.video-post .play-btn:hover, .single-feature-post.video-post .play-btn:focus { background-color: #0f1112; } .single-feature-post.video-post .post-content { position: absolute; left: 40px; bottom: 0px; z-index: 59; width: 80%; } @media only screen and (max-width: 767px) { .single-feature-post.video-post .post-content { left: 20px; bottom: 5px; } } .single-feature-post.video-post .post-content .post-title { font-size: 20px; display: block; color: #ffffff; margin-bottom: 30px; } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-feature-post.video-post .post-content .post-title { font-size: 18px; } } @media only screen and (max-width: 767px) { .single-feature-post.video-post .post-content .post-title { font-size: 16px; } } .single-feature-post.video-post .post-content .post-title:hover, .single-feature-post.video-post .post-content .post-title:focus { color: #0f1112; } .single-feature-post.video-post .post-content .post-meta { position: relative; z-index: 1; } .single-feature-post.video-post .post-content .post-meta a { display: inline-block; margin-right: 30px; color: #ffffff; } .single-feature-post.video-post .post-content .post-meta a:hover, .single-feature-post.video-post .post-content .post-meta a:focus { color: #db4437; } .single-feature-post.video-post .video-duration { display: inline-block; position: absolute; right: 30px; bottom: 30px; background-color: #0f1112; padding: 6px 12px; border-radius: 2px; font-size: 14px; color: #ffffff; line-height: 1; z-index: 79; } .bg .text { padding-top: 50px; padding-right: 30px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text { padding: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text { padding: 15px; } } .bg .text .btn { padding: 4px 25px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text .btn { font-size: 11px; padding: 3px 20px; margin-top: -20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text .btn { font-size: 11px; padding: 5px 20px; margin-top: -20px; } } .bg .text p { margin-top: 10px; font-size: 15px; line-height: 25px; color: #000; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text p { font-size: 13px; margin-top: 5px; line-height: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text p { font-size: 14px; margin-top: 5px; line-height: 24px; } } .bg .text br { font-size: 45px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text br { font-size: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .text br { font-size: 30px; } } .pad { padding-left: 30px; padding-right: 30px; margin-top: 40px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { padding: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { padding: 15px; } } .single-post-area { position: relative; z-index: 1; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { margin-top: 15px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad { margin-top: 15px; } } .single-post-area .post-thumbnail { position: relative; z-index: 1; } .single-post-area .post-thumbnail img { height: 200px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .single-post-area .post-thumbnail img { width: 100%; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .single-post-area .post-thumbnail img { width: 100%; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-post-area .post-thumbnail { margin-bottom: 10px; } } @media only screen and (max-width: 767px) { .single-post-area .post-thumbnail { margin-bottom: 10px; } } .single-post-area .post-content { position: relative; z-index: 1; margin-top: 20px; } .single-post-area .post-content .post-title { display: block; color: #000; margin-bottom: 15px; font-size: 20px; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .single-post-area .post-content .post-title { font-size: 17px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .single-post-area .post-content .post-title { font-size: 16px; } } @media only screen and (max-width: 767px) { .single-post-area .post-content .post-title { font-size: 16px; } } .single-post-area .post-content .post-title:hover, .single-post-area .post-content .post-title:focus { color: blue; } .pad .single-post-area .post-content p { color: #000; font-size: 15px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content p { font-size: 13px; line-height: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content p { font-size: 13px; line-height: 24px; } } .pad .single-post-area .post-content .list-unstyled { margin-top: 20px; } @media (max-width: 991px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content .list-unstyled { margin-bottom: 40px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .pad .single-post-area .post-content .list-unstyled { margin-bottom: 40px } } .pad .single-post-area .post-content .list-unstyled li { display: inline; margin-right: 32px; color: #999999; cursor: pointer; font-weight: 400; -webkit-transition: 0.5s; transition: 0.5s; position: relative; } .pad .single-post-area .post-content .list-unstyled li:after { position: absolute; content: ""; right: -18px; top: 1px; width: 2px; height: 15px; background-color: #777777; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li { margin-right: 20px; font-size: 11px; } } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:after { right: -12px; height: 10px; } } /* line 150, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:last-child:after { display: none; } /* line 156, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content.list-unstyled li:hover { color: #8d00ff; } /* line 159, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li:hover a { color: #8d00ff; } /* line 164, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .pad .single-post-area .post-content .list-unstyled li a { margin-right: 3px; color: #7f7f7f; } .bg .viewall { margin: 40px; margin-top: 50px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .viewall { margin-top: 10px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .viewall { margin-top: 20px; } } .bg .viewall .btn { padding: 6px 50px; } /**********************kasus part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .kasus .bg { margin-top: 50px; padding-left: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg { padding: 15px; margin-top: 30px; } } .kasus .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .btn { font-size: 14px; padding: 3px 20px; } } .kasus .bg h4 { margin-top: 20px; margin-bottom: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg h4 { font-size: 18px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg h4 { font-size: 20px; } } .kasus .bg .pad { padding-left: 0px; width: 100%; } @media (max-width: 571px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .pad { text-align: center; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .pad { padding-left: 0px; } } @media (max-width: 571px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .bg .pad .form { padding: 0px 90px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .bg .pad .form { padding-left: 0px; } } .bg .count-box { padding-top: 50px; width: 100%; } .bg .count-box .box1 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: #FF8C00; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box1 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box1 span { font-size: 24px; } } .bg .count-box .box2 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: #228B22; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box2 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box2 span { font-size: 24px; } } .bg .count-box .box3 span { font-size: 32px; line-height: 24px; display: block; font-weight: 700; color: red; margin-left: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .bg .count-box .box3 span { font-size: 24px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .bg .count-box .box3 span { font-size: 24px; } } .bg .count-box p { padding-top: 10px; padding-left: 10px; margin: 0; font-family: "Roboto", sans-serif; font-size: 14px; } .kasus .bg .pad p { margin-top: -20px; padding: 0px 0px 10px 0px; font-size: 14px; } .kasus .bg .pad .form .har { padding-right: 50px; padding-left: 40px; font-size: 16px; } .kasus .bg .pad .form select:hover { padding: 5px 20px; } .kasus .kasus-odp { margin-top: 30px; } .kasus .kasus-pdp { margin-top: 30px; } .kasus .kasus-odp .box1 span { font-size: 24px; line-height: 24px; display: block; font-weight: 700; padding: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .kasus-odp .box1 span { font-size: 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .kasus-odp .box1 span { font-size: 20px; } } .kasus .kasus-pdp .box2 span { font-size: 24px; line-height: 24px; display: block; font-weight: 700; padding: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .kasus-pdp .box2 span { font-size: 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .kasus-pdp .box2 span { font-size: 20px; } } .kasus .text-peta { margin-top: 40px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .kasus .text-peta { margin-top: 50px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .text-peta { margin-top: 50px; } } .kasus .peta { margin-top: 10px; } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .kasus .text-peta { margin-top: 50px; } } /**********************Hotline part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .hotline .bg { margin-top: 50px; padding-left: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .hotline .bg { padding: 15px; margin-top: 30px; } } .hotline .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .hotline .bg .btn { font-size: 14px; padding: 3px 20px; } } .hotline .bg .text { margin-top: -20px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text { margin-top: 10px; } } .hotline .bg .text h4 { color: #247aed; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text h4 { font-size: 20px; } } .hotline .bg .text1 h4 { color: black; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .text1 h4 { font-size: 18px; } } .hotline .bg .text p { color: #247aed; margin-top: 20px; } .hotline .bg .tombol { margin: 20px; } .hotline .bg .tombol .btn { border-radius: 14px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .tombol .btn { margin-top: -20px; } } .hotline .bg .tombol img { width: 30px; padding-top: 4px; padding-bottom: 4px; margin-right: 10px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .hotline .bg .tombol img { width: 20px; margin-right: 6px; } } .hotline .bg .rumah-sakit .btn { float: right; margin-right: 15px; margin-top: 15px; color: black; font-size: 18px; padding-top: 20px; padding-right: 60px; padding-left: 55px; } .hotline .bg .rumah-sakit .btn img { height: 30px; padding-right: 15px; } .hotline .bg .rumah-sakit .btn p { padding-top: 20px; font-size: 15px; } .hotline .bg .rumah-sakit2 .btn { float: left; margin-left: 15px; margin-top: 15px; color: black; font-size: 18px; padding-top: 20px; padding-right: 30px; } .hotline .bg .rumah-sakit2 .btn img { height: 30px; padding-right: 15px; } .hotline .bg .rumah-sakit2 .btn p { padding-top: 20px; font-size: 15px; } .hotline .bg .catatan p { font-size: 13px; padding: 15px; margin-bottom: 20px; } /**********************team part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .team .bg { margin-top: 50px; padding-left: 30px; padding-right: 30px; padding-top: 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .team .bg { padding: 15px; margin-top: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .team .bg { padding: 15px; margin-top: 30px; } } .team .bg .btn { padding: 6px 30px; } @media (max-width: 991px) { /* line 133, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_blog_part.scss */ .team .bg .btn { font-size: 11px; padding: 3px 20px; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { /* line 1, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_event.scss */ .team .bg .btn { font-size: 14px; padding: 3px 20px; } } .team .bg h4 { margin-top: 20px; } .site-section { margin-top: -100px; padding: -13em -10em; } @media (min-width: 768px) { .site-section { padding: 7em 0; } } .site-section.site-section-sm { padding: 4em 0; } @media (max-width: 767.98px) { .display-3, .display-2, .display-4 { font-size: 2rem !important; } } @media (max-width: 991.98px) { .bg-md-height { height: 300px; } } @media (max-width: 767.98px) { .bg-sm-height { height: 300px; } } .text-gray-100 { color: #f8f9fa !important; } .text-gray-200 { color: #e9ecef !important; } .text-gray-300 { color: #dee2e6 !important; } .text-gray-400 { color: #ced4da !important; } .text-gray-500 { color: #adb5bd !important; } .text-gray-600 { color: #6c757d !important; } .text-gray-700 { color: #495057 !important; } .text-gray-800 { color: #343a40 !important; } .text-gray-900 { color: #212529 !important; } .row-wrap { margin-left: 35px; margin-right: 35px; } .overflow-hidden { overflow: hidden; } .row-items { height: calc(50% - 15px); margin-bottom: 15px; } .row-items.last { margin-bottom: 0; } @media (max-width: 991.98px) { .responsive-md-height { height: 500px !important; margin-bottom: 15px; } } .block-13, .slide-one-item { position: relative; z-index: 1; } .block-13 .owl-nav, .slide-one-item .owl-nav { position: relative; position: absolute; bottom: 0px; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } .block-13 .owl-nav .owl-prev, .block-13 .owl-nav .owl-next, .slide-one-item .owl-nav .owl-prev, .slide-one-item .owl-nav .owl-next { position: relative; display: inline-block; padding: 20px; font-size: 30px; color: #fff; } .block-13 .owl-nav .owl-prev.disabled, .block-13 .owl-nav .owl-next.disabled, .slide-one-item .owl-nav .owl-prev.disabled, .slide-one-item .owl-nav .owl-next.disabled { opacity: .2; } .block-13 .owl-stage-outer { padding-top: 30px; padding-bottom: 30px; } .block-13 .owl-dots { text-align: center; } .block-13 .owl-dots .owl-dot { display: inline-block; margin: 5px; } .block-13 .owl-dots .owl-dot span { line-height: 0; display: inline-block; width: 28px; height: 4px; border: none; float: left; background: #cccccc; -webkit-transition: .3s all ease; -o-transition: .3s all ease; transition: .3s all ease; } .block-13 .owl-dots .owl-dot.active>span { background: #e3c4a8; } .slide-one-item.home-slider .owl-nav { position: absolute !important; top: 50% !important; bottom: auto !important; width: 100%; } .slide-one-item.home-slider .owl-prev { left: 10px !important; } .slide-one-item.home-slider .owl-next { right: 10px !important; } .slide-one-item.home-slider .owl-prev, .slide-one-item.home-slider .owl-next { color: #fff; position: absolute !important; top: 50%; padding: 0px; height: 50px; width: 50px; border-radius: 0%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); background: rgba(0, 0, 0, 0.2); -webkit-transition: .3s all ease-in-out; -o-transition: .3s all ease-in-out; transition: .3s all ease-in-out; line-height: 0; text-align: center; font-size: 25px; } @media (min-width: 768px) { .slide-one-item.home-slider .owl-prev, .slide-one-item.home-slider .owl-next { font-size: 25px; } } .slide-one-item.home-slider .owl-prev>span, .slide-one-item.home-slider .owl-next>span { position: absolute; line-height: 0; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .slide-one-item.home-slider .owl-prev:hover, .slide-one-item.home-slider .owl-prev:focus, .slide-one-item.home-slider .owl-next:hover, .slide-one-item.home-slider .owl-next:focus { background: black; } .slide-one-item.home-slider:hover .owl-nav, .slide-one-item.home-slider:focus .owl-nav, .slide-one-item.home-slider:active .owl-nav { opacity: 10; visibility: visible; } /**********************footer part css*******************/ /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { background-color: #faf4ff; padding: 130px 0px 25px; } @media (max-width: 576px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 2, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part { padding: 70px 0px 25px; } } /* line 17, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part p { font-size: 15px; } /* line 20, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_logo { padding-bottom: 22px; } /* line 23, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours { margin-top: 30px; } /* line 25, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours h5 { font-size: 15px; color: #555; font-weight: 300; } /* line 31, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li { display: flex; justify-content: space-between; position: relative; z-index: 1; } /* line 36, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li:after { position: absolute; content: ""; left: 0; bottom: 10px; z-index: -1; width: 100%; height: 1px; border: 1px dotted #555555; } /* line 46, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li p { color: #555555; background-color: #faf4ff; display: inline-block; margin-bottom: 0; } /* line 53, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .work_hours ul li span { line-height: 30px; float: right; color: #555555; font-weight: 300; background-color: #faf4ff; display: inline-block; } @media (max-width: 576px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 64, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part { margin-bottom: 20px; } } /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { font-size: 20px; color: #000; margin-bottom: 30px; font-weight: 600; text-transform: capitalize; } @media (max-width: 576px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { /* line 77, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part h4 { margin-bottom: 15px; } } /* line 96, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part p { color: #555555; line-height: 25px; margin-bottom: 10px; } /* line 102, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part a img { margin-top: 20px; } /* line 108, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .list-unstyled li a { color: #555; margin-bottom: 15px; display: inline-block; } /* line 112, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .list-unstyled li a:hover { color: #8d00ff !important; } /* line 118, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon { float: left; margin-top: 38px; } @media (max-width: 991px) { /* line 118, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon { margin-top: 15px; } } /* line 128, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .social_icon li a { margin-left: 0; margin-right: 25px; } /* line 136, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part { position: relative; } /* line 138, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part input { padding: 8px 22px; font-size: 13px; border-radius: 20px 0 20px 0; border: 2px solid #fff; margin-top: 20px; width: 100%; } /* line 146, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part .email_icon { position: absolute; right: 0px; top: 20px; text-align: center; color: #fff; line-height: 10px; background-color: #9300ff; border: 1px solid #9300ff; } /* line 157, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .single_footer_part .mail_part .button-contactForm { color: #fff; border-color: #edeff2; padding: 12px 15px; border-radius: 0 0 20px 0; } /* line 165, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part hr { background-color: #d7d7d7; margin-top: 50px; margin-bottom: 25px; } /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon { text-align: right; } /* line 172, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li { display: inline-block; } /* line 174, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a { font-size: 14px; color: #a7a4aa; margin-left: 30px; -webkit-transition: 0.5s; transition: 0.5s; } @media (max-width: 991px) { /* line 174, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a { margin-left: 5px; margin-right: 5px; } } /* line 186, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon li a :hover { color: #8d00ff; } @media (max-width: 991px) { /* line 170, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_icon { float: none; margin-top: 15px; text-align: center; } } @media (max-width: 991px) { /* line 200, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text { text-align: center; } } /* line 207, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p { color: #888; } /* line 210, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text span { color: #8d00ff; font-size: 12px; } /* line 215, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p a { color: #8d00ff; -webkit-transition: 0.5s; transition: 0.5s; } /* line 218, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .copyright_text p a:hover { color: #8d00ff; } /* line 222, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .info { color: red !important; } /* line 226, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_footer.scss */ .footer_part .footer_img img { width: 25%; float: left; padding-right: 8px; margin-bottom: 8px; } .my-custom-scrollbar { position: relative; height: 500px; overflow: auto; } .table-wrapper-scroll-y { display: block; } /*# sourceMappingURL=style.css.map */
0.203312
0.06804
.charsheet .sheet-standardBox { display: inline-block; width: 100%; padding: 5px; margin-bottom: 10px; box-shadow: 5px 5px 5px #888888; border: 1px solid #1b608e; font-family: "<NAME>"; text-align: left; } .charsheet input { width: 100%; border: none; text-align: left; color: black; background-color: white; } .charsheet textarea { height: 73px; border: none; width:95%; font-size: .75em; } .charsheet .sheet-colHeader { display: inline-block; border: 1px solid #484848; background-color: #000000; color: #FFF200; text-shadow: 2px 2px black; text-align: center; font-size: 1.5em; font-weight: bold; padding: 5px; margin: 0px; } .charsheet .sheet-traitCell { display: inline-block; color: black; margin: 0px; padding: 3px; padding-right: 0px; vertical-align: text-top; text-align: center; } .charsheet button[type=roll] { background-color: #FFF200; color: black; background-image: none; } .charsheet .repcontrol_add, .charsheet .repcontrol_edit, .charsheet .repcontrol_del { display: block; background: #FFF200; color: black; /*text-shadow:0px 0px 2px #000,0px 0px 2px #000,0px 0px 2px #000;*/ box-shadow:none; /*float:left!important;*/ /*margin-bottom:0px;*/ font-family: "<NAME>"; font-size:0.6em; /*height:1.5em;*/ } /*-----radio boxes-----*/ /* -----Hide actual radio----- */ input.sheet-normal[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* -----Hide actual radio----- */ input.sheet-normal[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /*------------Forms-----------*/ .sheet-center { margin-left:auto; margin-right:auto; text-align:center; } /* Hide actual Forms radio */ input.sheet-forms[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* Fake Forms radio */ input.sheet-forms[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* End of Forms radio */ /* -----Fake radio----- */ /* Hide actual normal radio */ input.sheet-normal[type="radio"] + span::before { margin-right: 0px; border: solid 1px #a8a8a8; line-height: 14px; text-align: center; display: inline-block; vertical-align: middle; -moz-box-shadow: 0 0 2px #ccc; -webkit-box-shadow: 0 0 2px #ccc; box-shadow: 0 0 2px #ccc; background: #f6f6f6; background: -moz-radial-gradient(#f6f6f6, #dfdfdf); background: -webkit-radial-gradient(#f6f6f6, #dfdfdf); background: -ms-radial-gradient(#f6f6f6, #dfdfdf); background: -o-radial-gradient(#f6f6f6, #dfdfdf); background: radial-gradient(#f6f6f6, #dfdfdf); font-family: 'New Time Roman'; color:black; content: "•"; width: 12px; height: 12px; font-size: 3em; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } /* -----Remove dot from all radios _after_ selected one----- */ input.sheet-normal[type="radio"]:checked ~ input.sheet-normal[type="radio"] + span::before { content: ""; } /*------------empty traits-----------*/ input.sheet-zero[type="radio"]:checked + span::before { opacity: 0; } input.sheet-zero[type="radio"]:hover + span::before { opacity: 1; } input.sheet-zero[type="radio"] + span::before { font-size: 12px; content: "✖"; opacity: 0.25; } /* end of normal radio */ /* Fake radio */ input.sheet-forms[type="radio"] + span::before { margin-right: 4px; border: solid 1px #a8a8a8; line-height: 14px; text-align: center; display: inline-block; vertical-align: middle; -moz-box-shadow: 0 0 2px #ccc; -webkit-box-shadow: 0 0 2px #ccc; box-shadow: 0 0 2px #ccc; background: #f6f6f6; background: -moz-radial-gradient(#f6f6f6, #dfdfdf); background: -webkit-radial-gradient(#f6f6f6, #dfdfdf); background: -ms-radial-gradient(#f6f6f6, #dfdfdf); background: -o-radial-gradient(#f6f6f6, #dfdfdf); background: radial-gradient(#f6f6f6, #dfdfdf); } /* Fake radio */ input.sheet-forms[type="radio"] + span::before { content: ""; width: 12px; height: 12px; font-size: 24px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } input.sheet-forms[type="radio"]:checked + span::before { content: ""; background: black; background: -moz-radial-gradient(white,green, red); background: -webkit-radial-gradient(white, green,red); background: -ms-radial-gradient(white,green, red); background: -o-radial-gradient(white,green, red); background: radial-gradient(white, green,red); } /* end of forms radio */
Capes, Cowls & Villains Foul/CCVF Main.css
.charsheet .sheet-standardBox { display: inline-block; width: 100%; padding: 5px; margin-bottom: 10px; box-shadow: 5px 5px 5px #888888; border: 1px solid #1b608e; font-family: "<NAME>"; text-align: left; } .charsheet input { width: 100%; border: none; text-align: left; color: black; background-color: white; } .charsheet textarea { height: 73px; border: none; width:95%; font-size: .75em; } .charsheet .sheet-colHeader { display: inline-block; border: 1px solid #484848; background-color: #000000; color: #FFF200; text-shadow: 2px 2px black; text-align: center; font-size: 1.5em; font-weight: bold; padding: 5px; margin: 0px; } .charsheet .sheet-traitCell { display: inline-block; color: black; margin: 0px; padding: 3px; padding-right: 0px; vertical-align: text-top; text-align: center; } .charsheet button[type=roll] { background-color: #FFF200; color: black; background-image: none; } .charsheet .repcontrol_add, .charsheet .repcontrol_edit, .charsheet .repcontrol_del { display: block; background: #FFF200; color: black; /*text-shadow:0px 0px 2px #000,0px 0px 2px #000,0px 0px 2px #000;*/ box-shadow:none; /*float:left!important;*/ /*margin-bottom:0px;*/ font-family: "<NAME>"; font-size:0.6em; /*height:1.5em;*/ } /*-----radio boxes-----*/ /* -----Hide actual radio----- */ input.sheet-normal[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* -----Hide actual radio----- */ input.sheet-normal[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /*------------Forms-----------*/ .sheet-center { margin-left:auto; margin-right:auto; text-align:center; } /* Hide actual Forms radio */ input.sheet-forms[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* Fake Forms radio */ input.sheet-forms[type="radio"] { opacity: 0; width: 16px; height: 16px; position: relative; top: 5px; left: 6px; margin: -10px; cursor: pointer; z-index: 1; } /* End of Forms radio */ /* -----Fake radio----- */ /* Hide actual normal radio */ input.sheet-normal[type="radio"] + span::before { margin-right: 0px; border: solid 1px #a8a8a8; line-height: 14px; text-align: center; display: inline-block; vertical-align: middle; -moz-box-shadow: 0 0 2px #ccc; -webkit-box-shadow: 0 0 2px #ccc; box-shadow: 0 0 2px #ccc; background: #f6f6f6; background: -moz-radial-gradient(#f6f6f6, #dfdfdf); background: -webkit-radial-gradient(#f6f6f6, #dfdfdf); background: -ms-radial-gradient(#f6f6f6, #dfdfdf); background: -o-radial-gradient(#f6f6f6, #dfdfdf); background: radial-gradient(#f6f6f6, #dfdfdf); font-family: 'New Time Roman'; color:black; content: "•"; width: 12px; height: 12px; font-size: 3em; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } /* -----Remove dot from all radios _after_ selected one----- */ input.sheet-normal[type="radio"]:checked ~ input.sheet-normal[type="radio"] + span::before { content: ""; } /*------------empty traits-----------*/ input.sheet-zero[type="radio"]:checked + span::before { opacity: 0; } input.sheet-zero[type="radio"]:hover + span::before { opacity: 1; } input.sheet-zero[type="radio"] + span::before { font-size: 12px; content: "✖"; opacity: 0.25; } /* end of normal radio */ /* Fake radio */ input.sheet-forms[type="radio"] + span::before { margin-right: 4px; border: solid 1px #a8a8a8; line-height: 14px; text-align: center; display: inline-block; vertical-align: middle; -moz-box-shadow: 0 0 2px #ccc; -webkit-box-shadow: 0 0 2px #ccc; box-shadow: 0 0 2px #ccc; background: #f6f6f6; background: -moz-radial-gradient(#f6f6f6, #dfdfdf); background: -webkit-radial-gradient(#f6f6f6, #dfdfdf); background: -ms-radial-gradient(#f6f6f6, #dfdfdf); background: -o-radial-gradient(#f6f6f6, #dfdfdf); background: radial-gradient(#f6f6f6, #dfdfdf); } /* Fake radio */ input.sheet-forms[type="radio"] + span::before { content: ""; width: 12px; height: 12px; font-size: 24px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } input.sheet-forms[type="radio"]:checked + span::before { content: ""; background: black; background: -moz-radial-gradient(white,green, red); background: -webkit-radial-gradient(white, green,red); background: -ms-radial-gradient(white,green, red); background: -o-radial-gradient(white,green, red); background: radial-gradient(white, green,red); } /* end of forms radio */
0.316053
0.063048
body { color: black; --link: #064EC0; } a { color: var(--link); } h2 { font-size: 2.5rem; margin-bottom: 2rem; } section { text-align: center; padding: 6rem 0; border-bottom: 3px solid black; } .intro { height: 350px; background-color: #3b5d94; background-image: url("/images/space-background.svg"); background-size: 1440px; background-position: center top; background-repeat: no-repeat; background-attachment: fixed; } .intro .title { width: 20rem; margin-top: 2rem; } .intro p { color: white; font-weight: 600; font-size: 1.6rem; text-shadow: 0 0 2px black; margin-top: 2rem; } .download .image-cap { height: 180px; background-size: 800px; margin-top: -240px; background-image: url("/images/space-foreground.svg"); background-repeat: no-repeat; background-position: center top; } .download .btn { margin-top: 5rem; border: 3px solid black; font-weight: bold; } .screens { background: #006400; } .screens ul { padding: 0; } .screens ul li { display: inline-block; width: 160px; height: 100px; background: #eee; margin: .25rem; margin-top: .75rem; } .screens ul li a { display: block; width: 100%; height: 100%; } .screens ul li img { width: 100%; } .pic .modal-body p { margin-top: 25px; } .leaderboard h2 { margin-bottom: 4rem; } .leaderboard ul { list-style: none; padding: 0; } .leaderboard .leader-nav .nav-buttons { border: 1px solid #999; border-radius: 10px; margin: 1rem; margin-top: 0; } .leaderboard .leader-nav .nav-buttons h4 { background: #333; color: white; padding: 1rem; margin: 0; border-top-left-radius: 10px; border-top-right-radius: 10px; } .leaderboard .leader-nav .nav-buttons li { padding: .5rem; } .leaderboard .leader-scores .high-score:nth-child(1) { background: #333; color: white; border-top-right-radius: 1rem; border-top-left-radius: 1rem; padding: 1rem 0; border: none; } .leaderboard .leader-scores .high-score:nth-last-child(2) { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; } .leaderboard .leader-scores .pagination { margin-top: 1rem; } .leaderboard .leader-scores .pagination > li > a { border-color: #999; color: var(--link); } .leaderboard .leader-scores .pagination > .active > a { background-color: var(--link); color: white; } .leaderboard .high-score { border: 1px solid #999; border-top-color: transparent; padding: 2rem 0 .5rem; } .leaderboard .avatar { width: 2rem; height: 2rem; overflow: hidden; background: gray; border-radius: 99px; display: inline-block; margin-right: .5rem; } .leaderboard .score-data a { display: inline-flex; align-items: center; } @media only screen and (max-width: 765px) { .leader-scores .high-score { padding: 2rem; } } .profile .avatar { border-radius: 999px; background-color: #ccc; background-size: cover; width: 200px; height: 200px; margin: 1rem; overflow: hidden; } .profile .avatar div { background-size: cover; width: 100%; height: 100%; } .profile .content { padding: 0 4rem; } .profile .content h2 { font-size: 2rem; } .profile .content ul { list-style: none; padding: 0; } .about { background: #eee; } .about h2 { margin-top: 0; } .about p { max-width: 600px; margin: 0 auto; padding: 0 1rem; } .social .share { display: inline-flex; align-items: center; } .social .share ul { display: flex; list-style: none; padding: 0; } .social .share a { display: block; width: 3rem; height: 3rem; margin: .75rem; } .social .share img { width: 3rem; height: 100%; } .no-border { border: none; }
Tailspin.SpaceGame.Web/wwwroot/css/site.css
body { color: black; --link: #064EC0; } a { color: var(--link); } h2 { font-size: 2.5rem; margin-bottom: 2rem; } section { text-align: center; padding: 6rem 0; border-bottom: 3px solid black; } .intro { height: 350px; background-color: #3b5d94; background-image: url("/images/space-background.svg"); background-size: 1440px; background-position: center top; background-repeat: no-repeat; background-attachment: fixed; } .intro .title { width: 20rem; margin-top: 2rem; } .intro p { color: white; font-weight: 600; font-size: 1.6rem; text-shadow: 0 0 2px black; margin-top: 2rem; } .download .image-cap { height: 180px; background-size: 800px; margin-top: -240px; background-image: url("/images/space-foreground.svg"); background-repeat: no-repeat; background-position: center top; } .download .btn { margin-top: 5rem; border: 3px solid black; font-weight: bold; } .screens { background: #006400; } .screens ul { padding: 0; } .screens ul li { display: inline-block; width: 160px; height: 100px; background: #eee; margin: .25rem; margin-top: .75rem; } .screens ul li a { display: block; width: 100%; height: 100%; } .screens ul li img { width: 100%; } .pic .modal-body p { margin-top: 25px; } .leaderboard h2 { margin-bottom: 4rem; } .leaderboard ul { list-style: none; padding: 0; } .leaderboard .leader-nav .nav-buttons { border: 1px solid #999; border-radius: 10px; margin: 1rem; margin-top: 0; } .leaderboard .leader-nav .nav-buttons h4 { background: #333; color: white; padding: 1rem; margin: 0; border-top-left-radius: 10px; border-top-right-radius: 10px; } .leaderboard .leader-nav .nav-buttons li { padding: .5rem; } .leaderboard .leader-scores .high-score:nth-child(1) { background: #333; color: white; border-top-right-radius: 1rem; border-top-left-radius: 1rem; padding: 1rem 0; border: none; } .leaderboard .leader-scores .high-score:nth-last-child(2) { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; } .leaderboard .leader-scores .pagination { margin-top: 1rem; } .leaderboard .leader-scores .pagination > li > a { border-color: #999; color: var(--link); } .leaderboard .leader-scores .pagination > .active > a { background-color: var(--link); color: white; } .leaderboard .high-score { border: 1px solid #999; border-top-color: transparent; padding: 2rem 0 .5rem; } .leaderboard .avatar { width: 2rem; height: 2rem; overflow: hidden; background: gray; border-radius: 99px; display: inline-block; margin-right: .5rem; } .leaderboard .score-data a { display: inline-flex; align-items: center; } @media only screen and (max-width: 765px) { .leader-scores .high-score { padding: 2rem; } } .profile .avatar { border-radius: 999px; background-color: #ccc; background-size: cover; width: 200px; height: 200px; margin: 1rem; overflow: hidden; } .profile .avatar div { background-size: cover; width: 100%; height: 100%; } .profile .content { padding: 0 4rem; } .profile .content h2 { font-size: 2rem; } .profile .content ul { list-style: none; padding: 0; } .about { background: #eee; } .about h2 { margin-top: 0; } .about p { max-width: 600px; margin: 0 auto; padding: 0 1rem; } .social .share { display: inline-flex; align-items: center; } .social .share ul { display: flex; list-style: none; padding: 0; } .social .share a { display: block; width: 3rem; height: 3rem; margin: .75rem; } .social .share img { width: 3rem; height: 100%; } .no-border { border: none; }
0.577614
0.091666
.red { background-color: #F44336 !important; } /* line 3, ../../sass/utils/colors.scss */ .red-50 { background-color: #FFEBEE !important; } /* line 4, ../../sass/utils/colors.scss */ .red-100 { background-color: #FFCDD2 !important; } /* line 5, ../../sass/utils/colors.scss */ .red-200 { background-color: #EF9A9A !important; } /* line 6, ../../sass/utils/colors.scss */ .red-300 { background-color: #E57373 !important; } /* line 7, ../../sass/utils/colors.scss */ .red-400 { background-color: #EF5350 !important; } /* line 8, ../../sass/utils/colors.scss */ .red-500 { background-color: #F44336 !important; } /* line 9, ../../sass/utils/colors.scss */ .red-600 { background-color: #E53935 !important; } /* line 10, ../../sass/utils/colors.scss */ .red-700 { background-color: #D32F2F !important; } /* line 11, ../../sass/utils/colors.scss */ .red-800 { background-color: #C62828 !important; } /* line 12, ../../sass/utils/colors.scss */ .red-900 { background-color: #B71C1C !important; } /* line 13, ../../sass/utils/colors.scss */ .red-a100 { background-color: #FF8A80 !important; } /* line 14, ../../sass/utils/colors.scss */ .red-a200 { background-color: #FF5252 !important; } /* line 15, ../../sass/utils/colors.scss */ .red-a400 { background-color: #FF1744 !important; } /* line 16, ../../sass/utils/colors.scss */ .red-a700 { background-color: #D50000 !important; } /* line 17, ../../sass/utils/colors.scss */ .red-text { color: #F44336 !important; } /* line 18, ../../sass/utils/colors.scss */ .red-50-text { color: #FFEBEE !important; } /* line 19, ../../sass/utils/colors.scss */ .red-100-text { color: #FFCDD2 !important; } /* line 20, ../../sass/utils/colors.scss */ .red-200-text { color: #EF9A9A !important; } /* line 21, ../../sass/utils/colors.scss */ .red-300-text { color: #E57373 !important; } /* line 22, ../../sass/utils/colors.scss */ .red-400-text { color: #EF5350 !important; } /* line 23, ../../sass/utils/colors.scss */ .red-500-text { color: #F44336 !important; } /* line 24, ../../sass/utils/colors.scss */ .red-600-text { color: #E53935 !important; } /* line 25, ../../sass/utils/colors.scss */ .red-700-text { color: #D32F2F !important; } /* line 26, ../../sass/utils/colors.scss */ .red-800-text { color: #C62828 !important; } /* line 27, ../../sass/utils/colors.scss */ .red-900-text { color: #B71C1C !important; } /* line 28, ../../sass/utils/colors.scss */ .red-a100-text { color: #FF8A80 !important; } /* line 29, ../../sass/utils/colors.scss */ .red-a200-text { color: #FF5252 !important; } /* line 30, ../../sass/utils/colors.scss */ .red-a400-text { color: #FF1744 !important; } /* line 31, ../../sass/utils/colors.scss */ .red-a700-text { color: #D50000 !important; } /* line 34, ../../sass/utils/colors.scss */ .pink { background-color: #E91E63 !important; } /* line 35, ../../sass/utils/colors.scss */ .pink-50 { background-color: #FCE4EC !important; } /* line 36, ../../sass/utils/colors.scss */ .pink-100 { background-color: #F8BBD0 !important; } /* line 37, ../../sass/utils/colors.scss */ .pink-200 { background-color: #F48FB1 !important; } /* line 38, ../../sass/utils/colors.scss */ .pink-300 { background-color: #F06292 !important; } /* line 39, ../../sass/utils/colors.scss */ .pink-400 { background-color: #EC407A !important; } /* line 40, ../../sass/utils/colors.scss */ .pink-500 { background-color: #E91E63 !important; } /* line 41, ../../sass/utils/colors.scss */ .pink-600 { background-color: #D81B60 !important; } /* line 42, ../../sass/utils/colors.scss */ .pink-700 { background-color: #C2185B !important; } /* line 43, ../../sass/utils/colors.scss */ .pink-800 { background-color: #AD1457 !important; } /* line 44, ../../sass/utils/colors.scss */ .pink-900 { background-color: #880E4F !important; } /* line 45, ../../sass/utils/colors.scss */ .pink-a100 { background-color: #FF80AB !important; } /* line 46, ../../sass/utils/colors.scss */ .pink-a200 { background-color: #FF4081 !important; } /* line 47, ../../sass/utils/colors.scss */ .pink-a400 { background-color: #F50057 !important; } /* line 48, ../../sass/utils/colors.scss */ .pink-a700 { background-color: #C51162 !important; } /* line 49, ../../sass/utils/colors.scss */ .pink-text { color: #E91E63 !important; } /* line 50, ../../sass/utils/colors.scss */ .pink-50-text { color: #FCE4EC !important; } /* line 51, ../../sass/utils/colors.scss */ .pink-100-text { color: #F8BBD0 !important; } /* line 52, ../../sass/utils/colors.scss */ .pink-200-text { color: #F48FB1 !important; } /* line 53, ../../sass/utils/colors.scss */ .pink-300-text { color: #F06292 !important; } /* line 54, ../../sass/utils/colors.scss */ .pink-400-text { color: #EC407A !important; } /* line 55, ../../sass/utils/colors.scss */ .pink-500-text { color: #E91E63 !important; } /* line 56, ../../sass/utils/colors.scss */ .pink-600-text { color: #D81B60 !important; } /* line 57, ../../sass/utils/colors.scss */ .pink-700-text { color: #C2185B !important; } /* line 58, ../../sass/utils/colors.scss */ .pink-800-text { color: #AD1457 !important; } /* line 59, ../../sass/utils/colors.scss */ .pink-900-text { color: #880E4F !important; } /* line 60, ../../sass/utils/colors.scss */ .pink-a100-text { color: #FF80AB !important; } /* line 61, ../../sass/utils/colors.scss */ .pink-a200-text { color: #FF4081 !important; } /* line 62, ../../sass/utils/colors.scss */ .pink-a400-text { color: #F50057 !important; } /* line 63, ../../sass/utils/colors.scss */ .pink-a700-text { color: #C51162 !important; } /* line 66, ../../sass/utils/colors.scss */ .purple { background-color: #9C27B0 !important; } /* line 67, ../../sass/utils/colors.scss */ .purple-50 { background-color: #F3E5F5 !important; } /* line 68, ../../sass/utils/colors.scss */ .purple-100 { background-color: #E1BEE7 !important; } /* line 69, ../../sass/utils/colors.scss */ .purple-200 { background-color: #CE93D8 !important; } /* line 70, ../../sass/utils/colors.scss */ .purple-300 { background-color: #BA68C8 !important; } /* line 71, ../../sass/utils/colors.scss */ .purple-400 { background-color: #AB47BC !important; } /* line 72, ../../sass/utils/colors.scss */ .purple-500 { background-color: #9C27B0 !important; } /* line 73, ../../sass/utils/colors.scss */ .purple-600 { background-color: #8E24AA !important; } /* line 74, ../../sass/utils/colors.scss */ .purple-700 { background-color: #7B1FA2 !important; } /* line 75, ../../sass/utils/colors.scss */ .purple-800 { background-color: #6A1B9A !important; } /* line 76, ../../sass/utils/colors.scss */ .purple-900 { background-color: #4A148C !important; } /* line 77, ../../sass/utils/colors.scss */ .purple-a100 { background-color: #EA80FC !important; } /* line 78, ../../sass/utils/colors.scss */ .purple-a200 { background-color: #E040FB !important; } /* line 79, ../../sass/utils/colors.scss */ .purple-a400 { background-color: #D500F9 !important; } /* line 80, ../../sass/utils/colors.scss */ .purple-a700 { background-color: #AA00FF !important; } /* line 81, ../../sass/utils/colors.scss */ .purple-text { color: #9C27B0 !important; } /* line 82, ../../sass/utils/colors.scss */ .purple-50-text { color: #F3E5F5 !important; } /* line 83, ../../sass/utils/colors.scss */ .purple-100-text { color: #E1BEE7 !important; } /* line 84, ../../sass/utils/colors.scss */ .purple-200-text { color: #CE93D8 !important; } /* line 85, ../../sass/utils/colors.scss */ .purple-300-text { color: #BA68C8 !important; } /* line 86, ../../sass/utils/colors.scss */ .purple-400-text { color: #AB47BC !important; } /* line 87, ../../sass/utils/colors.scss */ .purple-500-text { color: #9C27B0 !important; } /* line 88, ../../sass/utils/colors.scss */ .purple-600-text { color: #8E24AA !important; } /* line 89, ../../sass/utils/colors.scss */ .purple-700-text { color: #7B1FA2 !important; } /* line 90, ../../sass/utils/colors.scss */ .purple-800-text { color: #6A1B9A !important; } /* line 91, ../../sass/utils/colors.scss */ .purple-900-text { color: #4A148C !important; } /* line 92, ../../sass/utils/colors.scss */ .purple-a100-text { color: #EA80FC !important; } /* line 93, ../../sass/utils/colors.scss */ .purple-a200-text { color: #E040FB !important; } /* line 94, ../../sass/utils/colors.scss */ .purple-a400-text { color: #D500F9 !important; } /* line 95, ../../sass/utils/colors.scss */ .purple-a700-text { color: #AA00FF !important; } /* line 98, ../../sass/utils/colors.scss */ .deep-purple { background-color: #673AB7 !important; } /* line 99, ../../sass/utils/colors.scss */ .deep-purple-50 { background-color: #EDE7F6 !important; } /* line 100, ../../sass/utils/colors.scss */ .deep-purple-100 { background-color: #D1C4E9 !important; } /* line 101, ../../sass/utils/colors.scss */ .deep-purple-200 { background-color: #B39DDB !important; } /* line 102, ../../sass/utils/colors.scss */ .deep-purple-300 { background-color: #9575CD !important; } /* line 103, ../../sass/utils/colors.scss */ .deep-purple-400 { background-color: #7E57C2 !important; } /* line 104, ../../sass/utils/colors.scss */ .deep-purple-500 { background-color: #673AB7 !important; } /* line 105, ../../sass/utils/colors.scss */ .deep-purple-600 { background-color: #5E35B1 !important; } /* line 106, ../../sass/utils/colors.scss */ .deep-purple-700 { background-color: #512DA8 !important; } /* line 107, ../../sass/utils/colors.scss */ .deep-purple-800 { background-color: #4527A0 !important; } /* line 108, ../../sass/utils/colors.scss */ .deep-purple-900 { background-color: #311B92 !important; } /* line 109, ../../sass/utils/colors.scss */ .deep-purple-a100 { background-color: #B388FF !important; } /* line 110, ../../sass/utils/colors.scss */ .deep-purple-a200 { background-color: #7C4DFF !important; } /* line 111, ../../sass/utils/colors.scss */ .deep-purple-a400 { background-color: #651FFF !important; } /* line 112, ../../sass/utils/colors.scss */ .deep-purple-a700 { background-color: #6200EA !important; } /* line 113, ../../sass/utils/colors.scss */ .deep-purple-text { color: #673AB7 !important; } /* line 114, ../../sass/utils/colors.scss */ .deep-purple-50-text { color: #EDE7F6 !important; } /* line 115, ../../sass/utils/colors.scss */ .deep-purple-100-text { color: #D1C4E9 !important; } /* line 116, ../../sass/utils/colors.scss */ .deep-purple-200-text { color: #B39DDB !important; } /* line 117, ../../sass/utils/colors.scss */ .deep-purple-300-text { color: #9575CD !important; } /* line 118, ../../sass/utils/colors.scss */ .deep-purple-400-text { color: #7E57C2 !important; } /* line 119, ../../sass/utils/colors.scss */ .deep-purple-500-text { color: #673AB7 !important; } /* line 120, ../../sass/utils/colors.scss */ .deep-purple-600-text { color: #5E35B1 !important; } /* line 121, ../../sass/utils/colors.scss */ .deep-purple-700-text { color: #512DA8 !important; } /* line 122, ../../sass/utils/colors.scss */ .deep-purple-800-text { color: #4527A0 !important; } /* line 123, ../../sass/utils/colors.scss */ .deep-purple-900-text { color: #311B92 !important; } /* line 124, ../../sass/utils/colors.scss */ .deep-purple-a100-text { color: #B388FF !important; } /* line 125, ../../sass/utils/colors.scss */ .deep-purple-a200-text { color: #7C4DFF !important; } /* line 126, ../../sass/utils/colors.scss */ .deep-purple-a400-text { color: #651FFF !important; } /* line 127, ../../sass/utils/colors.scss */ .deep-purple-a700-text { color: #6200EA !important; } /* line 130, ../../sass/utils/colors.scss */ .indigo { background-color: #3F51B5 !important; } /* line 131, ../../sass/utils/colors.scss */ .indigo-50 { background-color: #E8EAF6 !important; } /* line 132, ../../sass/utils/colors.scss */ .indigo-100 { background-color: #C5CAE9 !important; } /* line 133, ../../sass/utils/colors.scss */ .indigo-200 { background-color: #9FA8DA !important; } /* line 134, ../../sass/utils/colors.scss */ .indigo-300 { background-color: #7986CB !important; } /* line 135, ../../sass/utils/colors.scss */ .indigo-400 { background-color: #5C6BC0 !important; } /* line 136, ../../sass/utils/colors.scss */ .indigo-500 { background-color: #3F51B5 !important; } /* line 137, ../../sass/utils/colors.scss */ .indigo-600 { background-color: #3949AB !important; } /* line 138, ../../sass/utils/colors.scss */ .indigo-700 { background-color: #303F9F !important; } /* line 139, ../../sass/utils/colors.scss */ .indigo-800 { background-color: #283593 !important; } /* line 140, ../../sass/utils/colors.scss */ .indigo-900 { background-color: #1A237E !important; } /* line 141, ../../sass/utils/colors.scss */ .indigo-a100 { background-color: #8C9EFF !important; } /* line 142, ../../sass/utils/colors.scss */ .indigo-a200 { background-color: #536DFE !important; } /* line 143, ../../sass/utils/colors.scss */ .indigo-a400 { background-color: #3D5AFE !important; } /* line 144, ../../sass/utils/colors.scss */ .indigo-a700 { background-color: #304FFE !important; } /* line 145, ../../sass/utils/colors.scss */ .indigo-text { color: #3F51B5 !important; } /* line 146, ../../sass/utils/colors.scss */ .indigo-50-text { color: #E8EAF6 !important; } /* line 147, ../../sass/utils/colors.scss */ .indigo-100-text { color: #C5CAE9 !important; } /* line 148, ../../sass/utils/colors.scss */ .indigo-200-text { color: #9FA8DA !important; } /* line 149, ../../sass/utils/colors.scss */ .indigo-300-text { color: #7986CB !important; } /* line 150, ../../sass/utils/colors.scss */ .indigo-400-text { color: #5C6BC0 !important; } /* line 151, ../../sass/utils/colors.scss */ .indigo-500-text { color: #3F51B5 !important; } /* line 152, ../../sass/utils/colors.scss */ .indigo-600-text { color: #3949AB !important; } /* line 153, ../../sass/utils/colors.scss */ .indigo-700-text { color: #303F9F !important; } /* line 154, ../../sass/utils/colors.scss */ .indigo-800-text { color: #283593 !important; } /* line 155, ../../sass/utils/colors.scss */ .indigo-900-text { color: #1A237E !important; } /* line 156, ../../sass/utils/colors.scss */ .indigo-a100-text { color: #8C9EFF !important; } /* line 157, ../../sass/utils/colors.scss */ .indigo-a200-text { color: #536DFE !important; } /* line 158, ../../sass/utils/colors.scss */ .indigo-a400-text { color: #3D5AFE !important; } /* line 159, ../../sass/utils/colors.scss */ .indigo-a700-text { color: #304FFE !important; } /* line 162, ../../sass/utils/colors.scss */ .blue { background-color: #2196F3 !important; } /* line 163, ../../sass/utils/colors.scss */ .blue-50 { background-color: #E3F2FD !important; } /* line 164, ../../sass/utils/colors.scss */ .blue-100 { background-color: #BBDEFB !important; } /* line 165, ../../sass/utils/colors.scss */ .blue-200 { background-color: #90CAF9 !important; } /* line 166, ../../sass/utils/colors.scss */ .blue-300 { background-color: #64B5F6 !important; } /* line 167, ../../sass/utils/colors.scss */ .blue-400 { background-color: #42A5F5 !important; } /* line 168, ../../sass/utils/colors.scss */ .blue-500 { background-color: #2196F3 !important; } /* line 169, ../../sass/utils/colors.scss */ .blue-600 { background-color: #1E88E5 !important; } /* line 170, ../../sass/utils/colors.scss */ .blue-700 { background-color: #1976D2 !important; } /* line 171, ../../sass/utils/colors.scss */ .blue-800 { background-color: #1565C0 !important; } /* line 172, ../../sass/utils/colors.scss */ .blue-900 { background-color: #0D47A1 !important; } /* line 173, ../../sass/utils/colors.scss */ .blue-a100 { background-color: #82B1FF !important; } /* line 174, ../../sass/utils/colors.scss */ .blue-a200 { background-color: #448AFF !important; } /* line 175, ../../sass/utils/colors.scss */ .blue-a400 { background-color: #2979FF !important; } /* line 176, ../../sass/utils/colors.scss */ .blue-a700 { background-color: #2962FF !important; } /* line 177, ../../sass/utils/colors.scss */ .blue-text { color: #2196F3 !important; } /* line 178, ../../sass/utils/colors.scss */ .blue-50-text { color: #E3F2FD !important; } /* line 179, ../../sass/utils/colors.scss */ .blue-100-text { color: #BBDEFB !important; } /* line 180, ../../sass/utils/colors.scss */ .blue-200-text { color: #90CAF9 !important; } /* line 181, ../../sass/utils/colors.scss */ .blue-300-text { color: #64B5F6 !important; } /* line 182, ../../sass/utils/colors.scss */ .blue-400-text { color: #42A5F5 !important; } /* line 183, ../../sass/utils/colors.scss */ .blue-500-text { color: #2196F3 !important; } /* line 184, ../../sass/utils/colors.scss */ .blue-600-text { color: #1E88E5 !important; } /* line 185, ../../sass/utils/colors.scss */ .blue-700-text { color: #1976D2 !important; } /* line 186, ../../sass/utils/colors.scss */ .blue-800-text { color: #1565C0 !important; } /* line 187, ../../sass/utils/colors.scss */ .blue-900-text { color: #0D47A1 !important; } /* line 188, ../../sass/utils/colors.scss */ .blue-a100-text { color: #82B1FF !important; } /* line 189, ../../sass/utils/colors.scss */ .blue-a200-text { color: #448AFF !important; } /* line 190, ../../sass/utils/colors.scss */ .blue-a400-text { color: #2979FF !important; } /* line 191, ../../sass/utils/colors.scss */ .blue-a700-text { color: #2962FF !important; } /* line 194, ../../sass/utils/colors.scss */ .light-blue { background-color: #03A9F4 !important; } /* line 195, ../../sass/utils/colors.scss */ .light-blue-50 { background-color: #E1F5FE !important; } /* line 196, ../../sass/utils/colors.scss */ .light-blue-100 { background-color: #B3E5FC !important; } /* line 197, ../../sass/utils/colors.scss */ .light-blue-200 { background-color: #81D4FA !important; } /* line 198, ../../sass/utils/colors.scss */ .light-blue-300 { background-color: #4FC3F7 !important; } /* line 199, ../../sass/utils/colors.scss */ .light-blue-400 { background-color: #29B6F6 !important; } /* line 200, ../../sass/utils/colors.scss */ .light-blue-500 { background-color: #03A9F4 !important; } /* line 201, ../../sass/utils/colors.scss */ .light-blue-600 { background-color: #039BE5 !important; } /* line 202, ../../sass/utils/colors.scss */ .light-blue-700 { background-color: #0288D1 !important; } /* line 203, ../../sass/utils/colors.scss */ .light-blue-800 { background-color: #0277BD !important; } /* line 204, ../../sass/utils/colors.scss */ .light-blue-900 { background-color: #01579B !important; } /* line 205, ../../sass/utils/colors.scss */ .light-blue-a100 { background-color: #80D8FF !important; } /* line 206, ../../sass/utils/colors.scss */ .light-blue-a200 { background-color: #40C4FF !important; } /* line 207, ../../sass/utils/colors.scss */ .light-blue-a400 { background-color: #00B0FF !important; } /* line 208, ../../sass/utils/colors.scss */ .light-blue-a700 { background-color: #0091EA !important; } /* line 209, ../../sass/utils/colors.scss */ .light-blue-text { color: #03A9F4 !important; } /* line 210, ../../sass/utils/colors.scss */ .light-blue-50-text { color: #E1F5FE !important; } /* line 211, ../../sass/utils/colors.scss */ .light-blue-100-text { color: #B3E5FC !important; } /* line 212, ../../sass/utils/colors.scss */ .light-blue-200-text { color: #81D4FA !important; } /* line 213, ../../sass/utils/colors.scss */ .light-blue-300-text { color: #4FC3F7 !important; } /* line 214, ../../sass/utils/colors.scss */ .light-blue-400-text { color: #29B6F6 !important; } /* line 215, ../../sass/utils/colors.scss */ .light-blue-500-text { color: #03A9F4 !important; } /* line 216, ../../sass/utils/colors.scss */ .light-blue-600-text { color: #039BE5 !important; } /* line 217, ../../sass/utils/colors.scss */ .light-blue-700-text { color: #0288D1 !important; } /* line 218, ../../sass/utils/colors.scss */ .light-blue-800-text { color: #0277BD !important; } /* line 219, ../../sass/utils/colors.scss */ .light-blue-900-text { color: #01579B !important; } /* line 220, ../../sass/utils/colors.scss */ .light-blue-a100-text { color: #80D8FF !important; } /* line 221, ../../sass/utils/colors.scss */ .light-blue-a200-text { color: #40C4FF !important; } /* line 222, ../../sass/utils/colors.scss */ .light-blue-a400-text { color: #00B0FF !important; } /* line 223, ../../sass/utils/colors.scss */ .light-blue-a700-text { color: #0091EA !important; } /* line 226, ../../sass/utils/colors.scss */ .cyan { background-color: #00BCD4 !important; } /* line 227, ../../sass/utils/colors.scss */ .cyan-50 { background-color: #E0F7FA !important; } /* line 228, ../../sass/utils/colors.scss */ .cyan-100 { background-color: #B2EBF2 !important; } /* line 229, ../../sass/utils/colors.scss */ .cyan-200 { background-color: #80DEEA !important; } /* line 230, ../../sass/utils/colors.scss */ .cyan-300 { background-color: #4DD0E1 !important; } /* line 231, ../../sass/utils/colors.scss */ .cyan-400 { background-color: #26C6DA !important; } /* line 232, ../../sass/utils/colors.scss */ .cyan-500 { background-color: #00BCD4 !important; } /* line 233, ../../sass/utils/colors.scss */ .cyan-600 { background-color: #00ACC1 !important; } /* line 234, ../../sass/utils/colors.scss */ .cyan-700 { background-color: #0097A7 !important; } /* line 235, ../../sass/utils/colors.scss */ .cyan-800 { background-color: #00838F !important; } /* line 236, ../../sass/utils/colors.scss */ .cyan-900 { background-color: #006064 !important; } /* line 237, ../../sass/utils/colors.scss */ .cyan-a100 { background-color: #84FFFF !important; } /* line 238, ../../sass/utils/colors.scss */ .cyan-a200 { background-color: #18FFFF !important; } /* line 239, ../../sass/utils/colors.scss */ .cyan-a400 { background-color: #00E5FF !important; } /* line 240, ../../sass/utils/colors.scss */ .cyan-a700 { background-color: #00B8D4 !important; } /* line 241, ../../sass/utils/colors.scss */ .cyan-text { color: #00BCD4 !important; } /* line 242, ../../sass/utils/colors.scss */ .cyan-50-text { color: #E0F7FA !important; } /* line 243, ../../sass/utils/colors.scss */ .cyan-100-text { color: #B2EBF2 !important; } /* line 244, ../../sass/utils/colors.scss */ .cyan-200-text { color: #80DEEA !important; } /* line 245, ../../sass/utils/colors.scss */ .cyan-300-text { color: #4DD0E1 !important; } /* line 246, ../../sass/utils/colors.scss */ .cyan-400-text { color: #26C6DA !important; } /* line 247, ../../sass/utils/colors.scss */ .cyan-500-text { color: #00BCD4 !important; } /* line 248, ../../sass/utils/colors.scss */ .cyan-600-text { color: #00ACC1 !important; } /* line 249, ../../sass/utils/colors.scss */ .cyan-700-text { color: #0097A7 !important; } /* line 250, ../../sass/utils/colors.scss */ .cyan-800-text { color: #00838F !important; } /* line 251, ../../sass/utils/colors.scss */ .cyan-900-text { color: #006064 !important; } /* line 252, ../../sass/utils/colors.scss */ .cyan-a100-text { color: #84FFFF !important; } /* line 253, ../../sass/utils/colors.scss */ .cyan-a200-text { color: #18FFFF !important; } /* line 254, ../../sass/utils/colors.scss */ .cyan-a400-text { color: #00E5FF !important; } /* line 255, ../../sass/utils/colors.scss */ .cyan-a700-text { color: #00B8D4 !important; } /* line 258, ../../sass/utils/colors.scss */ .teal { background-color: #009688 !important; } /* line 259, ../../sass/utils/colors.scss */ .teal-50 { background-color: #E0F2F1 !important; } /* line 260, ../../sass/utils/colors.scss */ .teal-100 { background-color: #B2DFDB !important; } /* line 261, ../../sass/utils/colors.scss */ .teal-200 { background-color: #80CBC4 !important; } /* line 262, ../../sass/utils/colors.scss */ .teal-300 { background-color: #4DB6AC !important; } /* line 263, ../../sass/utils/colors.scss */ .teal-400 { background-color: #26A69A !important; } /* line 264, ../../sass/utils/colors.scss */ .teal-500 { background-color: #009688 !important; } /* line 265, ../../sass/utils/colors.scss */ .teal-600 { background-color: #00897B !important; } /* line 266, ../../sass/utils/colors.scss */ .teal-700 { background-color: #00796B !important; } /* line 267, ../../sass/utils/colors.scss */ .teal-800 { background-color: #00695C !important; } /* line 268, ../../sass/utils/colors.scss */ .teal-900 { background-color: #004D40 !important; } /* line 269, ../../sass/utils/colors.scss */ .teal-a100 { background-color: #A7FFEB !important; } /* line 270, ../../sass/utils/colors.scss */ .teal-a200 { background-color: #64FFDA !important; } /* line 271, ../../sass/utils/colors.scss */ .teal-a400 { background-color: #1DE9B6 !important; } /* line 272, ../../sass/utils/colors.scss */ .teal-a700 { background-color: #00BFA5 !important; } /* line 273, ../../sass/utils/colors.scss */ .teal-text { color: #009688 !important; } /* line 274, ../../sass/utils/colors.scss */ .teal-50-text { color: #E0F2F1 !important; } /* line 275, ../../sass/utils/colors.scss */ .teal-100-text { color: #B2DFDB !important; } /* line 276, ../../sass/utils/colors.scss */ .teal-200-text { color: #80CBC4 !important; } /* line 277, ../../sass/utils/colors.scss */ .teal-300-text { color: #4DB6AC !important; } /* line 278, ../../sass/utils/colors.scss */ .teal-400-text { color: #26A69A !important; } /* line 279, ../../sass/utils/colors.scss */ .teal-500-text { color: #009688 !important; } /* line 280, ../../sass/utils/colors.scss */ .teal-600-text { color: #00897B !important; } /* line 281, ../../sass/utils/colors.scss */ .teal-700-text { color: #00796B !important; } /* line 282, ../../sass/utils/colors.scss */ .teal-800-text { color: #00695C !important; } /* line 283, ../../sass/utils/colors.scss */ .teal-900-text { color: #004D40 !important; } /* line 284, ../../sass/utils/colors.scss */ .teal-a100-text { color: #A7FFEB !important; } /* line 285, ../../sass/utils/colors.scss */ .teal-a200-text { color: #64FFDA !important; } /* line 286, ../../sass/utils/colors.scss */ .teal-a400-text { color: #1DE9B6 !important; } /* line 287, ../../sass/utils/colors.scss */ .teal-a700-text { color: #00BFA5 !important; } /* line 290, ../../sass/utils/colors.scss */ .green { background-color: #4CAF50 !important; } /* line 291, ../../sass/utils/colors.scss */ .green-50 { background-color: #E8F5E9 !important; } /* line 292, ../../sass/utils/colors.scss */ .green-100 { background-color: #C8E6C9 !important; } /* line 293, ../../sass/utils/colors.scss */ .green-200 { background-color: #A5D6A7 !important; } /* line 294, ../../sass/utils/colors.scss */ .green-300 { background-color: #81C784 !important; } /* line 295, ../../sass/utils/colors.scss */ .green-400 { background-color: #66BB6A !important; } /* line 296, ../../sass/utils/colors.scss */ .green-500 { background-color: #4CAF50 !important; } /* line 297, ../../sass/utils/colors.scss */ .green-600 { background-color: #43A047 !important; } /* line 298, ../../sass/utils/colors.scss */ .green-700 { background-color: #388E3C !important; } /* line 299, ../../sass/utils/colors.scss */ .green-800 { background-color: #2E7D32 !important; } /* line 300, ../../sass/utils/colors.scss */ .green-900 { background-color: #1B5E20 !important; } /* line 301, ../../sass/utils/colors.scss */ .green-a100 { background-color: #B9F6CA !important; } /* line 302, ../../sass/utils/colors.scss */ .green-a200 { background-color: #69F0AE !important; } /* line 303, ../../sass/utils/colors.scss */ .green-a400 { background-color: #00E676 !important; } /* line 304, ../../sass/utils/colors.scss */ .green-a700 { background-color: #00C853 !important; } /* line 305, ../../sass/utils/colors.scss */ .green-text { color: #4CAF50 !important; } /* line 306, ../../sass/utils/colors.scss */ .green-50-text { color: #E8F5E9 !important; } /* line 307, ../../sass/utils/colors.scss */ .green-100-text { color: #C8E6C9 !important; } /* line 308, ../../sass/utils/colors.scss */ .green-200-text { color: #A5D6A7 !important; } /* line 309, ../../sass/utils/colors.scss */ .green-300-text { color: #81C784 !important; } /* line 310, ../../sass/utils/colors.scss */ .green-400-text { color: #66BB6A !important; } /* line 311, ../../sass/utils/colors.scss */ .green-500-text { color: #4CAF50 !important; } /* line 312, ../../sass/utils/colors.scss */ .green-600-text { color: #43A047 !important; } /* line 313, ../../sass/utils/colors.scss */ .green-700-text { color: #388E3C !important; } /* line 314, ../../sass/utils/colors.scss */ .green-800-text { color: #2E7D32 !important; } /* line 315, ../../sass/utils/colors.scss */ .green-900-text { color: #1B5E20 !important; } /* line 316, ../../sass/utils/colors.scss */ .green-a100-text { color: #B9F6CA !important; } /* line 317, ../../sass/utils/colors.scss */ .green-a200-text { color: #69F0AE !important; } /* line 318, ../../sass/utils/colors.scss */ .green-a400-text { color: #00E676 !important; } /* line 319, ../../sass/utils/colors.scss */ .green-a700-text { color: #00C853 !important; } /* line 322, ../../sass/utils/colors.scss */ .light-green { background-color: #8BC34A !important; } /* line 323, ../../sass/utils/colors.scss */ .light-green-50 { background-color: #F1F8E9 !important; } /* line 324, ../../sass/utils/colors.scss */ .light-green-100 { background-color: #DCEDC8 !important; } /* line 325, ../../sass/utils/colors.scss */ .light-green-200 { background-color: #C5E1A5 !important; } /* line 326, ../../sass/utils/colors.scss */ .light-green-300 { background-color: #AED581 !important; } /* line 327, ../../sass/utils/colors.scss */ .light-green-400 { background-color: #9CCC65 !important; } /* line 328, ../../sass/utils/colors.scss */ .light-green-500 { background-color: #8BC34A !important; } /* line 329, ../../sass/utils/colors.scss */ .light-green-600 { background-color: #7CB342 !important; } /* line 330, ../../sass/utils/colors.scss */ .light-green-700 { background-color: #689F38 !important; } /* line 331, ../../sass/utils/colors.scss */ .light-green-800 { background-color: #558B2F !important; } /* line 332, ../../sass/utils/colors.scss */ .light-green-900 { background-color: #33691E !important; } /* line 333, ../../sass/utils/colors.scss */ .light-green-a100 { background-color: #CCFF90 !important; } /* line 334, ../../sass/utils/colors.scss */ .light-green-a200 { background-color: #B2FF59 !important; } /* line 335, ../../sass/utils/colors.scss */ .light-green-a400 { background-color: #76FF03 !important; } /* line 336, ../../sass/utils/colors.scss */ .light-green-a700 { background-color: #64DD17 !important; } /* line 337, ../../sass/utils/colors.scss */ .light-green-text { color: #8BC34A !important; } /* line 338, ../../sass/utils/colors.scss */ .light-green-50-text { color: #F1F8E9 !important; } /* line 339, ../../sass/utils/colors.scss */ .light-green-100-text { color: #DCEDC8 !important; } /* line 340, ../../sass/utils/colors.scss */ .light-green-200-text { color: #C5E1A5 !important; } /* line 341, ../../sass/utils/colors.scss */ .light-green-300-text { color: #AED581 !important; } /* line 342, ../../sass/utils/colors.scss */ .light-green-400-text { color: #9CCC65 !important; } /* line 343, ../../sass/utils/colors.scss */ .light-green-500-text { color: #8BC34A !important; } /* line 344, ../../sass/utils/colors.scss */ .light-green-600-text { color: #7CB342 !important; } /* line 345, ../../sass/utils/colors.scss */ .light-green-700-text { color: #689F38 !important; } /* line 346, ../../sass/utils/colors.scss */ .light-green-800-text { color: #558B2F !important; } /* line 347, ../../sass/utils/colors.scss */ .light-green-900-text { color: #33691E !important; } /* line 348, ../../sass/utils/colors.scss */ .light-green-a100-text { color: #CCFF90 !important; } /* line 349, ../../sass/utils/colors.scss */ .light-green-a200-text { color: #B2FF59 !important; } /* line 350, ../../sass/utils/colors.scss */ .light-green-a400-text { color: #76FF03 !important; } /* line 351, ../../sass/utils/colors.scss */ .light-green-a700-text { color: #64DD17 !important; } /* line 354, ../../sass/utils/colors.scss */ .lime { background-color: #CDDC39 !important; } /* line 355, ../../sass/utils/colors.scss */ .lime-50 { background-color: #F9FBE7 !important; } /* line 356, ../../sass/utils/colors.scss */ .lime-100 { background-color: #F0F4C3 !important; } /* line 357, ../../sass/utils/colors.scss */ .lime-200 { background-color: #E6EE9C !important; } /* line 358, ../../sass/utils/colors.scss */ .lime-300 { background-color: #DCE775 !important; } /* line 359, ../../sass/utils/colors.scss */ .lime-400 { background-color: #D4E157 !important; } /* line 360, ../../sass/utils/colors.scss */ .lime-500 { background-color: #CDDC39 !important; } /* line 361, ../../sass/utils/colors.scss */ .lime-600 { background-color: #C0CA33 !important; } /* line 362, ../../sass/utils/colors.scss */ .lime-700 { background-color: #AFB42B !important; } /* line 363, ../../sass/utils/colors.scss */ .lime-800 { background-color: #9E9D24 !important; } /* line 364, ../../sass/utils/colors.scss */ .lime-900 { background-color: #827717 !important; } /* line 365, ../../sass/utils/colors.scss */ .lime-a100 { background-color: #F4FF81 !important; } /* line 366, ../../sass/utils/colors.scss */ .lime-a200 { background-color: #EEFF41 !important; } /* line 367, ../../sass/utils/colors.scss */ .lime-a400 { background-color: #C6FF00 !important; } /* line 368, ../../sass/utils/colors.scss */ .lime-a700 { background-color: #AEEA00 !important; } /* line 369, ../../sass/utils/colors.scss */ .lime-text { color: #CDDC39 !important; } /* line 370, ../../sass/utils/colors.scss */ .lime-50-text { color: #F9FBE7 !important; } /* line 371, ../../sass/utils/colors.scss */ .lime-100-text { color: #F0F4C3 !important; } /* line 372, ../../sass/utils/colors.scss */ .lime-200-text { color: #E6EE9C !important; } /* line 373, ../../sass/utils/colors.scss */ .lime-300-text { color: #DCE775 !important; } /* line 374, ../../sass/utils/colors.scss */ .lime-400-text { color: #D4E157 !important; } /* line 375, ../../sass/utils/colors.scss */ .lime-500-text { color: #CDDC39 !important; } /* line 376, ../../sass/utils/colors.scss */ .lime-600-text { color: #C0CA33 !important; } /* line 377, ../../sass/utils/colors.scss */ .lime-700-text { color: #AFB42B !important; } /* line 378, ../../sass/utils/colors.scss */ .lime-800-text { color: #9E9D24 !important; } /* line 379, ../../sass/utils/colors.scss */ .lime-900-text { color: #827717 !important; } /* line 380, ../../sass/utils/colors.scss */ .lime-a100-text { color: #F4FF81 !important; } /* line 381, ../../sass/utils/colors.scss */ .lime-a200-text { color: #EEFF41 !important; } /* line 382, ../../sass/utils/colors.scss */ .lime-a400-text { color: #C6FF00 !important; } /* line 383, ../../sass/utils/colors.scss */ .lime-a700-text { color: #AEEA00 !important; } /* line 386, ../../sass/utils/colors.scss */ .yellow { background-color: #FFEB3B !important; } /* line 387, ../../sass/utils/colors.scss */ .yellow-50 { background-color: #FFFDE7 !important; } /* line 388, ../../sass/utils/colors.scss */ .yellow-100 { background-color: #FFF9C4 !important; } /* line 389, ../../sass/utils/colors.scss */ .yellow-200 { background-color: #FFF59D !important; } /* line 390, ../../sass/utils/colors.scss */ .yellow-300 { background-color: #FFF176 !important; } /* line 391, ../../sass/utils/colors.scss */ .yellow-400 { background-color: #FFEE58 !important; } /* line 392, ../../sass/utils/colors.scss */ .yellow-500 { background-color: #FFEB3B !important; } /* line 393, ../../sass/utils/colors.scss */ .yellow-600 { background-color: #FDD835 !important; } /* line 394, ../../sass/utils/colors.scss */ .yellow-700 { background-color: #FBC02D !important; } /* line 395, ../../sass/utils/colors.scss */ .yellow-800 { background-color: #F9A825 !important; } /* line 396, ../../sass/utils/colors.scss */ .yellow-900 { background-color: #F57F17 !important; } /* line 397, ../../sass/utils/colors.scss */ .yellow-a100 { background-color: #FFFF8D !important; } /* line 398, ../../sass/utils/colors.scss */ .yellow-a200 { background-color: #FFFF00 !important; } /* line 399, ../../sass/utils/colors.scss */ .yellow-a400 { background-color: #FFEA00 !important; } /* line 400, ../../sass/utils/colors.scss */ .yellow-a700 { background-color: #FFD600 !important; } /* line 401, ../../sass/utils/colors.scss */ .yellow-text { color: #FFEB3B !important; } /* line 402, ../../sass/utils/colors.scss */ .yellow-50-text { color: #FFFDE7 !important; } /* line 403, ../../sass/utils/colors.scss */ .yellow-100-text { color: #FFF9C4 !important; } /* line 404, ../../sass/utils/colors.scss */ .yellow-200-text { color: #FFF59D !important; } /* line 405, ../../sass/utils/colors.scss */ .yellow-300-text { color: #FFF176 !important; } /* line 406, ../../sass/utils/colors.scss */ .yellow-400-text { color: #FFEE58 !important; } /* line 407, ../../sass/utils/colors.scss */ .yellow-500-text { color: #FFEB3B !important; } /* line 408, ../../sass/utils/colors.scss */ .yellow-600-text { color: #FDD835 !important; } /* line 409, ../../sass/utils/colors.scss */ .yellow-700-text { color: #FBC02D !important; } /* line 410, ../../sass/utils/colors.scss */ .yellow-800-text { color: #F9A825 !important; } /* line 411, ../../sass/utils/colors.scss */ .yellow-900-text { color: #F57F17 !important; } /* line 412, ../../sass/utils/colors.scss */ .yellow-a100-text { color: #FFFF8D !important; } /* line 413, ../../sass/utils/colors.scss */ .yellow-a200-text { color: #FFFF00 !important; } /* line 414, ../../sass/utils/colors.scss */ .yellow-a400-text { color: #FFEA00 !important; } /* line 415, ../../sass/utils/colors.scss */ .yellow-a700-text { color: #FFD600 !important; } /* line 418, ../../sass/utils/colors.scss */ .amber { background-color: #FFC107 !important; } /* line 419, ../../sass/utils/colors.scss */ .amber-50 { background-color: #FFF8E1 !important; } /* line 420, ../../sass/utils/colors.scss */ .amber-100 { background-color: #FFECB3 !important; } /* line 421, ../../sass/utils/colors.scss */ .amber-200 { background-color: #FFE082 !important; } /* line 422, ../../sass/utils/colors.scss */ .amber-300 { background-color: #FFD54F !important; } /* line 423, ../../sass/utils/colors.scss */ .amber-400 { background-color: #FFCA28 !important; } /* line 424, ../../sass/utils/colors.scss */ .amber-500 { background-color: #FFC107 !important; } /* line 425, ../../sass/utils/colors.scss */ .amber-600 { background-color: #FFB300 !important; } /* line 426, ../../sass/utils/colors.scss */ .amber-700 { background-color: #FFA000 !important; } /* line 427, ../../sass/utils/colors.scss */ .amber-800 { background-color: #FF8F00 !important; } /* line 428, ../../sass/utils/colors.scss */ .amber-900 { background-color: #FF6F00 !important; } /* line 429, ../../sass/utils/colors.scss */ .amber-a100 { background-color: #FFE57F !important; } /* line 430, ../../sass/utils/colors.scss */ .amber-a200 { background-color: #FFD740 !important; } /* line 431, ../../sass/utils/colors.scss */ .amber-a400 { background-color: #FFC400 !important; } /* line 432, ../../sass/utils/colors.scss */ .amber-a700 { background-color: #FFAB00 !important; } /* line 433, ../../sass/utils/colors.scss */ .amber-text { color: #FFC107 !important; } /* line 434, ../../sass/utils/colors.scss */ .amber-50-text { color: #FFF8E1 !important; } /* line 435, ../../sass/utils/colors.scss */ .amber-100-text { color: #FFECB3 !important; } /* line 436, ../../sass/utils/colors.scss */ .amber-200-text { color: #FFE082 !important; } /* line 437, ../../sass/utils/colors.scss */ .amber-300-text { color: #FFD54F !important; } /* line 438, ../../sass/utils/colors.scss */ .amber-400-text { color: #FFCA28 !important; } /* line 439, ../../sass/utils/colors.scss */ .amber-500-text { color: #FFC107 !important; } /* line 440, ../../sass/utils/colors.scss */ .amber-600-text { color: #FFB300 !important; } /* line 441, ../../sass/utils/colors.scss */ .amber-700-text { color: #FFA000 !important; } /* line 442, ../../sass/utils/colors.scss */ .amber-800-text { color: #FF8F00 !important; } /* line 443, ../../sass/utils/colors.scss */ .amber-900-text { color: #FF6F00 !important; } /* line 444, ../../sass/utils/colors.scss */ .amber-a100-text { color: #FFE57F !important; } /* line 445, ../../sass/utils/colors.scss */ .amber-a200-text { color: #FFD740 !important; } /* line 446, ../../sass/utils/colors.scss */ .amber-a400-text { color: #FFC400 !important; } /* line 447, ../../sass/utils/colors.scss */ .amber-a700-text { color: #FFAB00 !important; } /* line 450, ../../sass/utils/colors.scss */ .orange { background-color: #FF9800 !important; } /* line 451, ../../sass/utils/colors.scss */ .orange-50 { background-color: #FFF3E0 !important; } /* line 452, ../../sass/utils/colors.scss */ .orange-100 { background-color: #FFE0B2 !important; } /* line 453, ../../sass/utils/colors.scss */ .orange-200 { background-color: #FFCC80 !important; } /* line 454, ../../sass/utils/colors.scss */ .orange-300 { background-color: #FFB74D !important; } /* line 455, ../../sass/utils/colors.scss */ .orange-400 { background-color: #FFA726 !important; } /* line 456, ../../sass/utils/colors.scss */ .orange-500 { background-color: #FF9800 !important; } /* line 457, ../../sass/utils/colors.scss */ .orange-600 { background-color: #FB8C00 !important; } /* line 458, ../../sass/utils/colors.scss */ .orange-700 { background-color: #F57C00 !important; } /* line 459, ../../sass/utils/colors.scss */ .orange-800 { background-color: #EF6C00 !important; } /* line 460, ../../sass/utils/colors.scss */ .orange-900 { background-color: #E65100 !important; } /* line 461, ../../sass/utils/colors.scss */ .orange-a100 { background-color: #FFD180 !important; } /* line 462, ../../sass/utils/colors.scss */ .orange-a200 { background-color: #FFAB40 !important; } /* line 463, ../../sass/utils/colors.scss */ .orange-a400 { background-color: #FF9100 !important; } /* line 464, ../../sass/utils/colors.scss */ .orange-a700 { background-color: #FF6D00 !important; } /* line 465, ../../sass/utils/colors.scss */ .orange-text { color: #FF9800 !important; } /* line 466, ../../sass/utils/colors.scss */ .orange-50-text { color: #FFF3E0 !important; } /* line 467, ../../sass/utils/colors.scss */ .orange-100-text { color: #FFE0B2 !important; } /* line 468, ../../sass/utils/colors.scss */ .orange-200-text { color: #FFCC80 !important; } /* line 469, ../../sass/utils/colors.scss */ .orange-300-text { color: #FFB74D !important; } /* line 470, ../../sass/utils/colors.scss */ .orange-400-text { color: #FFA726 !important; } /* line 471, ../../sass/utils/colors.scss */ .orange-500-text { color: #FF9800 !important; } /* line 472, ../../sass/utils/colors.scss */ .orange-600-text { color: #FB8C00 !important; } /* line 473, ../../sass/utils/colors.scss */ .orange-700-text { color: #F57C00 !important; } /* line 474, ../../sass/utils/colors.scss */ .orange-800-text { color: #EF6C00 !important; } /* line 475, ../../sass/utils/colors.scss */ .orange-900-text { color: #E65100 !important; } /* line 476, ../../sass/utils/colors.scss */ .orange-a100-text { color: #FFD180 !important; } /* line 477, ../../sass/utils/colors.scss */ .orange-a200-text { color: #FFAB40 !important; } /* line 478, ../../sass/utils/colors.scss */ .orange-a400-text { color: #FF9100 !important; } /* line 479, ../../sass/utils/colors.scss */ .orange-a700-text { color: #FF6D00 !important; } /* line 482, ../../sass/utils/colors.scss */ .deep-orange { background-color: #FF5722 !important; } /* line 483, ../../sass/utils/colors.scss */ .deep-orange-50 { background-color: #FBE9E7 !important; } /* line 484, ../../sass/utils/colors.scss */ .deep-orange-100 { background-color: #FFCCBC !important; } /* line 485, ../../sass/utils/colors.scss */ .deep-orange-200 { background-color: #FFAB91 !important; } /* line 486, ../../sass/utils/colors.scss */ .deep-orange-300 { background-color: #FF8A65 !important; } /* line 487, ../../sass/utils/colors.scss */ .deep-orange-400 { background-color: #FF7043 !important; } /* line 488, ../../sass/utils/colors.scss */ .deep-orange-500 { background-color: #FF5722 !important; } /* line 489, ../../sass/utils/colors.scss */ .deep-orange-600 { background-color: #F4511E !important; } /* line 490, ../../sass/utils/colors.scss */ .deep-orange-700 { background-color: #E64A19 !important; } /* line 491, ../../sass/utils/colors.scss */ .deep-orange-800 { background-color: #D84315 !important; } /* line 492, ../../sass/utils/colors.scss */ .deep-orange-900 { background-color: #BF360C !important; } /* line 493, ../../sass/utils/colors.scss */ .deep-orange-a100 { background-color: #FF9E80 !important; } /* line 494, ../../sass/utils/colors.scss */ .deep-orange-a200 { background-color: #FF6E40 !important; } /* line 495, ../../sass/utils/colors.scss */ .deep-orange-a400 { background-color: #FF3D00 !important; } /* line 496, ../../sass/utils/colors.scss */ .deep-orange-a700 { background-color: #DD2C00 !important; } /* line 497, ../../sass/utils/colors.scss */ .deep-orange-text { color: #FF5722 !important; } /* line 498, ../../sass/utils/colors.scss */ .deep-orange-50-text { color: #FBE9E7 !important; } /* line 499, ../../sass/utils/colors.scss */ .deep-orange-100-text { color: #FFCCBC !important; } /* line 500, ../../sass/utils/colors.scss */ .deep-orange-200-text { color: #FFAB91 !important; } /* line 501, ../../sass/utils/colors.scss */ .deep-orange-300-text { color: #FF8A65 !important; } /* line 502, ../../sass/utils/colors.scss */ .deep-orange-400-text { color: #FF7043 !important; } /* line 503, ../../sass/utils/colors.scss */ .deep-orange-500-text { color: #FF5722 !important; } /* line 504, ../../sass/utils/colors.scss */ .deep-orange-600-text { color: #F4511E !important; } /* line 505, ../../sass/utils/colors.scss */ .deep-orange-700-text { color: #E64A19 !important; } /* line 506, ../../sass/utils/colors.scss */ .deep-orange-800-text { color: #D84315 !important; } /* line 507, ../../sass/utils/colors.scss */ .deep-orange-900-text { color: #BF360C !important; } /* line 508, ../../sass/utils/colors.scss */ .deep-orange-a100-text { color: #FF9E80 !important; } /* line 509, ../../sass/utils/colors.scss */ .deep-orange-a200-text { color: #FF6E40 !important; } /* line 510, ../../sass/utils/colors.scss */ .deep-orange-a400-text { color: #FF3D00 !important; } /* line 511, ../../sass/utils/colors.scss */ .deep-orange-a700-text { color: #DD2C00 !important; } /* line 514, ../../sass/utils/colors.scss */ .brown { background-color: #795548 !important; } /* line 515, ../../sass/utils/colors.scss */ .brown-50 { background-color: #EFEBE9 !important; } /* line 516, ../../sass/utils/colors.scss */ .brown-100 { background-color: #D7CCC8 !important; } /* line 517, ../../sass/utils/colors.scss */ .brown-200 { background-color: #BCAAA4 !important; } /* line 518, ../../sass/utils/colors.scss */ .brown-300 { background-color: #A1887F !important; } /* line 519, ../../sass/utils/colors.scss */ .brown-400 { background-color: #8D6E63 !important; } /* line 520, ../../sass/utils/colors.scss */ .brown-500 { background-color: #795548 !important; } /* line 521, ../../sass/utils/colors.scss */ .brown-600 { background-color: #6D4C41 !important; } /* line 522, ../../sass/utils/colors.scss */ .brown-700 { background-color: #5D4037 !important; } /* line 523, ../../sass/utils/colors.scss */ .brown-800 { background-color: #4E342E !important; } /* line 524, ../../sass/utils/colors.scss */ .brown-900 { background-color: #3E2723 !important; } /* line 525, ../../sass/utils/colors.scss */ .brown-text { color: #795548 !important; } /* line 526, ../../sass/utils/colors.scss */ .brown-50-text { color: #EFEBE9 !important; } /* line 527, ../../sass/utils/colors.scss */ .brown-100-text { color: #D7CCC8 !important; } /* line 528, ../../sass/utils/colors.scss */ .brown-200-text { color: #BCAAA4 !important; } /* line 529, ../../sass/utils/colors.scss */ .brown-300-text { color: #A1887F !important; } /* line 530, ../../sass/utils/colors.scss */ .brown-400-text { color: #8D6E63 !important; } /* line 531, ../../sass/utils/colors.scss */ .brown-500-text { color: #795548 !important; } /* line 532, ../../sass/utils/colors.scss */ .brown-600-text { color: #6D4C41 !important; } /* line 533, ../../sass/utils/colors.scss */ .brown-700-text { color: #5D4037 !important; } /* line 534, ../../sass/utils/colors.scss */ .brown-800-text { color: #4E342E !important; } /* line 535, ../../sass/utils/colors.scss */ .brown-900-text { color: #3E2723 !important; } /* line 538, ../../sass/utils/colors.scss */ .gray { background-color: #9E9E9E !important; } /* line 539, ../../sass/utils/colors.scss */ .gray-50 { background-color: #FAFAFA !important; } /* line 540, ../../sass/utils/colors.scss */ .gray-100 { background-color: #F5F5F5 !important; } /* line 541, ../../sass/utils/colors.scss */ .gray-200 { background-color: #EEEEEE !important; } /* line 542, ../../sass/utils/colors.scss */ .gray-300 { background-color: #E0E0E0 !important; } /* line 543, ../../sass/utils/colors.scss */ .gray-400 { background-color: #BDBDBD !important; } /* line 544, ../../sass/utils/colors.scss */ .gray-500 { background-color: #9E9E9E !important; } /* line 545, ../../sass/utils/colors.scss */ .gray-600 { background-color: #757575 !important; } /* line 546, ../../sass/utils/colors.scss */ .gray-700 { background-color: #616161 !important; } /* line 547, ../../sass/utils/colors.scss */ .gray-800 { background-color: #424242 !important; } /* line 548, ../../sass/utils/colors.scss */ .gray-900 { background-color: #212121 !important; } /* line 549, ../../sass/utils/colors.scss */ .gray-text { color: #9E9E9E !important; } /* line 550, ../../sass/utils/colors.scss */ .gray-50-text { color: #FAFAFA !important; } /* line 551, ../../sass/utils/colors.scss */ .gray-100-text { color: #F5F5F5 !important; } /* line 552, ../../sass/utils/colors.scss */ .gray-200-text { color: #EEEEEE !important; } /* line 553, ../../sass/utils/colors.scss */ .gray-300-text { color: #E0E0E0 !important; } /* line 554, ../../sass/utils/colors.scss */ .gray-400-text { color: #BDBDBD !important; } /* line 555, ../../sass/utils/colors.scss */ .gray-500-text { color: #9E9E9E !important; } /* line 556, ../../sass/utils/colors.scss */ .gray-600-text { color: #757575 !important; } /* line 557, ../../sass/utils/colors.scss */ .gray-700-text { color: #616161 !important; } /* line 558, ../../sass/utils/colors.scss */ .gray-800-text { color: #424242 !important; } /* line 559, ../../sass/utils/colors.scss */ .gray-900-text { color: #212121 !important; } /* line 562, ../../sass/utils/colors.scss */ .blue-gray { background-color: #607D8B !important; } /* line 563, ../../sass/utils/colors.scss */ .blue-gray-50 { background-color: #ECEFF1 !important; } /* line 564, ../../sass/utils/colors.scss */ .blue-gray-100 { background-color: #CFD8DC !important; } /* line 565, ../../sass/utils/colors.scss */ .blue-gray-200 { background-color: #B0BEC5 !important; } /* line 566, ../../sass/utils/colors.scss */ .blue-gray-300 { background-color: #90A4AE !important; } /* line 567, ../../sass/utils/colors.scss */ .blue-gray-400 { background-color: #78909C !important; } /* line 568, ../../sass/utils/colors.scss */ .blue-gray-500 { background-color: #607D8B !important; } /* line 569, ../../sass/utils/colors.scss */ .blue-gray-600 { background-color: #546E7A !important; } /* line 570, ../../sass/utils/colors.scss */ .blue-gray-700 { background-color: #455A64 !important; } /* line 571, ../../sass/utils/colors.scss */ .blue-gray-800 { background-color: #37474F !important; } /* line 572, ../../sass/utils/colors.scss */ .blue-gray-900 { background-color: #263238 !important; } /* line 573, ../../sass/utils/colors.scss */ .blue-gray-text { color: #607D8B !important; } /* line 574, ../../sass/utils/colors.scss */ .blue-gray-50-text { color: #ECEFF1 !important; } /* line 575, ../../sass/utils/colors.scss */ .blue-gray-100-text { color: #CFD8DC !important; } /* line 576, ../../sass/utils/colors.scss */ .blue-gray-200-text { color: #B0BEC5 !important; } /* line 577, ../../sass/utils/colors.scss */ .blue-gray-300-text { color: #90A4AE !important; } /* line 578, ../../sass/utils/colors.scss */ .blue-gray-400-text { color: #78909C !important; } /* line 579, ../../sass/utils/colors.scss */ .blue-gray-500-text { color: #607D8B !important; } /* line 580, ../../sass/utils/colors.scss */ .blue-gray-600-text { color: #546E7A !important; } /* line 581, ../../sass/utils/colors.scss */ .blue-gray-700-text { color: #455A64 !important; } /* line 582, ../../sass/utils/colors.scss */ .blue-gray-800-text { color: #37474F !important; } /* line 583, ../../sass/utils/colors.scss */ .blue-gray-900-text { color: #263238 !important; } /* line 586, ../../sass/utils/colors.scss */ .black { background-color: #000000 !important; } /* line 587, ../../sass/utils/colors.scss */ .black-text { color: #000000 !important; } /* line 590, ../../sass/utils/colors.scss */ .white { background-color: #FFFFFF !important; } /* line 591, ../../sass/utils/colors.scss */ .white-text { color: #FFFFFF !important; } /* line 594, ../../sass/utils/colors.scss */ .transparent { background-color: transparent !important; }
css/utils/colors.css
.red { background-color: #F44336 !important; } /* line 3, ../../sass/utils/colors.scss */ .red-50 { background-color: #FFEBEE !important; } /* line 4, ../../sass/utils/colors.scss */ .red-100 { background-color: #FFCDD2 !important; } /* line 5, ../../sass/utils/colors.scss */ .red-200 { background-color: #EF9A9A !important; } /* line 6, ../../sass/utils/colors.scss */ .red-300 { background-color: #E57373 !important; } /* line 7, ../../sass/utils/colors.scss */ .red-400 { background-color: #EF5350 !important; } /* line 8, ../../sass/utils/colors.scss */ .red-500 { background-color: #F44336 !important; } /* line 9, ../../sass/utils/colors.scss */ .red-600 { background-color: #E53935 !important; } /* line 10, ../../sass/utils/colors.scss */ .red-700 { background-color: #D32F2F !important; } /* line 11, ../../sass/utils/colors.scss */ .red-800 { background-color: #C62828 !important; } /* line 12, ../../sass/utils/colors.scss */ .red-900 { background-color: #B71C1C !important; } /* line 13, ../../sass/utils/colors.scss */ .red-a100 { background-color: #FF8A80 !important; } /* line 14, ../../sass/utils/colors.scss */ .red-a200 { background-color: #FF5252 !important; } /* line 15, ../../sass/utils/colors.scss */ .red-a400 { background-color: #FF1744 !important; } /* line 16, ../../sass/utils/colors.scss */ .red-a700 { background-color: #D50000 !important; } /* line 17, ../../sass/utils/colors.scss */ .red-text { color: #F44336 !important; } /* line 18, ../../sass/utils/colors.scss */ .red-50-text { color: #FFEBEE !important; } /* line 19, ../../sass/utils/colors.scss */ .red-100-text { color: #FFCDD2 !important; } /* line 20, ../../sass/utils/colors.scss */ .red-200-text { color: #EF9A9A !important; } /* line 21, ../../sass/utils/colors.scss */ .red-300-text { color: #E57373 !important; } /* line 22, ../../sass/utils/colors.scss */ .red-400-text { color: #EF5350 !important; } /* line 23, ../../sass/utils/colors.scss */ .red-500-text { color: #F44336 !important; } /* line 24, ../../sass/utils/colors.scss */ .red-600-text { color: #E53935 !important; } /* line 25, ../../sass/utils/colors.scss */ .red-700-text { color: #D32F2F !important; } /* line 26, ../../sass/utils/colors.scss */ .red-800-text { color: #C62828 !important; } /* line 27, ../../sass/utils/colors.scss */ .red-900-text { color: #B71C1C !important; } /* line 28, ../../sass/utils/colors.scss */ .red-a100-text { color: #FF8A80 !important; } /* line 29, ../../sass/utils/colors.scss */ .red-a200-text { color: #FF5252 !important; } /* line 30, ../../sass/utils/colors.scss */ .red-a400-text { color: #FF1744 !important; } /* line 31, ../../sass/utils/colors.scss */ .red-a700-text { color: #D50000 !important; } /* line 34, ../../sass/utils/colors.scss */ .pink { background-color: #E91E63 !important; } /* line 35, ../../sass/utils/colors.scss */ .pink-50 { background-color: #FCE4EC !important; } /* line 36, ../../sass/utils/colors.scss */ .pink-100 { background-color: #F8BBD0 !important; } /* line 37, ../../sass/utils/colors.scss */ .pink-200 { background-color: #F48FB1 !important; } /* line 38, ../../sass/utils/colors.scss */ .pink-300 { background-color: #F06292 !important; } /* line 39, ../../sass/utils/colors.scss */ .pink-400 { background-color: #EC407A !important; } /* line 40, ../../sass/utils/colors.scss */ .pink-500 { background-color: #E91E63 !important; } /* line 41, ../../sass/utils/colors.scss */ .pink-600 { background-color: #D81B60 !important; } /* line 42, ../../sass/utils/colors.scss */ .pink-700 { background-color: #C2185B !important; } /* line 43, ../../sass/utils/colors.scss */ .pink-800 { background-color: #AD1457 !important; } /* line 44, ../../sass/utils/colors.scss */ .pink-900 { background-color: #880E4F !important; } /* line 45, ../../sass/utils/colors.scss */ .pink-a100 { background-color: #FF80AB !important; } /* line 46, ../../sass/utils/colors.scss */ .pink-a200 { background-color: #FF4081 !important; } /* line 47, ../../sass/utils/colors.scss */ .pink-a400 { background-color: #F50057 !important; } /* line 48, ../../sass/utils/colors.scss */ .pink-a700 { background-color: #C51162 !important; } /* line 49, ../../sass/utils/colors.scss */ .pink-text { color: #E91E63 !important; } /* line 50, ../../sass/utils/colors.scss */ .pink-50-text { color: #FCE4EC !important; } /* line 51, ../../sass/utils/colors.scss */ .pink-100-text { color: #F8BBD0 !important; } /* line 52, ../../sass/utils/colors.scss */ .pink-200-text { color: #F48FB1 !important; } /* line 53, ../../sass/utils/colors.scss */ .pink-300-text { color: #F06292 !important; } /* line 54, ../../sass/utils/colors.scss */ .pink-400-text { color: #EC407A !important; } /* line 55, ../../sass/utils/colors.scss */ .pink-500-text { color: #E91E63 !important; } /* line 56, ../../sass/utils/colors.scss */ .pink-600-text { color: #D81B60 !important; } /* line 57, ../../sass/utils/colors.scss */ .pink-700-text { color: #C2185B !important; } /* line 58, ../../sass/utils/colors.scss */ .pink-800-text { color: #AD1457 !important; } /* line 59, ../../sass/utils/colors.scss */ .pink-900-text { color: #880E4F !important; } /* line 60, ../../sass/utils/colors.scss */ .pink-a100-text { color: #FF80AB !important; } /* line 61, ../../sass/utils/colors.scss */ .pink-a200-text { color: #FF4081 !important; } /* line 62, ../../sass/utils/colors.scss */ .pink-a400-text { color: #F50057 !important; } /* line 63, ../../sass/utils/colors.scss */ .pink-a700-text { color: #C51162 !important; } /* line 66, ../../sass/utils/colors.scss */ .purple { background-color: #9C27B0 !important; } /* line 67, ../../sass/utils/colors.scss */ .purple-50 { background-color: #F3E5F5 !important; } /* line 68, ../../sass/utils/colors.scss */ .purple-100 { background-color: #E1BEE7 !important; } /* line 69, ../../sass/utils/colors.scss */ .purple-200 { background-color: #CE93D8 !important; } /* line 70, ../../sass/utils/colors.scss */ .purple-300 { background-color: #BA68C8 !important; } /* line 71, ../../sass/utils/colors.scss */ .purple-400 { background-color: #AB47BC !important; } /* line 72, ../../sass/utils/colors.scss */ .purple-500 { background-color: #9C27B0 !important; } /* line 73, ../../sass/utils/colors.scss */ .purple-600 { background-color: #8E24AA !important; } /* line 74, ../../sass/utils/colors.scss */ .purple-700 { background-color: #7B1FA2 !important; } /* line 75, ../../sass/utils/colors.scss */ .purple-800 { background-color: #6A1B9A !important; } /* line 76, ../../sass/utils/colors.scss */ .purple-900 { background-color: #4A148C !important; } /* line 77, ../../sass/utils/colors.scss */ .purple-a100 { background-color: #EA80FC !important; } /* line 78, ../../sass/utils/colors.scss */ .purple-a200 { background-color: #E040FB !important; } /* line 79, ../../sass/utils/colors.scss */ .purple-a400 { background-color: #D500F9 !important; } /* line 80, ../../sass/utils/colors.scss */ .purple-a700 { background-color: #AA00FF !important; } /* line 81, ../../sass/utils/colors.scss */ .purple-text { color: #9C27B0 !important; } /* line 82, ../../sass/utils/colors.scss */ .purple-50-text { color: #F3E5F5 !important; } /* line 83, ../../sass/utils/colors.scss */ .purple-100-text { color: #E1BEE7 !important; } /* line 84, ../../sass/utils/colors.scss */ .purple-200-text { color: #CE93D8 !important; } /* line 85, ../../sass/utils/colors.scss */ .purple-300-text { color: #BA68C8 !important; } /* line 86, ../../sass/utils/colors.scss */ .purple-400-text { color: #AB47BC !important; } /* line 87, ../../sass/utils/colors.scss */ .purple-500-text { color: #9C27B0 !important; } /* line 88, ../../sass/utils/colors.scss */ .purple-600-text { color: #8E24AA !important; } /* line 89, ../../sass/utils/colors.scss */ .purple-700-text { color: #7B1FA2 !important; } /* line 90, ../../sass/utils/colors.scss */ .purple-800-text { color: #6A1B9A !important; } /* line 91, ../../sass/utils/colors.scss */ .purple-900-text { color: #4A148C !important; } /* line 92, ../../sass/utils/colors.scss */ .purple-a100-text { color: #EA80FC !important; } /* line 93, ../../sass/utils/colors.scss */ .purple-a200-text { color: #E040FB !important; } /* line 94, ../../sass/utils/colors.scss */ .purple-a400-text { color: #D500F9 !important; } /* line 95, ../../sass/utils/colors.scss */ .purple-a700-text { color: #AA00FF !important; } /* line 98, ../../sass/utils/colors.scss */ .deep-purple { background-color: #673AB7 !important; } /* line 99, ../../sass/utils/colors.scss */ .deep-purple-50 { background-color: #EDE7F6 !important; } /* line 100, ../../sass/utils/colors.scss */ .deep-purple-100 { background-color: #D1C4E9 !important; } /* line 101, ../../sass/utils/colors.scss */ .deep-purple-200 { background-color: #B39DDB !important; } /* line 102, ../../sass/utils/colors.scss */ .deep-purple-300 { background-color: #9575CD !important; } /* line 103, ../../sass/utils/colors.scss */ .deep-purple-400 { background-color: #7E57C2 !important; } /* line 104, ../../sass/utils/colors.scss */ .deep-purple-500 { background-color: #673AB7 !important; } /* line 105, ../../sass/utils/colors.scss */ .deep-purple-600 { background-color: #5E35B1 !important; } /* line 106, ../../sass/utils/colors.scss */ .deep-purple-700 { background-color: #512DA8 !important; } /* line 107, ../../sass/utils/colors.scss */ .deep-purple-800 { background-color: #4527A0 !important; } /* line 108, ../../sass/utils/colors.scss */ .deep-purple-900 { background-color: #311B92 !important; } /* line 109, ../../sass/utils/colors.scss */ .deep-purple-a100 { background-color: #B388FF !important; } /* line 110, ../../sass/utils/colors.scss */ .deep-purple-a200 { background-color: #7C4DFF !important; } /* line 111, ../../sass/utils/colors.scss */ .deep-purple-a400 { background-color: #651FFF !important; } /* line 112, ../../sass/utils/colors.scss */ .deep-purple-a700 { background-color: #6200EA !important; } /* line 113, ../../sass/utils/colors.scss */ .deep-purple-text { color: #673AB7 !important; } /* line 114, ../../sass/utils/colors.scss */ .deep-purple-50-text { color: #EDE7F6 !important; } /* line 115, ../../sass/utils/colors.scss */ .deep-purple-100-text { color: #D1C4E9 !important; } /* line 116, ../../sass/utils/colors.scss */ .deep-purple-200-text { color: #B39DDB !important; } /* line 117, ../../sass/utils/colors.scss */ .deep-purple-300-text { color: #9575CD !important; } /* line 118, ../../sass/utils/colors.scss */ .deep-purple-400-text { color: #7E57C2 !important; } /* line 119, ../../sass/utils/colors.scss */ .deep-purple-500-text { color: #673AB7 !important; } /* line 120, ../../sass/utils/colors.scss */ .deep-purple-600-text { color: #5E35B1 !important; } /* line 121, ../../sass/utils/colors.scss */ .deep-purple-700-text { color: #512DA8 !important; } /* line 122, ../../sass/utils/colors.scss */ .deep-purple-800-text { color: #4527A0 !important; } /* line 123, ../../sass/utils/colors.scss */ .deep-purple-900-text { color: #311B92 !important; } /* line 124, ../../sass/utils/colors.scss */ .deep-purple-a100-text { color: #B388FF !important; } /* line 125, ../../sass/utils/colors.scss */ .deep-purple-a200-text { color: #7C4DFF !important; } /* line 126, ../../sass/utils/colors.scss */ .deep-purple-a400-text { color: #651FFF !important; } /* line 127, ../../sass/utils/colors.scss */ .deep-purple-a700-text { color: #6200EA !important; } /* line 130, ../../sass/utils/colors.scss */ .indigo { background-color: #3F51B5 !important; } /* line 131, ../../sass/utils/colors.scss */ .indigo-50 { background-color: #E8EAF6 !important; } /* line 132, ../../sass/utils/colors.scss */ .indigo-100 { background-color: #C5CAE9 !important; } /* line 133, ../../sass/utils/colors.scss */ .indigo-200 { background-color: #9FA8DA !important; } /* line 134, ../../sass/utils/colors.scss */ .indigo-300 { background-color: #7986CB !important; } /* line 135, ../../sass/utils/colors.scss */ .indigo-400 { background-color: #5C6BC0 !important; } /* line 136, ../../sass/utils/colors.scss */ .indigo-500 { background-color: #3F51B5 !important; } /* line 137, ../../sass/utils/colors.scss */ .indigo-600 { background-color: #3949AB !important; } /* line 138, ../../sass/utils/colors.scss */ .indigo-700 { background-color: #303F9F !important; } /* line 139, ../../sass/utils/colors.scss */ .indigo-800 { background-color: #283593 !important; } /* line 140, ../../sass/utils/colors.scss */ .indigo-900 { background-color: #1A237E !important; } /* line 141, ../../sass/utils/colors.scss */ .indigo-a100 { background-color: #8C9EFF !important; } /* line 142, ../../sass/utils/colors.scss */ .indigo-a200 { background-color: #536DFE !important; } /* line 143, ../../sass/utils/colors.scss */ .indigo-a400 { background-color: #3D5AFE !important; } /* line 144, ../../sass/utils/colors.scss */ .indigo-a700 { background-color: #304FFE !important; } /* line 145, ../../sass/utils/colors.scss */ .indigo-text { color: #3F51B5 !important; } /* line 146, ../../sass/utils/colors.scss */ .indigo-50-text { color: #E8EAF6 !important; } /* line 147, ../../sass/utils/colors.scss */ .indigo-100-text { color: #C5CAE9 !important; } /* line 148, ../../sass/utils/colors.scss */ .indigo-200-text { color: #9FA8DA !important; } /* line 149, ../../sass/utils/colors.scss */ .indigo-300-text { color: #7986CB !important; } /* line 150, ../../sass/utils/colors.scss */ .indigo-400-text { color: #5C6BC0 !important; } /* line 151, ../../sass/utils/colors.scss */ .indigo-500-text { color: #3F51B5 !important; } /* line 152, ../../sass/utils/colors.scss */ .indigo-600-text { color: #3949AB !important; } /* line 153, ../../sass/utils/colors.scss */ .indigo-700-text { color: #303F9F !important; } /* line 154, ../../sass/utils/colors.scss */ .indigo-800-text { color: #283593 !important; } /* line 155, ../../sass/utils/colors.scss */ .indigo-900-text { color: #1A237E !important; } /* line 156, ../../sass/utils/colors.scss */ .indigo-a100-text { color: #8C9EFF !important; } /* line 157, ../../sass/utils/colors.scss */ .indigo-a200-text { color: #536DFE !important; } /* line 158, ../../sass/utils/colors.scss */ .indigo-a400-text { color: #3D5AFE !important; } /* line 159, ../../sass/utils/colors.scss */ .indigo-a700-text { color: #304FFE !important; } /* line 162, ../../sass/utils/colors.scss */ .blue { background-color: #2196F3 !important; } /* line 163, ../../sass/utils/colors.scss */ .blue-50 { background-color: #E3F2FD !important; } /* line 164, ../../sass/utils/colors.scss */ .blue-100 { background-color: #BBDEFB !important; } /* line 165, ../../sass/utils/colors.scss */ .blue-200 { background-color: #90CAF9 !important; } /* line 166, ../../sass/utils/colors.scss */ .blue-300 { background-color: #64B5F6 !important; } /* line 167, ../../sass/utils/colors.scss */ .blue-400 { background-color: #42A5F5 !important; } /* line 168, ../../sass/utils/colors.scss */ .blue-500 { background-color: #2196F3 !important; } /* line 169, ../../sass/utils/colors.scss */ .blue-600 { background-color: #1E88E5 !important; } /* line 170, ../../sass/utils/colors.scss */ .blue-700 { background-color: #1976D2 !important; } /* line 171, ../../sass/utils/colors.scss */ .blue-800 { background-color: #1565C0 !important; } /* line 172, ../../sass/utils/colors.scss */ .blue-900 { background-color: #0D47A1 !important; } /* line 173, ../../sass/utils/colors.scss */ .blue-a100 { background-color: #82B1FF !important; } /* line 174, ../../sass/utils/colors.scss */ .blue-a200 { background-color: #448AFF !important; } /* line 175, ../../sass/utils/colors.scss */ .blue-a400 { background-color: #2979FF !important; } /* line 176, ../../sass/utils/colors.scss */ .blue-a700 { background-color: #2962FF !important; } /* line 177, ../../sass/utils/colors.scss */ .blue-text { color: #2196F3 !important; } /* line 178, ../../sass/utils/colors.scss */ .blue-50-text { color: #E3F2FD !important; } /* line 179, ../../sass/utils/colors.scss */ .blue-100-text { color: #BBDEFB !important; } /* line 180, ../../sass/utils/colors.scss */ .blue-200-text { color: #90CAF9 !important; } /* line 181, ../../sass/utils/colors.scss */ .blue-300-text { color: #64B5F6 !important; } /* line 182, ../../sass/utils/colors.scss */ .blue-400-text { color: #42A5F5 !important; } /* line 183, ../../sass/utils/colors.scss */ .blue-500-text { color: #2196F3 !important; } /* line 184, ../../sass/utils/colors.scss */ .blue-600-text { color: #1E88E5 !important; } /* line 185, ../../sass/utils/colors.scss */ .blue-700-text { color: #1976D2 !important; } /* line 186, ../../sass/utils/colors.scss */ .blue-800-text { color: #1565C0 !important; } /* line 187, ../../sass/utils/colors.scss */ .blue-900-text { color: #0D47A1 !important; } /* line 188, ../../sass/utils/colors.scss */ .blue-a100-text { color: #82B1FF !important; } /* line 189, ../../sass/utils/colors.scss */ .blue-a200-text { color: #448AFF !important; } /* line 190, ../../sass/utils/colors.scss */ .blue-a400-text { color: #2979FF !important; } /* line 191, ../../sass/utils/colors.scss */ .blue-a700-text { color: #2962FF !important; } /* line 194, ../../sass/utils/colors.scss */ .light-blue { background-color: #03A9F4 !important; } /* line 195, ../../sass/utils/colors.scss */ .light-blue-50 { background-color: #E1F5FE !important; } /* line 196, ../../sass/utils/colors.scss */ .light-blue-100 { background-color: #B3E5FC !important; } /* line 197, ../../sass/utils/colors.scss */ .light-blue-200 { background-color: #81D4FA !important; } /* line 198, ../../sass/utils/colors.scss */ .light-blue-300 { background-color: #4FC3F7 !important; } /* line 199, ../../sass/utils/colors.scss */ .light-blue-400 { background-color: #29B6F6 !important; } /* line 200, ../../sass/utils/colors.scss */ .light-blue-500 { background-color: #03A9F4 !important; } /* line 201, ../../sass/utils/colors.scss */ .light-blue-600 { background-color: #039BE5 !important; } /* line 202, ../../sass/utils/colors.scss */ .light-blue-700 { background-color: #0288D1 !important; } /* line 203, ../../sass/utils/colors.scss */ .light-blue-800 { background-color: #0277BD !important; } /* line 204, ../../sass/utils/colors.scss */ .light-blue-900 { background-color: #01579B !important; } /* line 205, ../../sass/utils/colors.scss */ .light-blue-a100 { background-color: #80D8FF !important; } /* line 206, ../../sass/utils/colors.scss */ .light-blue-a200 { background-color: #40C4FF !important; } /* line 207, ../../sass/utils/colors.scss */ .light-blue-a400 { background-color: #00B0FF !important; } /* line 208, ../../sass/utils/colors.scss */ .light-blue-a700 { background-color: #0091EA !important; } /* line 209, ../../sass/utils/colors.scss */ .light-blue-text { color: #03A9F4 !important; } /* line 210, ../../sass/utils/colors.scss */ .light-blue-50-text { color: #E1F5FE !important; } /* line 211, ../../sass/utils/colors.scss */ .light-blue-100-text { color: #B3E5FC !important; } /* line 212, ../../sass/utils/colors.scss */ .light-blue-200-text { color: #81D4FA !important; } /* line 213, ../../sass/utils/colors.scss */ .light-blue-300-text { color: #4FC3F7 !important; } /* line 214, ../../sass/utils/colors.scss */ .light-blue-400-text { color: #29B6F6 !important; } /* line 215, ../../sass/utils/colors.scss */ .light-blue-500-text { color: #03A9F4 !important; } /* line 216, ../../sass/utils/colors.scss */ .light-blue-600-text { color: #039BE5 !important; } /* line 217, ../../sass/utils/colors.scss */ .light-blue-700-text { color: #0288D1 !important; } /* line 218, ../../sass/utils/colors.scss */ .light-blue-800-text { color: #0277BD !important; } /* line 219, ../../sass/utils/colors.scss */ .light-blue-900-text { color: #01579B !important; } /* line 220, ../../sass/utils/colors.scss */ .light-blue-a100-text { color: #80D8FF !important; } /* line 221, ../../sass/utils/colors.scss */ .light-blue-a200-text { color: #40C4FF !important; } /* line 222, ../../sass/utils/colors.scss */ .light-blue-a400-text { color: #00B0FF !important; } /* line 223, ../../sass/utils/colors.scss */ .light-blue-a700-text { color: #0091EA !important; } /* line 226, ../../sass/utils/colors.scss */ .cyan { background-color: #00BCD4 !important; } /* line 227, ../../sass/utils/colors.scss */ .cyan-50 { background-color: #E0F7FA !important; } /* line 228, ../../sass/utils/colors.scss */ .cyan-100 { background-color: #B2EBF2 !important; } /* line 229, ../../sass/utils/colors.scss */ .cyan-200 { background-color: #80DEEA !important; } /* line 230, ../../sass/utils/colors.scss */ .cyan-300 { background-color: #4DD0E1 !important; } /* line 231, ../../sass/utils/colors.scss */ .cyan-400 { background-color: #26C6DA !important; } /* line 232, ../../sass/utils/colors.scss */ .cyan-500 { background-color: #00BCD4 !important; } /* line 233, ../../sass/utils/colors.scss */ .cyan-600 { background-color: #00ACC1 !important; } /* line 234, ../../sass/utils/colors.scss */ .cyan-700 { background-color: #0097A7 !important; } /* line 235, ../../sass/utils/colors.scss */ .cyan-800 { background-color: #00838F !important; } /* line 236, ../../sass/utils/colors.scss */ .cyan-900 { background-color: #006064 !important; } /* line 237, ../../sass/utils/colors.scss */ .cyan-a100 { background-color: #84FFFF !important; } /* line 238, ../../sass/utils/colors.scss */ .cyan-a200 { background-color: #18FFFF !important; } /* line 239, ../../sass/utils/colors.scss */ .cyan-a400 { background-color: #00E5FF !important; } /* line 240, ../../sass/utils/colors.scss */ .cyan-a700 { background-color: #00B8D4 !important; } /* line 241, ../../sass/utils/colors.scss */ .cyan-text { color: #00BCD4 !important; } /* line 242, ../../sass/utils/colors.scss */ .cyan-50-text { color: #E0F7FA !important; } /* line 243, ../../sass/utils/colors.scss */ .cyan-100-text { color: #B2EBF2 !important; } /* line 244, ../../sass/utils/colors.scss */ .cyan-200-text { color: #80DEEA !important; } /* line 245, ../../sass/utils/colors.scss */ .cyan-300-text { color: #4DD0E1 !important; } /* line 246, ../../sass/utils/colors.scss */ .cyan-400-text { color: #26C6DA !important; } /* line 247, ../../sass/utils/colors.scss */ .cyan-500-text { color: #00BCD4 !important; } /* line 248, ../../sass/utils/colors.scss */ .cyan-600-text { color: #00ACC1 !important; } /* line 249, ../../sass/utils/colors.scss */ .cyan-700-text { color: #0097A7 !important; } /* line 250, ../../sass/utils/colors.scss */ .cyan-800-text { color: #00838F !important; } /* line 251, ../../sass/utils/colors.scss */ .cyan-900-text { color: #006064 !important; } /* line 252, ../../sass/utils/colors.scss */ .cyan-a100-text { color: #84FFFF !important; } /* line 253, ../../sass/utils/colors.scss */ .cyan-a200-text { color: #18FFFF !important; } /* line 254, ../../sass/utils/colors.scss */ .cyan-a400-text { color: #00E5FF !important; } /* line 255, ../../sass/utils/colors.scss */ .cyan-a700-text { color: #00B8D4 !important; } /* line 258, ../../sass/utils/colors.scss */ .teal { background-color: #009688 !important; } /* line 259, ../../sass/utils/colors.scss */ .teal-50 { background-color: #E0F2F1 !important; } /* line 260, ../../sass/utils/colors.scss */ .teal-100 { background-color: #B2DFDB !important; } /* line 261, ../../sass/utils/colors.scss */ .teal-200 { background-color: #80CBC4 !important; } /* line 262, ../../sass/utils/colors.scss */ .teal-300 { background-color: #4DB6AC !important; } /* line 263, ../../sass/utils/colors.scss */ .teal-400 { background-color: #26A69A !important; } /* line 264, ../../sass/utils/colors.scss */ .teal-500 { background-color: #009688 !important; } /* line 265, ../../sass/utils/colors.scss */ .teal-600 { background-color: #00897B !important; } /* line 266, ../../sass/utils/colors.scss */ .teal-700 { background-color: #00796B !important; } /* line 267, ../../sass/utils/colors.scss */ .teal-800 { background-color: #00695C !important; } /* line 268, ../../sass/utils/colors.scss */ .teal-900 { background-color: #004D40 !important; } /* line 269, ../../sass/utils/colors.scss */ .teal-a100 { background-color: #A7FFEB !important; } /* line 270, ../../sass/utils/colors.scss */ .teal-a200 { background-color: #64FFDA !important; } /* line 271, ../../sass/utils/colors.scss */ .teal-a400 { background-color: #1DE9B6 !important; } /* line 272, ../../sass/utils/colors.scss */ .teal-a700 { background-color: #00BFA5 !important; } /* line 273, ../../sass/utils/colors.scss */ .teal-text { color: #009688 !important; } /* line 274, ../../sass/utils/colors.scss */ .teal-50-text { color: #E0F2F1 !important; } /* line 275, ../../sass/utils/colors.scss */ .teal-100-text { color: #B2DFDB !important; } /* line 276, ../../sass/utils/colors.scss */ .teal-200-text { color: #80CBC4 !important; } /* line 277, ../../sass/utils/colors.scss */ .teal-300-text { color: #4DB6AC !important; } /* line 278, ../../sass/utils/colors.scss */ .teal-400-text { color: #26A69A !important; } /* line 279, ../../sass/utils/colors.scss */ .teal-500-text { color: #009688 !important; } /* line 280, ../../sass/utils/colors.scss */ .teal-600-text { color: #00897B !important; } /* line 281, ../../sass/utils/colors.scss */ .teal-700-text { color: #00796B !important; } /* line 282, ../../sass/utils/colors.scss */ .teal-800-text { color: #00695C !important; } /* line 283, ../../sass/utils/colors.scss */ .teal-900-text { color: #004D40 !important; } /* line 284, ../../sass/utils/colors.scss */ .teal-a100-text { color: #A7FFEB !important; } /* line 285, ../../sass/utils/colors.scss */ .teal-a200-text { color: #64FFDA !important; } /* line 286, ../../sass/utils/colors.scss */ .teal-a400-text { color: #1DE9B6 !important; } /* line 287, ../../sass/utils/colors.scss */ .teal-a700-text { color: #00BFA5 !important; } /* line 290, ../../sass/utils/colors.scss */ .green { background-color: #4CAF50 !important; } /* line 291, ../../sass/utils/colors.scss */ .green-50 { background-color: #E8F5E9 !important; } /* line 292, ../../sass/utils/colors.scss */ .green-100 { background-color: #C8E6C9 !important; } /* line 293, ../../sass/utils/colors.scss */ .green-200 { background-color: #A5D6A7 !important; } /* line 294, ../../sass/utils/colors.scss */ .green-300 { background-color: #81C784 !important; } /* line 295, ../../sass/utils/colors.scss */ .green-400 { background-color: #66BB6A !important; } /* line 296, ../../sass/utils/colors.scss */ .green-500 { background-color: #4CAF50 !important; } /* line 297, ../../sass/utils/colors.scss */ .green-600 { background-color: #43A047 !important; } /* line 298, ../../sass/utils/colors.scss */ .green-700 { background-color: #388E3C !important; } /* line 299, ../../sass/utils/colors.scss */ .green-800 { background-color: #2E7D32 !important; } /* line 300, ../../sass/utils/colors.scss */ .green-900 { background-color: #1B5E20 !important; } /* line 301, ../../sass/utils/colors.scss */ .green-a100 { background-color: #B9F6CA !important; } /* line 302, ../../sass/utils/colors.scss */ .green-a200 { background-color: #69F0AE !important; } /* line 303, ../../sass/utils/colors.scss */ .green-a400 { background-color: #00E676 !important; } /* line 304, ../../sass/utils/colors.scss */ .green-a700 { background-color: #00C853 !important; } /* line 305, ../../sass/utils/colors.scss */ .green-text { color: #4CAF50 !important; } /* line 306, ../../sass/utils/colors.scss */ .green-50-text { color: #E8F5E9 !important; } /* line 307, ../../sass/utils/colors.scss */ .green-100-text { color: #C8E6C9 !important; } /* line 308, ../../sass/utils/colors.scss */ .green-200-text { color: #A5D6A7 !important; } /* line 309, ../../sass/utils/colors.scss */ .green-300-text { color: #81C784 !important; } /* line 310, ../../sass/utils/colors.scss */ .green-400-text { color: #66BB6A !important; } /* line 311, ../../sass/utils/colors.scss */ .green-500-text { color: #4CAF50 !important; } /* line 312, ../../sass/utils/colors.scss */ .green-600-text { color: #43A047 !important; } /* line 313, ../../sass/utils/colors.scss */ .green-700-text { color: #388E3C !important; } /* line 314, ../../sass/utils/colors.scss */ .green-800-text { color: #2E7D32 !important; } /* line 315, ../../sass/utils/colors.scss */ .green-900-text { color: #1B5E20 !important; } /* line 316, ../../sass/utils/colors.scss */ .green-a100-text { color: #B9F6CA !important; } /* line 317, ../../sass/utils/colors.scss */ .green-a200-text { color: #69F0AE !important; } /* line 318, ../../sass/utils/colors.scss */ .green-a400-text { color: #00E676 !important; } /* line 319, ../../sass/utils/colors.scss */ .green-a700-text { color: #00C853 !important; } /* line 322, ../../sass/utils/colors.scss */ .light-green { background-color: #8BC34A !important; } /* line 323, ../../sass/utils/colors.scss */ .light-green-50 { background-color: #F1F8E9 !important; } /* line 324, ../../sass/utils/colors.scss */ .light-green-100 { background-color: #DCEDC8 !important; } /* line 325, ../../sass/utils/colors.scss */ .light-green-200 { background-color: #C5E1A5 !important; } /* line 326, ../../sass/utils/colors.scss */ .light-green-300 { background-color: #AED581 !important; } /* line 327, ../../sass/utils/colors.scss */ .light-green-400 { background-color: #9CCC65 !important; } /* line 328, ../../sass/utils/colors.scss */ .light-green-500 { background-color: #8BC34A !important; } /* line 329, ../../sass/utils/colors.scss */ .light-green-600 { background-color: #7CB342 !important; } /* line 330, ../../sass/utils/colors.scss */ .light-green-700 { background-color: #689F38 !important; } /* line 331, ../../sass/utils/colors.scss */ .light-green-800 { background-color: #558B2F !important; } /* line 332, ../../sass/utils/colors.scss */ .light-green-900 { background-color: #33691E !important; } /* line 333, ../../sass/utils/colors.scss */ .light-green-a100 { background-color: #CCFF90 !important; } /* line 334, ../../sass/utils/colors.scss */ .light-green-a200 { background-color: #B2FF59 !important; } /* line 335, ../../sass/utils/colors.scss */ .light-green-a400 { background-color: #76FF03 !important; } /* line 336, ../../sass/utils/colors.scss */ .light-green-a700 { background-color: #64DD17 !important; } /* line 337, ../../sass/utils/colors.scss */ .light-green-text { color: #8BC34A !important; } /* line 338, ../../sass/utils/colors.scss */ .light-green-50-text { color: #F1F8E9 !important; } /* line 339, ../../sass/utils/colors.scss */ .light-green-100-text { color: #DCEDC8 !important; } /* line 340, ../../sass/utils/colors.scss */ .light-green-200-text { color: #C5E1A5 !important; } /* line 341, ../../sass/utils/colors.scss */ .light-green-300-text { color: #AED581 !important; } /* line 342, ../../sass/utils/colors.scss */ .light-green-400-text { color: #9CCC65 !important; } /* line 343, ../../sass/utils/colors.scss */ .light-green-500-text { color: #8BC34A !important; } /* line 344, ../../sass/utils/colors.scss */ .light-green-600-text { color: #7CB342 !important; } /* line 345, ../../sass/utils/colors.scss */ .light-green-700-text { color: #689F38 !important; } /* line 346, ../../sass/utils/colors.scss */ .light-green-800-text { color: #558B2F !important; } /* line 347, ../../sass/utils/colors.scss */ .light-green-900-text { color: #33691E !important; } /* line 348, ../../sass/utils/colors.scss */ .light-green-a100-text { color: #CCFF90 !important; } /* line 349, ../../sass/utils/colors.scss */ .light-green-a200-text { color: #B2FF59 !important; } /* line 350, ../../sass/utils/colors.scss */ .light-green-a400-text { color: #76FF03 !important; } /* line 351, ../../sass/utils/colors.scss */ .light-green-a700-text { color: #64DD17 !important; } /* line 354, ../../sass/utils/colors.scss */ .lime { background-color: #CDDC39 !important; } /* line 355, ../../sass/utils/colors.scss */ .lime-50 { background-color: #F9FBE7 !important; } /* line 356, ../../sass/utils/colors.scss */ .lime-100 { background-color: #F0F4C3 !important; } /* line 357, ../../sass/utils/colors.scss */ .lime-200 { background-color: #E6EE9C !important; } /* line 358, ../../sass/utils/colors.scss */ .lime-300 { background-color: #DCE775 !important; } /* line 359, ../../sass/utils/colors.scss */ .lime-400 { background-color: #D4E157 !important; } /* line 360, ../../sass/utils/colors.scss */ .lime-500 { background-color: #CDDC39 !important; } /* line 361, ../../sass/utils/colors.scss */ .lime-600 { background-color: #C0CA33 !important; } /* line 362, ../../sass/utils/colors.scss */ .lime-700 { background-color: #AFB42B !important; } /* line 363, ../../sass/utils/colors.scss */ .lime-800 { background-color: #9E9D24 !important; } /* line 364, ../../sass/utils/colors.scss */ .lime-900 { background-color: #827717 !important; } /* line 365, ../../sass/utils/colors.scss */ .lime-a100 { background-color: #F4FF81 !important; } /* line 366, ../../sass/utils/colors.scss */ .lime-a200 { background-color: #EEFF41 !important; } /* line 367, ../../sass/utils/colors.scss */ .lime-a400 { background-color: #C6FF00 !important; } /* line 368, ../../sass/utils/colors.scss */ .lime-a700 { background-color: #AEEA00 !important; } /* line 369, ../../sass/utils/colors.scss */ .lime-text { color: #CDDC39 !important; } /* line 370, ../../sass/utils/colors.scss */ .lime-50-text { color: #F9FBE7 !important; } /* line 371, ../../sass/utils/colors.scss */ .lime-100-text { color: #F0F4C3 !important; } /* line 372, ../../sass/utils/colors.scss */ .lime-200-text { color: #E6EE9C !important; } /* line 373, ../../sass/utils/colors.scss */ .lime-300-text { color: #DCE775 !important; } /* line 374, ../../sass/utils/colors.scss */ .lime-400-text { color: #D4E157 !important; } /* line 375, ../../sass/utils/colors.scss */ .lime-500-text { color: #CDDC39 !important; } /* line 376, ../../sass/utils/colors.scss */ .lime-600-text { color: #C0CA33 !important; } /* line 377, ../../sass/utils/colors.scss */ .lime-700-text { color: #AFB42B !important; } /* line 378, ../../sass/utils/colors.scss */ .lime-800-text { color: #9E9D24 !important; } /* line 379, ../../sass/utils/colors.scss */ .lime-900-text { color: #827717 !important; } /* line 380, ../../sass/utils/colors.scss */ .lime-a100-text { color: #F4FF81 !important; } /* line 381, ../../sass/utils/colors.scss */ .lime-a200-text { color: #EEFF41 !important; } /* line 382, ../../sass/utils/colors.scss */ .lime-a400-text { color: #C6FF00 !important; } /* line 383, ../../sass/utils/colors.scss */ .lime-a700-text { color: #AEEA00 !important; } /* line 386, ../../sass/utils/colors.scss */ .yellow { background-color: #FFEB3B !important; } /* line 387, ../../sass/utils/colors.scss */ .yellow-50 { background-color: #FFFDE7 !important; } /* line 388, ../../sass/utils/colors.scss */ .yellow-100 { background-color: #FFF9C4 !important; } /* line 389, ../../sass/utils/colors.scss */ .yellow-200 { background-color: #FFF59D !important; } /* line 390, ../../sass/utils/colors.scss */ .yellow-300 { background-color: #FFF176 !important; } /* line 391, ../../sass/utils/colors.scss */ .yellow-400 { background-color: #FFEE58 !important; } /* line 392, ../../sass/utils/colors.scss */ .yellow-500 { background-color: #FFEB3B !important; } /* line 393, ../../sass/utils/colors.scss */ .yellow-600 { background-color: #FDD835 !important; } /* line 394, ../../sass/utils/colors.scss */ .yellow-700 { background-color: #FBC02D !important; } /* line 395, ../../sass/utils/colors.scss */ .yellow-800 { background-color: #F9A825 !important; } /* line 396, ../../sass/utils/colors.scss */ .yellow-900 { background-color: #F57F17 !important; } /* line 397, ../../sass/utils/colors.scss */ .yellow-a100 { background-color: #FFFF8D !important; } /* line 398, ../../sass/utils/colors.scss */ .yellow-a200 { background-color: #FFFF00 !important; } /* line 399, ../../sass/utils/colors.scss */ .yellow-a400 { background-color: #FFEA00 !important; } /* line 400, ../../sass/utils/colors.scss */ .yellow-a700 { background-color: #FFD600 !important; } /* line 401, ../../sass/utils/colors.scss */ .yellow-text { color: #FFEB3B !important; } /* line 402, ../../sass/utils/colors.scss */ .yellow-50-text { color: #FFFDE7 !important; } /* line 403, ../../sass/utils/colors.scss */ .yellow-100-text { color: #FFF9C4 !important; } /* line 404, ../../sass/utils/colors.scss */ .yellow-200-text { color: #FFF59D !important; } /* line 405, ../../sass/utils/colors.scss */ .yellow-300-text { color: #FFF176 !important; } /* line 406, ../../sass/utils/colors.scss */ .yellow-400-text { color: #FFEE58 !important; } /* line 407, ../../sass/utils/colors.scss */ .yellow-500-text { color: #FFEB3B !important; } /* line 408, ../../sass/utils/colors.scss */ .yellow-600-text { color: #FDD835 !important; } /* line 409, ../../sass/utils/colors.scss */ .yellow-700-text { color: #FBC02D !important; } /* line 410, ../../sass/utils/colors.scss */ .yellow-800-text { color: #F9A825 !important; } /* line 411, ../../sass/utils/colors.scss */ .yellow-900-text { color: #F57F17 !important; } /* line 412, ../../sass/utils/colors.scss */ .yellow-a100-text { color: #FFFF8D !important; } /* line 413, ../../sass/utils/colors.scss */ .yellow-a200-text { color: #FFFF00 !important; } /* line 414, ../../sass/utils/colors.scss */ .yellow-a400-text { color: #FFEA00 !important; } /* line 415, ../../sass/utils/colors.scss */ .yellow-a700-text { color: #FFD600 !important; } /* line 418, ../../sass/utils/colors.scss */ .amber { background-color: #FFC107 !important; } /* line 419, ../../sass/utils/colors.scss */ .amber-50 { background-color: #FFF8E1 !important; } /* line 420, ../../sass/utils/colors.scss */ .amber-100 { background-color: #FFECB3 !important; } /* line 421, ../../sass/utils/colors.scss */ .amber-200 { background-color: #FFE082 !important; } /* line 422, ../../sass/utils/colors.scss */ .amber-300 { background-color: #FFD54F !important; } /* line 423, ../../sass/utils/colors.scss */ .amber-400 { background-color: #FFCA28 !important; } /* line 424, ../../sass/utils/colors.scss */ .amber-500 { background-color: #FFC107 !important; } /* line 425, ../../sass/utils/colors.scss */ .amber-600 { background-color: #FFB300 !important; } /* line 426, ../../sass/utils/colors.scss */ .amber-700 { background-color: #FFA000 !important; } /* line 427, ../../sass/utils/colors.scss */ .amber-800 { background-color: #FF8F00 !important; } /* line 428, ../../sass/utils/colors.scss */ .amber-900 { background-color: #FF6F00 !important; } /* line 429, ../../sass/utils/colors.scss */ .amber-a100 { background-color: #FFE57F !important; } /* line 430, ../../sass/utils/colors.scss */ .amber-a200 { background-color: #FFD740 !important; } /* line 431, ../../sass/utils/colors.scss */ .amber-a400 { background-color: #FFC400 !important; } /* line 432, ../../sass/utils/colors.scss */ .amber-a700 { background-color: #FFAB00 !important; } /* line 433, ../../sass/utils/colors.scss */ .amber-text { color: #FFC107 !important; } /* line 434, ../../sass/utils/colors.scss */ .amber-50-text { color: #FFF8E1 !important; } /* line 435, ../../sass/utils/colors.scss */ .amber-100-text { color: #FFECB3 !important; } /* line 436, ../../sass/utils/colors.scss */ .amber-200-text { color: #FFE082 !important; } /* line 437, ../../sass/utils/colors.scss */ .amber-300-text { color: #FFD54F !important; } /* line 438, ../../sass/utils/colors.scss */ .amber-400-text { color: #FFCA28 !important; } /* line 439, ../../sass/utils/colors.scss */ .amber-500-text { color: #FFC107 !important; } /* line 440, ../../sass/utils/colors.scss */ .amber-600-text { color: #FFB300 !important; } /* line 441, ../../sass/utils/colors.scss */ .amber-700-text { color: #FFA000 !important; } /* line 442, ../../sass/utils/colors.scss */ .amber-800-text { color: #FF8F00 !important; } /* line 443, ../../sass/utils/colors.scss */ .amber-900-text { color: #FF6F00 !important; } /* line 444, ../../sass/utils/colors.scss */ .amber-a100-text { color: #FFE57F !important; } /* line 445, ../../sass/utils/colors.scss */ .amber-a200-text { color: #FFD740 !important; } /* line 446, ../../sass/utils/colors.scss */ .amber-a400-text { color: #FFC400 !important; } /* line 447, ../../sass/utils/colors.scss */ .amber-a700-text { color: #FFAB00 !important; } /* line 450, ../../sass/utils/colors.scss */ .orange { background-color: #FF9800 !important; } /* line 451, ../../sass/utils/colors.scss */ .orange-50 { background-color: #FFF3E0 !important; } /* line 452, ../../sass/utils/colors.scss */ .orange-100 { background-color: #FFE0B2 !important; } /* line 453, ../../sass/utils/colors.scss */ .orange-200 { background-color: #FFCC80 !important; } /* line 454, ../../sass/utils/colors.scss */ .orange-300 { background-color: #FFB74D !important; } /* line 455, ../../sass/utils/colors.scss */ .orange-400 { background-color: #FFA726 !important; } /* line 456, ../../sass/utils/colors.scss */ .orange-500 { background-color: #FF9800 !important; } /* line 457, ../../sass/utils/colors.scss */ .orange-600 { background-color: #FB8C00 !important; } /* line 458, ../../sass/utils/colors.scss */ .orange-700 { background-color: #F57C00 !important; } /* line 459, ../../sass/utils/colors.scss */ .orange-800 { background-color: #EF6C00 !important; } /* line 460, ../../sass/utils/colors.scss */ .orange-900 { background-color: #E65100 !important; } /* line 461, ../../sass/utils/colors.scss */ .orange-a100 { background-color: #FFD180 !important; } /* line 462, ../../sass/utils/colors.scss */ .orange-a200 { background-color: #FFAB40 !important; } /* line 463, ../../sass/utils/colors.scss */ .orange-a400 { background-color: #FF9100 !important; } /* line 464, ../../sass/utils/colors.scss */ .orange-a700 { background-color: #FF6D00 !important; } /* line 465, ../../sass/utils/colors.scss */ .orange-text { color: #FF9800 !important; } /* line 466, ../../sass/utils/colors.scss */ .orange-50-text { color: #FFF3E0 !important; } /* line 467, ../../sass/utils/colors.scss */ .orange-100-text { color: #FFE0B2 !important; } /* line 468, ../../sass/utils/colors.scss */ .orange-200-text { color: #FFCC80 !important; } /* line 469, ../../sass/utils/colors.scss */ .orange-300-text { color: #FFB74D !important; } /* line 470, ../../sass/utils/colors.scss */ .orange-400-text { color: #FFA726 !important; } /* line 471, ../../sass/utils/colors.scss */ .orange-500-text { color: #FF9800 !important; } /* line 472, ../../sass/utils/colors.scss */ .orange-600-text { color: #FB8C00 !important; } /* line 473, ../../sass/utils/colors.scss */ .orange-700-text { color: #F57C00 !important; } /* line 474, ../../sass/utils/colors.scss */ .orange-800-text { color: #EF6C00 !important; } /* line 475, ../../sass/utils/colors.scss */ .orange-900-text { color: #E65100 !important; } /* line 476, ../../sass/utils/colors.scss */ .orange-a100-text { color: #FFD180 !important; } /* line 477, ../../sass/utils/colors.scss */ .orange-a200-text { color: #FFAB40 !important; } /* line 478, ../../sass/utils/colors.scss */ .orange-a400-text { color: #FF9100 !important; } /* line 479, ../../sass/utils/colors.scss */ .orange-a700-text { color: #FF6D00 !important; } /* line 482, ../../sass/utils/colors.scss */ .deep-orange { background-color: #FF5722 !important; } /* line 483, ../../sass/utils/colors.scss */ .deep-orange-50 { background-color: #FBE9E7 !important; } /* line 484, ../../sass/utils/colors.scss */ .deep-orange-100 { background-color: #FFCCBC !important; } /* line 485, ../../sass/utils/colors.scss */ .deep-orange-200 { background-color: #FFAB91 !important; } /* line 486, ../../sass/utils/colors.scss */ .deep-orange-300 { background-color: #FF8A65 !important; } /* line 487, ../../sass/utils/colors.scss */ .deep-orange-400 { background-color: #FF7043 !important; } /* line 488, ../../sass/utils/colors.scss */ .deep-orange-500 { background-color: #FF5722 !important; } /* line 489, ../../sass/utils/colors.scss */ .deep-orange-600 { background-color: #F4511E !important; } /* line 490, ../../sass/utils/colors.scss */ .deep-orange-700 { background-color: #E64A19 !important; } /* line 491, ../../sass/utils/colors.scss */ .deep-orange-800 { background-color: #D84315 !important; } /* line 492, ../../sass/utils/colors.scss */ .deep-orange-900 { background-color: #BF360C !important; } /* line 493, ../../sass/utils/colors.scss */ .deep-orange-a100 { background-color: #FF9E80 !important; } /* line 494, ../../sass/utils/colors.scss */ .deep-orange-a200 { background-color: #FF6E40 !important; } /* line 495, ../../sass/utils/colors.scss */ .deep-orange-a400 { background-color: #FF3D00 !important; } /* line 496, ../../sass/utils/colors.scss */ .deep-orange-a700 { background-color: #DD2C00 !important; } /* line 497, ../../sass/utils/colors.scss */ .deep-orange-text { color: #FF5722 !important; } /* line 498, ../../sass/utils/colors.scss */ .deep-orange-50-text { color: #FBE9E7 !important; } /* line 499, ../../sass/utils/colors.scss */ .deep-orange-100-text { color: #FFCCBC !important; } /* line 500, ../../sass/utils/colors.scss */ .deep-orange-200-text { color: #FFAB91 !important; } /* line 501, ../../sass/utils/colors.scss */ .deep-orange-300-text { color: #FF8A65 !important; } /* line 502, ../../sass/utils/colors.scss */ .deep-orange-400-text { color: #FF7043 !important; } /* line 503, ../../sass/utils/colors.scss */ .deep-orange-500-text { color: #FF5722 !important; } /* line 504, ../../sass/utils/colors.scss */ .deep-orange-600-text { color: #F4511E !important; } /* line 505, ../../sass/utils/colors.scss */ .deep-orange-700-text { color: #E64A19 !important; } /* line 506, ../../sass/utils/colors.scss */ .deep-orange-800-text { color: #D84315 !important; } /* line 507, ../../sass/utils/colors.scss */ .deep-orange-900-text { color: #BF360C !important; } /* line 508, ../../sass/utils/colors.scss */ .deep-orange-a100-text { color: #FF9E80 !important; } /* line 509, ../../sass/utils/colors.scss */ .deep-orange-a200-text { color: #FF6E40 !important; } /* line 510, ../../sass/utils/colors.scss */ .deep-orange-a400-text { color: #FF3D00 !important; } /* line 511, ../../sass/utils/colors.scss */ .deep-orange-a700-text { color: #DD2C00 !important; } /* line 514, ../../sass/utils/colors.scss */ .brown { background-color: #795548 !important; } /* line 515, ../../sass/utils/colors.scss */ .brown-50 { background-color: #EFEBE9 !important; } /* line 516, ../../sass/utils/colors.scss */ .brown-100 { background-color: #D7CCC8 !important; } /* line 517, ../../sass/utils/colors.scss */ .brown-200 { background-color: #BCAAA4 !important; } /* line 518, ../../sass/utils/colors.scss */ .brown-300 { background-color: #A1887F !important; } /* line 519, ../../sass/utils/colors.scss */ .brown-400 { background-color: #8D6E63 !important; } /* line 520, ../../sass/utils/colors.scss */ .brown-500 { background-color: #795548 !important; } /* line 521, ../../sass/utils/colors.scss */ .brown-600 { background-color: #6D4C41 !important; } /* line 522, ../../sass/utils/colors.scss */ .brown-700 { background-color: #5D4037 !important; } /* line 523, ../../sass/utils/colors.scss */ .brown-800 { background-color: #4E342E !important; } /* line 524, ../../sass/utils/colors.scss */ .brown-900 { background-color: #3E2723 !important; } /* line 525, ../../sass/utils/colors.scss */ .brown-text { color: #795548 !important; } /* line 526, ../../sass/utils/colors.scss */ .brown-50-text { color: #EFEBE9 !important; } /* line 527, ../../sass/utils/colors.scss */ .brown-100-text { color: #D7CCC8 !important; } /* line 528, ../../sass/utils/colors.scss */ .brown-200-text { color: #BCAAA4 !important; } /* line 529, ../../sass/utils/colors.scss */ .brown-300-text { color: #A1887F !important; } /* line 530, ../../sass/utils/colors.scss */ .brown-400-text { color: #8D6E63 !important; } /* line 531, ../../sass/utils/colors.scss */ .brown-500-text { color: #795548 !important; } /* line 532, ../../sass/utils/colors.scss */ .brown-600-text { color: #6D4C41 !important; } /* line 533, ../../sass/utils/colors.scss */ .brown-700-text { color: #5D4037 !important; } /* line 534, ../../sass/utils/colors.scss */ .brown-800-text { color: #4E342E !important; } /* line 535, ../../sass/utils/colors.scss */ .brown-900-text { color: #3E2723 !important; } /* line 538, ../../sass/utils/colors.scss */ .gray { background-color: #9E9E9E !important; } /* line 539, ../../sass/utils/colors.scss */ .gray-50 { background-color: #FAFAFA !important; } /* line 540, ../../sass/utils/colors.scss */ .gray-100 { background-color: #F5F5F5 !important; } /* line 541, ../../sass/utils/colors.scss */ .gray-200 { background-color: #EEEEEE !important; } /* line 542, ../../sass/utils/colors.scss */ .gray-300 { background-color: #E0E0E0 !important; } /* line 543, ../../sass/utils/colors.scss */ .gray-400 { background-color: #BDBDBD !important; } /* line 544, ../../sass/utils/colors.scss */ .gray-500 { background-color: #9E9E9E !important; } /* line 545, ../../sass/utils/colors.scss */ .gray-600 { background-color: #757575 !important; } /* line 546, ../../sass/utils/colors.scss */ .gray-700 { background-color: #616161 !important; } /* line 547, ../../sass/utils/colors.scss */ .gray-800 { background-color: #424242 !important; } /* line 548, ../../sass/utils/colors.scss */ .gray-900 { background-color: #212121 !important; } /* line 549, ../../sass/utils/colors.scss */ .gray-text { color: #9E9E9E !important; } /* line 550, ../../sass/utils/colors.scss */ .gray-50-text { color: #FAFAFA !important; } /* line 551, ../../sass/utils/colors.scss */ .gray-100-text { color: #F5F5F5 !important; } /* line 552, ../../sass/utils/colors.scss */ .gray-200-text { color: #EEEEEE !important; } /* line 553, ../../sass/utils/colors.scss */ .gray-300-text { color: #E0E0E0 !important; } /* line 554, ../../sass/utils/colors.scss */ .gray-400-text { color: #BDBDBD !important; } /* line 555, ../../sass/utils/colors.scss */ .gray-500-text { color: #9E9E9E !important; } /* line 556, ../../sass/utils/colors.scss */ .gray-600-text { color: #757575 !important; } /* line 557, ../../sass/utils/colors.scss */ .gray-700-text { color: #616161 !important; } /* line 558, ../../sass/utils/colors.scss */ .gray-800-text { color: #424242 !important; } /* line 559, ../../sass/utils/colors.scss */ .gray-900-text { color: #212121 !important; } /* line 562, ../../sass/utils/colors.scss */ .blue-gray { background-color: #607D8B !important; } /* line 563, ../../sass/utils/colors.scss */ .blue-gray-50 { background-color: #ECEFF1 !important; } /* line 564, ../../sass/utils/colors.scss */ .blue-gray-100 { background-color: #CFD8DC !important; } /* line 565, ../../sass/utils/colors.scss */ .blue-gray-200 { background-color: #B0BEC5 !important; } /* line 566, ../../sass/utils/colors.scss */ .blue-gray-300 { background-color: #90A4AE !important; } /* line 567, ../../sass/utils/colors.scss */ .blue-gray-400 { background-color: #78909C !important; } /* line 568, ../../sass/utils/colors.scss */ .blue-gray-500 { background-color: #607D8B !important; } /* line 569, ../../sass/utils/colors.scss */ .blue-gray-600 { background-color: #546E7A !important; } /* line 570, ../../sass/utils/colors.scss */ .blue-gray-700 { background-color: #455A64 !important; } /* line 571, ../../sass/utils/colors.scss */ .blue-gray-800 { background-color: #37474F !important; } /* line 572, ../../sass/utils/colors.scss */ .blue-gray-900 { background-color: #263238 !important; } /* line 573, ../../sass/utils/colors.scss */ .blue-gray-text { color: #607D8B !important; } /* line 574, ../../sass/utils/colors.scss */ .blue-gray-50-text { color: #ECEFF1 !important; } /* line 575, ../../sass/utils/colors.scss */ .blue-gray-100-text { color: #CFD8DC !important; } /* line 576, ../../sass/utils/colors.scss */ .blue-gray-200-text { color: #B0BEC5 !important; } /* line 577, ../../sass/utils/colors.scss */ .blue-gray-300-text { color: #90A4AE !important; } /* line 578, ../../sass/utils/colors.scss */ .blue-gray-400-text { color: #78909C !important; } /* line 579, ../../sass/utils/colors.scss */ .blue-gray-500-text { color: #607D8B !important; } /* line 580, ../../sass/utils/colors.scss */ .blue-gray-600-text { color: #546E7A !important; } /* line 581, ../../sass/utils/colors.scss */ .blue-gray-700-text { color: #455A64 !important; } /* line 582, ../../sass/utils/colors.scss */ .blue-gray-800-text { color: #37474F !important; } /* line 583, ../../sass/utils/colors.scss */ .blue-gray-900-text { color: #263238 !important; } /* line 586, ../../sass/utils/colors.scss */ .black { background-color: #000000 !important; } /* line 587, ../../sass/utils/colors.scss */ .black-text { color: #000000 !important; } /* line 590, ../../sass/utils/colors.scss */ .white { background-color: #FFFFFF !important; } /* line 591, ../../sass/utils/colors.scss */ .white-text { color: #FFFFFF !important; } /* line 594, ../../sass/utils/colors.scss */ .transparent { background-color: transparent !important; }
0.200323
0.094218
a:hover{ text-decoration:none; } textarea:focus{ outline:none; } /* common css start end */ .ds_traveller_story { padding: 100px 0px; } .right_side_details { float: left; width: 100%; } .right_side_details h3 { font-weight: 300; margin-top: 0px; color: #2c3e50; position: relative; display: inline-block; border-bottom: 1px solid #808b8d; padding-right: 30px; padding-bottom: 8px; } .right_side_details p { padding-top: 18px; line-height: 24px; color: #808b8d; } #about_slider .item img{ display: block; width: 100%; height: auto; } .around_world_sec { background: url(http://placehold.it/1600x990) no-repeat; padding: 99px 0px 0px 0px; background-size: cover; } .box_inner { padding: 0px 35px 35px 35px; } .section_main .icon { width: 76px; height: 77px; background: #ffffff; border: 1px solid #e7e7e7; margin: 0 auto; top: -36px; position: relative; } .section_main .icon .fa { background: #86b817; color: #fff; width: 60px; height: 61px; line-height: 55px; font-size: 24px; margin: 7px; } .section_main { background: #ffffff; text-align: center; float:left; width:100%; margin-bottom:99px; border: 1px solid #e7e7e7; } .section_main .box_title { font-weight: bold; text-transform: capitalize; color: #2c3e50; margin-top: 0; } .box_inner p { line-height: 24px; color: #808b8d; padding: 10px 0px; } .box_inner a { font-size: 16px; text-transform: capitalize; text-decoration: none; border-top: 1px solid #86b817; padding: 3px 16px; } .section_main:hover> .icon { background: #fdb714; border-color: #fdb714; } .section_main:hover> .icon .fa{ background:#fff; color:#fdb714; } .section_main:hover> .box_inner a { border-color: #fdb714; color: #fdb714; } .section_main, .box_inner a, .icon .fa, .icon, .fa{ -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -ms-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .check_lists{ padding-top:55px; } .check_lists ul li { float: left; width: 100%; list-style-type: none; } .check_lists ul { margin:0px; padding:0px; } .check_lists ul li p { font-family: Lato; } .check_lists ul li label { font-size: 16px; color: #333333; width: 125px; float: left; text-transform: capitalize; } .check_lists ul li label:before { content: "\f046"; display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); color:#86b817; margin-right: 10px; } .btn_green { background: #86b817; color: #ffffff; text-transform: capitalize; } .gallery_btn { width: 170px; height: 40px; float: left; text-align: center; line-height: 40px; margin-top: 25px; position:relative; } .gallery_btn:hover { text-decoration: none; box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); color: #fff; } .tr_team_desc h4 { text-transform: uppercase; color: #2c3e50; font-weight: 900; margin-bottom: 5px; letter-spacing: 0.1em; } .tr_team_desc { padding: 10px 19px 22px 19px; } .tr_team_wrapper { /* padding-bottom: 22px; */ border: 1px solid #ecf0f1; background: #ffffff; } .tr_team_wrapper .thumb_wrap{ overflow:hidden; } .title_tag { padding-bottom: 15px; border-bottom: 1px solid #d5d8dc; text-transform: capitalize; color: #a1b1bc; } .team_social_media { text-align: center; padding-top: 18px; } .team_social_media .fa { width: 30px; height: 30px; margin-right: 12px; color: #fff; line-height: 30px; text-align: center; border-radius: 4px; } .team_section { background: #f9f9f9; padding: 99px 0px; } .team_social_media .fa-facebook{ background:#1b78c7; } .team_social_media .fa-pinterest-p{ background:#da421f; } .team_social_media .fa-dribbble{ background:#bc2a83; } .team_social_media .fa-twitter{ background:#00bff3; } .team_social_media .fa:hover { opacity: .5; cursor: pointer; } .heading_team { text-align: center; padding-bottom: 30px; position:relative; } .heading_team h3 { font-weight: 700; color: #2c3e50; text-transform: uppercase; padding-bottom: 30px; margin-top: 0px; position:relative; } .heading_team p { color: #808b8d; line-height: 24px; padding: 0 17%; } .heading_team h3:after, .heading_team h3:before { content: "\f107\f107\f107\f107\f107\f107\f107"; display: inline-block; font: normal normal normal 9px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); width: 100px; height: 3px; color: #86b817; position: absolute; left: 0; right: 0; margin: 18px auto 0 auto; letter-spacing: -0.15em; } .heading_team h3:before { bottom: 23px; } .heading_team h3:after { bottom: 19px; } .gallery_btn:after { content: ''; position: absolute; left: 50%; right: 50%; top: 0; bottom: 0; display: inline-block; background-color: rgba(255,255,255,0.2); -webkit-transform: skew(20deg); -moz-transform: skew(20deg); -ms-transform: skew(20deg); -o-transform: skew(20deg); transform: skew(20deg); -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .gallery_btn:hover:after { right: -10px; left: -10px; } .contact_section { background: #86b817; padding: 75px 0px; } .tr_contact_wrap { color: #fff; } .tr_contact_wrap h3 { margin: 0px; } .tr_contact_wrap h4 { margin-top: 0px; margin-bottom: 4px; font-size: 16px; } .hello_wrapper .tr_contact_wrap h4 { text-transform: capitalize; } .hello_wrapper .tr_contact_wrap h3.contact { text-transform: inherit; } .hello_wrapper i.fa { float: left; margin-right: 20px; color: #ffffff; font-size: 24px; line-height: 40px; } .tr_contact_wrap { color: #fff; float: left; } .hello_wrapper { float: left; width: 100%; } .tr_contact_wrap .tell_us { text-transform: uppercase; font-weight: 700; } .tr_contact_wrap .tell_us b { font-weight: 900; color: #2c3e50; border-bottom: 2px solid #2c3e50; } .counter_section .easyPieChart { width: 100% !important; height: auto !important; line-height: 0px !important; } .counter_section { padding: 96px 0px; } .chart { position: relative; text-align: center; } .counter_section .chart i.fa { position: absolute; top: 30%; left: 45%; font-size: 30px; color:#ff5ba0; } .counter_section .chart span { position: absolute; left: 27%; top: -37px; font-size: 35px; color: #2c3e50; font-family: Lato; } .counter_title { font-family: Lato; text-transform: uppercase; color: #808b8d; padding-top: 30px; width: 120px; margin: 0 auto; line-height: 24px; } .counter_section .chart span { display: none; } .counter_section .timer { font-size: 35px; color: #2c3e50; font-family: Lato; text-align: center; padding-bottom:25px; } /*---------media query start-----*/ @media (max-width:767px){ .hello_wrapper{ text-align:center; } .tr_contact_wrap{ width:100%; text-align:center; margin-bottom:15px; } .hello_wrapper i.fa{ float:none; } .tr_team_wrapper, .tr_team_wrapper .thumb_wrap img { margin: 0 auto; text-align:center; } } @media (min-width:992px){ .Travelite_about_right_side{ padding-left:60px; } } @media (max-width:991px){ .right_side_details{ padding-top:30px; } .counter_section .chart { margin-bottom: 35px; } } @media (max-width:480px){ .tr_contact_wrap h3 { font-size: 20px; } .right_side_details h3 { font-size: 16px; line-height: 24px; } } @media (max-width:991px){ .tr_team_wrapper { margin-bottom: 30px; } } @media(min-width:768px) and (max-width:991px){ .tr_contact_wrap h3{ font-size:14px; } .tr_contact_wrap h4 { font-size: 13px; } .tr_team_wrapper .thumb_wrap img { width: 100%; } } @media(min-width:992px) and (max-width:1200px){ .tr_contact_wrap h3{ font-size:18px; } .team_social_media .fa { margin-right: 9px; } .tr_team_desc h4{ font-size:14px; } } .tr_team_wrapper:hover .thumb_wrap img{ animation:ZoomIn 1s 1 100ms; -moz-animation:ZoomIn 1s 1 100ms ; -webkit-animation:ZoomIn 1s 1 100ms ; -ms-animation:ZoomIn 1s 1 100ms ; -o-animation:ZoomIn 1s 1 100ms ; position:relative; } @-webkit-keyframes ZoomIn { 0% {-webkit-transform: scale(1);} 25% {-webkit-transform: scale(1.2);} 50% {-webkit-transform: scale(1.1);} 100% {-webkit-transform: scale(1);} } @-moz-keyframes ZoomIn { 0% {-moz-transform: scale(1);} 25% {-moz-transform: scale(1.2);} 50% {-moz-transform: scale(1.1);} 100% {-moz-transform: scale(1);} } @keyframes ZoomIn { 0% {transform: scale(1);} 25% {transform: scale(1.2);} 50% {transform: scale(1.1);} 100% {transform: scale(1);} }
public/user/css/default/about.css
a:hover{ text-decoration:none; } textarea:focus{ outline:none; } /* common css start end */ .ds_traveller_story { padding: 100px 0px; } .right_side_details { float: left; width: 100%; } .right_side_details h3 { font-weight: 300; margin-top: 0px; color: #2c3e50; position: relative; display: inline-block; border-bottom: 1px solid #808b8d; padding-right: 30px; padding-bottom: 8px; } .right_side_details p { padding-top: 18px; line-height: 24px; color: #808b8d; } #about_slider .item img{ display: block; width: 100%; height: auto; } .around_world_sec { background: url(http://placehold.it/1600x990) no-repeat; padding: 99px 0px 0px 0px; background-size: cover; } .box_inner { padding: 0px 35px 35px 35px; } .section_main .icon { width: 76px; height: 77px; background: #ffffff; border: 1px solid #e7e7e7; margin: 0 auto; top: -36px; position: relative; } .section_main .icon .fa { background: #86b817; color: #fff; width: 60px; height: 61px; line-height: 55px; font-size: 24px; margin: 7px; } .section_main { background: #ffffff; text-align: center; float:left; width:100%; margin-bottom:99px; border: 1px solid #e7e7e7; } .section_main .box_title { font-weight: bold; text-transform: capitalize; color: #2c3e50; margin-top: 0; } .box_inner p { line-height: 24px; color: #808b8d; padding: 10px 0px; } .box_inner a { font-size: 16px; text-transform: capitalize; text-decoration: none; border-top: 1px solid #86b817; padding: 3px 16px; } .section_main:hover> .icon { background: #fdb714; border-color: #fdb714; } .section_main:hover> .icon .fa{ background:#fff; color:#fdb714; } .section_main:hover> .box_inner a { border-color: #fdb714; color: #fdb714; } .section_main, .box_inner a, .icon .fa, .icon, .fa{ -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -ms-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .check_lists{ padding-top:55px; } .check_lists ul li { float: left; width: 100%; list-style-type: none; } .check_lists ul { margin:0px; padding:0px; } .check_lists ul li p { font-family: Lato; } .check_lists ul li label { font-size: 16px; color: #333333; width: 125px; float: left; text-transform: capitalize; } .check_lists ul li label:before { content: "\f046"; display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); color:#86b817; margin-right: 10px; } .btn_green { background: #86b817; color: #ffffff; text-transform: capitalize; } .gallery_btn { width: 170px; height: 40px; float: left; text-align: center; line-height: 40px; margin-top: 25px; position:relative; } .gallery_btn:hover { text-decoration: none; box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); color: #fff; } .tr_team_desc h4 { text-transform: uppercase; color: #2c3e50; font-weight: 900; margin-bottom: 5px; letter-spacing: 0.1em; } .tr_team_desc { padding: 10px 19px 22px 19px; } .tr_team_wrapper { /* padding-bottom: 22px; */ border: 1px solid #ecf0f1; background: #ffffff; } .tr_team_wrapper .thumb_wrap{ overflow:hidden; } .title_tag { padding-bottom: 15px; border-bottom: 1px solid #d5d8dc; text-transform: capitalize; color: #a1b1bc; } .team_social_media { text-align: center; padding-top: 18px; } .team_social_media .fa { width: 30px; height: 30px; margin-right: 12px; color: #fff; line-height: 30px; text-align: center; border-radius: 4px; } .team_section { background: #f9f9f9; padding: 99px 0px; } .team_social_media .fa-facebook{ background:#1b78c7; } .team_social_media .fa-pinterest-p{ background:#da421f; } .team_social_media .fa-dribbble{ background:#bc2a83; } .team_social_media .fa-twitter{ background:#00bff3; } .team_social_media .fa:hover { opacity: .5; cursor: pointer; } .heading_team { text-align: center; padding-bottom: 30px; position:relative; } .heading_team h3 { font-weight: 700; color: #2c3e50; text-transform: uppercase; padding-bottom: 30px; margin-top: 0px; position:relative; } .heading_team p { color: #808b8d; line-height: 24px; padding: 0 17%; } .heading_team h3:after, .heading_team h3:before { content: "\f107\f107\f107\f107\f107\f107\f107"; display: inline-block; font: normal normal normal 9px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); width: 100px; height: 3px; color: #86b817; position: absolute; left: 0; right: 0; margin: 18px auto 0 auto; letter-spacing: -0.15em; } .heading_team h3:before { bottom: 23px; } .heading_team h3:after { bottom: 19px; } .gallery_btn:after { content: ''; position: absolute; left: 50%; right: 50%; top: 0; bottom: 0; display: inline-block; background-color: rgba(255,255,255,0.2); -webkit-transform: skew(20deg); -moz-transform: skew(20deg); -ms-transform: skew(20deg); -o-transform: skew(20deg); transform: skew(20deg); -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .gallery_btn:hover:after { right: -10px; left: -10px; } .contact_section { background: #86b817; padding: 75px 0px; } .tr_contact_wrap { color: #fff; } .tr_contact_wrap h3 { margin: 0px; } .tr_contact_wrap h4 { margin-top: 0px; margin-bottom: 4px; font-size: 16px; } .hello_wrapper .tr_contact_wrap h4 { text-transform: capitalize; } .hello_wrapper .tr_contact_wrap h3.contact { text-transform: inherit; } .hello_wrapper i.fa { float: left; margin-right: 20px; color: #ffffff; font-size: 24px; line-height: 40px; } .tr_contact_wrap { color: #fff; float: left; } .hello_wrapper { float: left; width: 100%; } .tr_contact_wrap .tell_us { text-transform: uppercase; font-weight: 700; } .tr_contact_wrap .tell_us b { font-weight: 900; color: #2c3e50; border-bottom: 2px solid #2c3e50; } .counter_section .easyPieChart { width: 100% !important; height: auto !important; line-height: 0px !important; } .counter_section { padding: 96px 0px; } .chart { position: relative; text-align: center; } .counter_section .chart i.fa { position: absolute; top: 30%; left: 45%; font-size: 30px; color:#ff5ba0; } .counter_section .chart span { position: absolute; left: 27%; top: -37px; font-size: 35px; color: #2c3e50; font-family: Lato; } .counter_title { font-family: Lato; text-transform: uppercase; color: #808b8d; padding-top: 30px; width: 120px; margin: 0 auto; line-height: 24px; } .counter_section .chart span { display: none; } .counter_section .timer { font-size: 35px; color: #2c3e50; font-family: Lato; text-align: center; padding-bottom:25px; } /*---------media query start-----*/ @media (max-width:767px){ .hello_wrapper{ text-align:center; } .tr_contact_wrap{ width:100%; text-align:center; margin-bottom:15px; } .hello_wrapper i.fa{ float:none; } .tr_team_wrapper, .tr_team_wrapper .thumb_wrap img { margin: 0 auto; text-align:center; } } @media (min-width:992px){ .Travelite_about_right_side{ padding-left:60px; } } @media (max-width:991px){ .right_side_details{ padding-top:30px; } .counter_section .chart { margin-bottom: 35px; } } @media (max-width:480px){ .tr_contact_wrap h3 { font-size: 20px; } .right_side_details h3 { font-size: 16px; line-height: 24px; } } @media (max-width:991px){ .tr_team_wrapper { margin-bottom: 30px; } } @media(min-width:768px) and (max-width:991px){ .tr_contact_wrap h3{ font-size:14px; } .tr_contact_wrap h4 { font-size: 13px; } .tr_team_wrapper .thumb_wrap img { width: 100%; } } @media(min-width:992px) and (max-width:1200px){ .tr_contact_wrap h3{ font-size:18px; } .team_social_media .fa { margin-right: 9px; } .tr_team_desc h4{ font-size:14px; } } .tr_team_wrapper:hover .thumb_wrap img{ animation:ZoomIn 1s 1 100ms; -moz-animation:ZoomIn 1s 1 100ms ; -webkit-animation:ZoomIn 1s 1 100ms ; -ms-animation:ZoomIn 1s 1 100ms ; -o-animation:ZoomIn 1s 1 100ms ; position:relative; } @-webkit-keyframes ZoomIn { 0% {-webkit-transform: scale(1);} 25% {-webkit-transform: scale(1.2);} 50% {-webkit-transform: scale(1.1);} 100% {-webkit-transform: scale(1);} } @-moz-keyframes ZoomIn { 0% {-moz-transform: scale(1);} 25% {-moz-transform: scale(1.2);} 50% {-moz-transform: scale(1.1);} 100% {-moz-transform: scale(1);} } @keyframes ZoomIn { 0% {transform: scale(1);} 25% {transform: scale(1.2);} 50% {transform: scale(1.1);} 100% {transform: scale(1);} }
0.428951
0.090253
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} img { max-width: 100%; height: auto; vertical-align: top; } section { float: left; width: 100%; padding-bottom: 80px; } @media (min-width: 1170px) { .container { max-width: 1160px; } } body { font-size: 14px; font-family: 'Montserrat', sans-serif; } input[type=number], input[type=password], input[type=email], input[type=mail], input[type=tel], input[type=text] { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 16px; outline: none !important; } textarea { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 124px; width: 100%; padding: 16px 16px; outline: none !important; } select { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 34px 0 12px; outline: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url(images/select.png) right 12px center no-repeat; } a {} a:hover {} .wrapper {} header { float: left; width: 100%; padding-top: 24px; margin-bottom: 40px; } .logo-text { float: left; font-family: Indie Flower, Neucha; width: 210px; text-decoration: none; color: #723e91; font-weight: bold; font-size: 3em; } header { background-color: rgba(232, 62, 140, 0.2); } .header-mid { float: left; width: 420px; margin-left: 15px; margin-top: 10px; } .header-mid-admin { width: 525px; } .header-top { float: left; width: 100%; } .header-phone { float: left; } .header-phone a { color: #000; line-height: 30px; text-decoration: none; display: block; cursor: pointer; /*padding-left: 40px;*/ /*background: url(images/phone-ico.png) left center no-repeat;*/ } .header-mess { float: left; margin-left: 133px; } .header-icons { float: left; } .header-icons span { display: block; float: left; margin-right: 10px; } .header-number { float: left; line-height: 30px; } .header-nav { float: left; width: 100%; margin-top: 30px; } .header-nav-admin { margin-top: 5px; margin-left: 15px; } .header-nav > ul { padding: 0; margin: 0; list-style: none; } .header-nav > ul > li { float: left; position: relative; margin-right: 15px; } .header-nav > ul > li.no-sub > a:before { content: normal; } .header-nav > ul > li > a { display: block; cursor: pointer; text-decoration: none !important; border-bottom: 3px solid transparent; padding: 3px 0; color: #000; } .header-nav > ul > li > a:hover { border-bottom: 3px solid #723e91; } .header-nav > ul > li > a:before { content: ''; right: -16px; top: 50%; margin-top: -5px; position: absolute; border-top: 8px solid #723e91; border-left: 6px solid transparent; border-right: 6px solid transparent; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .header-nav > ul > li ul { position: absolute; background: #fff; list-style: none; padding: 8px 0; margin: 0; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); } .header-nav > ul > li > ul > li {} .header-nav > ul > li > ul > li > a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .header-nav > ul > li > ul > li > a:hover { color: #af66e4; } .header-right { float: right; width: 442px; margin-top: 10px; } .header-right-admin { width: 355px; } .header-login { float: left; margin-bottom: 22px; } .header-login a { float: left; display: block; cursor: pointer; font-size: 20px; padding-left: 26px; font-weight: 500; color: #000000; position: relative; text-decoration: none !important; } .header-login-admin a { padding-left: 16px; } .header-login a i { position: absolute; top: 50%; left: 0; margin-top: -12px; vertical-align: top; line-height: 1; } .header-login a span {} .header-btns { float: right; margin-top: -10px; } .header-btns-in { float: left; margin-right: 8px; } .header-btns-in > div { float: left; margin-right: 22px; } .header-search { position: relative; } .search-body { position: absolute; right: -10px; top: 0; z-index: 9; display: none; } .search-body input { outline: none !important; background: #FFFFFF; width: 344px; height: 40px; border: none; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); border-radius: 30px; padding: 0 56px; background: #fff url(images/search-bg.svg) 16px center no-repeat; } .close-search { position: absolute; width: 50px; height: 100%; right: 0; top: 0; cursor: pointer; } .close-search:before, .close-search:after { content: ''; position: absolute; height: 2px; width: 30px; background-color: #723e91; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-search:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .search-res { position: absolute; width: 100%; left: 0; top: 100%; padding-top: 10px; } .search-res ul { width: 100%; margin: 0; background: #fff; list-style: none; padding: 8px 0; margin: 0; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); } .search-res li {} .search-res li a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .header-btns-ico {} .lang { float: right; margin-top: -10px; } .lang ul { list-style: none; padding: 0; margin: 0; } .lang ul li { float: left; } .lang ul li:last-child { padding-left: 11px; position: relative; } .lang ul li:last-child:before { content: ''; position: absolute; width: 2px; left: 5px; top: 50%; margin-top: -8px; height: 13px; background-color: #723e91; } .lang ul li a { font-size: 18px; font-weight: 500; color: #6E6F7A; } .lang ul li a.active { color: #000; } #home-slider { margin-bottom: 15px; } .home-slide-wrap {} .slick-arrow { outline: none !important; border: none; background: none; cursor: pointer; position: absolute; top: 50%; margin-top: -16px; } .slick-arrow.slick-prev { left: -73px; } .slick-arrow.slick-next { right: -73px; } .slick-dots { position: absolute; left: 0; width: 100%; bottom: -45px; margin: 0; padding: 0; text-align: center; } .slick-dots li { display: inline-block; vertical-align: top; margin: 0 5px; } .slick-dots li button { border: none; outline: none !important; background-color: #C4C4C4; font-size: 0; overflow: hidden; border-radius: 50%; padding: 0; width: 15px; height: 15px; text-indent: -9999px; cursor: pointer; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .slick-dots li button:hover { background-color: #723e91; } .slick-dots li.slick-active button { background-color: #723e91; } .home-slide-js {} .one-home-slide {} #cats {} .section-tit { float: left; width: 100%; text-align: center; margin-bottom: 53px; } .section-tit h3 { background-color: #723e91; border-radius: 30px; font-size: 28px; font-weight: 600; color: #fff; padding: 11px 30px; display: inline-block; margin: 0; } .home-cats {} .one-home-cat { float: left; width: 100%; margin-bottom: 30px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); position: relative; } .one-home-cat a { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: block; cursor: pointer; z-index: 9; } .one-home-cat-in { position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding: 15px 30px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-home-cat img {} .one-home-cat-tit { float: left; padding: 3px 10px; background-color: #fff; font-size: 18px; line-height: 22px; font-weight: 600; color: #723e91; text-align: center; } #posts {} .posts-wrap { float: left; width: 100%; margin-bottom: 15px; } .posts-js { margin: 0 -15px; } .posts-js .slick-dots { bottom: -30px; } .one-post { width: 390px; float: left; padding: 0 15px 15px; } .one-post-in { box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; width: 100%; } .one-post-thumb { /*height: 174px;*/ float: left; width: 100%; } .one-post-thumb a {} .one-post-descr { float: left; width: 100%; padding: 16px; } .one-post-tit { float: left; width: 100%; font-size: 18px; font-weight: 500; line-height: 1.5; overflow: hidden; height: 54px; margin-bottom: 15px; } .one-post-text { float: left; width: 100%; font-weight: 300; font-size: 16px; line-height: 1.5; overflow: hidden; height: 72px; margin-bottom: 25px; } .one-post-info { float: left; width: 100%; } .post-auth { float: left; padding-left: 16px; background: url(images/author-post.svg) left center no-repeat; font-size: 12px; } .post-detal { font-size: 12px; font-weight: bold; float: right; } .post-detal a { text-transform: uppercase; display: block; padding-right: 24px; cursor: pointer; color: #723e91; text-decoration: none; } .post-detal a:hover { text-decoration: underline; } .about-body { float: left; width: 100%; min-height: 430px; background: url(images/about-bg.jpg) center center no-repeat; -webkit-background-size: cover; background-size: cover; padding-top: 80px; padding-bottom: 60px; } .about { float: left; width: 100%; } .about-descr { float: left; width: 457px; } .about-tit { float: left; width: 100%; text-align: center; background-color: #fff; padding: 1px 5px; font-size: 32px; font-weight: 600; color: #723e91; margin-bottom: 70px; } .about-text { background-color: rgba(128, 69, 163, 0.8); float: left; width: 100%; padding: 10px 10px; font-size: 24px; line-height: 29px; color: #fff; } .about-text span { font-weight: bold; } .about-info { float: right; width: 555px; } .about-year { float: left; background-color: #723e91; width: 263px; height: 120px; color: #fff; font-weight: 600; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .about-year-num { font-size: 76px; line-height: 93px; } .about-year-name { width: 104px; font-size: 30px; margin-left: 20px; line-height: 37px; } .about-perc { float: right; background-color: #6E6F7A; width: 263px; height: 120px; color: #fff; font-size: 24px; line-height: 1.4; padding-left: 75px; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; background: #6E6F7A url(images/perc.svg) 25px center no-repeat; } .about-perc span { display: block; font-weight: bold; } .about-first { float: left; width: 100%; background-color: #fff; margin-top: 50px; font-size: 26px; line-height: 32px; padding: 9px 25px 9px 165px; background: #fff url(images/first.png) 27px center no-repeat; } .about-first span { color: #723e91; font-weight: 600; } #compl { padding-bottom: 40px; } .section-tit {} .section-tit h3 {} .compl-wrap { float: left; width: 100%; } .compl-car .slick-list { padding: 30px 0; } .compl-car { margin: 0 -15px; } .compl-car .slick-dots { bottom: 0; } .one-compl { width: 263px; float: left; padding: 15px 15px; } .one-compl-in { position: relative; float: left; width: 100%; height: 220px; background-color: #fff; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); opacity: 0.4; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .one-compl:hover .one-compl-in { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1); -ms-transform: scale3d(1.1, 1.1, 1); -o-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } .slick-slide > div:first-child .one-compl .one-compl-in { -webkit-transform-origin: bottom center; -moz-transform-origin: bottom center; -ms-transform-origin: bottom center; -o-transform-origin: bottom center; transform-origin: bottom center; } .slick-slide > div:last-child .one-compl .one-compl-in { -webkit-transform-origin: top center; -moz-transform-origin: top center; -ms-transform-origin: top center; -o-transform-origin: top center; transform-origin: top center; } .one-compl-in a { position: absolute; left: 0; top: 0; display: block; cursor: pointer; width: 100%; height: 100%; z-index: 9; } .one-compl-thumb { height: 140px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; text-align: center; } .one-compl-thumb img { max-height: 140px; width: auto; } .admin-image { max-height: 140px; width: auto; } .one-compl-tit { text-align: center; position: absolute; bottom: 24px; left: 0; width: 100%; padding: 0 30px; } .one-compl-tit span { font-size: 18px; font-weight: 600; color: #fff; border-radius: 5px; padding: 7px 10px; display: inline-block; background-color: #723e91; } #moon {} .moon-wrap {} .moon-descr { font-size: 20px; line-height: 1.5; } .moon-thumb { float: right; padding: 15px 15px 0 0; position: relative; } .moon-thumb img { position: relative; z-index: 9; float: right; } .moon-thumb:before { content: ''; position: absolute; right: 0; left: 70px; top: 0; bottom: 15px; background: #C4C4C4; filter: blur(4px); } .moon-year { z-index: 10; line-height: 1; position: absolute; right: 18px; top: 46px; font-weight: 600; font-size: 38px; color: #fff; letter-spacing: 0.1em; padding: 3px 32px 3px 0; } .moon-year:before { content: ''; position: absolute; right: 0; top: 0; width: 78px; height: 100%; background-color: #723e91; } .moon-year span { position: relative; z-index: 9; } #company {} .company { position: relative; padding: 56px 0 0 68px; } .company-bg { position: absolute; left: 0; top: 0; } .company-bg img { height: 370px; width: 1050px; } .company-text { float: left; width: 100%; position: relative; z-index: 9; font-size: 20px; font-weight: 500; color: #fff; background-color: rgba(114, 62, 145, 0.8); padding: 24px 24px 122px; line-height: 1.5; } .company-body { max-height: 270px; overflow: hidden; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .company-body.open { max-height: 9999px; } .company-body p { margin-bottom: 15px; } .company-more { position: absolute; height: 122px; bottom: 0; left: 0; width: 100%; text-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .company-more span { display: inline-block; cursor: pointer; width: 50px; height: 50px; border: 1px solid #fff; border-radius: 50%; padding: 7px 0; } .company-more span.open { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } footer { background-color: rgba(232, 62, 140, 0.2); float: left; width: 100%; padding: 20px 0; } .footer-menu { float: left; width: 330px; margin-top: 10px; } .footer-menu ul { padding: 0; margin: 0; list-style: none; } .footer-menu li { float: left; width: 50%; padding-bottom: 12px; } .footer-menu li:nth-child(2n-1) { border-right: 3px solid #723e91; } .footer-menu li:nth-child(2n) { padding-left: 27px; } .footer-menu li:last-child { padding-bottom: 0; } .footer-menu li a { font-size: 14px; line-height: 17px; color: #000; text-decoration: none; } .footer-cont { float: left; margin-left: 50px; } .footer-tel { margin-bottom: 15px; } .footer-tel a { color: #000; line-height: 30px; text-decoration: none; display: block; cursor: pointer; /*padding-left: 40px;*/ /*background: url(/images/phone-ico.png) left center no-repeat;*/ } .footer-mess { margin-bottom: 18px; } .footer-mess-icons { display: inline-block; vertical-align: top; } .footer-mess-icons span { display: inline-block; margin-right: 10px; } .footer-mess-num { display: inline-block; line-height: 30px; vertical-align: top; } .footer-mess-adr { font-size: 12px; } .footer-soc { float: right; margin-top: 25px; } .footer-soc ul { list-style: none; padding: 0; margin: 0; } .footer-soc li { float: left; margin-left: 25px; } .footer-soc li a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; cursor: pointer; } .footer-soc li a.face { background-color: #3B5998; } .footer-soc li a.you { background-color: #D22215; align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; justify-content: flex-end; } .mini-modal {} .mini-modal .modal-dialog { max-width: 360px; } .mini-modal .modal-dialog .modal-content { border: none; border-radius: 0; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .modal-backdrop { background-color: rgba(196,196,196,0.5); } .close-modal { position: absolute; cursor: pointer; top: 0; right: 0; width: 60px; height: 60px; background-color: transparent; } .close-modal:before, .close-modal:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #000; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-modal:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } #login .modal-wrap { padding: 70px 50px 35px; } .modal-wrap { display: inline-block; width: 100%; } .modal-wrap .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .modal-wrap .nav-tabs .nav-item { float: left; width: 50%; text-align: center; } .modal-wrap .nav-tabs .nav-link { font-size: 14px; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 5px; text-align: center; border-bottom: 2px solid #fff; } .modal-wrap .nav-tabs .nav-link:first-child { border-right: 1px solid #C4C4C4; } .modal-wrap .nav-tabs .nav-item.show .nav-link, .modal-wrap .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .modal-wrap .tab-content { padding-top: 25px; float: left; width: 100%; } .modal-log-form {} .one-line { margin-bottom: 16px; } .forg-pass { text-align: right; margin-bottom: 25px; } .forg-pass a { line-height: 1.5; color: #6E6F7A; font-size: 12px; } .modal-wrap {} .def-min-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 16px; font-weight: 600; text-align: center; line-height: 32px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .border-min-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background-color: transparent; border:1px solid #723e91; color: #723e91 !important; border-radius: 5px; font-size: 16px; font-weight: 600; text-align: center; line-height: 32px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .def-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 18px; font-weight: 600; text-align: center; line-height: 42px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .def-big-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 22px; font-weight: 600; text-align: center; line-height: 48px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .sec-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #F47920; color: #fff !important; border-radius: 5px; font-size: 24px; font-weight: 600; text-align: center; line-height: 48px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .or-soc { float: left; width: 100%; padding-top: 32px; } .or { font-size: 18px; line-height: 22px; float: left; width: 100%; position: relative; text-align: center; } .or:before { content: ''; position: absolute; left: 0; width: 100%; top: 50%; background-color: rgba(153, 153, 153, 0.2); height: 1px; margin-top: 1px; } .or span { display: inline-block; position: relative; z-index: 9; padding: 0 8px; background-color: #fff; font-size: 18px; } .log-soc { float: left; width: 100%; padding-top: 25px; } .log-soc ul { padding: 0; margin: 0; list-style: none; text-align: center; } .log-soc li { margin: 0 8px; display: inline-block; } .log-soc li a {} .header-log-tablet { display: none; } .header-tabl { display: none; } .close-menu { display: none; } .tablet-logo { display: none; } .tablet-mess { display: none; } .tablet-mess-lang { display: none; } .li-top-tablet { display: none; } #home-slider, #posts, #compl { overflow: hidden; } .hide-i-mob { font-style: normal; display: inline; } .hide-i-desc { font-style: normal; display: none; } .moon-bt { position: absolute; z-index: 9; bottom: 66px; left: 0; width: 100%; text-align: center; } .footer-mess-adr br { display: none; } body.open-menu { position: relative; height: 100%; overflow: hidden; } .broad { float: left; width: 100%; margin-bottom: 32px; } .broad ul { float: left; overflow: hidden; list-style: none; padding: 0; margin: 0; } .broad ul li { float: left; min-width: 35px; margin-right: 17px; } .broad ul li a { display: block; cursor: pointer; font-size: 14px; font-weight: 500; color: #3333CC; position: relative; } .broad ul li a:before { content: ''; width: 6px; height: 6px; position: absolute; top: 50%; margin-top: -3px; right: -10px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } main {} .catalog {} aside.sidebar { float: left; width: 263px; margin-bottom: 50px; } .all-filters { float: left; width: 100%; } .one-filter { padding: 16px 0; float: left; width: 100%; border-top: 1px solid #6E6F7A; border-bottom: 1px solid #6E6F7A; margin-bottom: 50px; } .one-filter-top { font-size: 16px; font-weight: 500; padding: 0 30px 0 11px; position: relative; cursor: pointer; } .one-filter-top:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -11px; right: 11px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .one-filter-top:hover:before { border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; } .one-filter-top.active:before { margin-top: -2px; -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } .one-filter-descr { float: left; width: 100%; padding: 15px 0 0 ; } .filter-menu {} .filter-menu ul { list-style: none; padding: 0; margin: 0; } .filter-menu li { margin-bottom: 5px; } .filter-menu li:last-child { margin-bottom: 0; } .filter-menu li a { font-size: 14px; min-height: 28px; padding: 5px 0; color: #000; text-decoration: none; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .filter-menu li a.active, .filter-menu li a:hover { background-color: #723e91; color: #fff; } .filter-menu li a.active svg path, .filter-menu li a:hover svg path { fill: #fff; } .filter-menu li i { display: block; width: 40px; text-align: center; flex: 0 0 40px; } .filter-menu li span { display: block; width: 100%; } .one-filter-descr-inp { max-height: 210px; padding-right: 10px; } .one-check-filter { float: left; width: 100%; margin-bottom: 16px; font-size: 14px; overflow: hidden; } .one-check-filter:last-child { margin-bottom: 0; } .one-check-filter label { float: left; width: 100%; padding: 0 10px 0 40px; position: relative; margin: 0; cursor: pointer; } .one-check-filter input { position: absolute; left: -999px; } .one-check-filter i { border: 1px solid #6E6F7A; box-sizing: border-box; border-radius: 5px; position: absolute; left: 11px; top: 0; width: 20px; height: 20px; } .one-check-filter input:checked + i { background-color: #723e91; border-color: #723e91; } .one-check-filter input:checked + i:before { content: ''; width: 10px; height: 6px; position: absolute; top: 50%; margin-top: -4px; left: 50%; margin-left: -5px; border: none; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-check-filter span {} .one-check-filter span.num-filt { color: #723e91; font-weight: 500; display: inline-block; margin-left: 5px; } .filter-bt { float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .filter-bt button { padding: 0 10px; } .catalog-body { padding-left: 293px; } .catalog-about { float: left; width: 100%; margin-bottom: 50px; } .catalog-about-thumb { float: left; width: 360px; } .catalog-about-descr { padding-left: 390px; } .catalog-about h1 { font-weight: 500; font-size: 26px; line-height: 32px; margin: 0 0 24px; padding: 0; } .catalog-about-descr p { font-size: 16px; line-height: 1.5; } .you-choose { float: left; width: 100%; margin-bottom: 12px; } .you-choose-name { float: left; width: 100%; font-weight: 500; font-size: 14px; margin-bottom: 15px; } .you-choose-in { float: left; width: 100%; } .you-choose-in a { display: block; cursor: pointer; position: relative; float: left; margin-right: 20px; margin-bottom: 20px; padding: 4px 12px 4px 12px; border: 1px solid #6E6F7A; border-radius: 20px; font-size: 14px; text-decoration: none !important; color: #000 !important; } .you-choose-in a span {} .you-choose-in a i { display: block; position: absolute; cursor: pointer; top: -1px; right: 5px; width: 30px; height: 100%; background-color: transparent; } .you-choose-in a i:before, .you-choose-in a i:after { content: ''; position: absolute; height: 1px; width: 22px; background-color: #D22215; top: 50%; left: 50%; margin-left: -11px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .you-choose-in a i:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .catalog-body-wrap { float: left; width: 100%; } .catalog-body-wrap-in { margin: 0 -12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; /*justify-content: space-between;*/ -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-item { padding: 0 12px; width: 33.33%; float: left; margin-bottom: 32px; } .one-item-in { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; height: 100%; float: left; width: 100%; padding: 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-item-thumb { float: left; width: 100%; } .one-item-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; height: 220px; float: left; width: 100%; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-item-descr { float: left; width: 100%; border-top: 1px solid #C4C4C4; padding-top: 16px; } .one-item-tit { font-size: 18px; font-weight: 600; margin-bottom: 16px; } .one-item-info { float: left; width: 100%; /*display: -webkit-flex;*/ /*display: -moz-flex;*/ /*display: -ms-flex;*/ /*display: -o-flex;*/ /*display: flex;*/ align-content: center; -ms-align-items: center; align-items: center; justify-content: space-between; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-item-price { float: left; padding: 5px 7px; background: #F0F0F2; border-radius: 5px; font-weight: 600; color: #6E6F7A; font-size: 12px; margin-bottom: 35px; } .one-item-price span { font-size: 20px; } .one-item-comm { margin-bottom: 16px; padding-left: 34px; line-height: 26px; font-size: 12px; color: #6E6F7A; background: url(images/comm-item.svg) left center no-repeat; } .one-item-comm a { color: #000; } .one-item-info { float: right; width: 100%; } .one-item-info a { float: right; } .one-item-info button { float: right; margin-bottom: 10px; } .item-comp { margin-left: 16px; } .pagi { float: left; width: 100%; text-align: center; margin-bottom: 50px; } .pagi ul { display: inline-block; padding: 0; margin: 0; list-style: none; } .pagi ul li { float: left; margin: 0 10px; } .pagi ul li a, .pagi ul li span { display: block; min-width: 32px; min-height: 32px; line-height: 32px; font-size: 18px; font-weight: 600; color: #000; border-radius: 50%; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .pagi ul li.active a, .pagi ul li.active span { background-color: #723e91; color: #fff; } .pagi ul li a:hover { text-decoration: none; color: #723e91; } .pag {} .pag a { position: relative; } .pag a:before { content: ''; width: 12px; height: 12px; position: absolute; top: 50%; margin-top: -6px; left: 50%; margin-left: -6px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .pag a:hover:before { border-left-color: #723e91; border-bottom-color: #723e91; } .pag.next a:before { -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .about-page { float: left; width: 100%; } .about-page h2 { font-weight: 500; font-size: 26px; padding: 0; margin: 0 0 24px; } .page-detal { font-size: 16px; line-height: 1.5; max-height: 216px; overflow: hidden; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .page-detal p {} .show-all-detal { float: left; width: 100%; text-align: center; padding: 24px 0; } .show-all-detal span { display: inline-block; cursor: pointer; width: 32px; height: 32px; border: 1px solid #723e91; border-radius: 50%; padding: 4px 0; } .show-all-detal span.open { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } .page-detal.open { max-height: 9999px; } .desc {} .tabl { display: none; } .title-tablet { display: none; } .show-more { display: none; } .filt-mob-tit { display: none; } .show-filter { display: none; } .blog-title { float: left; width: 100%; margin-bottom: 40px; } .blog-title h1 { margin: 0; padding: 0; font-size: 32px; font-weight: 500; } .blog-side { float: left; width: 262px; } .blog-menu { float: left; width: 100%; } .blog-menu-tit { font-size: 26px; line-height: 32px; font-weight: 500; margin-bottom: 32px; } .blog-menu ul { list-style: none; padding: 0; margin: 0; float: left; width: 100%; } .blog-menu li { float: left; width: 100%; margin-bottom: 24px; } .blog-menu li a { font-size: 20px; line-height: 1.5; color: #000; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .blog-menu li a:hover, .blog-menu li a.active { color: #723e91; } .blog-menu li a.active { font-weight: 600; } .blog-tags { width: 262px; float: right; } .blog-tags-tit { font-size: 26px; line-height: 32px; font-weight: 500; margin-bottom: 32px; } .blog-tags-in { float: left; width: 100%; } .blog-tags-in a { float: left; font-size: 16px; line-height: 1.5; color: #000; text-decoration: none !important; display: block; cursor: pointer; margin-right: 16px; margin-bottom: 16px; background-color: #F0F0F2; border-radius: 5px; padding: 4px 18px; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .blog-tags-in a:hover { background-color: #723e91; color: #fff; } .blog-wrap { padding: 0 290px; } .blog-wrap-posts { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 100%; justify-content: space-between; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-blog-post { width: 262px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; margin-bottom: 40px; } .one-blog-post-thumb { float: left; width: 100%; } .one-blog-post-thumb a {} .one-blog-post-descr { float: left; width: 100%; padding: 16px 11px; } .one-blog-post-tit { height: 72px; overflow: hidden; font-size: 16px; font-weight: 500; line-height: 1.5; margin-bottom: 16px; } .one-blog-post-text { font-weight: 300; font-size: 14px; line-height: 1.5; height: 63px; overflow: hidden; margin-bottom: 16px; } .one-blog-post-auth { float: left; width: 100%; margin-bottom: 16px; } .post-auth {} .one-blog-post-detal { float: left; width: 100%; } .one-blog-post-detal .post-detal { float: left; } .blog-single { float: left; width: 100%; } .blog-single-info { float: left; width: 100%; margin-bottom: 24px; } .post-single-auth { float: left; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .post-auth-thumb { width: 64px; } .post-auth-thumb img { border-radius: 50%; } .post-auth-name { font-size: 18px; font-weight: 500; line-height: 1; } .post-date { float: right; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .post-date-ico { width: 64px; } .post-date-ico span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #FFFFFF; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .post-date-num { font-size: 18px; font-weight: 500; } img.center { margin: 25px auto 25px; display: block; } .blog-single-body { margin-bottom: 70px; float: left; width: 100%; } .blog-single-body p { margin-bottom: 16px; } .blog-single-body h3 { margin-top: 30px; margin-bottom: 16px; font-size: 26px; } .blog-single-body h3:first-child { margin-top: 0; } .blog-single-body > ul { list-style: none; padding: 0; margin: 0 0 24px; } .blog-single-body > ul li { position: relative; padding-left: 12px; } .blog-single-body > ul li:before { content: ''; position: absolute; left: 0; top: 10px; height: 1px; width: 4px; background-color: #000; } .soc-share { float: left; width: 100%; } .soc-share-in {} .soc-share-in a { float: left; margin-right: 24px; } .title-inside { font-size: 26px; font-weight: 500; color: #723e91; margin-bottom: 32px; float: left; width: 100%; } .catalog-body.search { float: left; width: 100%; padding-left: 0; margin-bottom: 50px; } .find-res { float: left; width: 100%; margin-bottom: 24px; } .sort-cat { float: left; width: 100%; margin-bottom: 32px; } .sort-name { font-size: 16px; float: left; line-height: 1.5; margin-right: 18px; } .sort-in { font-size: 16px; float: left; line-height: 1.5; } .sort-in a { color: #3333CC; float: left; margin-right: 16px; } .sort-in a.active { color: #000; } .sort-in a.by-price { position: relative; padding-right: 16px; } .sort-in a.by-price i { position: absolute; right: 0; top: 50%; margin-top: -4px; } .sort-in a.by-price i svg { vertical-align: top; } .sort-mob-bt { display: none; } .catalog-body.search .one-item { width: 25%; } .product { float: left; width: 100%; } .product-top { float: left; width: 100%; margin-bottom: 100px; } .product-thumb { float: left; width: 360px; } .product-thumb a {} .product-descr { padding-left: 390px; } .product-tit { float: left; width: 100%; margin-bottom: 16px; } .product-tit h1 { font-size: 32px; font-weight: 500; margin: 0 0 16px; padding: 0; } .product-text { float: left; width: 100%; font-size: 16px; line-height: 1.5; margin-bottom: 32px; } .product-info { float: left; width: 100%; } .price-wrap { float: left; } .product-price { float: left; margin-right: 16px; background: #F0F0F2; color: #6E6F7A; border-radius: 5px; display: block; height: 48px; padding: 0px 16px; font-weight: 600; font-size: 22px; margin-bottom: 32px; } .product-price span { font-size: 32px; } .btns-prod { float: left; } .product-bay { float: left; margin-right: 16px; margin-bottom: 32px; } .product-bay a { height: 48px; padding: 0 24px; line-height: 48px; font-size: 24px; font-weight: 600; } .comp-prod { float: left; margin-bottom: 32px; } .comp-prod a { font-size: 20px; color: #6E6F7A; height: 48px; border: 1px solid #F0F0F2; border-radius: 5px; cursor: pointer; text-decoration: none !important; padding: 0 16px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .comp-prod i {} .comp-prod i svg { vertical-align: top; } .comp-prod span { display: inline-block; margin-left: 12px; } .product-number { float: left; width: 100%; } .num-name { font-size: 16px; float: left; width: 100%; margin-bottom: 13px; } .num-wrap { float: left; width: 100%; } .num-block { float: left; width: 94px; } .num-in {} .num-in span { display: block; float: left; width: 30px; height: 32px; line-height: 32px; text-align: center; position: relative; cursor: pointer; } .num-in input { float: left; width: 32px; height: 32px; border: 1px solid #6E6F7A; border-radius: 5px; color: #000; text-align: center; padding: 0; } .num-in span.minus:before { content: ''; position: absolute; width: 15px; height: 1px; background-color: #723e91; top: 50%; left: 0; } .num-in span.plus:before, .num-in span.plus:after { content: ''; position: absolute; right: 0px; width: 15px; height: 1px; background-color: #723e91; top: 50%; cursor: default; } .num-in span.plus:after { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); cursor: default; } .product-tabs-body { float: left; width: 100%; margin-bottom: 88px; } .product-tabs-body .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .product-tabs-body .nav-tabs .nav-item { float: left; text-align: center; } .product-tabs-body .nav-tabs .nav-link { font-size: 22px; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 24px 37px; text-align: center; border-bottom: 2px solid #fff; } .product-tabs-body .nav-tabs .nav-link { border-right: 1px solid #C4C4C4; } .product-tabs-body .nav-tabs .nav-item.show .nav-link, .product-tabs-body .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .product-tabs-body .tab-content { padding-top: 45px; float: left; width: 100%; } .prod-about { font-size: 16px; line-height: 1.5; } .prod-tab-tit { float: left; font-size: 26px; font-weight: 500; width: 100%; margin-bottom: 24px; } .prod-about p { margin-bottom: 16px; } .prod-about ul { list-style: none; padding: 0; margin: 0 0 16px; } .prod-about ul li { position: relative; padding-left: 12px; } .prod-about ul li:before { content: ''; position: absolute; left: 0; top: 11px; height: 1px; width: 4px; background-color: #000; } .product-video { float: left; width: 100%; padding-top: 40px; text-align: center; } .prod-vid { position: relative; display: inline-block; max-width: 555px; width: 100%; height: 360px; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .play-vid { position: absolute; z-index: 9; left: 50%; top: 50%; width: 60px; height: 60px; margin: -30px 0 0 -30px; border-radius: 50%; background-color: #F0F0F2; } .play-vid:after { content: ''; position: absolute; left: 50%; top: 50%; border-left: 28px solid #723e91; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin: -15px 0 0 -10px; } #other-prduct {} .other-prod-tit { font-size: 26px; font-weight: 500; float: left; width: 100%; margin-bottom: 30px; } .other-prod-body { float: left; width: 100%; } .other-prod-car { margin: 0 -15px; } .other-prod-body .one-item { padding: 10px 15px; } .prod-tab-char {} .all-char { float: left; width: 100%; } .one-char { float: left; width: 100%; margin-bottom: 10px; } .one-char:last-child { margin-bottom: 0; } .one-char:last-child ul { margin-bottom: 0; } .one-char-name { float: left; width: 100%; font-size: 18px; margin-bottom: 16px; font-weight: 500; } .one-char ul { list-style: none; padding: 0; margin: 0 0 16px; float: left; width: 100%; } .one-char ul li { position: relative; padding-left: 12px; margin-bottom: 16px; } .one-char ul li:last-child { margin-bottom: 0; } .one-char ul li:before { content: ''; position: absolute; left: 0; top: 11px; height: 1px; width: 4px; background-color: #000; } .prod-tab-comments { float: left; width: 100%; } .leave-comm { float: right; margin-bottom: -43px; position: relative; z-index: 9; } .leave-comm a {} .prod-tab-tit span { color: #6E6F7A; display: inline-block; margin-left: 10px; } .all-comm { float: left; width: 100%; margin-top: 50px; border-top: 1px solid #C4C4C4; } .one-comm { float: left; width: 100%; padding: 33px 0; border-bottom: 1px solid #C4C4C4; } .one-comm:last-child { border-bottom: none; } .one-comm-top { float: left; width: 100%; margin-bottom: 24px; } .one-comm-auth { float: left; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .one-comm-thumb { margin-right: 16px; } .one-comm-name { margin-right: 16px; font-weight: 500; font-size: 18px; } .one-comm-rat { float: left; } .stars { float: left; margin-top: 3px; } .stars span { display: inline-block; margin-right: 0px; vertical-align: top; } .stars span svg { vertical-align: top; } .one-comm-date { float: right; } .one-comm-descr { float: left; font-size: 16px; line-height: 1.5; } .prod-quest { float: left; width: 100%; margin-top: 30px; } .accordion { border: none; } .card { border: none; border-bottom: 1px solid #C4C4C4; border-top: 1px solid #C4C4C4; } .card:last-child { border-bottom: none; } .card-header { border: none; background-color: transparent; padding: 0; } .card-header button { position: relative; outline: none !important; display: block; width: 100%; border: none; text-align: left; background-color: transparent; cursor: pointer; padding: 32px 60px 32px 0px; font-size: 18px; font-weight: 500; line-height: 1.5; } .card-header button.collapsed:before { margin-top: -22px; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .card-header button:before { content: ''; width: 24px; height: 24px; margin-top: -6px; position: absolute; top: 50%; right: 0; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } .card-body { font-size: 16px; line-height: 1.5; padding: 0 0 32px; } #comm .modal-wrap, #questM .modal-wrap { padding: 70px 50px 35px; } .modal-comm { float: left; width: 100%; } .modal-comm-tit { float: left; width: 100%; font-size: 20px; font-weight: 500; margin-bottom: 24px; } .modal-comm-rat { float: left; width: 100%; margin-bottom: 24px; } .rating { float: left; margin-bottom: 16px; } .rating input { float: right; opacity: 0; position: absolute; } .rating a, .rating label { margin-right: 8px; float:right; color: #aaa; text-decoration: none; width: 32px; height: 32px; background: url(images/star.png) 0 0 no-repeat; -webkit-transition: color .4s; -moz-transition: color .4s; -o-transition: color .4s; transition: color .4s; } .rating label:hover ~ label, .rating input:focus ~ label, .rating label:hover, .rating a:hover, .rating a:hover ~ a, .rating a:focus, .rating a:focus ~ a { color: orange; cursor: pointer; background-position: right top; } .rating2 { direction: rtl; } .rating2 a { float:none } .modal-comm-rat-text { float: left; width: 100%; font-size: 14px; font-weight: 300; } .one-line textarea { } .one-line-name { font-size: 14px; margin-bottom: 5px; } .leaw-bt-comm a { width: 100%; } .big-modal {} .big-modal .modal-dialog { max-width: 945px; } .big-modal .modal-dialog .modal-content { border: none; border-radius: 0; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .big-modal .modal-wrap { padding: 28px 65px 60px; } .big-modal .close-modal { top: 18px; right: 60px; } .modal-bask-tit { float: left; width: 100%; font-size: 26px; font-weight: 500; margin-bottom: 32px; } .modal-bask-wrap { float: left; width: 100%; } .one-modal-bask-item { float: left; width: 100%; position: relative; } .del-item { position: absolute; left: -60px; top: 0; width: 20px; height: 20px; background-color: #C4C4C4; border-radius: 50%; } .del-item:before, .del-item:after { content: ''; position: absolute; height: 2px; width: 12px; background-color: #fff; top: 50%; left: 50%; margin-top: -1px; margin-left: -6px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .del-item:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-modal-item-table { display: table; width: 100%; } .modal-item-tr { display: table-row; position: relative; } .modal-item-td { display: table-cell; padding: 0px; vertical-align: middle; } .one-modal-item-table > .modal-item-tr > .modal-item-td { border-bottom: 1px solid #C4C4C4; padding: 32px 16px; } .modal-item-td.td-thumb { width: 170px; text-align: right; } .modal-item-td.td-wrap { width: 80%; } .modal-item-td.td-sum { width: 20%; text-align: right; } .modal-item-thumb { float: right; position: relative; } .modal-item-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 97px; height: 97px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border: 0.5px solid #F0F0F2; } .modal-item-in-table { display: table; width: 100%; } .modal-item-name { font-size: 22px; font-weight: 500; margin-bottom: 22px; } .modal-item-info {} .modal-item-price {} .modal-item-price-in { float: left; margin-right: 16px; background: #F0F0F2; border-radius: 5px; display: block; color: #6E6F7A; padding: 5px 8px; font-weight: 600; font-size: 12px; } .modal-item-price-in span { font-size: 20px; } .modal-item-number { float: left; margin-left: 170px; } .modal-item-number .num-in { width: 100px; } .modal-item-number .num-in span { height: 15px; width: 11px; } .modal-item-number .num-in input { height: 40px; width: 40px; } .modal-item-sum { float: right; } .modal-item-sum-name { font-size: 16px; margin-bottom: 33px; } .modal-item-sum-num { font-size: 12px; font-weight: 600; } .modal-item-sum-num span { font-size: 20px; } .one-modal-item-bay-info { padding-top: 32px; float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; justify-content: space-between; } .one-modal-item-back { float: left; margin-bottom: 25px; } .one-modal-item-back a.back-bask { background-color: #F0F0F2; color: #6E6F7A !important; } .one-modal-item-sum { float: right; width: 270px; padding: 25px 16px; border-radius: 5px; background-color: #F0F0F2; } .one-modal-item-top { float: left; width: 100%; margin-bottom: 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: space-between; } .one-modal-item-name { font-size: 20px; } .one-modal-item-val { font-size: 26px; font-weight: 600; } .one-modal-item-bt {} .compl-inside { float: left; width: 100%; padding: 15px 0; } .compl-inside .compl-wrap { float: none; width: auto; margin: 0 -12px; } .compl-inside .compl-wrap .one-compl { padding: 0; margin-bottom: 30px; width: 25%; padding: 0 12px; } .compl-inside .compl-wrap .one-compl-in { opacity: 1; } .blog-single-body .row { margin-bottom: 20px; margin-top: 30px; } .blog-single-body .row img { vertical-align: top; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .sol-car { margin: 0 -12px 20px; margin-top: 30px; } .sol-car-in { display: inline-block; width: 100%; } .one-sol-car { float: left; width: 33.33%; padding: 0 12px; } .acc-solut .card-header button { font-size: 32px; font-weight: 500; padding: 16px 60px 16px 0; } .sol-item { text-align: center; } .sol-item-thumb { margin-bottom: 24px; } .sol-item-thumb span { display: block; vertical-align: top; overflow: hidden; width: 100%; } .sol-item-thumb img { border-radius: 50%; box-shadow: none !important; } .sol-item-tit { font-size: 18px; font-weight: 500; } .compl-sol-items { display: inline-block; width: 100%; } .get-all-items { float: left; width: 100%; margin-bottom: 40px; } .get-all-items .one-check-filter { font-size: 18px; font-weight: 500; line-height: 32px; } .get-all-items .one-check-filter input + i { width: 32px; height: 32px; left: 0; } .get-all-items .one-check-filter input:checked + i:before { width: 18px; height: 10px; border-width: 3px; margin-top: -7px; margin-left: -8px; } .compl-sol-wrap { margin: 0 -12px; } .compl-sol-wrap .one-item { width: 25%; } .sol-sum { float: left; width: 100%; padding-top: 50px; } .sol-sum .one-modal-item-sum { float: left; } .calendar-wrap { float: left; width: 100%; padding-top: 15px; } .calendar-top { float: left; width: 100%; } .calendar-name { float: left; font-size: 18px; font-weight: 500; line-height: 32px; } .calendar-choose { float: left; } .one-choose { float: left; margin-left: 24px; } .dropdown {} .dropdown button { position: relative; border: none; display: inline-block; cursor: pointer; border: 1px solid #6E6F7A; padding: 3px 42px 3px 16px; font-size: 16px; line-height: 1.5; background-color: #fff; } .dropdown button:before { content: ''; width: 10px; height: 10px; position: absolute; top: 50%; margin-top: -8px; right: 17px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .dropdown .dropdown-menu {} .dropdown .dropdown-menu a { padding: 3px 16px; } .calendar-body { float: left; width: 100%; margin-top: 48px; } .calendar-body-in { margin: 0 -12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-month { width: 25%; padding: 0 12px; margin-bottom: 32px; } .one-month-in { text-align: center; padding: 32px 0 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-month-title { font-size: 26px; font-weight: 500; color: #6E6F7A; margin-bottom: 24px; } .one-month-thumb {} .moon-pref { margin-top: 32px; position: relative; float: left; width: 100%; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); padding: 16px 60px 16px 24px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref:before { content: ''; width: 30px; height: 30px; position: absolute; top: 50%; margin-top: -14px; right: 30px; margin-left: 0; border: none; border-left: 3px solid #723e91; border-bottom: 3px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .moon-pref-call { width: 356px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref-call-thumb {} .moon-pref-call-thumb span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 50%; background-color: #fff; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .moon-pref-call-descr { margin-left: 16px; line-height: 1.5; font-size: 18px; font-weight: 500; } .moon-pref-call-name { margin-bottom: 8px; } .moon-pref-call-week { color: #6E6F7A; } .moon-pref-m { width: 400px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref-m-thumb {} .moon-pref-descr { margin-left: 24px; line-height: 1.5; font-size: 18px; font-weight: 500; } .moon-pref-tit { margin-bottom: 8px; } .moon-pref-days { color: #6E6F7A; } .moon-zod { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .moon-zod-thumb {} .moon-zod-desr { margin-left: 16px; line-height: 1.5; font-size: 18px; font-weight: 500; color: #333; } .moon-zod-tit { margin-bottom: 8px; } .moon-zod-name {} .more-str { margin-top: 48px; float: left; width: 100%; text-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .more-str span { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #723e91; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .del-item.mob { display: none; } .mobile-title { display: none; } .lk { float: left; width: 100%; margin-bottom: 50px; } .lk-left { width: 273px; float: left; border-right: 1px solid #C4C4C4; } .lk-left ul { list-style: none; padding: 0; margin: 0; } .lk-left li { font-size: 20px; line-height: 1.5; margin-bottom: 14px; } .lk-left li a { color: #000; text-decoration: none; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .lk-left li a:hover { color: #723e91; } .lk-left li.active a { color: #723e91; font-weight: 600; } .lk-tab-wrap { margin-left: 273px; } .one-lk-tab { display: none; float: left; width: 100%; border-left: 1px solid #C4C4C4; margin-left: -1px; padding-left: 30px; } .lk-cont { float: left; } .lk-form {} .one-lk-form { width: 262px; margin-bottom: 16px; } .one-lk-form input {} .one-lk-form select { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 34px 0 16px; outline: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url(images/select.png) right 12px center no-repeat; } .soc-lk { margin-bottom: 32px; } .soc-lk-name { font-size: 15px; margin-bottom: 16px; } .soc-lk-list {} .soc-lk-list ul { list-style: none; padding: 0; margin: 0; } .soc-lk-list ul li { display: inline-block; margin-right: 14px; vertical-align: top; } .soc-lk-list ul li a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%; } .soc-lk-list ul li a.s-1 { background-color: #3B5998; } .soc-lk-list ul li a.s-2 { background-color: #DC4E41; } .soc-lk-bt {} .lk-log { float: right; font-size: 20px; } .change-pass { margin-bottom: 24px; } .change-pass a { color: #000; text-decoration: underline ; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .change-pass a:hover { text-decoration: none; color: #723e91; } .log-out {} .log-out a { color: #000; text-decoration: none; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .log-out a:hover { text-decoration: none; color: #723e91; } .change-modal-pass { padding: 64px 50px 40px; } .change-modal-pass .modal-log-bt { text-align: center; padding-top: 15px; } .change-modal-pass-tit { text-align: center; font-weight: 600; font-size: 26px; float: left; width: 100%; margin-bottom: 24px; } .lk-hist-wrap { float: left; width: 100%; padding-top: 24px; } .one-lk-hist { float: left; width: 100%; position: relative; margin-bottom: 40px; } .one-lk-hist:last-child { margin-bottom: 0; } .one-lk-hist > a { display: block; cursor: pointer; position: absolute; left: 0; top: 0; width: 100%; height: 100%; } .one-lk-hist-in { min-height: 100%; padding: 24px 60px 24px 24px; background-color: #fff; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-lk-hist-in:after { content: ''; width: 20px; height: 20px; position: absolute; top: 50%; margin-top: -10px; right: 32px; margin-left: -4px; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .lk-hist-td { width: 27%; } .lk-hist-td.lk-numb { width: 19%; } .lk-hist-thumb { float: left; width: 32px; } .lk-hist-thumb span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); width: 32px; height: 32px; font-size: 16px; color: #6E6F7A; } .lk-hist-descr { padding-left: 48px; } .lk-hist-name { font-size: 18px; font-weight: 500; margin-bottom: 7px; } .lk-hist-stat { font-size: 18px; font-weight: 500; color: #6E6F7A; } .full-lk-hist { float: left; width: 100%; padding: 24px 96px 24px 24px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .full-lk-hist .one-lk-hist-in { width: 100%; box-shadow: none; padding: 24px 0 24px; border-bottom: 1px solid #C4C4C4; } .full-lk-hist .one-lk-hist-in:after { content: normal; } .back-hist { float: left; width: 100%; padding: 0 0px 16px; } .back-hist a { line-height: 32px; display: block; padding-left: 36px; position: relative; cursor: pointer; font-size: 20px; font-weight: 500; color: #723e91; } .back-hist a:before { content: ''; width: 18px; height: 18px; position: absolute; top: 50%; margin-top: -8px; left: 8px; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .lk-hist-td { width: 25%; } .one-lk-hist-body { float: left; width: 100%; padding: 24px 0; } .one-lk-hist-body-top { float: left; width: 100%; padding-bottom: 17px; } .one-lk-hist-list { float: left; width: 400px; } .one-lk-hist-list ul { font-size: 16px; line-height: 1.5; list-style: none; padding: 0; margin: 0; } .one-lk-hist-list li { margin-bottom: 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .one-lk-hist-list li span { display: block; width: 50%; padding-right: 15px; } .one-lk-hist-list li span.name { font-weight: 500; } .one-lk-hist-list li span.val {} .one-lk-hist-list-pay { float: right; width: 262px; background: #F0F0F2; border-radius: 5px; padding: 16px; } .one-lk-hist-list-pay-in {} .one-lk-hist-list-pay-in ul { list-style: none; padding: 0 0 16px; margin: 0; line-height: 1.5; font-size: 16px; } .one-lk-hist-list-pay-in li { margin-bottom: 16px; } .one-lk-hist-list-pay-in li span { font-weight: 500; } .one-lk-hist-list-pay-in li i { font-style: normal; color: #3333CC; } .one-lk-bask { float: left; width: 100%; border-top: 1px solid #C4C4C4; } .one-lk-bask-table { display: table; width: 100%; } .one-lk-bask-tr { display: table-row; } .one-lk-bask-td { display: table-cell; padding: 24px 16px; vertical-align: middle; border-bottom: 1px solid #C4C4C4; width: 33.33%; } .one-lk-bask-td.thumb-td { width: 113px; padding-left: 0; } .one-lk-bask-td.descr-td { width: 40%; } .one-lk-bask-td.num-td { width: 30%; } .one-lk-bask-td.sum-td { width: 30%; text-align: right; padding-right: 0; } .one-lk-bask-thumb {} .one-lk-bask-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 97px; height: 97px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border: 0.5px solid #F0F0F2; } .one-lk-bask-tit { margin-bottom: 20px; } .one-lk-bask-tit a { font-weight: 500; font-size: 22px; text-decoration: none; color: #000; } .one-lk-bask-price {} .one-lk-bask-price-in { float: left; margin-right: 16px; background: #F0F0F2; border-radius: 5px; display: block; color: #6E6F7A; padding: 5px 8px; font-weight: 600; font-size: 12px; } .one-lk-bask-price-in span { font-size: 20px; } .one-lk-bask-num-name { font-size: 16px; margin-bottom: 30px; } .one-lk-bask-num-val { font-size: 12px; font-weight: 600; } .one-lk-bask-num-val span { font-size: 20px; } .one-lk-bask-sum-name { font-size: 16px; margin-bottom: 30px; } .one-lk-bask-sum-val { font-size: 12px; font-weight: 600; } .one-lk-bask-sum-val span { font-size: 20px; } .one-lk-bask-info { float: left; width: 100%; padding: 40px 0; } .one-lk-bask-info-in { float: right; width: 360px; border-radius: 5px; background-color: #F0F0F2; padding: 24px 16px 16px; } .one-lk-bask-info-in ul { list-style: none; padding: 0; margin: 0; } .one-lk-bask-info-in li { font-size: 20px; margin-bottom: 12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .one-lk-bask-info-in li span {} .one-lk-bask-info-in li i { font-style: normal; font-size: 26px; font-weight: 500; } .one-lk-bask-info-in li.lk-last-sum { font-size: 26px; font-weight: 500; padding-top: 10px; } .repeat-order { float: left; width: 100%; padding-top: 32px; } .repeat-order a { float: right; } .lk-hist-stat.dont { color: #F47920; } .back-to-lk { display: none; } .log-out-mob { display: none; } .mobile-top-lk-hist { display: none; } .sidebar .you-choose { display: none; } .bask-steps { float: left; width: 555px; } .one-step { float: left; width: 100%; margin-bottom: 24px; } .one-step-title { font-size: 26px; font-weight: 500; position: relative; padding-left: 40px; } .one-step-title > i { position: absolute; left: 0; top: 50%; margin-top: -16px; text-align: center; font-style: normal; line-height: 32px; width: 32px; height: 32px; display: block; border-radius: 50%; background-color: #6E6F7A; font-size: 22px; font-weight: bold; color: #fff; } .one-step.active .one-step-title > i { background-color: #723e91; } .one-step-title span {} .one-step-descr { display: none; padding-top: 32px; } .one-step-login {} .one-step-login .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; width: 100%; margin-bottom: 40px; } .one-step-login .nav-tabs .nav-item { float: left; width: 50%; text-align: center; } .one-step-login .nav-tabs .nav-link { width: 100%; display: block; font-size: 18px; font-weight: 500; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 10px 15px; text-align: center; border-bottom: 2px solid #fff; } .one-step-login .nav-tabs .nav-link { border-right: 1px solid #C4C4C4; } .one-step-login .nav-tabs .nav-item.show .nav-link, .one-step-login .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .one-step-login .modal-log-form { width: 262px; } .next-step { float: left; width: 100%; margin-bottom: 24px; } .one-radio { float: left; width: 100%; margin-bottom: 19px; } .one-radio label { display: block; position: relative; margin: 0; padding: 0; padding-left: 32px; overflow: hidden; line-height: 24px; font-size: 16px; line-height: 1.5; } .one-radio label input { position: absolute; left: -999px; opacity: 0; } .one-radio label i { width: 24px; height: 24px; display: block; position: absolute; left: 0; top: 0px; border: 1px solid #6E6F7A; border-radius: 50%; } .one-radio label input:checked + i { border: 1px solid #723e91; } .one-radio label input:checked + i:before { content: ''; position: absolute; left: -1px; top: -1px; width: 24px; height: 24px; border: 3px solid #723e91; border-radius: 50%; z-index: 9; } .one-radio label span {} .bask-del {} .bask-step-name { font-size: 18px; font-weight: 500; float: left; width: 100%; margin-bottom: 24px; } .bask-del-in { width: 262px; padding-bottom: 10px; } .bask-pay { padding-bottom: 10px; } .bask-user {} .bask-user-form { width: 262px; } .change-step { display: none; font-size: 14px; float: right; color: #3333CC; margin-top: 9px; text-decoration: underline; } .done .change-step { display: block; } .change-step:hover { text-decoration: none; } .basket-inside { float: left; width: 100%; margin: 30px 0 0; } .one-lk-bask-table { margin-bottom: 32px; border-top: 1px solid #C4C4C4; } .last-inside-sum { float: left; width: 100%; margin-bottom: 50px; } .last-inside-sum-in { width: 262px; background: #F0F0F2; border-radius: 5px; padding: 25px 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; align-content: center; -ms-align-items: center; align-items: center; } .inside-name { font-size: 20px; } .inside-val { font-size: 26px; font-weight: 500; } .mobile-step { display: none; } .compare-wrap { float: left; width: 100%; position: relative; } .comp-side { padding: 16px 16px 16px 0; position: absolute; left: 0; top: 0; background-color: #fff; min-height: 440px; } .comp-body { float: left; width: 100%; max-width: 100%; overflow-x: auto; padding-bottom: 30px; margin-bottom: 30px; } .comp-body table { display: table; margin: 0 -16px; } .comp-body table td { vertical-align: top; display: table-cell; padding: 16px 16px 16px 16px; border-right: 1px solid #C4C4C4; } .comp-body table .tr-top td, .comp-body table td:first-child { border-right: none; } .one-comp-pref { width: 254px; } .one-comp-pref-sel select { box-shadow: none; border: 1px solid #6E6F7A; } .one-comp-pref-sel { float: left; width: 100%; margin-bottom: 32px; } .one-comp-check-list { float: left; width: 100%; margin-bottom: 32px; } .one-comp-check-list .one-check-filter label { padding-left: 30px; } .one-comp-check-list .one-check-filter i { left: 0; } .clear-list {} .clear-list a { background-color: #F47920; } .one-comp-pref .one-item { width: 100%; padding: 0; } .name-comp { font-size: 18px; font-weight: 500; } .val-comp { font-size: 16px; text-align: center; } .cat-table-comp { text-align: center; color: #723e91; font-size: 16px; font-weight: 600; } .comp-choose-number { float: left; width: 100%; padding: 24px 0 0; font-weight: 300; font-size: 14px; margin-bottom: -20px; } .compare-tablet { float: left; width: 100%; } .one-comp-cat-tab {} .comp-cat-tab-tit { font-size: 16px; font-weight: 500; float: left; width: 100%; margin-bottom: 16px; } .one-comp-item { float: left; width: 50%; padding-right: 24px; margin-bottom: 16px; } .one-comp-item-in { position: relative; float: left; width: 100%; padding-bottom: 15px; border-bottom: 1px solid #C4C4C4; } .one-comp-item-check { float: left; margin-right: 15px; } .one-comp-item-check label { float: left; width: 24px; height: 24px; position: relative; margin: 0; cursor: pointer; } .one-comp-item-check input { position: absolute; left: -999px; } .one-comp-item-check i { border: 1px solid #6E6F7A; box-sizing: border-box; border-radius: 5px; position: relative; display: block; width: 24px; height: 24px; } .one-comp-item-check input:checked + i { background-color: #723e91; border-color: #723e91; } .one-comp-item-check input:checked + i:before { content: ''; width: 14px; height: 8px; position: absolute; top: 50%; margin-top: -6px; left: 50%; margin-left: -7px; border: none; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-comp-item-thumb { float: left; border: 0.5px solid #F0F0F2; width: 70px; height: 70px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-comp-item-thumb img { max-width: 90%; max-height: 65px; } .one-comp-item-descr { padding-left: 126px; font-size: 16px; } .one-comp-item-opt { position: absolute; right: 0; top: 0; } .opt-ico { float: left; width: 24px; height: 24px; position: relative; } .opt-ico span { display: block; height: 3px; width: 100%; margin: 2px 0px; text-align: right; float: left; } .opt-ico span:after { content: ''; display: inline-block; vertical-align: top; width: 3px; height: 3px; border-radius: 50%; background-color: #F47920; } .comp-tabl-bt { float: left; width: 100%; padding: 20px 0 40px; } .opt-drop { opacity: 0; overflow: hidden; visibility: hidden; max-height: 0; position: absolute; z-index: 9; right: 0; top: 100%; min-width: 150px; margin: 0; background: #fff; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); -webkit-transition: opacity 0.3s; -o-transition: opacity 0.3s; transition: opacity 0.3s; } .one-comp-item-opt:hover .opt-drop { opacity: 1; visibility: visible; max-height: 999px; } .opt-drop ul { list-style: none; padding: 8px 0; margin: 0; } .opt-drop ul li { text-align: right; } .opt-drop ul li a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .comp-mob-tabl .comp-side { position: static; float: left; width: 230px; } .comp-mob-tabl .comp-body { float: none; width: auto; max-width: inherit; overflow-x: visible; padding-left: 230px; } .comp-mob-tabl .one-comp-pref { width: 100%; } .numb-tab-comp { display: block; font-weight: 300; font-size: 16px; color: #6E6F7A; text-align: center; padding: 20px 0 0; } .comp-mob-tabl .comp-body table td { border-right: none; width: 33.33%; padding: 8px 12px; } .comp-mob-tabl table.opt-tabs, .comp-mob-tabl table { margin: 0; width: 100%; } .top-tablet-sel { padding: 0 12px; float: left; width: 100%; } .one-top-sel { width: 136px; } .done-list { width: 100%; margin-bottom: 16px; } .done-list a { width: 100%; } .canc-list {} .canc-list a { width: 100%; } .side-mob-top { display: none; } .show-filt-com-mob { display: none; } /* dmon full квадрат { content: ''; width: 5px; height: 5px; position: absolute; top: 50%; margin-top: -4px; left: 50%; margin-left: -4px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } */ @media (max-width: 1200px) { header { padding-top: 8px; } .logo img { max-height: 32px; } .header-phone { display: none; } .header-mid { width: auto; margin-left: 30px; margin-top: 3px; } .header-icons span img { width: 24px; } .header-number { font-weight: 500; line-height: 24px; } .header-mess { margin-left: 0; } .header-login { display: none; } .lang { display: none; } .header-search { display: none; } .header-log-tablet { display: block; } .header-btns { margin-top: 10px; } .header-btns-ico svg { width: 24px; height: 24px; } .header-right { width: auto; margin-top: 2px; } .header-btns-in > div { margin-right: 0; margin-left: 24px; } .header-btns-in { margin-right: 0; } .header-tabl { display: block; float: left; width: 100%; margin-top: 5px; background-color: #723e91; height: 48px; } .header-show { width: 32px; padding: 6px 0 0; float: left; cursor: pointer; } .header-show span { display: block; height: 6px; background-color: #fff; margin: 3px 0; float: left; width: 100%; } .header-tabl-search { float: right; position: relative; z-index: 9; padding: 4px 0 0; } .header-tabl-search .search-body { display: block; position: static; } .header-nav { display: none; position: fixed; padding: 24px; z-index: 99; top: 0; width: 100%; background-color: #fff; left: 0; height: 100%; top: 0; margin-top: 0; } .tablet-logo { display: block; float: left; width: 100%; margin-bottom: 24px; } .tablet-logo img { height: 32px; } .close-menu { display: block; position: absolute; cursor: pointer; top: 0; right: 5px; width: 60px; height: 60px; background-color: transparent; } .close-menu:before, .close-menu:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #000; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-menu:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .header-nav > ul { width: 100%; float: left; margin-bottom: 24px; border-top: 1px solid #C4C4C4; } .header-nav > ul > li { width: 100%; border-bottom: 1px solid #C4C4C4; } .header-nav > ul > li > a { width: 100%; padding: 12px 0; font-size: 16px; font-weight: 500; } .header-nav > ul > li > a:before { content: normal; } .header-nav > ul > li > a:after { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; right: 3px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .header-nav > ul > li.no-sub > a:after { content: normal; } .tablet-mess { display: block; float: left; width: 100%; margin-bottom: 24px; } .tablet-mess-lang { display: block; } .tablet-mess-lang > div { display: block; float: left; } .header-nav > ul > li ul { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 101; padding: 24px; } .header-nav > ul > li > ul > li { width: 100%; border-bottom: 1px solid #C4C4C4; } .header-nav > ul > li > ul > li > a { width: 100%; padding: 12px 0; font-size: 16px; font-weight: 500; } .li-top-tablet { display: block; position: relative; height: 55px; text-align: center; font-size: 16px; font-weight: 500; } .li-top-tablet .close-menu { right: -20px; top: -20px; } .back-menu { position: absolute; left: 0; top: 0; width: 50px; } .back-menu { position: absolute; cursor: pointer; z-index: 9; left: -20px; top: -20px; width: 60px; height: 60px; } .back-menu:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; left: 50%; margin-left: -7px; border: none; border-left: 2px solid #6E6F7A; border-bottom: 2px solid #6E6F7A; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .tit-menu {} .about-descr { width: 400px; } .about-text { font-size: 23px; } .about-info { width: 500px; } .about-year { width: 240px; } .about-perc { width: 240px; } .about-first { line-height: 36px; } .slick-arrow { display: none !important; } .moon-descr { font-size: 16px; } .desc { display: none; } .tabl { display: block; } .you-choose-name { display: none; } .title-tablet { margin-top: -5px; display: block; font-size: 20px; font-weight: 500; float: left; width: 100%; margin-bottom: 24px; } .one-item { width: 196px; } .catalog-about-thumb { width: 100%; margin-bottom: 16px; } .catalog-about-thumb img { width: 100%; } .catalog-about-descr { float: left; width: 100%; padding-left: 0; } .catalog-about { margin-bottom: 0px; } .about-page h2 { font-size: 18px; margin-bottom: 16px; } .catalog-about h1 { font-size: 18px; margin-bottom: 20px; } .blog-side { width: 100%; } .blog-menu-tit { display: none; } .blog-menu li { width: auto; margin-right: 24px; } .blog-wrap { padding-right: 0; } .blog-tags { float: left; } .blog-tags-in a { background-color: transparent; border: 1px solid #6E6F7A; } .one-blog-post { width: 300px; } .one-blog-post-thumb img { width: 100%; } .catalog-body.search .one-item { width: 25%; } .one-lk-hist { margin-bottom: 30px; } .lk-hist-name { font-size: 16px; } .lk-hist-stat { font-size: 16px; } .full-lk-hist { padding: 24px; } .one-lk-hist-list { margin-bottom: 20px; } .one-comp-pref { width: 205px; } } /* dmon 1200 */ @media (max-width: 991px) { header { margin-bottom: 24px; } .slick-dots li { margin: 0 4px; } .slick-dots li button { width: 8px; height: 8px; } .slick-dots { bottom: -35px; } section { padding-bottom: 40px; } #home-slider { margin-bottom: 30px; } .section-tit h3 { font-size: 18px; } .section-tit { margin-bottom: 24px; } .home-cats .row { margin: 0 -12px; } .home-cats .row > div { padding: 0 12px; } .one-home-cat { margin-bottom: 24px; } .one-home-cat-tit { font-size: 12px; line-height: 16px; } #cats { padding-bottom: 20px; } #posts { padding-bottom: 50px; } .about-descr { width: 332px; } .about-tit { font-size: 18px; margin-bottom: 32px; padding-top: 5px; padding-bottom: 4px; } .about-text { font-size: 14px; line-height: 18px; padding: 18px 22px 18px 16px; } .about-body { padding: 32px 0; min-height: inherit; } .about-info { width: 348px; } .about-year { width: 162px; height: 64px; } .about-year-num { font-size: 42px; } .about-year-name { margin-left: 8px; font-size: 16px; line-height: 20px; width: 60px; } .about-perc { width: 162px; height: 64px; font-size: 16px; line-height: 20px; padding-left: 40px; -webkit-background-size: auto 90%; background-size: auto 90%; background-position: 30px center; } .hide-i-mob { display: none; } .hide-i-desc { display: inline; } .about-first { font-size: 16px; line-height: 18px; margin-top: 32px; padding: 13px 30px 13px 98px; -webkit-background-size: 52px; background-size: 52px; } .one-compl-tit span { font-size: 12px; line-height: 15px; } .one-compl { padding: 12px; } .one-compl-tit { padding: 0 10px; } .one-compl-in { height: 162px; } .one-compl-thumb { height: 106px; } .one-compl-thumb img { max-height: 100px; max-width: 80%; } .compl-car .slick-list { padding: 15px 0; } .moon-bt { bottom: 32px; } .moon-descr { font-size: 14px; line-height: 1.5; } .moon-year { font-size: 28px; padding-right: 21px; } .moon-year:before { width: 54px; } .company-text { font-size: 14px; line-height: 1.5; padding: 16px 16px 88px; } .company-more { height: 88px; } .company-body { max-height: 210px; } .company-more span { width: 32px; height: 32px; padding: 1px 0; } .company-more span svg { width: 12px; } .footer-menu { width: 200px; } .footer-menu li { width: 100%; border-right: none !important; padding-left: 0 !important; } .footer-tel { margin-bottom: 10px; font-size: 16px; font-weight: 500; } .footer-mess { margin-bottom: 10px; } .footer-mess-num { font-size: 16px; font-weight: 500; } .footer-soc { margin-top: 3px; } .footer-soc li { margin-left: 8px; } .footer-soc li a { width: 24px; height: 24px; } .footer-soc li a.face svg { width: 7px; height: 15px; } .footer-soc li a.you svg { width: 18px; height: 16px; } aside.sidebar { width: 162px; } .one-filter-top { font-size: 12px; padding-left: 0; } .one-filter-top:before { width: 10px; height: 10px; margin-top: -8px; } .filter-menu li a { padding: 2px 0; font-size: 12px; } .filter-menu li i { flex: 0 0 32px; width: 32px; } .one-filter { margin-bottom: 24px; padding: 12px 0; } .one-check-filter { font-size: 12px; margin-bottom: 8px; } .one-check-filter label { padding-left: 28px; padding-right: 0; line-height: 20px; } .one-check-filter i { left: 0; } .one-filter-descr-inp { max-height: 160px; padding-right: 8px; } .one-check-filter span.num-filt { margin-left: 0; } .filter-bt { display: block; } .filter-bt button { width: 100%; margin-bottom: 10px; } .catalog-body { padding-left: 185px; } .you-choose-in a { margin-right: 15px; margin-bottom: 15px; font-size: 12px; } .one-item { width: 50%; margin-bottom: 24px; } .one-item-thumb a { height: 135px; } .one-item-thumb a img { max-height: 115px; } .one-item-in { padding-top: 0; } .one-item-bt a.def-min-bt { font-size: 14px; padding: 0 10px; } .one-item-bt a.item-comp { margin-left: 0; float: right; } .one-item-comm { padding-left: 20px; -webkit-background-size: 16px; background-size: 16px; } .pagi { padding-top: 30px; margin-bottom: 40px; } .pagi ul { display: none; } .show-more { display: block; float: left; width: 100%; text-align: center; } .show-more a { position: relative; display: inline-block; font-size: 16px; color: #6E6F7A; padding-right: 24px; font-weight: 600; line-height: 1.5; } .show-more svg { vertical-align: top; } .show-more span { position: absolute; right: 0; top: 50%; margin-top: -7px; } .blog-tags { width: 170px; } .blog-wrap { padding-left: 186px; } .blog-tags-in a { font-size: 12px; padding: 3px 8px; } .blog-menu li a { font-size: 14px; } .blog-tags-tit { font-size: 16px; margin-bottom: 16px; } .one-blog-post { width: 240px; margin-bottom: 24px; } .post-auth-name { font-size: 16px; } .post-auth-thumb { width: 40px; } .post-auth-thumb img { width: 32px; height: 32px; } .post-date-ico { width: 40px; } .post-date-ico span { width: 32px; height: 32px; } .post-date-ico svg { width: 20px; } .post-date-num { font-size: 16px; } .blog-single-body h3 { font-size: 16px; } .blog-single-body { font-size: 14px; } .title-inside { font-size: 20px; margin-bottom: 24px; } .product-thumb { width: 255px; } .product-descr { padding-left: 280px; } .product-tit h1 { font-size: 20px; } .product-text { font-size: 12px; margin-bottom: 16px; } .product-price { font-size: 12px; height: 40px; padding: 0 8px; line-height: 40px; margin-bottom: 15px; } .product-price span { font-size: 20px; } .product-bay a { height: 40px; line-height: 40px; } .btns-prod { float: right; margin-top: 34px; } .product-bay a { padding: 0 18px; font-size: 22px; } .price-wrap { width: 100%; } .comp-prod a { font-size: 14px; height: 40px; } .comp-prod i svg { width: 24px; } .num-name { float: none; font-size: 14px; } .product-number { width: auto; } .product-bay { margin-bottom: 0; } .comp-prod { margin-bottom: 0; } .num-in span { height: 40px; } .num-in input { height: 40px; } .product-tabs-body .nav-tabs .nav-item { margin-bottom: 0; } .product-tabs-body .nav-tabs .nav-link { font-size: 14px; padding: 15px 18px; } .product-tabs-body .nav-tabs { -webkit-box-shadow: none; box-shadow: none; border-bottom: 1px solid #C4C4C4; } .product-tabs-body { box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .product-tabs-body .tab-content { padding: 25px 16px; } .prod-about { font-size: 14px; } .prod-tab-tit { font-size: 16px; } .product-video { padding-top: 20px; } .one-char-name { font-size: 14px; } .sec-bt { font-size: 14px; line-height: 32px; padding: 0 10px; } .leave-comm { margin-bottom: -25px; } .all-comm { margin-top: 0; } .one-comm-thumb img { width: 24px; } .one-comm-name { font-size: 14px; margin-right: 0; } .one-comm-auth { width: 250px; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-comm-rat { padding-top: 10px; } .post-date-ico span { width: 24px; height: 24px; } .post-date-ico svg { width: 14px; height: 14px; } .one-comm-date { margin-top: 33px; } .one-comm-date .post-date-num { font-size: 14px; } .one-comm-descr { font-size: 14px; } .one-comm-top { margin-bottom: 12px; } .one-comm { padding: 16px 0; } .prod-quest { margin-top: 0; } .card-header button { font-size: 14px; padding: 17px 40px 17px 0; } .card-header button:before { width: 20px; height: 20px; margin-top: -5px; } .card-header button.collapsed:before { margin-top: -17px; } .card-body { font-size: 12px; padding: 0 0 16px; } .big-modal .modal-dialog { max-width: 535px; } .big-modal .modal-wrap { padding: 40px 25px 30px; } .modal-bask-tit { font-size: 20px; } .big-modal .close-modal { top: 0; right: 0; } .modal-item-thumb { width: 70px; height: 70px; } .modal-item-thumb a { width: 70px; height: 70px; } .modal-item-thumb a img { max-width: 64px; max-height: 64px; } .modal-item-thumb .del-item { display: none; } .modal-item-td.td-thumb { width: 86px; } .one-modal-item-table > .modal-item-tr > .modal-item-td { padding: 24px 16px 24px 0; } .modal-item-name { font-size: 14px; } .modal-item-price-in { font-size: 12px; padding: 2px 8px; } .modal-item-price-in span { font-size: 14px; } .modal-item-price { float: left; } .modal-item-number { float: none; margin: 0; padding: 0 50px; text-align: center; } .modal-item-number .num-block { float: none; display: inline-block; } .modal-item-number .num-block span { height: 25px; } .modal-item-number .num-block input { height: 25px; width: 24px; } .modal-item-sum-name { display: none; } .modal-item-td.td-sum { vertical-align: bottom; } .modal-item-sum { margin-bottom: 5px; } .modal-item-in-table { position: relative; } .del-item.mob { display: block; left: auto; right: 0; } .one-modal-item-back a.back-bask { font-size: 16px; height: 40px; line-height: 40px; } .one-modal-item-bt a { padding: 0; width: 100%; } .one-modal-item-name { font-size: 18px; } .one-modal-item-val { font-size: 18px; } .one-modal-item-sum { width: 230px; } .def-big-bt { height: 40px; line-height: 40px; font-size: 20px; } .modal-bask-tit { margin-bottom: 5px; } .one-comm-thumb { margin-right: 8px; } .sol-car { margin-left: 0; margin-right: 0; text-align: center; } .sol-car-in { margin: 10px 0 30px; } .one-sol-car { text-align: center; outline: none !important; } .one-sol-car img { display: inline; } .get-all-items .one-check-filter label { line-height: 24px; } .get-all-items .one-check-filter input + i { width: 24px; height: 24px; } .get-all-items .one-check-filter input:checked + i:before { width: 16px; height: 8px; margin-top: -5px; } .get-all-items { margin-bottom: 20px; } .one-month-thumb img { width: 110px; } .one-month-title { font-size: 20px; margin-bottom: 15px; } .all-moon-pref { margin: 0 -12px; font-size: 0; } .moon-pref-call-thumb { display: none; } .moon-pref-call-week { display: none; } .moon-zod { display: none; } .moon-pref-days { display: none; } .moon-pref:before { content: normal; } .moon-pref { width: calc(25% - 24px); margin: 0 12px 24px; display: block; padding: 16px; justify-content: center; text-align: center; } .moon-pref-call { display: block; width: 100%; } .moon-pref-m { display: block; width: 100%; } .moon-pref-m-thumb { width: 100%; } .moon-pref-descr { margin-left: 0; width: 100%; font-size: 12px; padding-top: 15px; } .moon-pref-call-descr { margin-left: 0; font-size: 16px; } .moon-pref-tit { margin-bottom: 0; } .more-str { margin-top: 15px; } .more-str span { width: 34px; height: 34px; } .more-str span svg { width: 14px; } .lk-log { width: 100%; font-size: 14px; padding-top: 30px; } .lk-left { width: 186px; border-right: none; } .lk-left li { font-size: 14px; } .lk-tab-wrap { margin-left: 186px; } .one-lk-tab { border: none; padding-left: 0; } .lk-page .lk-hist-wrap { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; width: auto; float: none; margin: 0 -24px 0 0; } .all-lk-hist-list .one-lk-hist { width: 33.33%; margin-bottom: 24px !important; padding-right: 24px; } .all-lk-hist-list .one-lk-hist-in { display: block; padding: 16px; text-align: left; } .all-lk-hist-list .lk-hist-td { width: 100% !important; margin-bottom: 18px; } .all-lk-hist-list .lk-hist-td:last-child { margin-bottom: 0; } .lk-hist-thumb { width: 16px; } .lk-hist-thumb span { width: 16px; height: 16px; font-size: 10px; margin-top: 1px; } .lk-hist-thumb span svg { width: 11px; } .lk-hist-descr { padding-left: 24px; } .lk-hist-name { margin-bottom: 3px; font-size: 14px; } .lk-hist-stat { font-size: 12px; } .one-lk-hist-in:after { content: normal; } .lk-hist-wrap { padding-top: 6px; } .full-lk-hist .lk-hist-td { width: 33.33%; } .full-lk-hist .lk-hist-td.lk-numb { display: none; } .one-lk-hist-list { width: 340px; } .full-lk-hist { padding: 16px; } .one-lk-hist-list ul { font-size: 14px; } .one-lk-hist-list li { margin-bottom: 10px; } .one-lk-hist-list li span.val { padding-right: 0; padding-left: 15px; text-align: right; } .one-lk-hist-list-pay-in ul { font-size: 12px; padding: 0; } .one-lk-hist-list-pay-in li { float: left; width: 100%; } .one-lk-hist-list-pay-in li:last-child { margin-bottom: 0; } .one-lk-hist-list-pay-in li span { display: block; width: 50%; float: left; } .one-lk-hist-list-pay-in li i { display: block; float: right; width: 50%; text-align: right; } .one-lk-bask-thumb a { width: 70px; height: 70px; } .one-lk-bask-thumb a img { max-width: 65px; max-height: 65px; } .one-lk-bask-td.thumb-td { width: 85px; } .one-lk-bask-tit a { font-size: 16px; } .one-lk-bask-price-in { padding: 1px 5px; } .one-lk-bask-price-in span { font-size: 14px; } .one-lk-bask-num-name { font-size: 14px; margin-bottom: 20px; } .one-lk-bask-td.num-td { text-align: center; } .one-lk-bask-num-val span { font-size: 14px; } .one-lk-bask-sum-name { font-size: 14px; margin-bottom: 20px; } .one-lk-bask-sum-val span { font-size: 14px; } .one-lk-bask-info-in { width: 330px; } .one-lk-bask-info-in li { font-size: 16px; } .one-lk-bask-info-in li i { font-size: 16px; } .one-lk-bask-info-in li.lk-last-sum { font-size: 20px; margin-bottom: 0; } .one-lk-bask-info-in li.lk-last-sum i { font-size: 20px; } .back-hist { padding-bottom: 0; } .back-hist a { font-size: 14px; padding-left: 20px; } .back-hist a:before { left: 0; border-width: 1px; width: 14px; height: 14px; margin-top: -7px; } .mid-slog { display: table-row; } .hide-tabl { display: none !important; } .comp-side { position: static; float: left; } .comp-body { width: calc(100% - 182px); } .comp-body table td { padding: 16px 8px; } .one-comp-pref { width: 165px; } .comp-body table { margin: 0 0px; } .comp-body .one-item-comm { display: none; } .comp-body .item-comp { display: none; } .comp-body .one-item-info { display: none; } .clear-list a { font-size: 14px; } .clear-list a span { display: none; } .back-to-lk.back-comp { display: block; } .show-filt-com-mob { display: none; } } /* dmon 991 */ @media (max-width: 767px) { .header-top .header-mess { display: none; } .search-body input { width: 210px; height: 32px; } .header-tabl-search { padding-top: 8px; } .slick-dots { bottom: -30px; } #home-slider { margin-bottom: 20px; } .post-auth { width: 100%; margin-bottom: 10px; } .post-detal { width: 100%; } .post-detal a { float: left; } .about-descr { width: 100%; margin-bottom: 24px; } .about-info { width: 100%; } .about-year , .about-perc { width: calc((100vw / 2) - 26px); } .about-tit { margin-bottom: 24px; } .about-first { margin-top: 24px; font-size: 14px; } .one-compl-in { height: 216px; opacity: 1; } .one-compl-thumb { height: 152px; } .one-compl-thumb img { max-height: 140px; max-width: 100%; } .one-compl-tit span { font-size: 18px; padding: 12px 10px; } .home-slide-wrap img { width: 100%; } .one-compl { padding: 12px 15px; } .compl-car .slick-dots { bottom: -10px; } .moon-thumb:before { content: normal; } .moon-thumb { padding: 0; width: 100%; } .moon-thumb img { float: none; } .moon-descr { margin-bottom: 24px; } .company { padding: 0; } .company-bg { display: none; } .company-body { max-height: 564px; font-size: 14px; line-height: 1.5; } .footer-menu { width: 100%; margin-top: 0; margin-bottom: 24px; } .footer-cont { margin-left: 0; width: 100%; } .footer-mess-adr { padding-right: 30%; } .footer-mess-adr br { display: block; } .footer-soc { margin-top: -30px; } .footer-soc li { margin-left: 24px; } .footer-mess { margin-bottom: 24px; } aside.sidebar { float: left; width: 100%; margin-bottom: 24px; } .all-filters { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 99; padding: 60px 16px 90px; max-height: 100%; overflow-y: auto; } .filt-mob-tit { display: block; position: fixed; top: 0; left: 0; width: 100%; background-color: #723e91; color: #fff; font-size: 20px; font-weight: 500; padding: 9px 50px; text-align: center; } .close-filt { display: block; position: absolute; cursor: pointer; top: 0; right: 5px; width: 52px; height: 46px; background-color: transparent; z-index: 9; } .close-filt:before, .close-filt:after { content: ''; position: absolute; height: 1px; width: 20px; background-color: #fff; top: 50%; left: 50%; margin-left: -10px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-filt:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-filter { margin-bottom: -1px; } .filter-bt { position: fixed; z-index: 9; left: 0; bottom: 0; width: 100%; background-color: #fff; padding: 30px 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .filter-bt button { width: 45%; } .you-choose-in a { padding: 1px 30px 1px 10px; margin-right: 12px; margin-bottom: 8px; } .you-choose-in a i { width: 20px; } .you-choose-in a i:before, .you-choose-in a i:after { width: 16px; margin-left: -8px; } .you-choose { margin-bottom: 5px } .show-filter { display: block; } .show-filter a { color: #000 !important; font-weight: 500; border: 1px solid #6E6F7A; } .catalog-body .you-choose { display: none; } .catalog-body { padding-left: 0; } .one-item { width: 50%; } .title-tablet { margin-bottom: 16px; } .one-item-in { padding: 8px 8px 16px; } .one-item-bt a.item-comp svg { width: 24px; } .catalog-about-descr p { font-size: 14px; } .broad ul { float: left; max-width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; white-space: nowrap; } .broad ul li { overflow: hidden; flex: 1 1 auto; margin-right: 0; padding-right: 17px; } .broad ul li span { overflow: hidden; display: block; width: 100%; text-overflow: ellipsis; } .broad ul li:first-child { flex: 0 0 auto; } .broad ul li:last-child { flex: 0 0 auto; } .blog-menu li { margin-right: 18px; margin-bottom: 18px; } .blog-tags { width: 100%; margin-bottom: 15px; } .blog-tags-tit { display: none; } .blog-wrap { float: left; width: 100%; padding-left: 0; } .one-blog-post { width: 100%; } .post-single-auth { float: left; width: 100%; margin-bottom: 16px; } .post-date { float: left; width: 100%; } .blog-title h1 { font-size: 20px; line-height: 1.5; } .catalog-body.search .one-item { width: 50%; } .sort-mob-bt { display: block; float: left; width: 100%; margin-bottom: 0px; } .sort-mob-bt a { color: #000 !important; font-weight: 500; border-color: #000; } .sort-name { display: none; } .sort-in { display: none; } .blog-title { margin-bottom: 20px; } #login .modal-wrap { padding: 70px 15px 35px; } .sort-mobil { padding: 40px 16px 10px; float: left; width: 100%; } .sort-mobil ul { list-style: none; padding: 0; margin: 0; } .sort-mobil ul li { float: left; width: 100%; border-bottom: 1px solid #C4C4C4; } .sort-mobil ul li:last-child { border-bottom: none; } .sort-mobil ul li a { padding: 14px 0; display: block; cursor: pointer; font-size: 16px; line-height: 20px; font-weight: 500; color: #000; } .sort-mobil ul li a.active { color: #3333CC; } .product-top { padding: 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); margin-bottom: 16px; } .product-thumb { width: 100%; padding-bottom: 24px; border-bottom: 1px solid #C4C4C4; margin-bottom: 24px; } .product-descr { float: left; width: 100%; padding-left: 0; } .mobile-title { display: block; float: left; width: 100%; margin-bottom: 16px; font-size: 20px; font-weight: 500; } .product-tit { display: none; } .product-text { display: none; } .btns-prod { width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .btns-prod > div { width: 49%; } .product-bay { margin-right: 0; } .product-info { position: relative; } .btns-prod { padding-top: 55px; } .product-number { position: absolute; top: 55px; } .product-tabs-body .nav-tabs { display: block; overflow-x: auto; white-space: nowrap; } .product-tabs-body .nav-tabs .nav-item { float: none; display: inline-block; } .product-tabs-body .nav-tabs .nav-link { border-right: none; } .prod-vid { height: 150px; } .play-vid { width: 40px; height: 40px; } .play-vid:after { content: ''; position: absolute; left: 50%; top: 50%; border-left: 14px solid #723e91; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin: -7px 0 0 -4px; } .prod-tab-tit { margin-bottom: 16px; } .leave-comm { width: 100%; margin-bottom: 20px; } .one-comm-auth { width: 100%; } .one-comm-rat { width: 100%; } .one-comm-date { margin-top: -27px; } #comm .modal-wrap, #questM .modal-wrap { padding: 65px 16px 40px; } .card-header button { color: #333; font-size: 14px; line-height: 1.5; } .modal-item-price { display: none; } .modal-item-number { padding: 0; } .modal-item-name { font-size: 12px; } .big-modal .modal-wrap { padding: 40px 16px 20px; } .modal-item-number .num-block { float: left; } .modal-item-td.td-wrap { width: 65%; } .modal-item-td.td-sum { width: 35%; } .modal-item-sum { margin-bottom: -1px; } .one-modal-item-back { display: none; } .one-modal-item-sum { width: 100%; } .one-modal-item-bay-info { padding-top: 24px; } .compl-inside .compl-wrap .one-compl { width: 50%; } .compl-sol-wrap .one-item { width: 50%; } .acc-solut .card-header button { font-size: 20px; } .one-month { width: 50%; padding: 0 6px; margin-bottom: 12px; } .calendar-name { width: 100%; font-size: 16px; } .calendar-choose { width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .one-choose { margin-left: 0; width: calc(50% - 4px); } .dropdown button { width: 100%; } .calendar-body-in { margin: 0 -6px; } .all-moon-pref { margin: 0 -8px; } .moon-pref { width: calc(50% - 16px); margin: 0 8px 16px; } .lk-page { position: relative; overflow: hidden; float: left; width: 100%; } .lk-tab-wrap { margin-left: 0; float: left; width: 100%; } .one-lk-tab { width: 100%; } .one-lk-tab.open { } .one-lk-form { width: 100%; } .back-to-lk { float: left; width: 100%; margin-bottom: 24px; } .back-to-lk a { line-height: 22px; display: block; padding-left: 22px; position: relative; cursor: pointer; font-size: 14px; color: #000; } .back-to-lk a:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; left: 0; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .lk-left { width: 100%; } .lk-left li { border-bottom: 1px solid #C4C4C4; margin-bottom: 0; } .lk-left li a { display: block; width: 100%; padding: 14px 0; position: relative; } .lk-left li a:after { content: ''; width: 12px; height: 12px; position: absolute; top: 50%; margin-top: -6px; right: 10px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .log-out-mob { display: block; float: left; width: 100%; padding-top: 30px; } .log-out-mob a { font-size: 14px; color: #000; text-decoration: underline; } .lk-page .lk-hist-wrap { margin: 0 -12px 0 0; } .all-lk-hist-list .one-lk-hist { width: 50%; padding-right: 12px; margin-bottom: 12px !important; } .lk-single-page .lk-left { display: none; } .back-hist { display: none; } .lk-single-page .back-to-lk { display: block; } .full-lk-hist .one-lk-hist-in { width: 100%; display: block; padding: 0; border: none; } .full-lk-hist .lk-hist-td { width: 100%; padding: 8px 0; float: left; border-bottom: 1px solid #C4C4C4; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .full-lk-hist .lk-hist-thumb { width: 32px; flex: 0 0 32px; } .full-lk-hist .lk-hist-thumb span { width: 32px; height: 32px; } .full-lk-hist .lk-hist-thumb span svg { width: 20px; } .full-lk-hist .lk-hist-descr { padding-left: 8px; width: 100%; } .full-lk-hist .lk-hist-name { float: left; width: 50%; font-size: 16px; margin-bottom: 0; } .full-lk-hist .lk-hist-stat { font-size: 16px; float: right; width: 50%; text-align: right; } .one-lk-hist-list { float: left; width: 100%; } .one-lk-hist-list li span.name { padding-right: 5px; } .one-lk-hist-list li span.val { padding-left: 5px; } .one-lk-bask-info-in { width: 100%; } .one-lk-hist-list-pay-in ul { font-size: 16px; } .one-lk-hist-list-pay-in li i { display: inline; width: auto; float: none; text-align: left; } .one-lk-hist-list-pay-in li span { display: inline; width: auto; float: none; } .one-lk-bask-td.num-td { display: none; } .one-lk-bask-td { padding: 16px 8px; } .one-lk-hist-list-pay { width: 100%; } .repeat-order a { float: left; } .one-lk-bask-info { padding-bottom: 0; padding-top: 24px; } .one-lk-hist-list li { align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; } .one-lk-bask-sum-name { font-size: 12px; margin-bottom: 24px; } .body-lk-mob .one-lk-form { display: none; } .body-lk-mob .blog-title { display: none; } .body-lk-mob .back-to-lk { display: none; } .body-lk-mob header { display: none; } .body-lk-mob .container { padding: 0; } .body-lk-mob footer { display: none; } .body-lk-mob .lk { margin-bottom: 0; } .mobile-top-lk-hist { display: block; float: left; width: 100%; padding: 8px 0; text-align: center; font-size: 20px; position: relative; z-index: 9; background-color: #723e91; color: #fff; } .top-lk-hist-back { position: absolute; left: 0; top: 0; width: 50px; height: 100%; } .top-lk-hist-back a { display: block; cursor: pointer; position: absolute; left: 0; top: 0; width: 100%; height: 100%; } .top-lk-hist-back a:before { content: ''; width: 10px; height: 10px; position: absolute; top: 50%; margin-top: -5px; left: 50%; margin-left: -4px; border: none; border-left: 1px solid #fff; border-bottom: 1px solid #fff; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .top-lk-hist-tit {} .catalog.lk-single-page .lk-hist-wrap { padding-top: 0; } .repeat-order { padding-top: 24px; } .sidebar .you-choose { display: block; } .bask-steps { width: 100%; padding-bottom: 24px; } .one-step-login .nav-tabs .nav-link { font-size: 12px; padding: 8px 5px; } .one-step-login .modal-log-form { width: 100%; } .one-step-title { display: none; } .basket-inside { display: none; } .mobile-step { float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; position: relative; } .mobile-step:before, .mobile-step:after { content: ''; position: absolute; top: 50%; width: 50%; height: 1px; } .mobile-step:before { background-color: #723e91; left: 0; } .mobile-step:after { right: 0; background-color: #C4C4C4; } .mobile-step.active:after { background-color: #723e91; } .one-mob-step { position: relative; z-index: 9; } .one-mob-step span { display: inline-block; width: 24px; height: 24px; border-radius: 50%; font-size: 16px; font-weight: bold; text-align: center; line-height: 24px; color: #fff; background-color: #6E6F7A; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .one-mob-step.active span { background-color: #723e91; } .one-step { margin-bottom: 0; } .bask-user-form, .bask-del-in { width: 100%; } .comp-mob-tabl .comp-side { display: none; } .comp-mob-tabl .comp-body { padding-left: 0; width: 100%; } .comp-mob-tabl .comp-body table td:nth-child(3) { display: none; } .top-tablet-sel { padding: 0; } .comp-body table { margin: 0 -12px; width: calc(100% + 24px); } .show-filt-com-mob { display: block; float: left; width: calc(50% - 12px); } .top-tablet-sel { float: right; display: block; width: calc(50% - 12px); } .top-tablet-sel .one-top-sel, .top-tablet-sel select { width: 100%; } .show-filt-com-mob a { width: 100%; color: #000 !important; font-weight: 500; border: 1px solid #6E6F7A; } .side-mob-top { display: block; background-color: #723e91; position: absolute; top: 0; color: #fff; left: 0; width: 100%; font-size: 20px; font-weight: 500; padding: 7px 0; text-align: center; } .comp-mob-tabl .comp-side { padding: 70px 16px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 99; background-color: #fff; height: 100%; } .close-mob { display: block; position: absolute; cursor: pointer; top: 0; right: 0; width: 60px; height: 100%; background-color: transparent; } .close-mob:before, .close-mob:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #fff; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-mob:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .done-list { width: 46%; float: left; } .canc-list { float: right; width: 46%; } .val-comp { font-size: 14px; } .comp-mob-tabl .comp-body table td { width: 50%; } } /* dmon 767 */ @media (max-width: 480px) { .compl-inside .compl-wrap .one-compl { width: 100%; } } .btn-order { color: #fff; background-color: #723e91; border-color: #723e91; } div.form-inline form { display: inline; } div.form-inline { flex-flow: unset; } .in-num { margin-left: 10px; margin-right: 10px; } .alert { position: absolute; width: 100%; text-align: center; padding: .75rem 10.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: .25rem; } .remember-me { margin-left: 13px; } .form-check-label { margin-left: 5px; } #adminka-footer { margin-top: 40px; } .red { color: red !important; } div.labels { position: absolute; } div.labels span.badge { display: block; } span.badge.badge-success { color: #fff; background-color: #28a745; } span.badge.badge-warning { color: #fff; background-color: #dc3545; } span.badge.badge-danger { color: #212529; background-color: #ffc107; } .price-input-div { padding-left: 10px; } .product-table th, .product-table td { padding: .5rem; } .invalid-feedback { display: unset; }
public/css/style.css
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} img { max-width: 100%; height: auto; vertical-align: top; } section { float: left; width: 100%; padding-bottom: 80px; } @media (min-width: 1170px) { .container { max-width: 1160px; } } body { font-size: 14px; font-family: 'Montserrat', sans-serif; } input[type=number], input[type=password], input[type=email], input[type=mail], input[type=tel], input[type=text] { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 16px; outline: none !important; } textarea { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 124px; width: 100%; padding: 16px 16px; outline: none !important; } select { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 34px 0 12px; outline: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url(images/select.png) right 12px center no-repeat; } a {} a:hover {} .wrapper {} header { float: left; width: 100%; padding-top: 24px; margin-bottom: 40px; } .logo-text { float: left; font-family: Indie Flower, Neucha; width: 210px; text-decoration: none; color: #723e91; font-weight: bold; font-size: 3em; } header { background-color: rgba(232, 62, 140, 0.2); } .header-mid { float: left; width: 420px; margin-left: 15px; margin-top: 10px; } .header-mid-admin { width: 525px; } .header-top { float: left; width: 100%; } .header-phone { float: left; } .header-phone a { color: #000; line-height: 30px; text-decoration: none; display: block; cursor: pointer; /*padding-left: 40px;*/ /*background: url(images/phone-ico.png) left center no-repeat;*/ } .header-mess { float: left; margin-left: 133px; } .header-icons { float: left; } .header-icons span { display: block; float: left; margin-right: 10px; } .header-number { float: left; line-height: 30px; } .header-nav { float: left; width: 100%; margin-top: 30px; } .header-nav-admin { margin-top: 5px; margin-left: 15px; } .header-nav > ul { padding: 0; margin: 0; list-style: none; } .header-nav > ul > li { float: left; position: relative; margin-right: 15px; } .header-nav > ul > li.no-sub > a:before { content: normal; } .header-nav > ul > li > a { display: block; cursor: pointer; text-decoration: none !important; border-bottom: 3px solid transparent; padding: 3px 0; color: #000; } .header-nav > ul > li > a:hover { border-bottom: 3px solid #723e91; } .header-nav > ul > li > a:before { content: ''; right: -16px; top: 50%; margin-top: -5px; position: absolute; border-top: 8px solid #723e91; border-left: 6px solid transparent; border-right: 6px solid transparent; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .header-nav > ul > li ul { position: absolute; background: #fff; list-style: none; padding: 8px 0; margin: 0; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); } .header-nav > ul > li > ul > li {} .header-nav > ul > li > ul > li > a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .header-nav > ul > li > ul > li > a:hover { color: #af66e4; } .header-right { float: right; width: 442px; margin-top: 10px; } .header-right-admin { width: 355px; } .header-login { float: left; margin-bottom: 22px; } .header-login a { float: left; display: block; cursor: pointer; font-size: 20px; padding-left: 26px; font-weight: 500; color: #000000; position: relative; text-decoration: none !important; } .header-login-admin a { padding-left: 16px; } .header-login a i { position: absolute; top: 50%; left: 0; margin-top: -12px; vertical-align: top; line-height: 1; } .header-login a span {} .header-btns { float: right; margin-top: -10px; } .header-btns-in { float: left; margin-right: 8px; } .header-btns-in > div { float: left; margin-right: 22px; } .header-search { position: relative; } .search-body { position: absolute; right: -10px; top: 0; z-index: 9; display: none; } .search-body input { outline: none !important; background: #FFFFFF; width: 344px; height: 40px; border: none; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); border-radius: 30px; padding: 0 56px; background: #fff url(images/search-bg.svg) 16px center no-repeat; } .close-search { position: absolute; width: 50px; height: 100%; right: 0; top: 0; cursor: pointer; } .close-search:before, .close-search:after { content: ''; position: absolute; height: 2px; width: 30px; background-color: #723e91; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-search:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .search-res { position: absolute; width: 100%; left: 0; top: 100%; padding-top: 10px; } .search-res ul { width: 100%; margin: 0; background: #fff; list-style: none; padding: 8px 0; margin: 0; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); } .search-res li {} .search-res li a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .header-btns-ico {} .lang { float: right; margin-top: -10px; } .lang ul { list-style: none; padding: 0; margin: 0; } .lang ul li { float: left; } .lang ul li:last-child { padding-left: 11px; position: relative; } .lang ul li:last-child:before { content: ''; position: absolute; width: 2px; left: 5px; top: 50%; margin-top: -8px; height: 13px; background-color: #723e91; } .lang ul li a { font-size: 18px; font-weight: 500; color: #6E6F7A; } .lang ul li a.active { color: #000; } #home-slider { margin-bottom: 15px; } .home-slide-wrap {} .slick-arrow { outline: none !important; border: none; background: none; cursor: pointer; position: absolute; top: 50%; margin-top: -16px; } .slick-arrow.slick-prev { left: -73px; } .slick-arrow.slick-next { right: -73px; } .slick-dots { position: absolute; left: 0; width: 100%; bottom: -45px; margin: 0; padding: 0; text-align: center; } .slick-dots li { display: inline-block; vertical-align: top; margin: 0 5px; } .slick-dots li button { border: none; outline: none !important; background-color: #C4C4C4; font-size: 0; overflow: hidden; border-radius: 50%; padding: 0; width: 15px; height: 15px; text-indent: -9999px; cursor: pointer; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .slick-dots li button:hover { background-color: #723e91; } .slick-dots li.slick-active button { background-color: #723e91; } .home-slide-js {} .one-home-slide {} #cats {} .section-tit { float: left; width: 100%; text-align: center; margin-bottom: 53px; } .section-tit h3 { background-color: #723e91; border-radius: 30px; font-size: 28px; font-weight: 600; color: #fff; padding: 11px 30px; display: inline-block; margin: 0; } .home-cats {} .one-home-cat { float: left; width: 100%; margin-bottom: 30px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); position: relative; } .one-home-cat a { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: block; cursor: pointer; z-index: 9; } .one-home-cat-in { position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding: 15px 30px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-home-cat img {} .one-home-cat-tit { float: left; padding: 3px 10px; background-color: #fff; font-size: 18px; line-height: 22px; font-weight: 600; color: #723e91; text-align: center; } #posts {} .posts-wrap { float: left; width: 100%; margin-bottom: 15px; } .posts-js { margin: 0 -15px; } .posts-js .slick-dots { bottom: -30px; } .one-post { width: 390px; float: left; padding: 0 15px 15px; } .one-post-in { box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; width: 100%; } .one-post-thumb { /*height: 174px;*/ float: left; width: 100%; } .one-post-thumb a {} .one-post-descr { float: left; width: 100%; padding: 16px; } .one-post-tit { float: left; width: 100%; font-size: 18px; font-weight: 500; line-height: 1.5; overflow: hidden; height: 54px; margin-bottom: 15px; } .one-post-text { float: left; width: 100%; font-weight: 300; font-size: 16px; line-height: 1.5; overflow: hidden; height: 72px; margin-bottom: 25px; } .one-post-info { float: left; width: 100%; } .post-auth { float: left; padding-left: 16px; background: url(images/author-post.svg) left center no-repeat; font-size: 12px; } .post-detal { font-size: 12px; font-weight: bold; float: right; } .post-detal a { text-transform: uppercase; display: block; padding-right: 24px; cursor: pointer; color: #723e91; text-decoration: none; } .post-detal a:hover { text-decoration: underline; } .about-body { float: left; width: 100%; min-height: 430px; background: url(images/about-bg.jpg) center center no-repeat; -webkit-background-size: cover; background-size: cover; padding-top: 80px; padding-bottom: 60px; } .about { float: left; width: 100%; } .about-descr { float: left; width: 457px; } .about-tit { float: left; width: 100%; text-align: center; background-color: #fff; padding: 1px 5px; font-size: 32px; font-weight: 600; color: #723e91; margin-bottom: 70px; } .about-text { background-color: rgba(128, 69, 163, 0.8); float: left; width: 100%; padding: 10px 10px; font-size: 24px; line-height: 29px; color: #fff; } .about-text span { font-weight: bold; } .about-info { float: right; width: 555px; } .about-year { float: left; background-color: #723e91; width: 263px; height: 120px; color: #fff; font-weight: 600; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .about-year-num { font-size: 76px; line-height: 93px; } .about-year-name { width: 104px; font-size: 30px; margin-left: 20px; line-height: 37px; } .about-perc { float: right; background-color: #6E6F7A; width: 263px; height: 120px; color: #fff; font-size: 24px; line-height: 1.4; padding-left: 75px; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; background: #6E6F7A url(images/perc.svg) 25px center no-repeat; } .about-perc span { display: block; font-weight: bold; } .about-first { float: left; width: 100%; background-color: #fff; margin-top: 50px; font-size: 26px; line-height: 32px; padding: 9px 25px 9px 165px; background: #fff url(images/first.png) 27px center no-repeat; } .about-first span { color: #723e91; font-weight: 600; } #compl { padding-bottom: 40px; } .section-tit {} .section-tit h3 {} .compl-wrap { float: left; width: 100%; } .compl-car .slick-list { padding: 30px 0; } .compl-car { margin: 0 -15px; } .compl-car .slick-dots { bottom: 0; } .one-compl { width: 263px; float: left; padding: 15px 15px; } .one-compl-in { position: relative; float: left; width: 100%; height: 220px; background-color: #fff; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); opacity: 0.4; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .one-compl:hover .one-compl-in { opacity: 1; -webkit-transform: scale3d(1.1, 1.1, 1); -ms-transform: scale3d(1.1, 1.1, 1); -o-transform: scale3d(1.1, 1.1, 1); transform: scale3d(1.1, 1.1, 1); } .slick-slide > div:first-child .one-compl .one-compl-in { -webkit-transform-origin: bottom center; -moz-transform-origin: bottom center; -ms-transform-origin: bottom center; -o-transform-origin: bottom center; transform-origin: bottom center; } .slick-slide > div:last-child .one-compl .one-compl-in { -webkit-transform-origin: top center; -moz-transform-origin: top center; -ms-transform-origin: top center; -o-transform-origin: top center; transform-origin: top center; } .one-compl-in a { position: absolute; left: 0; top: 0; display: block; cursor: pointer; width: 100%; height: 100%; z-index: 9; } .one-compl-thumb { height: 140px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; text-align: center; } .one-compl-thumb img { max-height: 140px; width: auto; } .admin-image { max-height: 140px; width: auto; } .one-compl-tit { text-align: center; position: absolute; bottom: 24px; left: 0; width: 100%; padding: 0 30px; } .one-compl-tit span { font-size: 18px; font-weight: 600; color: #fff; border-radius: 5px; padding: 7px 10px; display: inline-block; background-color: #723e91; } #moon {} .moon-wrap {} .moon-descr { font-size: 20px; line-height: 1.5; } .moon-thumb { float: right; padding: 15px 15px 0 0; position: relative; } .moon-thumb img { position: relative; z-index: 9; float: right; } .moon-thumb:before { content: ''; position: absolute; right: 0; left: 70px; top: 0; bottom: 15px; background: #C4C4C4; filter: blur(4px); } .moon-year { z-index: 10; line-height: 1; position: absolute; right: 18px; top: 46px; font-weight: 600; font-size: 38px; color: #fff; letter-spacing: 0.1em; padding: 3px 32px 3px 0; } .moon-year:before { content: ''; position: absolute; right: 0; top: 0; width: 78px; height: 100%; background-color: #723e91; } .moon-year span { position: relative; z-index: 9; } #company {} .company { position: relative; padding: 56px 0 0 68px; } .company-bg { position: absolute; left: 0; top: 0; } .company-bg img { height: 370px; width: 1050px; } .company-text { float: left; width: 100%; position: relative; z-index: 9; font-size: 20px; font-weight: 500; color: #fff; background-color: rgba(114, 62, 145, 0.8); padding: 24px 24px 122px; line-height: 1.5; } .company-body { max-height: 270px; overflow: hidden; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .company-body.open { max-height: 9999px; } .company-body p { margin-bottom: 15px; } .company-more { position: absolute; height: 122px; bottom: 0; left: 0; width: 100%; text-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .company-more span { display: inline-block; cursor: pointer; width: 50px; height: 50px; border: 1px solid #fff; border-radius: 50%; padding: 7px 0; } .company-more span.open { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } footer { background-color: rgba(232, 62, 140, 0.2); float: left; width: 100%; padding: 20px 0; } .footer-menu { float: left; width: 330px; margin-top: 10px; } .footer-menu ul { padding: 0; margin: 0; list-style: none; } .footer-menu li { float: left; width: 50%; padding-bottom: 12px; } .footer-menu li:nth-child(2n-1) { border-right: 3px solid #723e91; } .footer-menu li:nth-child(2n) { padding-left: 27px; } .footer-menu li:last-child { padding-bottom: 0; } .footer-menu li a { font-size: 14px; line-height: 17px; color: #000; text-decoration: none; } .footer-cont { float: left; margin-left: 50px; } .footer-tel { margin-bottom: 15px; } .footer-tel a { color: #000; line-height: 30px; text-decoration: none; display: block; cursor: pointer; /*padding-left: 40px;*/ /*background: url(/images/phone-ico.png) left center no-repeat;*/ } .footer-mess { margin-bottom: 18px; } .footer-mess-icons { display: inline-block; vertical-align: top; } .footer-mess-icons span { display: inline-block; margin-right: 10px; } .footer-mess-num { display: inline-block; line-height: 30px; vertical-align: top; } .footer-mess-adr { font-size: 12px; } .footer-soc { float: right; margin-top: 25px; } .footer-soc ul { list-style: none; padding: 0; margin: 0; } .footer-soc li { float: left; margin-left: 25px; } .footer-soc li a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; cursor: pointer; } .footer-soc li a.face { background-color: #3B5998; } .footer-soc li a.you { background-color: #D22215; align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; justify-content: flex-end; } .mini-modal {} .mini-modal .modal-dialog { max-width: 360px; } .mini-modal .modal-dialog .modal-content { border: none; border-radius: 0; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .modal-backdrop { background-color: rgba(196,196,196,0.5); } .close-modal { position: absolute; cursor: pointer; top: 0; right: 0; width: 60px; height: 60px; background-color: transparent; } .close-modal:before, .close-modal:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #000; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-modal:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } #login .modal-wrap { padding: 70px 50px 35px; } .modal-wrap { display: inline-block; width: 100%; } .modal-wrap .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .modal-wrap .nav-tabs .nav-item { float: left; width: 50%; text-align: center; } .modal-wrap .nav-tabs .nav-link { font-size: 14px; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 5px; text-align: center; border-bottom: 2px solid #fff; } .modal-wrap .nav-tabs .nav-link:first-child { border-right: 1px solid #C4C4C4; } .modal-wrap .nav-tabs .nav-item.show .nav-link, .modal-wrap .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .modal-wrap .tab-content { padding-top: 25px; float: left; width: 100%; } .modal-log-form {} .one-line { margin-bottom: 16px; } .forg-pass { text-align: right; margin-bottom: 25px; } .forg-pass a { line-height: 1.5; color: #6E6F7A; font-size: 12px; } .modal-wrap {} .def-min-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 16px; font-weight: 600; text-align: center; line-height: 32px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .border-min-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background-color: transparent; border:1px solid #723e91; color: #723e91 !important; border-radius: 5px; font-size: 16px; font-weight: 600; text-align: center; line-height: 32px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .def-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 18px; font-weight: 600; text-align: center; line-height: 42px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .def-big-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #723e91; color: #fff !important; border-radius: 5px; font-size: 22px; font-weight: 600; text-align: center; line-height: 48px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .sec-bt { border: none; display: inline-block; cursor: pointer; outline: none !important; background: #F47920; color: #fff !important; border-radius: 5px; font-size: 24px; font-weight: 600; text-align: center; line-height: 48px; padding: 0 21px; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .or-soc { float: left; width: 100%; padding-top: 32px; } .or { font-size: 18px; line-height: 22px; float: left; width: 100%; position: relative; text-align: center; } .or:before { content: ''; position: absolute; left: 0; width: 100%; top: 50%; background-color: rgba(153, 153, 153, 0.2); height: 1px; margin-top: 1px; } .or span { display: inline-block; position: relative; z-index: 9; padding: 0 8px; background-color: #fff; font-size: 18px; } .log-soc { float: left; width: 100%; padding-top: 25px; } .log-soc ul { padding: 0; margin: 0; list-style: none; text-align: center; } .log-soc li { margin: 0 8px; display: inline-block; } .log-soc li a {} .header-log-tablet { display: none; } .header-tabl { display: none; } .close-menu { display: none; } .tablet-logo { display: none; } .tablet-mess { display: none; } .tablet-mess-lang { display: none; } .li-top-tablet { display: none; } #home-slider, #posts, #compl { overflow: hidden; } .hide-i-mob { font-style: normal; display: inline; } .hide-i-desc { font-style: normal; display: none; } .moon-bt { position: absolute; z-index: 9; bottom: 66px; left: 0; width: 100%; text-align: center; } .footer-mess-adr br { display: none; } body.open-menu { position: relative; height: 100%; overflow: hidden; } .broad { float: left; width: 100%; margin-bottom: 32px; } .broad ul { float: left; overflow: hidden; list-style: none; padding: 0; margin: 0; } .broad ul li { float: left; min-width: 35px; margin-right: 17px; } .broad ul li a { display: block; cursor: pointer; font-size: 14px; font-weight: 500; color: #3333CC; position: relative; } .broad ul li a:before { content: ''; width: 6px; height: 6px; position: absolute; top: 50%; margin-top: -3px; right: -10px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } main {} .catalog {} aside.sidebar { float: left; width: 263px; margin-bottom: 50px; } .all-filters { float: left; width: 100%; } .one-filter { padding: 16px 0; float: left; width: 100%; border-top: 1px solid #6E6F7A; border-bottom: 1px solid #6E6F7A; margin-bottom: 50px; } .one-filter-top { font-size: 16px; font-weight: 500; padding: 0 30px 0 11px; position: relative; cursor: pointer; } .one-filter-top:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -11px; right: 11px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .one-filter-top:hover:before { border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; } .one-filter-top.active:before { margin-top: -2px; -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } .one-filter-descr { float: left; width: 100%; padding: 15px 0 0 ; } .filter-menu {} .filter-menu ul { list-style: none; padding: 0; margin: 0; } .filter-menu li { margin-bottom: 5px; } .filter-menu li:last-child { margin-bottom: 0; } .filter-menu li a { font-size: 14px; min-height: 28px; padding: 5px 0; color: #000; text-decoration: none; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .filter-menu li a.active, .filter-menu li a:hover { background-color: #723e91; color: #fff; } .filter-menu li a.active svg path, .filter-menu li a:hover svg path { fill: #fff; } .filter-menu li i { display: block; width: 40px; text-align: center; flex: 0 0 40px; } .filter-menu li span { display: block; width: 100%; } .one-filter-descr-inp { max-height: 210px; padding-right: 10px; } .one-check-filter { float: left; width: 100%; margin-bottom: 16px; font-size: 14px; overflow: hidden; } .one-check-filter:last-child { margin-bottom: 0; } .one-check-filter label { float: left; width: 100%; padding: 0 10px 0 40px; position: relative; margin: 0; cursor: pointer; } .one-check-filter input { position: absolute; left: -999px; } .one-check-filter i { border: 1px solid #6E6F7A; box-sizing: border-box; border-radius: 5px; position: absolute; left: 11px; top: 0; width: 20px; height: 20px; } .one-check-filter input:checked + i { background-color: #723e91; border-color: #723e91; } .one-check-filter input:checked + i:before { content: ''; width: 10px; height: 6px; position: absolute; top: 50%; margin-top: -4px; left: 50%; margin-left: -5px; border: none; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-check-filter span {} .one-check-filter span.num-filt { color: #723e91; font-weight: 500; display: inline-block; margin-left: 5px; } .filter-bt { float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .filter-bt button { padding: 0 10px; } .catalog-body { padding-left: 293px; } .catalog-about { float: left; width: 100%; margin-bottom: 50px; } .catalog-about-thumb { float: left; width: 360px; } .catalog-about-descr { padding-left: 390px; } .catalog-about h1 { font-weight: 500; font-size: 26px; line-height: 32px; margin: 0 0 24px; padding: 0; } .catalog-about-descr p { font-size: 16px; line-height: 1.5; } .you-choose { float: left; width: 100%; margin-bottom: 12px; } .you-choose-name { float: left; width: 100%; font-weight: 500; font-size: 14px; margin-bottom: 15px; } .you-choose-in { float: left; width: 100%; } .you-choose-in a { display: block; cursor: pointer; position: relative; float: left; margin-right: 20px; margin-bottom: 20px; padding: 4px 12px 4px 12px; border: 1px solid #6E6F7A; border-radius: 20px; font-size: 14px; text-decoration: none !important; color: #000 !important; } .you-choose-in a span {} .you-choose-in a i { display: block; position: absolute; cursor: pointer; top: -1px; right: 5px; width: 30px; height: 100%; background-color: transparent; } .you-choose-in a i:before, .you-choose-in a i:after { content: ''; position: absolute; height: 1px; width: 22px; background-color: #D22215; top: 50%; left: 50%; margin-left: -11px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .you-choose-in a i:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .catalog-body-wrap { float: left; width: 100%; } .catalog-body-wrap-in { margin: 0 -12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; /*justify-content: space-between;*/ -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-item { padding: 0 12px; width: 33.33%; float: left; margin-bottom: 32px; } .one-item-in { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; height: 100%; float: left; width: 100%; padding: 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-item-thumb { float: left; width: 100%; } .one-item-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; height: 220px; float: left; width: 100%; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-item-descr { float: left; width: 100%; border-top: 1px solid #C4C4C4; padding-top: 16px; } .one-item-tit { font-size: 18px; font-weight: 600; margin-bottom: 16px; } .one-item-info { float: left; width: 100%; /*display: -webkit-flex;*/ /*display: -moz-flex;*/ /*display: -ms-flex;*/ /*display: -o-flex;*/ /*display: flex;*/ align-content: center; -ms-align-items: center; align-items: center; justify-content: space-between; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-item-price { float: left; padding: 5px 7px; background: #F0F0F2; border-radius: 5px; font-weight: 600; color: #6E6F7A; font-size: 12px; margin-bottom: 35px; } .one-item-price span { font-size: 20px; } .one-item-comm { margin-bottom: 16px; padding-left: 34px; line-height: 26px; font-size: 12px; color: #6E6F7A; background: url(images/comm-item.svg) left center no-repeat; } .one-item-comm a { color: #000; } .one-item-info { float: right; width: 100%; } .one-item-info a { float: right; } .one-item-info button { float: right; margin-bottom: 10px; } .item-comp { margin-left: 16px; } .pagi { float: left; width: 100%; text-align: center; margin-bottom: 50px; } .pagi ul { display: inline-block; padding: 0; margin: 0; list-style: none; } .pagi ul li { float: left; margin: 0 10px; } .pagi ul li a, .pagi ul li span { display: block; min-width: 32px; min-height: 32px; line-height: 32px; font-size: 18px; font-weight: 600; color: #000; border-radius: 50%; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .pagi ul li.active a, .pagi ul li.active span { background-color: #723e91; color: #fff; } .pagi ul li a:hover { text-decoration: none; color: #723e91; } .pag {} .pag a { position: relative; } .pag a:before { content: ''; width: 12px; height: 12px; position: absolute; top: 50%; margin-top: -6px; left: 50%; margin-left: -6px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .pag a:hover:before { border-left-color: #723e91; border-bottom-color: #723e91; } .pag.next a:before { -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .about-page { float: left; width: 100%; } .about-page h2 { font-weight: 500; font-size: 26px; padding: 0; margin: 0 0 24px; } .page-detal { font-size: 16px; line-height: 1.5; max-height: 216px; overflow: hidden; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .page-detal p {} .show-all-detal { float: left; width: 100%; text-align: center; padding: 24px 0; } .show-all-detal span { display: inline-block; cursor: pointer; width: 32px; height: 32px; border: 1px solid #723e91; border-radius: 50%; padding: 4px 0; } .show-all-detal span.open { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } .page-detal.open { max-height: 9999px; } .desc {} .tabl { display: none; } .title-tablet { display: none; } .show-more { display: none; } .filt-mob-tit { display: none; } .show-filter { display: none; } .blog-title { float: left; width: 100%; margin-bottom: 40px; } .blog-title h1 { margin: 0; padding: 0; font-size: 32px; font-weight: 500; } .blog-side { float: left; width: 262px; } .blog-menu { float: left; width: 100%; } .blog-menu-tit { font-size: 26px; line-height: 32px; font-weight: 500; margin-bottom: 32px; } .blog-menu ul { list-style: none; padding: 0; margin: 0; float: left; width: 100%; } .blog-menu li { float: left; width: 100%; margin-bottom: 24px; } .blog-menu li a { font-size: 20px; line-height: 1.5; color: #000; text-decoration: none !important; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .blog-menu li a:hover, .blog-menu li a.active { color: #723e91; } .blog-menu li a.active { font-weight: 600; } .blog-tags { width: 262px; float: right; } .blog-tags-tit { font-size: 26px; line-height: 32px; font-weight: 500; margin-bottom: 32px; } .blog-tags-in { float: left; width: 100%; } .blog-tags-in a { float: left; font-size: 16px; line-height: 1.5; color: #000; text-decoration: none !important; display: block; cursor: pointer; margin-right: 16px; margin-bottom: 16px; background-color: #F0F0F2; border-radius: 5px; padding: 4px 18px; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .blog-tags-in a:hover { background-color: #723e91; color: #fff; } .blog-wrap { padding: 0 290px; } .blog-wrap-posts { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 100%; justify-content: space-between; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-blog-post { width: 262px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; margin-bottom: 40px; } .one-blog-post-thumb { float: left; width: 100%; } .one-blog-post-thumb a {} .one-blog-post-descr { float: left; width: 100%; padding: 16px 11px; } .one-blog-post-tit { height: 72px; overflow: hidden; font-size: 16px; font-weight: 500; line-height: 1.5; margin-bottom: 16px; } .one-blog-post-text { font-weight: 300; font-size: 14px; line-height: 1.5; height: 63px; overflow: hidden; margin-bottom: 16px; } .one-blog-post-auth { float: left; width: 100%; margin-bottom: 16px; } .post-auth {} .one-blog-post-detal { float: left; width: 100%; } .one-blog-post-detal .post-detal { float: left; } .blog-single { float: left; width: 100%; } .blog-single-info { float: left; width: 100%; margin-bottom: 24px; } .post-single-auth { float: left; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .post-auth-thumb { width: 64px; } .post-auth-thumb img { border-radius: 50%; } .post-auth-name { font-size: 18px; font-weight: 500; line-height: 1; } .post-date { float: right; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .post-date-ico { width: 64px; } .post-date-ico span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #FFFFFF; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .post-date-num { font-size: 18px; font-weight: 500; } img.center { margin: 25px auto 25px; display: block; } .blog-single-body { margin-bottom: 70px; float: left; width: 100%; } .blog-single-body p { margin-bottom: 16px; } .blog-single-body h3 { margin-top: 30px; margin-bottom: 16px; font-size: 26px; } .blog-single-body h3:first-child { margin-top: 0; } .blog-single-body > ul { list-style: none; padding: 0; margin: 0 0 24px; } .blog-single-body > ul li { position: relative; padding-left: 12px; } .blog-single-body > ul li:before { content: ''; position: absolute; left: 0; top: 10px; height: 1px; width: 4px; background-color: #000; } .soc-share { float: left; width: 100%; } .soc-share-in {} .soc-share-in a { float: left; margin-right: 24px; } .title-inside { font-size: 26px; font-weight: 500; color: #723e91; margin-bottom: 32px; float: left; width: 100%; } .catalog-body.search { float: left; width: 100%; padding-left: 0; margin-bottom: 50px; } .find-res { float: left; width: 100%; margin-bottom: 24px; } .sort-cat { float: left; width: 100%; margin-bottom: 32px; } .sort-name { font-size: 16px; float: left; line-height: 1.5; margin-right: 18px; } .sort-in { font-size: 16px; float: left; line-height: 1.5; } .sort-in a { color: #3333CC; float: left; margin-right: 16px; } .sort-in a.active { color: #000; } .sort-in a.by-price { position: relative; padding-right: 16px; } .sort-in a.by-price i { position: absolute; right: 0; top: 50%; margin-top: -4px; } .sort-in a.by-price i svg { vertical-align: top; } .sort-mob-bt { display: none; } .catalog-body.search .one-item { width: 25%; } .product { float: left; width: 100%; } .product-top { float: left; width: 100%; margin-bottom: 100px; } .product-thumb { float: left; width: 360px; } .product-thumb a {} .product-descr { padding-left: 390px; } .product-tit { float: left; width: 100%; margin-bottom: 16px; } .product-tit h1 { font-size: 32px; font-weight: 500; margin: 0 0 16px; padding: 0; } .product-text { float: left; width: 100%; font-size: 16px; line-height: 1.5; margin-bottom: 32px; } .product-info { float: left; width: 100%; } .price-wrap { float: left; } .product-price { float: left; margin-right: 16px; background: #F0F0F2; color: #6E6F7A; border-radius: 5px; display: block; height: 48px; padding: 0px 16px; font-weight: 600; font-size: 22px; margin-bottom: 32px; } .product-price span { font-size: 32px; } .btns-prod { float: left; } .product-bay { float: left; margin-right: 16px; margin-bottom: 32px; } .product-bay a { height: 48px; padding: 0 24px; line-height: 48px; font-size: 24px; font-weight: 600; } .comp-prod { float: left; margin-bottom: 32px; } .comp-prod a { font-size: 20px; color: #6E6F7A; height: 48px; border: 1px solid #F0F0F2; border-radius: 5px; cursor: pointer; text-decoration: none !important; padding: 0 16px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .comp-prod i {} .comp-prod i svg { vertical-align: top; } .comp-prod span { display: inline-block; margin-left: 12px; } .product-number { float: left; width: 100%; } .num-name { font-size: 16px; float: left; width: 100%; margin-bottom: 13px; } .num-wrap { float: left; width: 100%; } .num-block { float: left; width: 94px; } .num-in {} .num-in span { display: block; float: left; width: 30px; height: 32px; line-height: 32px; text-align: center; position: relative; cursor: pointer; } .num-in input { float: left; width: 32px; height: 32px; border: 1px solid #6E6F7A; border-radius: 5px; color: #000; text-align: center; padding: 0; } .num-in span.minus:before { content: ''; position: absolute; width: 15px; height: 1px; background-color: #723e91; top: 50%; left: 0; } .num-in span.plus:before, .num-in span.plus:after { content: ''; position: absolute; right: 0px; width: 15px; height: 1px; background-color: #723e91; top: 50%; cursor: default; } .num-in span.plus:after { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); cursor: default; } .product-tabs-body { float: left; width: 100%; margin-bottom: 88px; } .product-tabs-body .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .product-tabs-body .nav-tabs .nav-item { float: left; text-align: center; } .product-tabs-body .nav-tabs .nav-link { font-size: 22px; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 24px 37px; text-align: center; border-bottom: 2px solid #fff; } .product-tabs-body .nav-tabs .nav-link { border-right: 1px solid #C4C4C4; } .product-tabs-body .nav-tabs .nav-item.show .nav-link, .product-tabs-body .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .product-tabs-body .tab-content { padding-top: 45px; float: left; width: 100%; } .prod-about { font-size: 16px; line-height: 1.5; } .prod-tab-tit { float: left; font-size: 26px; font-weight: 500; width: 100%; margin-bottom: 24px; } .prod-about p { margin-bottom: 16px; } .prod-about ul { list-style: none; padding: 0; margin: 0 0 16px; } .prod-about ul li { position: relative; padding-left: 12px; } .prod-about ul li:before { content: ''; position: absolute; left: 0; top: 11px; height: 1px; width: 4px; background-color: #000; } .product-video { float: left; width: 100%; padding-top: 40px; text-align: center; } .prod-vid { position: relative; display: inline-block; max-width: 555px; width: 100%; height: 360px; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .play-vid { position: absolute; z-index: 9; left: 50%; top: 50%; width: 60px; height: 60px; margin: -30px 0 0 -30px; border-radius: 50%; background-color: #F0F0F2; } .play-vid:after { content: ''; position: absolute; left: 50%; top: 50%; border-left: 28px solid #723e91; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin: -15px 0 0 -10px; } #other-prduct {} .other-prod-tit { font-size: 26px; font-weight: 500; float: left; width: 100%; margin-bottom: 30px; } .other-prod-body { float: left; width: 100%; } .other-prod-car { margin: 0 -15px; } .other-prod-body .one-item { padding: 10px 15px; } .prod-tab-char {} .all-char { float: left; width: 100%; } .one-char { float: left; width: 100%; margin-bottom: 10px; } .one-char:last-child { margin-bottom: 0; } .one-char:last-child ul { margin-bottom: 0; } .one-char-name { float: left; width: 100%; font-size: 18px; margin-bottom: 16px; font-weight: 500; } .one-char ul { list-style: none; padding: 0; margin: 0 0 16px; float: left; width: 100%; } .one-char ul li { position: relative; padding-left: 12px; margin-bottom: 16px; } .one-char ul li:last-child { margin-bottom: 0; } .one-char ul li:before { content: ''; position: absolute; left: 0; top: 11px; height: 1px; width: 4px; background-color: #000; } .prod-tab-comments { float: left; width: 100%; } .leave-comm { float: right; margin-bottom: -43px; position: relative; z-index: 9; } .leave-comm a {} .prod-tab-tit span { color: #6E6F7A; display: inline-block; margin-left: 10px; } .all-comm { float: left; width: 100%; margin-top: 50px; border-top: 1px solid #C4C4C4; } .one-comm { float: left; width: 100%; padding: 33px 0; border-bottom: 1px solid #C4C4C4; } .one-comm:last-child { border-bottom: none; } .one-comm-top { float: left; width: 100%; margin-bottom: 24px; } .one-comm-auth { float: left; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .one-comm-thumb { margin-right: 16px; } .one-comm-name { margin-right: 16px; font-weight: 500; font-size: 18px; } .one-comm-rat { float: left; } .stars { float: left; margin-top: 3px; } .stars span { display: inline-block; margin-right: 0px; vertical-align: top; } .stars span svg { vertical-align: top; } .one-comm-date { float: right; } .one-comm-descr { float: left; font-size: 16px; line-height: 1.5; } .prod-quest { float: left; width: 100%; margin-top: 30px; } .accordion { border: none; } .card { border: none; border-bottom: 1px solid #C4C4C4; border-top: 1px solid #C4C4C4; } .card:last-child { border-bottom: none; } .card-header { border: none; background-color: transparent; padding: 0; } .card-header button { position: relative; outline: none !important; display: block; width: 100%; border: none; text-align: left; background-color: transparent; cursor: pointer; padding: 32px 60px 32px 0px; font-size: 18px; font-weight: 500; line-height: 1.5; } .card-header button.collapsed:before { margin-top: -22px; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .card-header button:before { content: ''; width: 24px; height: 24px; margin-top: -6px; position: absolute; top: 50%; right: 0; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } .card-body { font-size: 16px; line-height: 1.5; padding: 0 0 32px; } #comm .modal-wrap, #questM .modal-wrap { padding: 70px 50px 35px; } .modal-comm { float: left; width: 100%; } .modal-comm-tit { float: left; width: 100%; font-size: 20px; font-weight: 500; margin-bottom: 24px; } .modal-comm-rat { float: left; width: 100%; margin-bottom: 24px; } .rating { float: left; margin-bottom: 16px; } .rating input { float: right; opacity: 0; position: absolute; } .rating a, .rating label { margin-right: 8px; float:right; color: #aaa; text-decoration: none; width: 32px; height: 32px; background: url(images/star.png) 0 0 no-repeat; -webkit-transition: color .4s; -moz-transition: color .4s; -o-transition: color .4s; transition: color .4s; } .rating label:hover ~ label, .rating input:focus ~ label, .rating label:hover, .rating a:hover, .rating a:hover ~ a, .rating a:focus, .rating a:focus ~ a { color: orange; cursor: pointer; background-position: right top; } .rating2 { direction: rtl; } .rating2 a { float:none } .modal-comm-rat-text { float: left; width: 100%; font-size: 14px; font-weight: 300; } .one-line textarea { } .one-line-name { font-size: 14px; margin-bottom: 5px; } .leaw-bt-comm a { width: 100%; } .big-modal {} .big-modal .modal-dialog { max-width: 945px; } .big-modal .modal-dialog .modal-content { border: none; border-radius: 0; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .big-modal .modal-wrap { padding: 28px 65px 60px; } .big-modal .close-modal { top: 18px; right: 60px; } .modal-bask-tit { float: left; width: 100%; font-size: 26px; font-weight: 500; margin-bottom: 32px; } .modal-bask-wrap { float: left; width: 100%; } .one-modal-bask-item { float: left; width: 100%; position: relative; } .del-item { position: absolute; left: -60px; top: 0; width: 20px; height: 20px; background-color: #C4C4C4; border-radius: 50%; } .del-item:before, .del-item:after { content: ''; position: absolute; height: 2px; width: 12px; background-color: #fff; top: 50%; left: 50%; margin-top: -1px; margin-left: -6px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .del-item:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-modal-item-table { display: table; width: 100%; } .modal-item-tr { display: table-row; position: relative; } .modal-item-td { display: table-cell; padding: 0px; vertical-align: middle; } .one-modal-item-table > .modal-item-tr > .modal-item-td { border-bottom: 1px solid #C4C4C4; padding: 32px 16px; } .modal-item-td.td-thumb { width: 170px; text-align: right; } .modal-item-td.td-wrap { width: 80%; } .modal-item-td.td-sum { width: 20%; text-align: right; } .modal-item-thumb { float: right; position: relative; } .modal-item-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 97px; height: 97px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border: 0.5px solid #F0F0F2; } .modal-item-in-table { display: table; width: 100%; } .modal-item-name { font-size: 22px; font-weight: 500; margin-bottom: 22px; } .modal-item-info {} .modal-item-price {} .modal-item-price-in { float: left; margin-right: 16px; background: #F0F0F2; border-radius: 5px; display: block; color: #6E6F7A; padding: 5px 8px; font-weight: 600; font-size: 12px; } .modal-item-price-in span { font-size: 20px; } .modal-item-number { float: left; margin-left: 170px; } .modal-item-number .num-in { width: 100px; } .modal-item-number .num-in span { height: 15px; width: 11px; } .modal-item-number .num-in input { height: 40px; width: 40px; } .modal-item-sum { float: right; } .modal-item-sum-name { font-size: 16px; margin-bottom: 33px; } .modal-item-sum-num { font-size: 12px; font-weight: 600; } .modal-item-sum-num span { font-size: 20px; } .one-modal-item-bay-info { padding-top: 32px; float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; justify-content: space-between; } .one-modal-item-back { float: left; margin-bottom: 25px; } .one-modal-item-back a.back-bask { background-color: #F0F0F2; color: #6E6F7A !important; } .one-modal-item-sum { float: right; width: 270px; padding: 25px 16px; border-radius: 5px; background-color: #F0F0F2; } .one-modal-item-top { float: left; width: 100%; margin-bottom: 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: space-between; } .one-modal-item-name { font-size: 20px; } .one-modal-item-val { font-size: 26px; font-weight: 600; } .one-modal-item-bt {} .compl-inside { float: left; width: 100%; padding: 15px 0; } .compl-inside .compl-wrap { float: none; width: auto; margin: 0 -12px; } .compl-inside .compl-wrap .one-compl { padding: 0; margin-bottom: 30px; width: 25%; padding: 0 12px; } .compl-inside .compl-wrap .one-compl-in { opacity: 1; } .blog-single-body .row { margin-bottom: 20px; margin-top: 30px; } .blog-single-body .row img { vertical-align: top; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .sol-car { margin: 0 -12px 20px; margin-top: 30px; } .sol-car-in { display: inline-block; width: 100%; } .one-sol-car { float: left; width: 33.33%; padding: 0 12px; } .acc-solut .card-header button { font-size: 32px; font-weight: 500; padding: 16px 60px 16px 0; } .sol-item { text-align: center; } .sol-item-thumb { margin-bottom: 24px; } .sol-item-thumb span { display: block; vertical-align: top; overflow: hidden; width: 100%; } .sol-item-thumb img { border-radius: 50%; box-shadow: none !important; } .sol-item-tit { font-size: 18px; font-weight: 500; } .compl-sol-items { display: inline-block; width: 100%; } .get-all-items { float: left; width: 100%; margin-bottom: 40px; } .get-all-items .one-check-filter { font-size: 18px; font-weight: 500; line-height: 32px; } .get-all-items .one-check-filter input + i { width: 32px; height: 32px; left: 0; } .get-all-items .one-check-filter input:checked + i:before { width: 18px; height: 10px; border-width: 3px; margin-top: -7px; margin-left: -8px; } .compl-sol-wrap { margin: 0 -12px; } .compl-sol-wrap .one-item { width: 25%; } .sol-sum { float: left; width: 100%; padding-top: 50px; } .sol-sum .one-modal-item-sum { float: left; } .calendar-wrap { float: left; width: 100%; padding-top: 15px; } .calendar-top { float: left; width: 100%; } .calendar-name { float: left; font-size: 18px; font-weight: 500; line-height: 32px; } .calendar-choose { float: left; } .one-choose { float: left; margin-left: 24px; } .dropdown {} .dropdown button { position: relative; border: none; display: inline-block; cursor: pointer; border: 1px solid #6E6F7A; padding: 3px 42px 3px 16px; font-size: 16px; line-height: 1.5; background-color: #fff; } .dropdown button:before { content: ''; width: 10px; height: 10px; position: absolute; top: 50%; margin-top: -8px; right: 17px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .dropdown .dropdown-menu {} .dropdown .dropdown-menu a { padding: 3px 16px; } .calendar-body { float: left; width: 100%; margin-top: 48px; } .calendar-body-in { margin: 0 -12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-month { width: 25%; padding: 0 12px; margin-bottom: 32px; } .one-month-in { text-align: center; padding: 32px 0 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-month-title { font-size: 26px; font-weight: 500; color: #6E6F7A; margin-bottom: 24px; } .one-month-thumb {} .moon-pref { margin-top: 32px; position: relative; float: left; width: 100%; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); padding: 16px 60px 16px 24px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref:before { content: ''; width: 30px; height: 30px; position: absolute; top: 50%; margin-top: -14px; right: 30px; margin-left: 0; border: none; border-left: 3px solid #723e91; border-bottom: 3px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .moon-pref-call { width: 356px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref-call-thumb {} .moon-pref-call-thumb span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 50%; background-color: #fff; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .moon-pref-call-descr { margin-left: 16px; line-height: 1.5; font-size: 18px; font-weight: 500; } .moon-pref-call-name { margin-bottom: 8px; } .moon-pref-call-week { color: #6E6F7A; } .moon-pref-m { width: 400px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .moon-pref-m-thumb {} .moon-pref-descr { margin-left: 24px; line-height: 1.5; font-size: 18px; font-weight: 500; } .moon-pref-tit { margin-bottom: 8px; } .moon-pref-days { color: #6E6F7A; } .moon-zod { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .moon-zod-thumb {} .moon-zod-desr { margin-left: 16px; line-height: 1.5; font-size: 18px; font-weight: 500; color: #333; } .moon-zod-tit { margin-bottom: 8px; } .moon-zod-name {} .more-str { margin-top: 48px; float: left; width: 100%; text-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .more-str span { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #723e91; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .del-item.mob { display: none; } .mobile-title { display: none; } .lk { float: left; width: 100%; margin-bottom: 50px; } .lk-left { width: 273px; float: left; border-right: 1px solid #C4C4C4; } .lk-left ul { list-style: none; padding: 0; margin: 0; } .lk-left li { font-size: 20px; line-height: 1.5; margin-bottom: 14px; } .lk-left li a { color: #000; text-decoration: none; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .lk-left li a:hover { color: #723e91; } .lk-left li.active a { color: #723e91; font-weight: 600; } .lk-tab-wrap { margin-left: 273px; } .one-lk-tab { display: none; float: left; width: 100%; border-left: 1px solid #C4C4C4; margin-left: -1px; padding-left: 30px; } .lk-cont { float: left; } .lk-form {} .one-lk-form { width: 262px; margin-bottom: 16px; } .one-lk-form input {} .one-lk-form select { border: none; background: #FFFFFF; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 5px; height: 32px; width: 100%; padding: 0 34px 0 16px; outline: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url(images/select.png) right 12px center no-repeat; } .soc-lk { margin-bottom: 32px; } .soc-lk-name { font-size: 15px; margin-bottom: 16px; } .soc-lk-list {} .soc-lk-list ul { list-style: none; padding: 0; margin: 0; } .soc-lk-list ul li { display: inline-block; margin-right: 14px; vertical-align: top; } .soc-lk-list ul li a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%; } .soc-lk-list ul li a.s-1 { background-color: #3B5998; } .soc-lk-list ul li a.s-2 { background-color: #DC4E41; } .soc-lk-bt {} .lk-log { float: right; font-size: 20px; } .change-pass { margin-bottom: 24px; } .change-pass a { color: #000; text-decoration: underline ; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .change-pass a:hover { text-decoration: none; color: #723e91; } .log-out {} .log-out a { color: #000; text-decoration: none; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } .log-out a:hover { text-decoration: none; color: #723e91; } .change-modal-pass { padding: 64px 50px 40px; } .change-modal-pass .modal-log-bt { text-align: center; padding-top: 15px; } .change-modal-pass-tit { text-align: center; font-weight: 600; font-size: 26px; float: left; width: 100%; margin-bottom: 24px; } .lk-hist-wrap { float: left; width: 100%; padding-top: 24px; } .one-lk-hist { float: left; width: 100%; position: relative; margin-bottom: 40px; } .one-lk-hist:last-child { margin-bottom: 0; } .one-lk-hist > a { display: block; cursor: pointer; position: absolute; left: 0; top: 0; width: 100%; height: 100%; } .one-lk-hist-in { min-height: 100%; padding: 24px 60px 24px 24px; background-color: #fff; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .one-lk-hist-in:after { content: ''; width: 20px; height: 20px; position: absolute; top: 50%; margin-top: -10px; right: 32px; margin-left: -4px; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .lk-hist-td { width: 27%; } .lk-hist-td.lk-numb { width: 19%; } .lk-hist-thumb { float: left; width: 32px; } .lk-hist-thumb span { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); width: 32px; height: 32px; font-size: 16px; color: #6E6F7A; } .lk-hist-descr { padding-left: 48px; } .lk-hist-name { font-size: 18px; font-weight: 500; margin-bottom: 7px; } .lk-hist-stat { font-size: 18px; font-weight: 500; color: #6E6F7A; } .full-lk-hist { float: left; width: 100%; padding: 24px 96px 24px 24px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .full-lk-hist .one-lk-hist-in { width: 100%; box-shadow: none; padding: 24px 0 24px; border-bottom: 1px solid #C4C4C4; } .full-lk-hist .one-lk-hist-in:after { content: normal; } .back-hist { float: left; width: 100%; padding: 0 0px 16px; } .back-hist a { line-height: 32px; display: block; padding-left: 36px; position: relative; cursor: pointer; font-size: 20px; font-weight: 500; color: #723e91; } .back-hist a:before { content: ''; width: 18px; height: 18px; position: absolute; top: 50%; margin-top: -8px; left: 8px; border: none; border-left: 2px solid #723e91; border-bottom: 2px solid #723e91; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .lk-hist-td { width: 25%; } .one-lk-hist-body { float: left; width: 100%; padding: 24px 0; } .one-lk-hist-body-top { float: left; width: 100%; padding-bottom: 17px; } .one-lk-hist-list { float: left; width: 400px; } .one-lk-hist-list ul { font-size: 16px; line-height: 1.5; list-style: none; padding: 0; margin: 0; } .one-lk-hist-list li { margin-bottom: 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .one-lk-hist-list li span { display: block; width: 50%; padding-right: 15px; } .one-lk-hist-list li span.name { font-weight: 500; } .one-lk-hist-list li span.val {} .one-lk-hist-list-pay { float: right; width: 262px; background: #F0F0F2; border-radius: 5px; padding: 16px; } .one-lk-hist-list-pay-in {} .one-lk-hist-list-pay-in ul { list-style: none; padding: 0 0 16px; margin: 0; line-height: 1.5; font-size: 16px; } .one-lk-hist-list-pay-in li { margin-bottom: 16px; } .one-lk-hist-list-pay-in li span { font-weight: 500; } .one-lk-hist-list-pay-in li i { font-style: normal; color: #3333CC; } .one-lk-bask { float: left; width: 100%; border-top: 1px solid #C4C4C4; } .one-lk-bask-table { display: table; width: 100%; } .one-lk-bask-tr { display: table-row; } .one-lk-bask-td { display: table-cell; padding: 24px 16px; vertical-align: middle; border-bottom: 1px solid #C4C4C4; width: 33.33%; } .one-lk-bask-td.thumb-td { width: 113px; padding-left: 0; } .one-lk-bask-td.descr-td { width: 40%; } .one-lk-bask-td.num-td { width: 30%; } .one-lk-bask-td.sum-td { width: 30%; text-align: right; padding-right: 0; } .one-lk-bask-thumb {} .one-lk-bask-thumb a { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; width: 97px; height: 97px; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; border: 0.5px solid #F0F0F2; } .one-lk-bask-tit { margin-bottom: 20px; } .one-lk-bask-tit a { font-weight: 500; font-size: 22px; text-decoration: none; color: #000; } .one-lk-bask-price {} .one-lk-bask-price-in { float: left; margin-right: 16px; background: #F0F0F2; border-radius: 5px; display: block; color: #6E6F7A; padding: 5px 8px; font-weight: 600; font-size: 12px; } .one-lk-bask-price-in span { font-size: 20px; } .one-lk-bask-num-name { font-size: 16px; margin-bottom: 30px; } .one-lk-bask-num-val { font-size: 12px; font-weight: 600; } .one-lk-bask-num-val span { font-size: 20px; } .one-lk-bask-sum-name { font-size: 16px; margin-bottom: 30px; } .one-lk-bask-sum-val { font-size: 12px; font-weight: 600; } .one-lk-bask-sum-val span { font-size: 20px; } .one-lk-bask-info { float: left; width: 100%; padding: 40px 0; } .one-lk-bask-info-in { float: right; width: 360px; border-radius: 5px; background-color: #F0F0F2; padding: 24px 16px 16px; } .one-lk-bask-info-in ul { list-style: none; padding: 0; margin: 0; } .one-lk-bask-info-in li { font-size: 20px; margin-bottom: 12px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .one-lk-bask-info-in li span {} .one-lk-bask-info-in li i { font-style: normal; font-size: 26px; font-weight: 500; } .one-lk-bask-info-in li.lk-last-sum { font-size: 26px; font-weight: 500; padding-top: 10px; } .repeat-order { float: left; width: 100%; padding-top: 32px; } .repeat-order a { float: right; } .lk-hist-stat.dont { color: #F47920; } .back-to-lk { display: none; } .log-out-mob { display: none; } .mobile-top-lk-hist { display: none; } .sidebar .you-choose { display: none; } .bask-steps { float: left; width: 555px; } .one-step { float: left; width: 100%; margin-bottom: 24px; } .one-step-title { font-size: 26px; font-weight: 500; position: relative; padding-left: 40px; } .one-step-title > i { position: absolute; left: 0; top: 50%; margin-top: -16px; text-align: center; font-style: normal; line-height: 32px; width: 32px; height: 32px; display: block; border-radius: 50%; background-color: #6E6F7A; font-size: 22px; font-weight: bold; color: #fff; } .one-step.active .one-step-title > i { background-color: #723e91; } .one-step-title span {} .one-step-descr { display: none; padding-top: 32px; } .one-step-login {} .one-step-login .nav-tabs { border: none; background: #FFFFFF; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); float: left; width: 100%; margin-bottom: 40px; } .one-step-login .nav-tabs .nav-item { float: left; width: 50%; text-align: center; } .one-step-login .nav-tabs .nav-link { width: 100%; display: block; font-size: 18px; font-weight: 500; color: #000; border: none; border-radius: 0; background-color: #fff; padding: 10px 15px; text-align: center; border-bottom: 2px solid #fff; } .one-step-login .nav-tabs .nav-link { border-right: 1px solid #C4C4C4; } .one-step-login .nav-tabs .nav-item.show .nav-link, .one-step-login .nav-tabs .nav-link.active { border-bottom-color: #723e91; } .one-step-login .modal-log-form { width: 262px; } .next-step { float: left; width: 100%; margin-bottom: 24px; } .one-radio { float: left; width: 100%; margin-bottom: 19px; } .one-radio label { display: block; position: relative; margin: 0; padding: 0; padding-left: 32px; overflow: hidden; line-height: 24px; font-size: 16px; line-height: 1.5; } .one-radio label input { position: absolute; left: -999px; opacity: 0; } .one-radio label i { width: 24px; height: 24px; display: block; position: absolute; left: 0; top: 0px; border: 1px solid #6E6F7A; border-radius: 50%; } .one-radio label input:checked + i { border: 1px solid #723e91; } .one-radio label input:checked + i:before { content: ''; position: absolute; left: -1px; top: -1px; width: 24px; height: 24px; border: 3px solid #723e91; border-radius: 50%; z-index: 9; } .one-radio label span {} .bask-del {} .bask-step-name { font-size: 18px; font-weight: 500; float: left; width: 100%; margin-bottom: 24px; } .bask-del-in { width: 262px; padding-bottom: 10px; } .bask-pay { padding-bottom: 10px; } .bask-user {} .bask-user-form { width: 262px; } .change-step { display: none; font-size: 14px; float: right; color: #3333CC; margin-top: 9px; text-decoration: underline; } .done .change-step { display: block; } .change-step:hover { text-decoration: none; } .basket-inside { float: left; width: 100%; margin: 30px 0 0; } .one-lk-bask-table { margin-bottom: 32px; border-top: 1px solid #C4C4C4; } .last-inside-sum { float: left; width: 100%; margin-bottom: 50px; } .last-inside-sum-in { width: 262px; background: #F0F0F2; border-radius: 5px; padding: 25px 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; align-content: center; -ms-align-items: center; align-items: center; } .inside-name { font-size: 20px; } .inside-val { font-size: 26px; font-weight: 500; } .mobile-step { display: none; } .compare-wrap { float: left; width: 100%; position: relative; } .comp-side { padding: 16px 16px 16px 0; position: absolute; left: 0; top: 0; background-color: #fff; min-height: 440px; } .comp-body { float: left; width: 100%; max-width: 100%; overflow-x: auto; padding-bottom: 30px; margin-bottom: 30px; } .comp-body table { display: table; margin: 0 -16px; } .comp-body table td { vertical-align: top; display: table-cell; padding: 16px 16px 16px 16px; border-right: 1px solid #C4C4C4; } .comp-body table .tr-top td, .comp-body table td:first-child { border-right: none; } .one-comp-pref { width: 254px; } .one-comp-pref-sel select { box-shadow: none; border: 1px solid #6E6F7A; } .one-comp-pref-sel { float: left; width: 100%; margin-bottom: 32px; } .one-comp-check-list { float: left; width: 100%; margin-bottom: 32px; } .one-comp-check-list .one-check-filter label { padding-left: 30px; } .one-comp-check-list .one-check-filter i { left: 0; } .clear-list {} .clear-list a { background-color: #F47920; } .one-comp-pref .one-item { width: 100%; padding: 0; } .name-comp { font-size: 18px; font-weight: 500; } .val-comp { font-size: 16px; text-align: center; } .cat-table-comp { text-align: center; color: #723e91; font-size: 16px; font-weight: 600; } .comp-choose-number { float: left; width: 100%; padding: 24px 0 0; font-weight: 300; font-size: 14px; margin-bottom: -20px; } .compare-tablet { float: left; width: 100%; } .one-comp-cat-tab {} .comp-cat-tab-tit { font-size: 16px; font-weight: 500; float: left; width: 100%; margin-bottom: 16px; } .one-comp-item { float: left; width: 50%; padding-right: 24px; margin-bottom: 16px; } .one-comp-item-in { position: relative; float: left; width: 100%; padding-bottom: 15px; border-bottom: 1px solid #C4C4C4; } .one-comp-item-check { float: left; margin-right: 15px; } .one-comp-item-check label { float: left; width: 24px; height: 24px; position: relative; margin: 0; cursor: pointer; } .one-comp-item-check input { position: absolute; left: -999px; } .one-comp-item-check i { border: 1px solid #6E6F7A; box-sizing: border-box; border-radius: 5px; position: relative; display: block; width: 24px; height: 24px; } .one-comp-item-check input:checked + i { background-color: #723e91; border-color: #723e91; } .one-comp-item-check input:checked + i:before { content: ''; width: 14px; height: 8px; position: absolute; top: 50%; margin-top: -6px; left: 50%; margin-left: -7px; border: none; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-comp-item-thumb { float: left; border: 0.5px solid #F0F0F2; width: 70px; height: 70px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; justify-content: center; } .one-comp-item-thumb img { max-width: 90%; max-height: 65px; } .one-comp-item-descr { padding-left: 126px; font-size: 16px; } .one-comp-item-opt { position: absolute; right: 0; top: 0; } .opt-ico { float: left; width: 24px; height: 24px; position: relative; } .opt-ico span { display: block; height: 3px; width: 100%; margin: 2px 0px; text-align: right; float: left; } .opt-ico span:after { content: ''; display: inline-block; vertical-align: top; width: 3px; height: 3px; border-radius: 50%; background-color: #F47920; } .comp-tabl-bt { float: left; width: 100%; padding: 20px 0 40px; } .opt-drop { opacity: 0; overflow: hidden; visibility: hidden; max-height: 0; position: absolute; z-index: 9; right: 0; top: 100%; min-width: 150px; margin: 0; background: #fff; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); -webkit-transition: opacity 0.3s; -o-transition: opacity 0.3s; transition: opacity 0.3s; } .one-comp-item-opt:hover .opt-drop { opacity: 1; visibility: visible; max-height: 999px; } .opt-drop ul { list-style: none; padding: 8px 0; margin: 0; } .opt-drop ul li { text-align: right; } .opt-drop ul li a { color: #000; text-decoration: none !important; padding: 12px 24px; display: block; cursor: pointer; line-height: 17px; } .comp-mob-tabl .comp-side { position: static; float: left; width: 230px; } .comp-mob-tabl .comp-body { float: none; width: auto; max-width: inherit; overflow-x: visible; padding-left: 230px; } .comp-mob-tabl .one-comp-pref { width: 100%; } .numb-tab-comp { display: block; font-weight: 300; font-size: 16px; color: #6E6F7A; text-align: center; padding: 20px 0 0; } .comp-mob-tabl .comp-body table td { border-right: none; width: 33.33%; padding: 8px 12px; } .comp-mob-tabl table.opt-tabs, .comp-mob-tabl table { margin: 0; width: 100%; } .top-tablet-sel { padding: 0 12px; float: left; width: 100%; } .one-top-sel { width: 136px; } .done-list { width: 100%; margin-bottom: 16px; } .done-list a { width: 100%; } .canc-list {} .canc-list a { width: 100%; } .side-mob-top { display: none; } .show-filt-com-mob { display: none; } /* dmon full квадрат { content: ''; width: 5px; height: 5px; position: absolute; top: 50%; margin-top: -4px; left: 50%; margin-left: -4px; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } */ @media (max-width: 1200px) { header { padding-top: 8px; } .logo img { max-height: 32px; } .header-phone { display: none; } .header-mid { width: auto; margin-left: 30px; margin-top: 3px; } .header-icons span img { width: 24px; } .header-number { font-weight: 500; line-height: 24px; } .header-mess { margin-left: 0; } .header-login { display: none; } .lang { display: none; } .header-search { display: none; } .header-log-tablet { display: block; } .header-btns { margin-top: 10px; } .header-btns-ico svg { width: 24px; height: 24px; } .header-right { width: auto; margin-top: 2px; } .header-btns-in > div { margin-right: 0; margin-left: 24px; } .header-btns-in { margin-right: 0; } .header-tabl { display: block; float: left; width: 100%; margin-top: 5px; background-color: #723e91; height: 48px; } .header-show { width: 32px; padding: 6px 0 0; float: left; cursor: pointer; } .header-show span { display: block; height: 6px; background-color: #fff; margin: 3px 0; float: left; width: 100%; } .header-tabl-search { float: right; position: relative; z-index: 9; padding: 4px 0 0; } .header-tabl-search .search-body { display: block; position: static; } .header-nav { display: none; position: fixed; padding: 24px; z-index: 99; top: 0; width: 100%; background-color: #fff; left: 0; height: 100%; top: 0; margin-top: 0; } .tablet-logo { display: block; float: left; width: 100%; margin-bottom: 24px; } .tablet-logo img { height: 32px; } .close-menu { display: block; position: absolute; cursor: pointer; top: 0; right: 5px; width: 60px; height: 60px; background-color: transparent; } .close-menu:before, .close-menu:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #000; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-menu:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .header-nav > ul { width: 100%; float: left; margin-bottom: 24px; border-top: 1px solid #C4C4C4; } .header-nav > ul > li { width: 100%; border-bottom: 1px solid #C4C4C4; } .header-nav > ul > li > a { width: 100%; padding: 12px 0; font-size: 16px; font-weight: 500; } .header-nav > ul > li > a:before { content: normal; } .header-nav > ul > li > a:after { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; right: 3px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .header-nav > ul > li.no-sub > a:after { content: normal; } .tablet-mess { display: block; float: left; width: 100%; margin-bottom: 24px; } .tablet-mess-lang { display: block; } .tablet-mess-lang > div { display: block; float: left; } .header-nav > ul > li ul { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 101; padding: 24px; } .header-nav > ul > li > ul > li { width: 100%; border-bottom: 1px solid #C4C4C4; } .header-nav > ul > li > ul > li > a { width: 100%; padding: 12px 0; font-size: 16px; font-weight: 500; } .li-top-tablet { display: block; position: relative; height: 55px; text-align: center; font-size: 16px; font-weight: 500; } .li-top-tablet .close-menu { right: -20px; top: -20px; } .back-menu { position: absolute; left: 0; top: 0; width: 50px; } .back-menu { position: absolute; cursor: pointer; z-index: 9; left: -20px; top: -20px; width: 60px; height: 60px; } .back-menu:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; left: 50%; margin-left: -7px; border: none; border-left: 2px solid #6E6F7A; border-bottom: 2px solid #6E6F7A; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .tit-menu {} .about-descr { width: 400px; } .about-text { font-size: 23px; } .about-info { width: 500px; } .about-year { width: 240px; } .about-perc { width: 240px; } .about-first { line-height: 36px; } .slick-arrow { display: none !important; } .moon-descr { font-size: 16px; } .desc { display: none; } .tabl { display: block; } .you-choose-name { display: none; } .title-tablet { margin-top: -5px; display: block; font-size: 20px; font-weight: 500; float: left; width: 100%; margin-bottom: 24px; } .one-item { width: 196px; } .catalog-about-thumb { width: 100%; margin-bottom: 16px; } .catalog-about-thumb img { width: 100%; } .catalog-about-descr { float: left; width: 100%; padding-left: 0; } .catalog-about { margin-bottom: 0px; } .about-page h2 { font-size: 18px; margin-bottom: 16px; } .catalog-about h1 { font-size: 18px; margin-bottom: 20px; } .blog-side { width: 100%; } .blog-menu-tit { display: none; } .blog-menu li { width: auto; margin-right: 24px; } .blog-wrap { padding-right: 0; } .blog-tags { float: left; } .blog-tags-in a { background-color: transparent; border: 1px solid #6E6F7A; } .one-blog-post { width: 300px; } .one-blog-post-thumb img { width: 100%; } .catalog-body.search .one-item { width: 25%; } .one-lk-hist { margin-bottom: 30px; } .lk-hist-name { font-size: 16px; } .lk-hist-stat { font-size: 16px; } .full-lk-hist { padding: 24px; } .one-lk-hist-list { margin-bottom: 20px; } .one-comp-pref { width: 205px; } } /* dmon 1200 */ @media (max-width: 991px) { header { margin-bottom: 24px; } .slick-dots li { margin: 0 4px; } .slick-dots li button { width: 8px; height: 8px; } .slick-dots { bottom: -35px; } section { padding-bottom: 40px; } #home-slider { margin-bottom: 30px; } .section-tit h3 { font-size: 18px; } .section-tit { margin-bottom: 24px; } .home-cats .row { margin: 0 -12px; } .home-cats .row > div { padding: 0 12px; } .one-home-cat { margin-bottom: 24px; } .one-home-cat-tit { font-size: 12px; line-height: 16px; } #cats { padding-bottom: 20px; } #posts { padding-bottom: 50px; } .about-descr { width: 332px; } .about-tit { font-size: 18px; margin-bottom: 32px; padding-top: 5px; padding-bottom: 4px; } .about-text { font-size: 14px; line-height: 18px; padding: 18px 22px 18px 16px; } .about-body { padding: 32px 0; min-height: inherit; } .about-info { width: 348px; } .about-year { width: 162px; height: 64px; } .about-year-num { font-size: 42px; } .about-year-name { margin-left: 8px; font-size: 16px; line-height: 20px; width: 60px; } .about-perc { width: 162px; height: 64px; font-size: 16px; line-height: 20px; padding-left: 40px; -webkit-background-size: auto 90%; background-size: auto 90%; background-position: 30px center; } .hide-i-mob { display: none; } .hide-i-desc { display: inline; } .about-first { font-size: 16px; line-height: 18px; margin-top: 32px; padding: 13px 30px 13px 98px; -webkit-background-size: 52px; background-size: 52px; } .one-compl-tit span { font-size: 12px; line-height: 15px; } .one-compl { padding: 12px; } .one-compl-tit { padding: 0 10px; } .one-compl-in { height: 162px; } .one-compl-thumb { height: 106px; } .one-compl-thumb img { max-height: 100px; max-width: 80%; } .compl-car .slick-list { padding: 15px 0; } .moon-bt { bottom: 32px; } .moon-descr { font-size: 14px; line-height: 1.5; } .moon-year { font-size: 28px; padding-right: 21px; } .moon-year:before { width: 54px; } .company-text { font-size: 14px; line-height: 1.5; padding: 16px 16px 88px; } .company-more { height: 88px; } .company-body { max-height: 210px; } .company-more span { width: 32px; height: 32px; padding: 1px 0; } .company-more span svg { width: 12px; } .footer-menu { width: 200px; } .footer-menu li { width: 100%; border-right: none !important; padding-left: 0 !important; } .footer-tel { margin-bottom: 10px; font-size: 16px; font-weight: 500; } .footer-mess { margin-bottom: 10px; } .footer-mess-num { font-size: 16px; font-weight: 500; } .footer-soc { margin-top: 3px; } .footer-soc li { margin-left: 8px; } .footer-soc li a { width: 24px; height: 24px; } .footer-soc li a.face svg { width: 7px; height: 15px; } .footer-soc li a.you svg { width: 18px; height: 16px; } aside.sidebar { width: 162px; } .one-filter-top { font-size: 12px; padding-left: 0; } .one-filter-top:before { width: 10px; height: 10px; margin-top: -8px; } .filter-menu li a { padding: 2px 0; font-size: 12px; } .filter-menu li i { flex: 0 0 32px; width: 32px; } .one-filter { margin-bottom: 24px; padding: 12px 0; } .one-check-filter { font-size: 12px; margin-bottom: 8px; } .one-check-filter label { padding-left: 28px; padding-right: 0; line-height: 20px; } .one-check-filter i { left: 0; } .one-filter-descr-inp { max-height: 160px; padding-right: 8px; } .one-check-filter span.num-filt { margin-left: 0; } .filter-bt { display: block; } .filter-bt button { width: 100%; margin-bottom: 10px; } .catalog-body { padding-left: 185px; } .you-choose-in a { margin-right: 15px; margin-bottom: 15px; font-size: 12px; } .one-item { width: 50%; margin-bottom: 24px; } .one-item-thumb a { height: 135px; } .one-item-thumb a img { max-height: 115px; } .one-item-in { padding-top: 0; } .one-item-bt a.def-min-bt { font-size: 14px; padding: 0 10px; } .one-item-bt a.item-comp { margin-left: 0; float: right; } .one-item-comm { padding-left: 20px; -webkit-background-size: 16px; background-size: 16px; } .pagi { padding-top: 30px; margin-bottom: 40px; } .pagi ul { display: none; } .show-more { display: block; float: left; width: 100%; text-align: center; } .show-more a { position: relative; display: inline-block; font-size: 16px; color: #6E6F7A; padding-right: 24px; font-weight: 600; line-height: 1.5; } .show-more svg { vertical-align: top; } .show-more span { position: absolute; right: 0; top: 50%; margin-top: -7px; } .blog-tags { width: 170px; } .blog-wrap { padding-left: 186px; } .blog-tags-in a { font-size: 12px; padding: 3px 8px; } .blog-menu li a { font-size: 14px; } .blog-tags-tit { font-size: 16px; margin-bottom: 16px; } .one-blog-post { width: 240px; margin-bottom: 24px; } .post-auth-name { font-size: 16px; } .post-auth-thumb { width: 40px; } .post-auth-thumb img { width: 32px; height: 32px; } .post-date-ico { width: 40px; } .post-date-ico span { width: 32px; height: 32px; } .post-date-ico svg { width: 20px; } .post-date-num { font-size: 16px; } .blog-single-body h3 { font-size: 16px; } .blog-single-body { font-size: 14px; } .title-inside { font-size: 20px; margin-bottom: 24px; } .product-thumb { width: 255px; } .product-descr { padding-left: 280px; } .product-tit h1 { font-size: 20px; } .product-text { font-size: 12px; margin-bottom: 16px; } .product-price { font-size: 12px; height: 40px; padding: 0 8px; line-height: 40px; margin-bottom: 15px; } .product-price span { font-size: 20px; } .product-bay a { height: 40px; line-height: 40px; } .btns-prod { float: right; margin-top: 34px; } .product-bay a { padding: 0 18px; font-size: 22px; } .price-wrap { width: 100%; } .comp-prod a { font-size: 14px; height: 40px; } .comp-prod i svg { width: 24px; } .num-name { float: none; font-size: 14px; } .product-number { width: auto; } .product-bay { margin-bottom: 0; } .comp-prod { margin-bottom: 0; } .num-in span { height: 40px; } .num-in input { height: 40px; } .product-tabs-body .nav-tabs .nav-item { margin-bottom: 0; } .product-tabs-body .nav-tabs .nav-link { font-size: 14px; padding: 15px 18px; } .product-tabs-body .nav-tabs { -webkit-box-shadow: none; box-shadow: none; border-bottom: 1px solid #C4C4C4; } .product-tabs-body { box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); } .product-tabs-body .tab-content { padding: 25px 16px; } .prod-about { font-size: 14px; } .prod-tab-tit { font-size: 16px; } .product-video { padding-top: 20px; } .one-char-name { font-size: 14px; } .sec-bt { font-size: 14px; line-height: 32px; padding: 0 10px; } .leave-comm { margin-bottom: -25px; } .all-comm { margin-top: 0; } .one-comm-thumb img { width: 24px; } .one-comm-name { font-size: 14px; margin-right: 0; } .one-comm-auth { width: 250px; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; } .one-comm-rat { padding-top: 10px; } .post-date-ico span { width: 24px; height: 24px; } .post-date-ico svg { width: 14px; height: 14px; } .one-comm-date { margin-top: 33px; } .one-comm-date .post-date-num { font-size: 14px; } .one-comm-descr { font-size: 14px; } .one-comm-top { margin-bottom: 12px; } .one-comm { padding: 16px 0; } .prod-quest { margin-top: 0; } .card-header button { font-size: 14px; padding: 17px 40px 17px 0; } .card-header button:before { width: 20px; height: 20px; margin-top: -5px; } .card-header button.collapsed:before { margin-top: -17px; } .card-body { font-size: 12px; padding: 0 0 16px; } .big-modal .modal-dialog { max-width: 535px; } .big-modal .modal-wrap { padding: 40px 25px 30px; } .modal-bask-tit { font-size: 20px; } .big-modal .close-modal { top: 0; right: 0; } .modal-item-thumb { width: 70px; height: 70px; } .modal-item-thumb a { width: 70px; height: 70px; } .modal-item-thumb a img { max-width: 64px; max-height: 64px; } .modal-item-thumb .del-item { display: none; } .modal-item-td.td-thumb { width: 86px; } .one-modal-item-table > .modal-item-tr > .modal-item-td { padding: 24px 16px 24px 0; } .modal-item-name { font-size: 14px; } .modal-item-price-in { font-size: 12px; padding: 2px 8px; } .modal-item-price-in span { font-size: 14px; } .modal-item-price { float: left; } .modal-item-number { float: none; margin: 0; padding: 0 50px; text-align: center; } .modal-item-number .num-block { float: none; display: inline-block; } .modal-item-number .num-block span { height: 25px; } .modal-item-number .num-block input { height: 25px; width: 24px; } .modal-item-sum-name { display: none; } .modal-item-td.td-sum { vertical-align: bottom; } .modal-item-sum { margin-bottom: 5px; } .modal-item-in-table { position: relative; } .del-item.mob { display: block; left: auto; right: 0; } .one-modal-item-back a.back-bask { font-size: 16px; height: 40px; line-height: 40px; } .one-modal-item-bt a { padding: 0; width: 100%; } .one-modal-item-name { font-size: 18px; } .one-modal-item-val { font-size: 18px; } .one-modal-item-sum { width: 230px; } .def-big-bt { height: 40px; line-height: 40px; font-size: 20px; } .modal-bask-tit { margin-bottom: 5px; } .one-comm-thumb { margin-right: 8px; } .sol-car { margin-left: 0; margin-right: 0; text-align: center; } .sol-car-in { margin: 10px 0 30px; } .one-sol-car { text-align: center; outline: none !important; } .one-sol-car img { display: inline; } .get-all-items .one-check-filter label { line-height: 24px; } .get-all-items .one-check-filter input + i { width: 24px; height: 24px; } .get-all-items .one-check-filter input:checked + i:before { width: 16px; height: 8px; margin-top: -5px; } .get-all-items { margin-bottom: 20px; } .one-month-thumb img { width: 110px; } .one-month-title { font-size: 20px; margin-bottom: 15px; } .all-moon-pref { margin: 0 -12px; font-size: 0; } .moon-pref-call-thumb { display: none; } .moon-pref-call-week { display: none; } .moon-zod { display: none; } .moon-pref-days { display: none; } .moon-pref:before { content: normal; } .moon-pref { width: calc(25% - 24px); margin: 0 12px 24px; display: block; padding: 16px; justify-content: center; text-align: center; } .moon-pref-call { display: block; width: 100%; } .moon-pref-m { display: block; width: 100%; } .moon-pref-m-thumb { width: 100%; } .moon-pref-descr { margin-left: 0; width: 100%; font-size: 12px; padding-top: 15px; } .moon-pref-call-descr { margin-left: 0; font-size: 16px; } .moon-pref-tit { margin-bottom: 0; } .more-str { margin-top: 15px; } .more-str span { width: 34px; height: 34px; } .more-str span svg { width: 14px; } .lk-log { width: 100%; font-size: 14px; padding-top: 30px; } .lk-left { width: 186px; border-right: none; } .lk-left li { font-size: 14px; } .lk-tab-wrap { margin-left: 186px; } .one-lk-tab { border: none; padding-left: 0; } .lk-page .lk-hist-wrap { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap; flex-wrap: wrap; width: auto; float: none; margin: 0 -24px 0 0; } .all-lk-hist-list .one-lk-hist { width: 33.33%; margin-bottom: 24px !important; padding-right: 24px; } .all-lk-hist-list .one-lk-hist-in { display: block; padding: 16px; text-align: left; } .all-lk-hist-list .lk-hist-td { width: 100% !important; margin-bottom: 18px; } .all-lk-hist-list .lk-hist-td:last-child { margin-bottom: 0; } .lk-hist-thumb { width: 16px; } .lk-hist-thumb span { width: 16px; height: 16px; font-size: 10px; margin-top: 1px; } .lk-hist-thumb span svg { width: 11px; } .lk-hist-descr { padding-left: 24px; } .lk-hist-name { margin-bottom: 3px; font-size: 14px; } .lk-hist-stat { font-size: 12px; } .one-lk-hist-in:after { content: normal; } .lk-hist-wrap { padding-top: 6px; } .full-lk-hist .lk-hist-td { width: 33.33%; } .full-lk-hist .lk-hist-td.lk-numb { display: none; } .one-lk-hist-list { width: 340px; } .full-lk-hist { padding: 16px; } .one-lk-hist-list ul { font-size: 14px; } .one-lk-hist-list li { margin-bottom: 10px; } .one-lk-hist-list li span.val { padding-right: 0; padding-left: 15px; text-align: right; } .one-lk-hist-list-pay-in ul { font-size: 12px; padding: 0; } .one-lk-hist-list-pay-in li { float: left; width: 100%; } .one-lk-hist-list-pay-in li:last-child { margin-bottom: 0; } .one-lk-hist-list-pay-in li span { display: block; width: 50%; float: left; } .one-lk-hist-list-pay-in li i { display: block; float: right; width: 50%; text-align: right; } .one-lk-bask-thumb a { width: 70px; height: 70px; } .one-lk-bask-thumb a img { max-width: 65px; max-height: 65px; } .one-lk-bask-td.thumb-td { width: 85px; } .one-lk-bask-tit a { font-size: 16px; } .one-lk-bask-price-in { padding: 1px 5px; } .one-lk-bask-price-in span { font-size: 14px; } .one-lk-bask-num-name { font-size: 14px; margin-bottom: 20px; } .one-lk-bask-td.num-td { text-align: center; } .one-lk-bask-num-val span { font-size: 14px; } .one-lk-bask-sum-name { font-size: 14px; margin-bottom: 20px; } .one-lk-bask-sum-val span { font-size: 14px; } .one-lk-bask-info-in { width: 330px; } .one-lk-bask-info-in li { font-size: 16px; } .one-lk-bask-info-in li i { font-size: 16px; } .one-lk-bask-info-in li.lk-last-sum { font-size: 20px; margin-bottom: 0; } .one-lk-bask-info-in li.lk-last-sum i { font-size: 20px; } .back-hist { padding-bottom: 0; } .back-hist a { font-size: 14px; padding-left: 20px; } .back-hist a:before { left: 0; border-width: 1px; width: 14px; height: 14px; margin-top: -7px; } .mid-slog { display: table-row; } .hide-tabl { display: none !important; } .comp-side { position: static; float: left; } .comp-body { width: calc(100% - 182px); } .comp-body table td { padding: 16px 8px; } .one-comp-pref { width: 165px; } .comp-body table { margin: 0 0px; } .comp-body .one-item-comm { display: none; } .comp-body .item-comp { display: none; } .comp-body .one-item-info { display: none; } .clear-list a { font-size: 14px; } .clear-list a span { display: none; } .back-to-lk.back-comp { display: block; } .show-filt-com-mob { display: none; } } /* dmon 991 */ @media (max-width: 767px) { .header-top .header-mess { display: none; } .search-body input { width: 210px; height: 32px; } .header-tabl-search { padding-top: 8px; } .slick-dots { bottom: -30px; } #home-slider { margin-bottom: 20px; } .post-auth { width: 100%; margin-bottom: 10px; } .post-detal { width: 100%; } .post-detal a { float: left; } .about-descr { width: 100%; margin-bottom: 24px; } .about-info { width: 100%; } .about-year , .about-perc { width: calc((100vw / 2) - 26px); } .about-tit { margin-bottom: 24px; } .about-first { margin-top: 24px; font-size: 14px; } .one-compl-in { height: 216px; opacity: 1; } .one-compl-thumb { height: 152px; } .one-compl-thumb img { max-height: 140px; max-width: 100%; } .one-compl-tit span { font-size: 18px; padding: 12px 10px; } .home-slide-wrap img { width: 100%; } .one-compl { padding: 12px 15px; } .compl-car .slick-dots { bottom: -10px; } .moon-thumb:before { content: normal; } .moon-thumb { padding: 0; width: 100%; } .moon-thumb img { float: none; } .moon-descr { margin-bottom: 24px; } .company { padding: 0; } .company-bg { display: none; } .company-body { max-height: 564px; font-size: 14px; line-height: 1.5; } .footer-menu { width: 100%; margin-top: 0; margin-bottom: 24px; } .footer-cont { margin-left: 0; width: 100%; } .footer-mess-adr { padding-right: 30%; } .footer-mess-adr br { display: block; } .footer-soc { margin-top: -30px; } .footer-soc li { margin-left: 24px; } .footer-mess { margin-bottom: 24px; } aside.sidebar { float: left; width: 100%; margin-bottom: 24px; } .all-filters { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 99; padding: 60px 16px 90px; max-height: 100%; overflow-y: auto; } .filt-mob-tit { display: block; position: fixed; top: 0; left: 0; width: 100%; background-color: #723e91; color: #fff; font-size: 20px; font-weight: 500; padding: 9px 50px; text-align: center; } .close-filt { display: block; position: absolute; cursor: pointer; top: 0; right: 5px; width: 52px; height: 46px; background-color: transparent; z-index: 9; } .close-filt:before, .close-filt:after { content: ''; position: absolute; height: 1px; width: 20px; background-color: #fff; top: 50%; left: 50%; margin-left: -10px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-filt:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .one-filter { margin-bottom: -1px; } .filter-bt { position: fixed; z-index: 9; left: 0; bottom: 0; width: 100%; background-color: #fff; padding: 30px 16px; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; } .filter-bt button { width: 45%; } .you-choose-in a { padding: 1px 30px 1px 10px; margin-right: 12px; margin-bottom: 8px; } .you-choose-in a i { width: 20px; } .you-choose-in a i:before, .you-choose-in a i:after { width: 16px; margin-left: -8px; } .you-choose { margin-bottom: 5px } .show-filter { display: block; } .show-filter a { color: #000 !important; font-weight: 500; border: 1px solid #6E6F7A; } .catalog-body .you-choose { display: none; } .catalog-body { padding-left: 0; } .one-item { width: 50%; } .title-tablet { margin-bottom: 16px; } .one-item-in { padding: 8px 8px 16px; } .one-item-bt a.item-comp svg { width: 24px; } .catalog-about-descr p { font-size: 14px; } .broad ul { float: left; max-width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; white-space: nowrap; } .broad ul li { overflow: hidden; flex: 1 1 auto; margin-right: 0; padding-right: 17px; } .broad ul li span { overflow: hidden; display: block; width: 100%; text-overflow: ellipsis; } .broad ul li:first-child { flex: 0 0 auto; } .broad ul li:last-child { flex: 0 0 auto; } .blog-menu li { margin-right: 18px; margin-bottom: 18px; } .blog-tags { width: 100%; margin-bottom: 15px; } .blog-tags-tit { display: none; } .blog-wrap { float: left; width: 100%; padding-left: 0; } .one-blog-post { width: 100%; } .post-single-auth { float: left; width: 100%; margin-bottom: 16px; } .post-date { float: left; width: 100%; } .blog-title h1 { font-size: 20px; line-height: 1.5; } .catalog-body.search .one-item { width: 50%; } .sort-mob-bt { display: block; float: left; width: 100%; margin-bottom: 0px; } .sort-mob-bt a { color: #000 !important; font-weight: 500; border-color: #000; } .sort-name { display: none; } .sort-in { display: none; } .blog-title { margin-bottom: 20px; } #login .modal-wrap { padding: 70px 15px 35px; } .sort-mobil { padding: 40px 16px 10px; float: left; width: 100%; } .sort-mobil ul { list-style: none; padding: 0; margin: 0; } .sort-mobil ul li { float: left; width: 100%; border-bottom: 1px solid #C4C4C4; } .sort-mobil ul li:last-child { border-bottom: none; } .sort-mobil ul li a { padding: 14px 0; display: block; cursor: pointer; font-size: 16px; line-height: 20px; font-weight: 500; color: #000; } .sort-mobil ul li a.active { color: #3333CC; } .product-top { padding: 16px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25); margin-bottom: 16px; } .product-thumb { width: 100%; padding-bottom: 24px; border-bottom: 1px solid #C4C4C4; margin-bottom: 24px; } .product-descr { float: left; width: 100%; padding-left: 0; } .mobile-title { display: block; float: left; width: 100%; margin-bottom: 16px; font-size: 20px; font-weight: 500; } .product-tit { display: none; } .product-text { display: none; } .btns-prod { width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .btns-prod > div { width: 49%; } .product-bay { margin-right: 0; } .product-info { position: relative; } .btns-prod { padding-top: 55px; } .product-number { position: absolute; top: 55px; } .product-tabs-body .nav-tabs { display: block; overflow-x: auto; white-space: nowrap; } .product-tabs-body .nav-tabs .nav-item { float: none; display: inline-block; } .product-tabs-body .nav-tabs .nav-link { border-right: none; } .prod-vid { height: 150px; } .play-vid { width: 40px; height: 40px; } .play-vid:after { content: ''; position: absolute; left: 50%; top: 50%; border-left: 14px solid #723e91; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin: -7px 0 0 -4px; } .prod-tab-tit { margin-bottom: 16px; } .leave-comm { width: 100%; margin-bottom: 20px; } .one-comm-auth { width: 100%; } .one-comm-rat { width: 100%; } .one-comm-date { margin-top: -27px; } #comm .modal-wrap, #questM .modal-wrap { padding: 65px 16px 40px; } .card-header button { color: #333; font-size: 14px; line-height: 1.5; } .modal-item-price { display: none; } .modal-item-number { padding: 0; } .modal-item-name { font-size: 12px; } .big-modal .modal-wrap { padding: 40px 16px 20px; } .modal-item-number .num-block { float: left; } .modal-item-td.td-wrap { width: 65%; } .modal-item-td.td-sum { width: 35%; } .modal-item-sum { margin-bottom: -1px; } .one-modal-item-back { display: none; } .one-modal-item-sum { width: 100%; } .one-modal-item-bay-info { padding-top: 24px; } .compl-inside .compl-wrap .one-compl { width: 50%; } .compl-sol-wrap .one-item { width: 50%; } .acc-solut .card-header button { font-size: 20px; } .one-month { width: 50%; padding: 0 6px; margin-bottom: 12px; } .calendar-name { width: 100%; font-size: 16px; } .calendar-choose { width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; } .one-choose { margin-left: 0; width: calc(50% - 4px); } .dropdown button { width: 100%; } .calendar-body-in { margin: 0 -6px; } .all-moon-pref { margin: 0 -8px; } .moon-pref { width: calc(50% - 16px); margin: 0 8px 16px; } .lk-page { position: relative; overflow: hidden; float: left; width: 100%; } .lk-tab-wrap { margin-left: 0; float: left; width: 100%; } .one-lk-tab { width: 100%; } .one-lk-tab.open { } .one-lk-form { width: 100%; } .back-to-lk { float: left; width: 100%; margin-bottom: 24px; } .back-to-lk a { line-height: 22px; display: block; padding-left: 22px; position: relative; cursor: pointer; font-size: 14px; color: #000; } .back-to-lk a:before { content: ''; width: 14px; height: 14px; position: absolute; top: 50%; margin-top: -7px; left: 0; border: none; border-left: 1px solid #000; border-bottom: 1px solid #000; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .lk-left { width: 100%; } .lk-left li { border-bottom: 1px solid #C4C4C4; margin-bottom: 0; } .lk-left li a { display: block; width: 100%; padding: 14px 0; position: relative; } .lk-left li a:after { content: ''; width: 12px; height: 12px; position: absolute; top: 50%; margin-top: -6px; right: 10px; border: none; border-left: 1px solid #723e91; border-bottom: 1px solid #723e91; -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); } .log-out-mob { display: block; float: left; width: 100%; padding-top: 30px; } .log-out-mob a { font-size: 14px; color: #000; text-decoration: underline; } .lk-page .lk-hist-wrap { margin: 0 -12px 0 0; } .all-lk-hist-list .one-lk-hist { width: 50%; padding-right: 12px; margin-bottom: 12px !important; } .lk-single-page .lk-left { display: none; } .back-hist { display: none; } .lk-single-page .back-to-lk { display: block; } .full-lk-hist .one-lk-hist-in { width: 100%; display: block; padding: 0; border: none; } .full-lk-hist .lk-hist-td { width: 100%; padding: 8px 0; float: left; border-bottom: 1px solid #C4C4C4; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; align-content: center; -ms-align-items: center; align-items: center; } .full-lk-hist .lk-hist-thumb { width: 32px; flex: 0 0 32px; } .full-lk-hist .lk-hist-thumb span { width: 32px; height: 32px; } .full-lk-hist .lk-hist-thumb span svg { width: 20px; } .full-lk-hist .lk-hist-descr { padding-left: 8px; width: 100%; } .full-lk-hist .lk-hist-name { float: left; width: 50%; font-size: 16px; margin-bottom: 0; } .full-lk-hist .lk-hist-stat { font-size: 16px; float: right; width: 50%; text-align: right; } .one-lk-hist-list { float: left; width: 100%; } .one-lk-hist-list li span.name { padding-right: 5px; } .one-lk-hist-list li span.val { padding-left: 5px; } .one-lk-bask-info-in { width: 100%; } .one-lk-hist-list-pay-in ul { font-size: 16px; } .one-lk-hist-list-pay-in li i { display: inline; width: auto; float: none; text-align: left; } .one-lk-hist-list-pay-in li span { display: inline; width: auto; float: none; } .one-lk-bask-td.num-td { display: none; } .one-lk-bask-td { padding: 16px 8px; } .one-lk-hist-list-pay { width: 100%; } .repeat-order a { float: left; } .one-lk-bask-info { padding-bottom: 0; padding-top: 24px; } .one-lk-hist-list li { align-content: flex-end; -ms-align-items: flex-end; align-items: flex-end; } .one-lk-bask-sum-name { font-size: 12px; margin-bottom: 24px; } .body-lk-mob .one-lk-form { display: none; } .body-lk-mob .blog-title { display: none; } .body-lk-mob .back-to-lk { display: none; } .body-lk-mob header { display: none; } .body-lk-mob .container { padding: 0; } .body-lk-mob footer { display: none; } .body-lk-mob .lk { margin-bottom: 0; } .mobile-top-lk-hist { display: block; float: left; width: 100%; padding: 8px 0; text-align: center; font-size: 20px; position: relative; z-index: 9; background-color: #723e91; color: #fff; } .top-lk-hist-back { position: absolute; left: 0; top: 0; width: 50px; height: 100%; } .top-lk-hist-back a { display: block; cursor: pointer; position: absolute; left: 0; top: 0; width: 100%; height: 100%; } .top-lk-hist-back a:before { content: ''; width: 10px; height: 10px; position: absolute; top: 50%; margin-top: -5px; left: 50%; margin-left: -4px; border: none; border-left: 1px solid #fff; border-bottom: 1px solid #fff; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .top-lk-hist-tit {} .catalog.lk-single-page .lk-hist-wrap { padding-top: 0; } .repeat-order { padding-top: 24px; } .sidebar .you-choose { display: block; } .bask-steps { width: 100%; padding-bottom: 24px; } .one-step-login .nav-tabs .nav-link { font-size: 12px; padding: 8px 5px; } .one-step-login .modal-log-form { width: 100%; } .one-step-title { display: none; } .basket-inside { display: none; } .mobile-step { float: left; width: 100%; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: space-between; position: relative; } .mobile-step:before, .mobile-step:after { content: ''; position: absolute; top: 50%; width: 50%; height: 1px; } .mobile-step:before { background-color: #723e91; left: 0; } .mobile-step:after { right: 0; background-color: #C4C4C4; } .mobile-step.active:after { background-color: #723e91; } .one-mob-step { position: relative; z-index: 9; } .one-mob-step span { display: inline-block; width: 24px; height: 24px; border-radius: 50%; font-size: 16px; font-weight: bold; text-align: center; line-height: 24px; color: #fff; background-color: #6E6F7A; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); } .one-mob-step.active span { background-color: #723e91; } .one-step { margin-bottom: 0; } .bask-user-form, .bask-del-in { width: 100%; } .comp-mob-tabl .comp-side { display: none; } .comp-mob-tabl .comp-body { padding-left: 0; width: 100%; } .comp-mob-tabl .comp-body table td:nth-child(3) { display: none; } .top-tablet-sel { padding: 0; } .comp-body table { margin: 0 -12px; width: calc(100% + 24px); } .show-filt-com-mob { display: block; float: left; width: calc(50% - 12px); } .top-tablet-sel { float: right; display: block; width: calc(50% - 12px); } .top-tablet-sel .one-top-sel, .top-tablet-sel select { width: 100%; } .show-filt-com-mob a { width: 100%; color: #000 !important; font-weight: 500; border: 1px solid #6E6F7A; } .side-mob-top { display: block; background-color: #723e91; position: absolute; top: 0; color: #fff; left: 0; width: 100%; font-size: 20px; font-weight: 500; padding: 7px 0; text-align: center; } .comp-mob-tabl .comp-side { padding: 70px 16px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 99; background-color: #fff; height: 100%; } .close-mob { display: block; position: absolute; cursor: pointer; top: 0; right: 0; width: 60px; height: 100%; background-color: transparent; } .close-mob:before, .close-mob:after { content: ''; position: absolute; height: 1px; width: 30px; background-color: #fff; top: 50%; left: 50%; margin-left: -15px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .close-mob:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .done-list { width: 46%; float: left; } .canc-list { float: right; width: 46%; } .val-comp { font-size: 14px; } .comp-mob-tabl .comp-body table td { width: 50%; } } /* dmon 767 */ @media (max-width: 480px) { .compl-inside .compl-wrap .one-compl { width: 100%; } } .btn-order { color: #fff; background-color: #723e91; border-color: #723e91; } div.form-inline form { display: inline; } div.form-inline { flex-flow: unset; } .in-num { margin-left: 10px; margin-right: 10px; } .alert { position: absolute; width: 100%; text-align: center; padding: .75rem 10.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: .25rem; } .remember-me { margin-left: 13px; } .form-check-label { margin-left: 5px; } #adminka-footer { margin-top: 40px; } .red { color: red !important; } div.labels { position: absolute; } div.labels span.badge { display: block; } span.badge.badge-success { color: #fff; background-color: #28a745; } span.badge.badge-warning { color: #fff; background-color: #dc3545; } span.badge.badge-danger { color: #212529; background-color: #ffc107; } .price-input-div { padding-left: 10px; } .product-table th, .product-table td { padding: .5rem; } .invalid-feedback { display: unset; }
0.319758
0.082143
.inputWidth { display: block; position: relative; &::before { content: ""; pointer-events: none; box-sizing: border-box; display: block; position: absolute; top: -0.25rem; bottom: -0.25rem; left: -0.25rem; /* stylelint-disable-line property-blacklist */ right: -0.25rem; /* stylelint-disable-line property-blacklist */ border: var(--focusOutlineWidth) var(--focusOutlineStyle) var(--focusOutlineColor); border-radius: calc(var(--borderRadius) * 1.5); transition: all 0.2s; /* properties to transition on :focus */ opacity: 0; transform: scale(0.95); } &.focus::before { opacity: 1; transform: scale(1); } &.focus.invalid::before { border-color: var(--errorOutlineColor); } } .inputContainer { display: flex; margin: 0; box-sizing: border-box; transition: all 0.2s; overflow: hidden; font-family: var(--fontFamily); border: var(--borderWidth) var(--borderStyle) var(--borderColor); border-radius: var(--borderRadius); &.invalid { border-color: var(--errorBorderColor); } &.disabled { cursor: not-allowed; pointer-events: none; opacity: 0.5; } &.medium { font-size: var(--mediumFontSize); height: var(--mediumHeight); } &.large { font-size: var(--largeFontSize); height: var(--largeHeight); } } /* stylelint-disable selector-max-type, no-descending-specificity */ .input, input[type].input { all: initial; text-align: start; direction: inherit; &::-ms-clear { display: none; } -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; appearance: none; line-height: 1; /* reset global line height */ margin: 0; flex: 1; min-width: 0.0625rem; box-sizing: border-box; font-family: inherit; font-size: inherit; font-weight: var(--fontWeight); color: var(--color); background: var(--background); padding: var(--padding); &::placeholder { color: var(--placeholderColor); } } .arrowContainer { flex: 0 0 var(--arrowsContainerWidth); display: flex; flex-direction: column; &.disabled { cursor: not-allowed; pointer-events: none; opacity: 0.5; } } .arrow { cursor: pointer; user-select: none; text-align: center; flex: 1; display: flex; justify-content: center; align-items: center; background-color: var(--arrowsBackgroundColor); border-top: none; border-inline-end: none; border-inline-start: var(--borderWidth) var(--borderStyle) var(--arrowsBorderColor); border-bottom: var(--borderWidth) var(--borderStyle) var(--arrowsBorderColor); color: var(--arrowsColor); &:last-child { border-bottom: none; } &:hover { background-color: var(--arrowsHoverBackgroundColor); } &:active { box-shadow: var(--arrowsActiveBoxShadow); } } /* stylelint-enable selector-max-type, no-descending-specificity */
packages/ui-number-input/src/NumberInput/styles.css
.inputWidth { display: block; position: relative; &::before { content: ""; pointer-events: none; box-sizing: border-box; display: block; position: absolute; top: -0.25rem; bottom: -0.25rem; left: -0.25rem; /* stylelint-disable-line property-blacklist */ right: -0.25rem; /* stylelint-disable-line property-blacklist */ border: var(--focusOutlineWidth) var(--focusOutlineStyle) var(--focusOutlineColor); border-radius: calc(var(--borderRadius) * 1.5); transition: all 0.2s; /* properties to transition on :focus */ opacity: 0; transform: scale(0.95); } &.focus::before { opacity: 1; transform: scale(1); } &.focus.invalid::before { border-color: var(--errorOutlineColor); } } .inputContainer { display: flex; margin: 0; box-sizing: border-box; transition: all 0.2s; overflow: hidden; font-family: var(--fontFamily); border: var(--borderWidth) var(--borderStyle) var(--borderColor); border-radius: var(--borderRadius); &.invalid { border-color: var(--errorBorderColor); } &.disabled { cursor: not-allowed; pointer-events: none; opacity: 0.5; } &.medium { font-size: var(--mediumFontSize); height: var(--mediumHeight); } &.large { font-size: var(--largeFontSize); height: var(--largeHeight); } } /* stylelint-disable selector-max-type, no-descending-specificity */ .input, input[type].input { all: initial; text-align: start; direction: inherit; &::-ms-clear { display: none; } -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; appearance: none; line-height: 1; /* reset global line height */ margin: 0; flex: 1; min-width: 0.0625rem; box-sizing: border-box; font-family: inherit; font-size: inherit; font-weight: var(--fontWeight); color: var(--color); background: var(--background); padding: var(--padding); &::placeholder { color: var(--placeholderColor); } } .arrowContainer { flex: 0 0 var(--arrowsContainerWidth); display: flex; flex-direction: column; &.disabled { cursor: not-allowed; pointer-events: none; opacity: 0.5; } } .arrow { cursor: pointer; user-select: none; text-align: center; flex: 1; display: flex; justify-content: center; align-items: center; background-color: var(--arrowsBackgroundColor); border-top: none; border-inline-end: none; border-inline-start: var(--borderWidth) var(--borderStyle) var(--arrowsBorderColor); border-bottom: var(--borderWidth) var(--borderStyle) var(--arrowsBorderColor); color: var(--arrowsColor); &:last-child { border-bottom: none; } &:hover { background-color: var(--arrowsHoverBackgroundColor); } &:active { box-shadow: var(--arrowsActiveBoxShadow); } } /* stylelint-enable selector-max-type, no-descending-specificity */
0.483161
0.161717
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; padding: 0; margin: 0; } div#main-container { min-height: 100vh; background: white; margin: auto; } div#header-container { width: 100%; height: 70px; } div#header { width: 100vw; height: 70px; background: #24292e; z-index: 1; position: fixed; display:inline-block; } div#header-icon-text-container { padding-left: 20px; padding-top: 8px; display:inline-block; vertical-align: middle; } div#header-icon-container { height:45px; width:45px; display:inline-block; vertical-align: middle; background-color: white; border-radius: 10px; } div#header-text-container { padding-left: 10px; height: 40px; display:inline-block; color: white; font-size: 28px; margin: 5px; vertical-align: middle; padding-top: 8px; } div#header-text-container a{ color: white; } div#header-text-container a:hover{ color: white; } div#layout { width: 100vw; min-height: calc(100vh - 70px); padding-bottom: 0; display: inline-block; } div#layout-menu-container{ } div#layout-menu { padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 25px; height: calc(100% - 97px); min-width: 280px; position: fixed; overflow: scroll; background: #f6f8fa; border-right: 0.8px solid #e1e4e8; } #layout-menu a { padding: 0px; line-height: 2; } div#layout-content-container { width: calc(100vw - 280.8px); min-height: calc(100vh - 70px); margin-left: 280.8px; background: none; text-align: left; display: inline-block; } div#layout-content{ min-height: calc(100vh - 240px); padding-top: 25px; padding-bottom: 25px; padding-left: 35px; padding-right: 35px; min-width: 200px; max-width: 850px; margin: auto; } tt { background: #f3f5f7; color: black; } pre, tt { padding: 5px; padding-top: 2px; padding-bottom: 2px; font-size: 87.5%; font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; border-radius: 5px; line-height: 1.5; overflow: scroll; } a, a > tt { color: #7a0019; text-decoration: none; } a:hover, a:hover > tt{ /*border-bottom: 1.25px #0366d6 dashed;*/ color: #ffcc33; } #layout-menu a.current:link, #layout-menu a.current:visited { color: #5b0013; font-weight: 600; } #layout-menu a:link, #layout-menu a:visited, #layout-menu a:hover { color: #7a0019; text-decoration: none; } #layout-menu a:hover { color: #ffcc33; text-decoration: none; } div.menu-category { margin-top: 16px; padding-top: 8px; padding-bottom: 0.1em; padding-left: 25px; padding-right: 25px; font-size: 18px; line-height: 2; border-top: 0.8px solid #e1e4e8; } div.menu-item { font-size: 16px; padding-left: 25px; padding-right: 25px; } div#toptitle { padding-bottom: 0.2em; margin-bottom: 1.5em; border-bottom: 1px solid #e1e4e8; } /* Reduce space if we begin the page with a title. */ div#toptitle + h2, div#toptitle + h3 { margin-top: -0.7em; } div#subtitle { margin-top: 0.0em; margin-bottom: 0.0em; padding-top: 0em; padding-bottom: 0.1em; } em { font-style: italic; } strong { font-weight: bold; } h1, h2, h3 { padding-bottom: 0.2em; line-height: 1.5; padding-top: 0.5em; border-bottom: 0.7px solid #e1e4e8; font-weight: 400; color: #7a0019; } h1 { font-size: 32px; } h2 { padding-top: 0.8em; margin-bottom: 16px; font-size: 24px; } h2 + h3 { padding-top: 4px; } h3 { font-size: 20px; padding-top: 0px; margin-bottom: 0px; border-bottom: none; } p { font-size: 16px; line-height: 1.5; margin-top: 0.0em; margin-bottom: 0.8em; padding: 0; text-align: justify; } pre { padding: 0; margin: 0; } div#footer-container{ } div#footer { font-size: small; color: #c0c0c0; min-width: 200px; max-width: 850px; margin: auto; padding-top: 25px; padding-bottom: 25px; padding-left: 35px; padding-right: 35px; } div#footer a { color: #80a0b0; } div#footer a:hover { color: #ffde7a; } div#footer-text { line-height: 30px; } ul, ol, dl { margin-top: 0.2em; padding-top: 0; margin-bottom: 0.8em; } dt { margin-top: 0.5em; margin-bottom: 0; } dl { margin-left: 20px; } dd { color: #222222; } dd > *:first-child { margin-top: 0; } ul { list-style-position: outside; list-style-type: square; } p + ul, p + ol { margin-top: -0.5em; } li ul, li ol { margin-top: -0.3em; } ol { list-style-position: outside; list-style-type: decimal; } li p, dd p { margin-bottom: 0.3em; } ol ol { list-style-type: lower-alpha; } ol ol ol { list-style-type: lower-roman; } div.codeblock { } p + div.codeblock { margin-top: 0.6em; } div.codeblock, div.infoblock { margin-right: 0%; margin-top: 1.2em; margin-bottom: 1.3em; } div.blocktitle { color: #0366d6; font-size: 20px; line-height: 2; } div.blockcontent { padding: 10px; } div.infoblock > div.blockcontent { background: #f6f8fa; /* border: 1px solid #f9c513; */ border-radius: 9px; font-style: italic; /* color: #f9c513; */ } div.blockcontent p + ul, div.blockcontent p + ol { margin-top: 0.4em; } div.infoblock p { margin-bottom: 0em; } div.infoblock li p, div.infoblock dd p { margin-bottom: 0.5em; } div.infoblock p + p { margin-top: 0.8em; } div.codeblock > div.blockcontent { border: none; border-radius: 10px; background: #f6f8fa; } span.pycommand { color: #000070; } span.statement { color: #008800; } span.builtin { color: #000088; } span.special { color: #990000; } span.operator { color: #880000; } span.error { color: #aa0000; } span.comment, span.comment > *, span.string, span.string > * { color: #606060; } @media print { #layout-menu { display: none; } } #fwtitle { margin: 2px; } #fwtitle #toptitle { padding-left: 0.5em; margin-bottom: 0.5em; } #layout-content h1:first-child, #layout-content h2:first-child, #layout-content h3:first-child { margin-top: -0.7em; } div#toptitle h1, #layout-content div#toptitle h1 { margin-bottom: 0.0em; padding-bottom: 0.1em; padding-top: 0; margin-top: 0em; border-bottom: none; } img { padding: 0px; margin-right: 20px; margin-bottom: 10px; border-radius: 10px; } table { border-collapse: collapse; } td { padding-left: 0.5em; padding-right: 0.5em; text-align: center; border: 1px solid #d1d5da; line-height: 2; } table + table { margin-top: 1em; } #countries tr.r1 { font-weight: 600; } #countries tr:nth-child(even) {background-color: #f6f8fa;} div#text-img-container { overflow: hidden; padding: 0; margin: 0; margin-bottom: 20px; } div#img-container { float: left; padding-top: 0px; text-align: center; } div#text-container { overflow: hidden; padding-top: 0px; } div#text-container h1{ border-bottom: none; margin: 0px; padding: 0px; padding-top: 15px; } div#text-container h2{ border-bottom: none; margin: 0px; padding: 0px; padding-top: 15px; } div#text-container h3{ padding-top: 0px; margin-top: 0px; } div#text-container h1 + h3{ padding-top: 0px; margin-top: 0px; } div#text-container h3 + h1{ padding: 0px; margin: 0px; } div#text-container h2 + h3{ padding-top: 0px; margin-top: 0px; } div#text-container p{ } div#main{ margin: auto; height:45px; display:inline-block; vertical-align: middle; } .openbtn { font-size: 0; background: none; color: none; border: none; } .openbtn:hover { } div#layout-menu-container .closebtn { font-size: 0; } div#layout-menu-container .closebtn:hover { background: #fdaeb7; color: #cb2431; } /* Width to collapse sidebar */ @media screen and (max-width: 1200px) { div#header-text-container { visibility: hidden; width: 0; } div#layout-menu-container{ width:0; } div#layout-menu { padding-top: 20px; transition: 0.5s; min-width: 0px; width: 0px; box-shadow: 8px 0px 10px 0 rgba(0, 0, 0, 0.3); border: none; /*position: fixed;*/ } div#layout-content-container { transition: margin-left .5s; margin-left:0px; width: 100%; } div#main{ padding-left: calc(100vw - 150px); } .openbtn { font-size: 26px; cursor: pointer; background: none; color: white; padding: 8px 9px 8px 9px; border: none; width:45px; } .openbtn:hover { background-color: #2f363d; } div#layout-menu-container .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; border: none; padding-left: 10px ; padding-right: 10px ; padding-top: 1.1px ; padding-bottom: 5.3px; line-height: 1; margin-right: -25px; background: #ffdce0; color: #959da5; } div#layout-menu-container .closebtn:hover { background: #fdaeb7; color: #cb2431; } } /* Width to center image */ @media screen and (max-width: 700px) { img{ margin-right: 0px; } p{ text-align: left; } div#layout-content{ padding-left: 20px; padding-right: 20px; padding-top: 16px; padding-bottom: 15px; min-height: calc(100vh - 190px); } div#footer-container{ } div#footer { padding-left: 20px; padding-right: 20px; padding-top: 16px; padding-bottom: 15px; } div#img-container { float: none; padding-top: 0px; text-align: center; } div#text-container h1{ text-align: center; } div#text-container h2{ text-align: center; } div#text-container h3{ text-align: center; } } /* members */ div#member-container{ text-align: center; } div#member{ display: inline-block; vertical-align: top; width: 150px; text-align: center; margin-bottom: 15px; margin-right: 10px; } div#member img{ width: 150px; margin: 0px; padding: 0px; } div#member p{ text-align: center; margin: 0px; padding: 0px; } /* Group Outings */ .row { display: -ms-flexbox; /* IE10 */ display: flex; -ms-flex-wrap: wrap; /* IE10 */ flex-wrap: wrap; padding: 0 4px; } .column { -ms-flex: 23%; /* IE10 */ flex: 23%; max-width: 23%; padding: 0 4px; } .column img { margin-top: 8px; vertical-align: middle; width: 100%; } @media screen and (max-width: 800px) { .column { -ms-flex: 50%; flex: 50%; max-width: 50%; } } @media screen and (max-width: 600px) { .column { -ms-flex: 100%; flex: 100%; max-width: 100%; } }
docs/main.css
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; padding: 0; margin: 0; } div#main-container { min-height: 100vh; background: white; margin: auto; } div#header-container { width: 100%; height: 70px; } div#header { width: 100vw; height: 70px; background: #24292e; z-index: 1; position: fixed; display:inline-block; } div#header-icon-text-container { padding-left: 20px; padding-top: 8px; display:inline-block; vertical-align: middle; } div#header-icon-container { height:45px; width:45px; display:inline-block; vertical-align: middle; background-color: white; border-radius: 10px; } div#header-text-container { padding-left: 10px; height: 40px; display:inline-block; color: white; font-size: 28px; margin: 5px; vertical-align: middle; padding-top: 8px; } div#header-text-container a{ color: white; } div#header-text-container a:hover{ color: white; } div#layout { width: 100vw; min-height: calc(100vh - 70px); padding-bottom: 0; display: inline-block; } div#layout-menu-container{ } div#layout-menu { padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 25px; height: calc(100% - 97px); min-width: 280px; position: fixed; overflow: scroll; background: #f6f8fa; border-right: 0.8px solid #e1e4e8; } #layout-menu a { padding: 0px; line-height: 2; } div#layout-content-container { width: calc(100vw - 280.8px); min-height: calc(100vh - 70px); margin-left: 280.8px; background: none; text-align: left; display: inline-block; } div#layout-content{ min-height: calc(100vh - 240px); padding-top: 25px; padding-bottom: 25px; padding-left: 35px; padding-right: 35px; min-width: 200px; max-width: 850px; margin: auto; } tt { background: #f3f5f7; color: black; } pre, tt { padding: 5px; padding-top: 2px; padding-bottom: 2px; font-size: 87.5%; font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; border-radius: 5px; line-height: 1.5; overflow: scroll; } a, a > tt { color: #7a0019; text-decoration: none; } a:hover, a:hover > tt{ /*border-bottom: 1.25px #0366d6 dashed;*/ color: #ffcc33; } #layout-menu a.current:link, #layout-menu a.current:visited { color: #5b0013; font-weight: 600; } #layout-menu a:link, #layout-menu a:visited, #layout-menu a:hover { color: #7a0019; text-decoration: none; } #layout-menu a:hover { color: #ffcc33; text-decoration: none; } div.menu-category { margin-top: 16px; padding-top: 8px; padding-bottom: 0.1em; padding-left: 25px; padding-right: 25px; font-size: 18px; line-height: 2; border-top: 0.8px solid #e1e4e8; } div.menu-item { font-size: 16px; padding-left: 25px; padding-right: 25px; } div#toptitle { padding-bottom: 0.2em; margin-bottom: 1.5em; border-bottom: 1px solid #e1e4e8; } /* Reduce space if we begin the page with a title. */ div#toptitle + h2, div#toptitle + h3 { margin-top: -0.7em; } div#subtitle { margin-top: 0.0em; margin-bottom: 0.0em; padding-top: 0em; padding-bottom: 0.1em; } em { font-style: italic; } strong { font-weight: bold; } h1, h2, h3 { padding-bottom: 0.2em; line-height: 1.5; padding-top: 0.5em; border-bottom: 0.7px solid #e1e4e8; font-weight: 400; color: #7a0019; } h1 { font-size: 32px; } h2 { padding-top: 0.8em; margin-bottom: 16px; font-size: 24px; } h2 + h3 { padding-top: 4px; } h3 { font-size: 20px; padding-top: 0px; margin-bottom: 0px; border-bottom: none; } p { font-size: 16px; line-height: 1.5; margin-top: 0.0em; margin-bottom: 0.8em; padding: 0; text-align: justify; } pre { padding: 0; margin: 0; } div#footer-container{ } div#footer { font-size: small; color: #c0c0c0; min-width: 200px; max-width: 850px; margin: auto; padding-top: 25px; padding-bottom: 25px; padding-left: 35px; padding-right: 35px; } div#footer a { color: #80a0b0; } div#footer a:hover { color: #ffde7a; } div#footer-text { line-height: 30px; } ul, ol, dl { margin-top: 0.2em; padding-top: 0; margin-bottom: 0.8em; } dt { margin-top: 0.5em; margin-bottom: 0; } dl { margin-left: 20px; } dd { color: #222222; } dd > *:first-child { margin-top: 0; } ul { list-style-position: outside; list-style-type: square; } p + ul, p + ol { margin-top: -0.5em; } li ul, li ol { margin-top: -0.3em; } ol { list-style-position: outside; list-style-type: decimal; } li p, dd p { margin-bottom: 0.3em; } ol ol { list-style-type: lower-alpha; } ol ol ol { list-style-type: lower-roman; } div.codeblock { } p + div.codeblock { margin-top: 0.6em; } div.codeblock, div.infoblock { margin-right: 0%; margin-top: 1.2em; margin-bottom: 1.3em; } div.blocktitle { color: #0366d6; font-size: 20px; line-height: 2; } div.blockcontent { padding: 10px; } div.infoblock > div.blockcontent { background: #f6f8fa; /* border: 1px solid #f9c513; */ border-radius: 9px; font-style: italic; /* color: #f9c513; */ } div.blockcontent p + ul, div.blockcontent p + ol { margin-top: 0.4em; } div.infoblock p { margin-bottom: 0em; } div.infoblock li p, div.infoblock dd p { margin-bottom: 0.5em; } div.infoblock p + p { margin-top: 0.8em; } div.codeblock > div.blockcontent { border: none; border-radius: 10px; background: #f6f8fa; } span.pycommand { color: #000070; } span.statement { color: #008800; } span.builtin { color: #000088; } span.special { color: #990000; } span.operator { color: #880000; } span.error { color: #aa0000; } span.comment, span.comment > *, span.string, span.string > * { color: #606060; } @media print { #layout-menu { display: none; } } #fwtitle { margin: 2px; } #fwtitle #toptitle { padding-left: 0.5em; margin-bottom: 0.5em; } #layout-content h1:first-child, #layout-content h2:first-child, #layout-content h3:first-child { margin-top: -0.7em; } div#toptitle h1, #layout-content div#toptitle h1 { margin-bottom: 0.0em; padding-bottom: 0.1em; padding-top: 0; margin-top: 0em; border-bottom: none; } img { padding: 0px; margin-right: 20px; margin-bottom: 10px; border-radius: 10px; } table { border-collapse: collapse; } td { padding-left: 0.5em; padding-right: 0.5em; text-align: center; border: 1px solid #d1d5da; line-height: 2; } table + table { margin-top: 1em; } #countries tr.r1 { font-weight: 600; } #countries tr:nth-child(even) {background-color: #f6f8fa;} div#text-img-container { overflow: hidden; padding: 0; margin: 0; margin-bottom: 20px; } div#img-container { float: left; padding-top: 0px; text-align: center; } div#text-container { overflow: hidden; padding-top: 0px; } div#text-container h1{ border-bottom: none; margin: 0px; padding: 0px; padding-top: 15px; } div#text-container h2{ border-bottom: none; margin: 0px; padding: 0px; padding-top: 15px; } div#text-container h3{ padding-top: 0px; margin-top: 0px; } div#text-container h1 + h3{ padding-top: 0px; margin-top: 0px; } div#text-container h3 + h1{ padding: 0px; margin: 0px; } div#text-container h2 + h3{ padding-top: 0px; margin-top: 0px; } div#text-container p{ } div#main{ margin: auto; height:45px; display:inline-block; vertical-align: middle; } .openbtn { font-size: 0; background: none; color: none; border: none; } .openbtn:hover { } div#layout-menu-container .closebtn { font-size: 0; } div#layout-menu-container .closebtn:hover { background: #fdaeb7; color: #cb2431; } /* Width to collapse sidebar */ @media screen and (max-width: 1200px) { div#header-text-container { visibility: hidden; width: 0; } div#layout-menu-container{ width:0; } div#layout-menu { padding-top: 20px; transition: 0.5s; min-width: 0px; width: 0px; box-shadow: 8px 0px 10px 0 rgba(0, 0, 0, 0.3); border: none; /*position: fixed;*/ } div#layout-content-container { transition: margin-left .5s; margin-left:0px; width: 100%; } div#main{ padding-left: calc(100vw - 150px); } .openbtn { font-size: 26px; cursor: pointer; background: none; color: white; padding: 8px 9px 8px 9px; border: none; width:45px; } .openbtn:hover { background-color: #2f363d; } div#layout-menu-container .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; border: none; padding-left: 10px ; padding-right: 10px ; padding-top: 1.1px ; padding-bottom: 5.3px; line-height: 1; margin-right: -25px; background: #ffdce0; color: #959da5; } div#layout-menu-container .closebtn:hover { background: #fdaeb7; color: #cb2431; } } /* Width to center image */ @media screen and (max-width: 700px) { img{ margin-right: 0px; } p{ text-align: left; } div#layout-content{ padding-left: 20px; padding-right: 20px; padding-top: 16px; padding-bottom: 15px; min-height: calc(100vh - 190px); } div#footer-container{ } div#footer { padding-left: 20px; padding-right: 20px; padding-top: 16px; padding-bottom: 15px; } div#img-container { float: none; padding-top: 0px; text-align: center; } div#text-container h1{ text-align: center; } div#text-container h2{ text-align: center; } div#text-container h3{ text-align: center; } } /* members */ div#member-container{ text-align: center; } div#member{ display: inline-block; vertical-align: top; width: 150px; text-align: center; margin-bottom: 15px; margin-right: 10px; } div#member img{ width: 150px; margin: 0px; padding: 0px; } div#member p{ text-align: center; margin: 0px; padding: 0px; } /* Group Outings */ .row { display: -ms-flexbox; /* IE10 */ display: flex; -ms-flex-wrap: wrap; /* IE10 */ flex-wrap: wrap; padding: 0 4px; } .column { -ms-flex: 23%; /* IE10 */ flex: 23%; max-width: 23%; padding: 0 4px; } .column img { margin-top: 8px; vertical-align: middle; width: 100%; } @media screen and (max-width: 800px) { .column { -ms-flex: 50%; flex: 50%; max-width: 50%; } } @media screen and (max-width: 600px) { .column { -ms-flex: 100%; flex: 100%; max-width: 100%; } }
0.296043
0.057812
* { /* border-width: 3px; border-style: solid;*/ font-family: "Cambria"; /* font-size: 15px; */ } .container-fluid{ padding: 0px; background-color: #dcdde1; height: 100%; /* border: 2px solid black; */ } .top-text { color: white; margin-left: 15px; margin-top: 15px; margin-bottom: 0px; font-weight: bold; font-size: 18px; } hr { margin-top: 0px; position: relative; top: -10px; } .left-bar{ float: left; /*border-width: 3px; border-style: solid;*/ width: 180pt; position: fixed; left: 0px; height: 700px; background-color: #041A11; } .left-bar-isi{ margin-top: 70px; /* padding-top: 70px; */ padding-left: 40px; color: #ffffff; } .left-bar-admin{ margin-top: 0px; margin-left: 0px; /* position: absolute; */ /* left: 0px; */ /* border: 1px solid white; */ } .left-bar-admin img { margin-top: 10px; margin-left: 0px; height: 50px; width: 50px; float: left; } .clear { clear: both; } a{ text-decoration: none; color: #ffffff; } .action { text-decoration: none; color: black; } .button { border: none; color: white; padding: 5px 10px 5px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .button1 { font-size: 16px; background-color: #041a11; border-radius: 5px; } .button2 { background-color: #1be666; border-radius: 5px; } .button3 { background-color: #e61b1b; border-radius: 0px; } .button4 { float: right; padding: 5px 20px; background-color: #109240; border-radius: 5px; } input[type=text] { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .demo-table input[type=text], select { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; width: 350px; } .center-pencarian{ text-align: center; } .pencarian { width: 60%; } .styled-select { width: 190px; height: 43px; } .form{ width: 100%; border: solid; } .dropdown{ position: relative; display: inline-block; } .dropbtn { background-color: #e6e6e6; color: rgb(28, 116, 167); padding: 5px; font-size: 14px; border: none; } .dropdown-btn:hover { color: #f1f1f1; } .active { background-color: rgb(19, 85, 228); color: rgb(251, 252, 250); } .dropdown-child { display: none; background-color: #e6e6e6; padding-left: 8px; } .fa-caret-down { float: right; padding-right: 8px; color: #ffffff; } .header{ background-color: #ffffff; } .center{ /*border-width: 3px; border-style: solid;*/ margin-left: 139pt; position: fixed; width: 1200px; } .home{ border-width: 1px; /* border-style: solid; */ background-color: #ffffff; float: left; width: 564px; margin: 70px 0 0 220px; box-shadow: 5px 5px 15px; } .home-mangkir{ /* border-width: 1px; */ /* border-style: solid; */ background-color: #ffffff; float: left; width: 700px; margin: 20px 0 10px 220px; box-shadow: 5px 5px 15px; } .left{ float: left; } .right{ float: right; } .img{ margin: 10px 10px 10px 10px; padding: 5px 6px 1px 10px; border-width: 1px; border-radius: 5px; border-style: solid; width: 120px; align-items: center; text-align: center; float: left; } .img2{ margin: 10px 10px 10px 10px; padding: 10px 12px 10px 20px; border-width: 1px; border-radius: 5px; border-style: solid; width: 260px; align-items: center; text-align: center; float: left; } .img img { width: 50px; } .home-judul{ height: 40px; font-size: 20px; color: #ffffff; background-color: #104e1a; padding: 5px 0 0 12px; } .home-isi{ padding: 5px 5px 15px 5px; } .informasi{ border-width: 1px; /* border-style: solid; */ background-color: #ffffff; float: right; width: 500px; margin: 70px 0 0 20px; box-shadow: 5px 5px 15px; } .informasi-judul{ height: 40px; font-size: 20px; background-color: #104e1a; } .header{ padding-left: 0px; padding-top: 10px; padding-bottom: 10px; height: 52px; box-shadow: 5px 5px 15px; } .header h1 { font-size: 20px; position: relative; top: -14px; left: 7px; } .center-bar{ margin: 90px 20px 30px 210px; padding: 5px 8px 0 8px; height: auto; background-color: #ffffff; border-radius: 10px; } .border{ padding-top: 1px; border-bottom-style: solid; border-width: 2px; color: #ededed; /* margin: 20px 0 30px 0; */ } .form-pendataan{ font-size: 15px; } input[type="text-form"], input[type="date"] select { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; width: 60%; } /* table { border-collapse: collapse; width: 100%; } th, td { text-align: left; padding: 8px; } */ /*tr:nth-child(even){background-color: #f2f2f2}*/ /* th { text-align: center; background-color: #4CAF50; color: white; } */ .data-list{ font-family: fantasy; margin-left: 350px; align-self: center; text-align: center; } .list-judul{ text-align: center; } /* .table-list{ border-collapse: collapse; border-collapse: collapse; background-color: #black; } .table-list, tr{ height: 35px; width: 300px; margin-right: 90px; background-color: inherit; } */ .left-bar-admin{ margin-left: 35px; } /* body { font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui"; } */
assets/css/style.css
* { /* border-width: 3px; border-style: solid;*/ font-family: "Cambria"; /* font-size: 15px; */ } .container-fluid{ padding: 0px; background-color: #dcdde1; height: 100%; /* border: 2px solid black; */ } .top-text { color: white; margin-left: 15px; margin-top: 15px; margin-bottom: 0px; font-weight: bold; font-size: 18px; } hr { margin-top: 0px; position: relative; top: -10px; } .left-bar{ float: left; /*border-width: 3px; border-style: solid;*/ width: 180pt; position: fixed; left: 0px; height: 700px; background-color: #041A11; } .left-bar-isi{ margin-top: 70px; /* padding-top: 70px; */ padding-left: 40px; color: #ffffff; } .left-bar-admin{ margin-top: 0px; margin-left: 0px; /* position: absolute; */ /* left: 0px; */ /* border: 1px solid white; */ } .left-bar-admin img { margin-top: 10px; margin-left: 0px; height: 50px; width: 50px; float: left; } .clear { clear: both; } a{ text-decoration: none; color: #ffffff; } .action { text-decoration: none; color: black; } .button { border: none; color: white; padding: 5px 10px 5px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .button1 { font-size: 16px; background-color: #041a11; border-radius: 5px; } .button2 { background-color: #1be666; border-radius: 5px; } .button3 { background-color: #e61b1b; border-radius: 0px; } .button4 { float: right; padding: 5px 20px; background-color: #109240; border-radius: 5px; } input[type=text] { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .demo-table input[type=text], select { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; width: 350px; } .center-pencarian{ text-align: center; } .pencarian { width: 60%; } .styled-select { width: 190px; height: 43px; } .form{ width: 100%; border: solid; } .dropdown{ position: relative; display: inline-block; } .dropbtn { background-color: #e6e6e6; color: rgb(28, 116, 167); padding: 5px; font-size: 14px; border: none; } .dropdown-btn:hover { color: #f1f1f1; } .active { background-color: rgb(19, 85, 228); color: rgb(251, 252, 250); } .dropdown-child { display: none; background-color: #e6e6e6; padding-left: 8px; } .fa-caret-down { float: right; padding-right: 8px; color: #ffffff; } .header{ background-color: #ffffff; } .center{ /*border-width: 3px; border-style: solid;*/ margin-left: 139pt; position: fixed; width: 1200px; } .home{ border-width: 1px; /* border-style: solid; */ background-color: #ffffff; float: left; width: 564px; margin: 70px 0 0 220px; box-shadow: 5px 5px 15px; } .home-mangkir{ /* border-width: 1px; */ /* border-style: solid; */ background-color: #ffffff; float: left; width: 700px; margin: 20px 0 10px 220px; box-shadow: 5px 5px 15px; } .left{ float: left; } .right{ float: right; } .img{ margin: 10px 10px 10px 10px; padding: 5px 6px 1px 10px; border-width: 1px; border-radius: 5px; border-style: solid; width: 120px; align-items: center; text-align: center; float: left; } .img2{ margin: 10px 10px 10px 10px; padding: 10px 12px 10px 20px; border-width: 1px; border-radius: 5px; border-style: solid; width: 260px; align-items: center; text-align: center; float: left; } .img img { width: 50px; } .home-judul{ height: 40px; font-size: 20px; color: #ffffff; background-color: #104e1a; padding: 5px 0 0 12px; } .home-isi{ padding: 5px 5px 15px 5px; } .informasi{ border-width: 1px; /* border-style: solid; */ background-color: #ffffff; float: right; width: 500px; margin: 70px 0 0 20px; box-shadow: 5px 5px 15px; } .informasi-judul{ height: 40px; font-size: 20px; background-color: #104e1a; } .header{ padding-left: 0px; padding-top: 10px; padding-bottom: 10px; height: 52px; box-shadow: 5px 5px 15px; } .header h1 { font-size: 20px; position: relative; top: -14px; left: 7px; } .center-bar{ margin: 90px 20px 30px 210px; padding: 5px 8px 0 8px; height: auto; background-color: #ffffff; border-radius: 10px; } .border{ padding-top: 1px; border-bottom-style: solid; border-width: 2px; color: #ededed; /* margin: 20px 0 30px 0; */ } .form-pendataan{ font-size: 15px; } input[type="text-form"], input[type="date"] select { padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; width: 60%; } /* table { border-collapse: collapse; width: 100%; } th, td { text-align: left; padding: 8px; } */ /*tr:nth-child(even){background-color: #f2f2f2}*/ /* th { text-align: center; background-color: #4CAF50; color: white; } */ .data-list{ font-family: fantasy; margin-left: 350px; align-self: center; text-align: center; } .list-judul{ text-align: center; } /* .table-list{ border-collapse: collapse; border-collapse: collapse; background-color: #black; } .table-list, tr{ height: 35px; width: 300px; margin-right: 90px; background-color: inherit; } */ .left-bar-admin{ margin-left: 35px; } /* body { font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui"; } */
0.31237
0.07538
.header { position: relative; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: center; justify-content: center; min-height: 350px; padding-top: 4rem; padding-bottom: 4rem; color: #fff; background-color: #777; } .customcolor{ color: white; } a{ text-decoration: none !important; } .dropcolor{ color: #000000; } .button{ color:#fff; } *, ::after, ::before { box-sizing: box; } h1 { font-size: 3.5rem; font-weight: 300; line-height: 1.1; } .header h1 a { color: #fff; text-decoration: none; } /*********footer*******************/ .kilimanjaro_area { position: relative; z-index: 1; } .foo_top_header_one { background-color: #15151e; color: #fff; } .section_padding_100_70 { padding-top: 100px; padding-bottom: 70px; } .foo_top_header_one { color: #fff; }.kilimanjaro_part { margin-bottom: 30px; } .foo_top_header_one .kilimanjaro_part > h5 { color: #fff; } .kilimanjaro_part h4, .kilimanjaro_part h5 { margin-bottom: 30px; } .kilimanjaro_single_contact_info > p, .kilimanjaro_single_contact_info > h5, .kilimanjaro_blog_area > a, .foo_top_header_one .kilimanjaro_part > p { color: rgba(255,255,255,.5); } p, ul li, ol li { font-weight: 300; } ul { margin: 0; padding: 0; } .kilimanjaro_bottom_header_one { background-color: #111; } .section_padding_50 { padding: 50px 0; } .kilimanjaro_bottom_header_one p { color: #fff; margin: 0; } p, ul li, ol li { font-weight: 300; } .kilimanjaro_bottom_header_one a { color: inherit; font-size: 14px; } a, h1, h2, h3, h4, h5, h6 { font-weight: 400; } .m-top-15 { margin-top: 15px; } ul { margin: 0; padding: 0; } .kilimanjaro_widget > li { display: inline-block; } p, ul li, ol li { font-weight: 300; } ol li, ul li { list-style: outside none none; } .kilimanjaro_widget a { border: 1px solid #333; border-radius: 6px; color: #888; display: inline-block; font-size: 13px; margin-bottom: 4px; padding: 7px 12px; } ul { margin: 0; padding: 0; } .kilimanjaro_links a { border-bottom: 1px solid #333; color: rgba(255,255,255,.5); display: block; font-size: 13px; margin-bottom: 5px; padding-bottom: 10px; } .kilimanjaro_links a { color: rgba(255,255,255,.5); font-size: 13px; } top-15 { margin-top: 15px; } .foo_top_header_one .kilimanjaro_part > h5 { color: #fff; } .kilimanjaro_part h4, .kilimanjaro_part h5 { margin-bottom: 30px; } .kilimanjaro_social_links > li { display: inline-block; } p, ul li, ol li { font-weight: 300; } .kilimanjaro_social_links a { border: 1px solid #333; border-radius: 6px; color: #888; display: inline-block; font-size: 13px; margin-bottom: 3px; padding: 7px 12px; } .kilimanjaro_blog_area .kilimanjaro_date { color: #27ae60; font-size: 13px; margin-bottom: 5px; } .kilimanjaro_blog_area > p { color: rgba(255,255,255,.5); line-height: 1.3; margin-bottom: 0; } .kilimanjaro_works > a { display: inline-block; float: left; position: relative; width: 33.33333333%; z-index: 1; } .kilimanjaro_thumb { left: 0; position: absolute; top: 0; width: 75px; } .kilimanjaro_links a i { padding-right: 10px; } /* :: 18.0 Footer Area CSS */ .footer_area { position: relative; z-index: 1; } .footer_bottom p > i, .footer_bottom p > a:hover { color: #27ae60; } .social_links_area { border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding: 50px 0 30px 0; text-align: center; position: relative; z-index: 1; } .social_links_area > a:hover { color: #27ae60; } .inline-style .social_links_area > a:hover { background-color: transparent; color: #27ae60; border: 0px solid transparent; } .single_feature:hover .feature_text h4 { color: #27ae60; } .kilimanjaro_blog_area { border-bottom: 1px solid #333; margin-bottom: 15px; padding: 0 0 15px 90px; position: relative; z-index: 1; } .kilimanjaro_links a { border-bottom: 1px solid #333; color: rgba(255,255,255,.5); display: block; font-size: 13px; margin-bottom: 5px; padding-bottom: 10px; }
css/gaya.css
.header { position: relative; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: center; justify-content: center; min-height: 350px; padding-top: 4rem; padding-bottom: 4rem; color: #fff; background-color: #777; } .customcolor{ color: white; } a{ text-decoration: none !important; } .dropcolor{ color: #000000; } .button{ color:#fff; } *, ::after, ::before { box-sizing: box; } h1 { font-size: 3.5rem; font-weight: 300; line-height: 1.1; } .header h1 a { color: #fff; text-decoration: none; } /*********footer*******************/ .kilimanjaro_area { position: relative; z-index: 1; } .foo_top_header_one { background-color: #15151e; color: #fff; } .section_padding_100_70 { padding-top: 100px; padding-bottom: 70px; } .foo_top_header_one { color: #fff; }.kilimanjaro_part { margin-bottom: 30px; } .foo_top_header_one .kilimanjaro_part > h5 { color: #fff; } .kilimanjaro_part h4, .kilimanjaro_part h5 { margin-bottom: 30px; } .kilimanjaro_single_contact_info > p, .kilimanjaro_single_contact_info > h5, .kilimanjaro_blog_area > a, .foo_top_header_one .kilimanjaro_part > p { color: rgba(255,255,255,.5); } p, ul li, ol li { font-weight: 300; } ul { margin: 0; padding: 0; } .kilimanjaro_bottom_header_one { background-color: #111; } .section_padding_50 { padding: 50px 0; } .kilimanjaro_bottom_header_one p { color: #fff; margin: 0; } p, ul li, ol li { font-weight: 300; } .kilimanjaro_bottom_header_one a { color: inherit; font-size: 14px; } a, h1, h2, h3, h4, h5, h6 { font-weight: 400; } .m-top-15 { margin-top: 15px; } ul { margin: 0; padding: 0; } .kilimanjaro_widget > li { display: inline-block; } p, ul li, ol li { font-weight: 300; } ol li, ul li { list-style: outside none none; } .kilimanjaro_widget a { border: 1px solid #333; border-radius: 6px; color: #888; display: inline-block; font-size: 13px; margin-bottom: 4px; padding: 7px 12px; } ul { margin: 0; padding: 0; } .kilimanjaro_links a { border-bottom: 1px solid #333; color: rgba(255,255,255,.5); display: block; font-size: 13px; margin-bottom: 5px; padding-bottom: 10px; } .kilimanjaro_links a { color: rgba(255,255,255,.5); font-size: 13px; } top-15 { margin-top: 15px; } .foo_top_header_one .kilimanjaro_part > h5 { color: #fff; } .kilimanjaro_part h4, .kilimanjaro_part h5 { margin-bottom: 30px; } .kilimanjaro_social_links > li { display: inline-block; } p, ul li, ol li { font-weight: 300; } .kilimanjaro_social_links a { border: 1px solid #333; border-radius: 6px; color: #888; display: inline-block; font-size: 13px; margin-bottom: 3px; padding: 7px 12px; } .kilimanjaro_blog_area .kilimanjaro_date { color: #27ae60; font-size: 13px; margin-bottom: 5px; } .kilimanjaro_blog_area > p { color: rgba(255,255,255,.5); line-height: 1.3; margin-bottom: 0; } .kilimanjaro_works > a { display: inline-block; float: left; position: relative; width: 33.33333333%; z-index: 1; } .kilimanjaro_thumb { left: 0; position: absolute; top: 0; width: 75px; } .kilimanjaro_links a i { padding-right: 10px; } /* :: 18.0 Footer Area CSS */ .footer_area { position: relative; z-index: 1; } .footer_bottom p > i, .footer_bottom p > a:hover { color: #27ae60; } .social_links_area { border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding: 50px 0 30px 0; text-align: center; position: relative; z-index: 1; } .social_links_area > a:hover { color: #27ae60; } .inline-style .social_links_area > a:hover { background-color: transparent; color: #27ae60; border: 0px solid transparent; } .single_feature:hover .feature_text h4 { color: #27ae60; } .kilimanjaro_blog_area { border-bottom: 1px solid #333; margin-bottom: 15px; padding: 0 0 15px 90px; position: relative; z-index: 1; } .kilimanjaro_links a { border-bottom: 1px solid #333; color: rgba(255,255,255,.5); display: block; font-size: 13px; margin-bottom: 5px; padding-bottom: 10px; }
0.571288
0.086439
@font-face { font-family: "Flat-UI-Icons"; src: url("../../fonts/Startup-Icons.eot"); src: url("../fonts/Startup-Icons.eot?#iefix") format("embedded-opentype"), url("../../fonts/Startup-Icons.woff") format("woff"), url("../../fonts/Startup-Icons.ttf") format("truetype"), url("../../fonts/Startup-Icons.svg#Flat-UI-Icons") format("svg"); font-weight: normal; font-style: normal; } /* Use the following CSS code if you want to use data attributes for inserting your icons */ [data-icon]:before { font-family: 'Flat-UI-Icons'; content: attr(data-icon); speak: none; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Use the following CSS code if you want to have a class per icon */ /* Instead of a list of all class selectors, you can use the generic selector below, but it's slower: [class*="fui-"] { */ .fui-triangle-up, .fui-triangle-up-small, .fui-triangle-right-large, .fui-triangle-left-large, .fui-triangle-down, .fui-info, .fui-alert, .fui-question, .fui-window, .fui-windows, .fui-arrow-right, .fui-arrow-left, .fui-loop, .fui-cmd, .fui-mic, .fui-triangle-down-small, .fui-check-inverted, .fui-heart, .fui-location, .fui-plus, .fui-check, .fui-cross, .fui-list, .fui-new, .fui-video, .fui-photo, .fui-volume, .fui-time, .fui-eye, .fui-chat, .fui-home, .fui-upload, .fui-search, .fui-user, .fui-mail, .fui-lock, .fui-power, .fui-star, .fui-calendar, .fui-gear, .fui-book, .fui-exit, .fui-trash, .fui-folder, .fui-bubble, .fui-cross-inverted, .fui-plus-inverted, .fui-export, .fui-radio-unchecked, .fui-radio-checked, .fui-checkbox-unchecked, .fui-checkbox-checked, .fui-flat, .fui-calendar-solid, .fui-star-2, .fui-credit-card, .fui-clip, .fui-link, .fui-pause, .fui-play, .fui-tag, .fui-document, .fui-image, .fui-facebook, .fui-youtube, .fui-vimeo, .fui-twitter, .fui-stumbleupon, .fui-spotify, .fui-skype, .fui-pinterest, .fui-path, .fui-myspace, .fui-linkedin, .fui-googleplus, .fui-dribbble, .fui-blogger, .fui-behance, .fui-list-thumbnailed, .fui-list-small-thumbnails, .fui-list-numbered, .fui-list-large-thumbnails, .fui-list-columned, .fui-list-bulleted, .fui-arrow-down, .fui-arrow-up, .fui-phone, .fui-round-bubble, .fui-apple, .fui-android, .fui-microsoft, .fui-ovi { display: inline-block; font-family: 'Flat-UI-Icons'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .fui-triangle-up:before { content: "\e000"; } .fui-triangle-up-small:before { content: "\e001"; } .fui-triangle-right-large:before { content: "\e002"; } .fui-triangle-left-large:before { content: "\e003"; } .fui-triangle-down:before { content: "\e004"; } .fui-info:before { content: "\e016"; } .fui-alert:before { content: "\e017"; } .fui-question:before { content: "\e018"; } .fui-window:before { content: "\e019"; } .fui-windows:before { content: "\e01a"; } .fui-arrow-right:before { content: "\e02c"; } .fui-arrow-left:before { content: "\e02d"; } .fui-loop:before { content: "\e02e"; } .fui-cmd:before { content: "\e02f"; } .fui-mic:before { content: "\e030"; } .fui-triangle-down-small:before { content: "\e005"; } .fui-check-inverted:before { content: "\e006"; } .fui-heart:before { content: "\e007"; } .fui-location:before { content: "\e008"; } .fui-plus:before { content: "\e009"; } .fui-check:before { content: "\e00a"; } .fui-cross:before { content: "\e00b"; } .fui-list:before { content: "\e00c"; } .fui-new:before { content: "\e00d"; } .fui-video:before { content: "\e00e"; } .fui-photo:before { content: "\e00f"; } .fui-volume:before { content: "\e010"; } .fui-time:before { content: "\e011"; } .fui-eye:before { content: "\e012"; } .fui-chat:before { content: "\e013"; } .fui-home:before { content: "\e015"; } .fui-upload:before { content: "\e01b"; } .fui-search:before { content: "\e01c"; } .fui-user:before { content: "\e01d"; } .fui-mail:before { content: "\e01e"; } .fui-lock:before { content: "\e01f"; } .fui-power:before { content: "\e020"; } .fui-star:before { content: "\e021"; } .fui-calendar:before { content: "\e023"; } .fui-gear:before { content: "\e024"; } .fui-book:before { content: "\e025"; } .fui-exit:before { content: "\e026"; } .fui-trash:before { content: "\e027"; } .fui-folder:before { content: "\e028"; } .fui-bubble:before { content: "\e029"; } .fui-cross-inverted:before { content: "\e02a"; } .fui-plus-inverted:before { content: "\e031"; } .fui-export:before { content: "\e014"; } .fui-radio-unchecked:before { content: "\e02b"; } .fui-radio-checked:before { content: "\e032"; } .fui-checkbox-unchecked:before { content: "\e033"; } .fui-checkbox-checked:before { content: "\e034"; } .fui-flat:before { content: "\e035"; } .fui-calendar-solid:before { content: "\e022"; } .fui-star-2:before { content: "\e036"; } .fui-credit-card:before { content: "\e037"; } .fui-clip:before { content: "\e038"; } .fui-link:before { content: "\e039"; } .fui-pause:before { content: "\e03b"; } .fui-play:before { content: "\e03c"; } .fui-tag:before { content: "\e03d"; } .fui-document:before { content: "\e03e"; } .fui-image:before { content: "\e03a"; } .fui-facebook:before { content: "\e03f"; } .fui-youtube:before { content: "\e040"; } .fui-vimeo:before { content: "\e041"; } .fui-twitter:before { content: "\e042"; } .fui-stumbleupon:before { content: "\e043"; } .fui-spotify:before { content: "\e044"; } .fui-skype:before { content: "\e045"; } .fui-pinterest:before { content: "\e046"; } .fui-path:before { content: "\e047"; } .fui-myspace:before { content: "\e048"; } .fui-linkedin:before { content: "\e049"; } .fui-googleplus:before { content: "\e04a"; } .fui-dribbble:before { content: "\e04c"; } .fui-blogger:before { content: "\e04d"; } .fui-behance:before { content: "\e04e"; } .fui-list-thumbnailed:before { content: "\e04b"; } .fui-list-small-thumbnails:before { content: "\e04f"; } .fui-list-numbered:before { content: "\e050"; } .fui-list-large-thumbnails:before { content: "\e051"; } .fui-list-columned:before { content: "\e052"; } .fui-list-bulleted:before { content: "\e053"; } .fui-arrow-down:before { content: "\e054"; } .fui-arrow-up:before { content: "\e055"; } .fui-phone:before { content: "\e056"; } .fui-round-bubble:before { content: "\e057"; } .fui-apple:before { content: "\e058"; } .fui-android:before { content: "\e059"; } .fui-microsoft:before { content: "\e05a"; } .fui-ovi:before { content: "\e05b"; }
public/css/vender/icon-font.css
@font-face { font-family: "Flat-UI-Icons"; src: url("../../fonts/Startup-Icons.eot"); src: url("../fonts/Startup-Icons.eot?#iefix") format("embedded-opentype"), url("../../fonts/Startup-Icons.woff") format("woff"), url("../../fonts/Startup-Icons.ttf") format("truetype"), url("../../fonts/Startup-Icons.svg#Flat-UI-Icons") format("svg"); font-weight: normal; font-style: normal; } /* Use the following CSS code if you want to use data attributes for inserting your icons */ [data-icon]:before { font-family: 'Flat-UI-Icons'; content: attr(data-icon); speak: none; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Use the following CSS code if you want to have a class per icon */ /* Instead of a list of all class selectors, you can use the generic selector below, but it's slower: [class*="fui-"] { */ .fui-triangle-up, .fui-triangle-up-small, .fui-triangle-right-large, .fui-triangle-left-large, .fui-triangle-down, .fui-info, .fui-alert, .fui-question, .fui-window, .fui-windows, .fui-arrow-right, .fui-arrow-left, .fui-loop, .fui-cmd, .fui-mic, .fui-triangle-down-small, .fui-check-inverted, .fui-heart, .fui-location, .fui-plus, .fui-check, .fui-cross, .fui-list, .fui-new, .fui-video, .fui-photo, .fui-volume, .fui-time, .fui-eye, .fui-chat, .fui-home, .fui-upload, .fui-search, .fui-user, .fui-mail, .fui-lock, .fui-power, .fui-star, .fui-calendar, .fui-gear, .fui-book, .fui-exit, .fui-trash, .fui-folder, .fui-bubble, .fui-cross-inverted, .fui-plus-inverted, .fui-export, .fui-radio-unchecked, .fui-radio-checked, .fui-checkbox-unchecked, .fui-checkbox-checked, .fui-flat, .fui-calendar-solid, .fui-star-2, .fui-credit-card, .fui-clip, .fui-link, .fui-pause, .fui-play, .fui-tag, .fui-document, .fui-image, .fui-facebook, .fui-youtube, .fui-vimeo, .fui-twitter, .fui-stumbleupon, .fui-spotify, .fui-skype, .fui-pinterest, .fui-path, .fui-myspace, .fui-linkedin, .fui-googleplus, .fui-dribbble, .fui-blogger, .fui-behance, .fui-list-thumbnailed, .fui-list-small-thumbnails, .fui-list-numbered, .fui-list-large-thumbnails, .fui-list-columned, .fui-list-bulleted, .fui-arrow-down, .fui-arrow-up, .fui-phone, .fui-round-bubble, .fui-apple, .fui-android, .fui-microsoft, .fui-ovi { display: inline-block; font-family: 'Flat-UI-Icons'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .fui-triangle-up:before { content: "\e000"; } .fui-triangle-up-small:before { content: "\e001"; } .fui-triangle-right-large:before { content: "\e002"; } .fui-triangle-left-large:before { content: "\e003"; } .fui-triangle-down:before { content: "\e004"; } .fui-info:before { content: "\e016"; } .fui-alert:before { content: "\e017"; } .fui-question:before { content: "\e018"; } .fui-window:before { content: "\e019"; } .fui-windows:before { content: "\e01a"; } .fui-arrow-right:before { content: "\e02c"; } .fui-arrow-left:before { content: "\e02d"; } .fui-loop:before { content: "\e02e"; } .fui-cmd:before { content: "\e02f"; } .fui-mic:before { content: "\e030"; } .fui-triangle-down-small:before { content: "\e005"; } .fui-check-inverted:before { content: "\e006"; } .fui-heart:before { content: "\e007"; } .fui-location:before { content: "\e008"; } .fui-plus:before { content: "\e009"; } .fui-check:before { content: "\e00a"; } .fui-cross:before { content: "\e00b"; } .fui-list:before { content: "\e00c"; } .fui-new:before { content: "\e00d"; } .fui-video:before { content: "\e00e"; } .fui-photo:before { content: "\e00f"; } .fui-volume:before { content: "\e010"; } .fui-time:before { content: "\e011"; } .fui-eye:before { content: "\e012"; } .fui-chat:before { content: "\e013"; } .fui-home:before { content: "\e015"; } .fui-upload:before { content: "\e01b"; } .fui-search:before { content: "\e01c"; } .fui-user:before { content: "\e01d"; } .fui-mail:before { content: "\e01e"; } .fui-lock:before { content: "\e01f"; } .fui-power:before { content: "\e020"; } .fui-star:before { content: "\e021"; } .fui-calendar:before { content: "\e023"; } .fui-gear:before { content: "\e024"; } .fui-book:before { content: "\e025"; } .fui-exit:before { content: "\e026"; } .fui-trash:before { content: "\e027"; } .fui-folder:before { content: "\e028"; } .fui-bubble:before { content: "\e029"; } .fui-cross-inverted:before { content: "\e02a"; } .fui-plus-inverted:before { content: "\e031"; } .fui-export:before { content: "\e014"; } .fui-radio-unchecked:before { content: "\e02b"; } .fui-radio-checked:before { content: "\e032"; } .fui-checkbox-unchecked:before { content: "\e033"; } .fui-checkbox-checked:before { content: "\e034"; } .fui-flat:before { content: "\e035"; } .fui-calendar-solid:before { content: "\e022"; } .fui-star-2:before { content: "\e036"; } .fui-credit-card:before { content: "\e037"; } .fui-clip:before { content: "\e038"; } .fui-link:before { content: "\e039"; } .fui-pause:before { content: "\e03b"; } .fui-play:before { content: "\e03c"; } .fui-tag:before { content: "\e03d"; } .fui-document:before { content: "\e03e"; } .fui-image:before { content: "\e03a"; } .fui-facebook:before { content: "\e03f"; } .fui-youtube:before { content: "\e040"; } .fui-vimeo:before { content: "\e041"; } .fui-twitter:before { content: "\e042"; } .fui-stumbleupon:before { content: "\e043"; } .fui-spotify:before { content: "\e044"; } .fui-skype:before { content: "\e045"; } .fui-pinterest:before { content: "\e046"; } .fui-path:before { content: "\e047"; } .fui-myspace:before { content: "\e048"; } .fui-linkedin:before { content: "\e049"; } .fui-googleplus:before { content: "\e04a"; } .fui-dribbble:before { content: "\e04c"; } .fui-blogger:before { content: "\e04d"; } .fui-behance:before { content: "\e04e"; } .fui-list-thumbnailed:before { content: "\e04b"; } .fui-list-small-thumbnails:before { content: "\e04f"; } .fui-list-numbered:before { content: "\e050"; } .fui-list-large-thumbnails:before { content: "\e051"; } .fui-list-columned:before { content: "\e052"; } .fui-list-bulleted:before { content: "\e053"; } .fui-arrow-down:before { content: "\e054"; } .fui-arrow-up:before { content: "\e055"; } .fui-phone:before { content: "\e056"; } .fui-round-bubble:before { content: "\e057"; } .fui-apple:before { content: "\e058"; } .fui-android:before { content: "\e059"; } .fui-microsoft:before { content: "\e05a"; } .fui-ovi:before { content: "\e05b"; }
0.27338
0.039994
html { font-size: 1em; line-height: 1.5; } html,body { color: rgb(12, 12, 12); color: rgb(var(--swatch-text-dark)); font-variant-ligatures: none; } body { /* coloring */ background-color: rgba(252, 252, 252, 1); background-color: rgba(var(--swatch-background), 1); /* font behavior */ font-family: "Lato", sans-serif; font-family: var(--body-font); font-size: 0.875rem; font-size: var(--base-font-size); font-weight: 500; font-kerning: auto; font-variant-numeric: normal; font-feature-settings: "lnum", "kern", "clig", "calt"; /* line behavior */ orphans: 2; hyphens: manual; word-break: normal; } /* HTML5 Media Items */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } img, embed, video, object, iframe, table { max-width: 100%; } input, textarea, select, button, meter, progress { font-family: "Lato", sans-serif; font-family: var(--body-font); } table:not(.form) td > input { width: 100%; } /* User Input Items */ fieldset { border: 0; margin: 0; padding: 0; } #edit-page-comments { resize: auto; line-height: 1.5; padding: 0 1rem; min-height: 3rem; width: calc(100% - 2rem); } /* Standard Structure Elements */ pre * { font-family: "PT Mono", "Andale Mono", "Courier New", Courier, monospace; font-family: var(--mono-font); max-width: 90vw; white-space: pre-wrap; } sup { vertical-align: top; position: relative; top: -0.5em; font-variant: sub; } hr { display: block; height: 0.063rem; border: 0; border-top: 0.063rem solid rgba(66, 66, 72); border-top: 0.063rem solid rgba(var(--swatch-menubg-medium-color, 66, 66, 72)); margin: 1em 0; padding: 0; } /* Headers */ h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; font-family: var(--title-font); } h1 { color: rgb(12, 12, 12); color: rgb(var(--black-monochrome)); font-weight: 700; margin: 0.7em 0 0.6em; padding: 0 0 0.25em; } h2, h3, h4, h5, h6 { font-weight: 900; letter-spacing: 0.063rem; margin: 0.5em 0 0.4em; padding: 0; } ul { list-style: square; } /* Anchor Links */ a { color: rgb(180, 35, 35); color: rgb(var(--link-color)); } a,a.newpage { text-decoration: none; background: transparent; } a.newpage { color: rgb(221, 102, 17); color: rgb(var(--newpage-color)); } a:hover { text-decoration: underline; background-color: transparent; color: rgb(255, 52, 76); color: rgb(var(--hover-link-color)); } a:visited { color: rgb(255, 52, 76); color: rgb(var(--visited-link-color)); } /* Ruby Text */ ruby { display: inline-table; line-height: 1; height: 1em; vertical-align: text-bottom; } ruby,rt { text-align: center; white-space: nowrap; } rt { display: table-header-group; font-size: 0.6em; line-height: 1.1; } /* Teletype */ tt { overflow-wrap: break-word; hyphens: auto; font-family: "PT Mono", "Andale Mono", "Courier New", Courier, monospace; font-family: var(--mono-font); } /* Chrome, Safari, Opera Scrollbar */ ::-webkit-scrollbar { width: 1rem; width: var(--scrollbar-width); height: 0.5625rem; height: var(--scrollbar-width); border: solid 0.063rem rgba(12, 12, 12, 0.1); border: solid 0.063rem rgba(var(--swatch-menubg-black-color), 0.1); border-radius: 0.031rem; } ::-webkit-scrollbar-track { background: rgba(12, 12, 12, 0.1); background: rgba(var(--swatch-menubg-black-color), 0.1); } ::-webkit-scrollbar-thumb { background: rgba(170, 170, 170, 0.4); background: rgba(var(--swatch-menubg-medium-color), 0.4); } /* Setting mobile body font size to 14px/0.875rem) */ @media only screen and (max-width: 320px) { body { font-size: calc(var(--base-font-size) * (14/15)); } }
src/css/structure.css
html { font-size: 1em; line-height: 1.5; } html,body { color: rgb(12, 12, 12); color: rgb(var(--swatch-text-dark)); font-variant-ligatures: none; } body { /* coloring */ background-color: rgba(252, 252, 252, 1); background-color: rgba(var(--swatch-background), 1); /* font behavior */ font-family: "Lato", sans-serif; font-family: var(--body-font); font-size: 0.875rem; font-size: var(--base-font-size); font-weight: 500; font-kerning: auto; font-variant-numeric: normal; font-feature-settings: "lnum", "kern", "clig", "calt"; /* line behavior */ orphans: 2; hyphens: manual; word-break: normal; } /* HTML5 Media Items */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } img, embed, video, object, iframe, table { max-width: 100%; } input, textarea, select, button, meter, progress { font-family: "Lato", sans-serif; font-family: var(--body-font); } table:not(.form) td > input { width: 100%; } /* User Input Items */ fieldset { border: 0; margin: 0; padding: 0; } #edit-page-comments { resize: auto; line-height: 1.5; padding: 0 1rem; min-height: 3rem; width: calc(100% - 2rem); } /* Standard Structure Elements */ pre * { font-family: "PT Mono", "Andale Mono", "Courier New", Courier, monospace; font-family: var(--mono-font); max-width: 90vw; white-space: pre-wrap; } sup { vertical-align: top; position: relative; top: -0.5em; font-variant: sub; } hr { display: block; height: 0.063rem; border: 0; border-top: 0.063rem solid rgba(66, 66, 72); border-top: 0.063rem solid rgba(var(--swatch-menubg-medium-color, 66, 66, 72)); margin: 1em 0; padding: 0; } /* Headers */ h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; font-family: var(--title-font); } h1 { color: rgb(12, 12, 12); color: rgb(var(--black-monochrome)); font-weight: 700; margin: 0.7em 0 0.6em; padding: 0 0 0.25em; } h2, h3, h4, h5, h6 { font-weight: 900; letter-spacing: 0.063rem; margin: 0.5em 0 0.4em; padding: 0; } ul { list-style: square; } /* Anchor Links */ a { color: rgb(180, 35, 35); color: rgb(var(--link-color)); } a,a.newpage { text-decoration: none; background: transparent; } a.newpage { color: rgb(221, 102, 17); color: rgb(var(--newpage-color)); } a:hover { text-decoration: underline; background-color: transparent; color: rgb(255, 52, 76); color: rgb(var(--hover-link-color)); } a:visited { color: rgb(255, 52, 76); color: rgb(var(--visited-link-color)); } /* Ruby Text */ ruby { display: inline-table; line-height: 1; height: 1em; vertical-align: text-bottom; } ruby,rt { text-align: center; white-space: nowrap; } rt { display: table-header-group; font-size: 0.6em; line-height: 1.1; } /* Teletype */ tt { overflow-wrap: break-word; hyphens: auto; font-family: "PT Mono", "Andale Mono", "Courier New", Courier, monospace; font-family: var(--mono-font); } /* Chrome, Safari, Opera Scrollbar */ ::-webkit-scrollbar { width: 1rem; width: var(--scrollbar-width); height: 0.5625rem; height: var(--scrollbar-width); border: solid 0.063rem rgba(12, 12, 12, 0.1); border: solid 0.063rem rgba(var(--swatch-menubg-black-color), 0.1); border-radius: 0.031rem; } ::-webkit-scrollbar-track { background: rgba(12, 12, 12, 0.1); background: rgba(var(--swatch-menubg-black-color), 0.1); } ::-webkit-scrollbar-thumb { background: rgba(170, 170, 170, 0.4); background: rgba(var(--swatch-menubg-medium-color), 0.4); } /* Setting mobile body font size to 14px/0.875rem) */ @media only screen and (max-width: 320px) { body { font-size: calc(var(--base-font-size) * (14/15)); } }
0.357343
0.075041
.mediaViewInfo { --web-view-name: Búsqueda Futuro; --web-view-id: B_squeda_Futuro; --web-scale-on-resize: true; --web-enable-deep-linking: true; } :root { --web-view-ids: B_squeda_Futuro; } * { margin: 0; padding: 0; box-sizing: border-box; border: none; } #B_squeda_Futuro { position: absolute; width: 360px; height: 639px; background-color: rgba(33,45,59,1); overflow: hidden; --web-view-name: Búsqueda Futuro; --web-view-id: B_squeda_Futuro; --web-scale-on-resize: true; --web-enable-deep-linking: true; } @keyframes { } @keyframes fadein { 0% { opacity: 0; } 100% { opacity: 1; } } #Componente_6___7 { position: absolute; width: 172px; height: 95px; left: 33px; top: 324px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10 { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_3 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_6___8 { position: absolute; width: 172px; height: 95px; left: 33px; top: 433px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ig { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_4 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_ii { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_6___11 { position: absolute; width: 172px; height: 95px; left: 33px; top: 95px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ik { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_1 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_im { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_7___2 { position: absolute; width: 360px; height: 76px; left: 0px; top: 0px; overflow: visible; } .Rect_ngulo_1 { filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.161)); position: absolute; overflow: visible; width: 378px; height: 93px; left: 0px; top: 0px; } .Icon_awesome_arrow_left { overflow: visible; position: absolute; width: 20px; height: 20px; left: 23px; top: 15px; transform: matrix(1,0,0,1,0,0); --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover.html; cursor: pointer; } #Search { position: absolute; left: 61px; top: 15px; overflow: visible; width: 53px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(177,177,177,1); } #Past { position: absolute; left: 23px; top: 48px; overflow: visible; width: 35px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: B_squeda_Pasado.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } #Future { position: absolute; left: 95px; top: 48px; overflow: visible; width: 49px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover_Future.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(242,172,76,1); } #People { position: absolute; left: 181px; top: 48px; overflow: visible; width: 53px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover_People_.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } #Places { position: absolute; left: 271px; top: 48px; overflow: visible; width: 52px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: B_squeda_Places.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } .Rect_ngulo_9 { position: absolute; overflow: visible; width: 48px; height: 2px; left: 95px; top: 74px; } #Componente_6___12 { position: absolute; width: 172px; height: 95px; left: 33px; top: 210px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ix { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_2 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_iz { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_8___3 { position: absolute; width: 360px; height: 58px; left: 0px; top: 582px; overflow: visible; } .Rect_ngulo_2 { filter: drop-shadow(0px -5px 6px rgba(0, 0, 0, 0.161)); position: absolute; overflow: visible; width: 378px; height: 76px; left: 0px; top: 0px; } #Icon_feather_compass { position: absolute; width: 30px; height: 30px; left: 102px; top: 14px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover.html; cursor: pointer; } .Trazado_1 { overflow: visible; position: absolute; width: 32px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); } .Trazado_2 { overflow: visible; position: absolute; width: 14.72px; height: 14.72px; left: 8.64px; top: 8.64px; transform: matrix(1,0,0,1,0,0); } .Icon_feather_bookmark { overflow: visible; position: absolute; width: 23px; height: 32px; left: 170px; top: 14px; transform: matrix(1,0,0,1,0,0); --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Bookmarks.html; cursor: pointer; } #Icon_feather_user { position: absolute; width: 27px; height: 30px; left: 229px; top: 13px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Perfil_Past.html; cursor: pointer; } .Trazado_3 { overflow: visible; position: absolute; width: 29px; height: 11px; left: 0px; top: 21px; transform: matrix(1,0,0,1,0,0); } .Trazado_4 { overflow: visible; position: absolute; width: 14px; height: 14px; left: 7.5px; top: 0px; transform: matrix(1,0,0,1,0,0); } #Icon_feather_home { position: absolute; width: 27px; height: 30px; left: 37.3px; top: 14px; overflow: visible; } .Trazado_5 { overflow: visible; position: absolute; width: 29px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); } #Icon_feather_settings { position: absolute; width: 30px; height: 30px; left: 294px; top: 13px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Configuraci_n.html; cursor: pointer; } .Trazado_41 { overflow: visible; position: absolute; width: 11px; height: 11px; left: 10.5px; top: 10.5px; transform: matrix(1,0,0,1,0,0); } .Trazado_42 { overflow: visible; position: absolute; width: 32px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); }
css/B_squeda_Futuro.css
.mediaViewInfo { --web-view-name: Búsqueda Futuro; --web-view-id: B_squeda_Futuro; --web-scale-on-resize: true; --web-enable-deep-linking: true; } :root { --web-view-ids: B_squeda_Futuro; } * { margin: 0; padding: 0; box-sizing: border-box; border: none; } #B_squeda_Futuro { position: absolute; width: 360px; height: 639px; background-color: rgba(33,45,59,1); overflow: hidden; --web-view-name: Búsqueda Futuro; --web-view-id: B_squeda_Futuro; --web-scale-on-resize: true; --web-enable-deep-linking: true; } @keyframes { } @keyframes fadein { 0% { opacity: 0; } 100% { opacity: 1; } } #Componente_6___7 { position: absolute; width: 172px; height: 95px; left: 33px; top: 324px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10 { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_3 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_6___8 { position: absolute; width: 172px; height: 95px; left: 33px; top: 433px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ig { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_4 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_ii { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_6___11 { position: absolute; width: 172px; height: 95px; left: 33px; top: 95px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ik { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_1 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_im { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_7___2 { position: absolute; width: 360px; height: 76px; left: 0px; top: 0px; overflow: visible; } .Rect_ngulo_1 { filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.161)); position: absolute; overflow: visible; width: 378px; height: 93px; left: 0px; top: 0px; } .Icon_awesome_arrow_left { overflow: visible; position: absolute; width: 20px; height: 20px; left: 23px; top: 15px; transform: matrix(1,0,0,1,0,0); --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover.html; cursor: pointer; } #Search { position: absolute; left: 61px; top: 15px; overflow: visible; width: 53px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(177,177,177,1); } #Past { position: absolute; left: 23px; top: 48px; overflow: visible; width: 35px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: B_squeda_Pasado.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } #Future { position: absolute; left: 95px; top: 48px; overflow: visible; width: 49px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover_Future.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(242,172,76,1); } #People { position: absolute; left: 181px; top: 48px; overflow: visible; width: 53px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover_People_.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } #Places { position: absolute; left: 271px; top: 48px; overflow: visible; width: 52px; white-space: nowrap; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: B_squeda_Places.html; cursor: pointer; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 17px; color: rgba(255,255,255,1); } .Rect_ngulo_9 { position: absolute; overflow: visible; width: 48px; height: 2px; left: 95px; top: 74px; } #Componente_6___12 { position: absolute; width: 172px; height: 95px; left: 33px; top: 210px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Momento.html; cursor: pointer; } #Rect_ngulo_10_ix { position: absolute; width: 67px; height: 95px; left: 0px; top: 0px; overflow: visible; } #Resultado_2 { position: absolute; left: 77px; top: 36px; overflow: visible; width: 96px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 18px; color: rgba(255,255,255,1); } #johndoe_mail_com_iz { position: absolute; left: 77px; top: 13px; overflow: visible; width: 44px; white-space: nowrap; text-align: left; font-family: Roboto; font-style: normal; font-weight: normal; font-size: 16px; color: rgba(255,255,255,1); } #Componente_8___3 { position: absolute; width: 360px; height: 58px; left: 0px; top: 582px; overflow: visible; } .Rect_ngulo_2 { filter: drop-shadow(0px -5px 6px rgba(0, 0, 0, 0.161)); position: absolute; overflow: visible; width: 378px; height: 76px; left: 0px; top: 0px; } #Icon_feather_compass { position: absolute; width: 30px; height: 30px; left: 102px; top: 14px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Discover.html; cursor: pointer; } .Trazado_1 { overflow: visible; position: absolute; width: 32px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); } .Trazado_2 { overflow: visible; position: absolute; width: 14.72px; height: 14.72px; left: 8.64px; top: 8.64px; transform: matrix(1,0,0,1,0,0); } .Icon_feather_bookmark { overflow: visible; position: absolute; width: 23px; height: 32px; left: 170px; top: 14px; transform: matrix(1,0,0,1,0,0); --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Bookmarks.html; cursor: pointer; } #Icon_feather_user { position: absolute; width: 27px; height: 30px; left: 229px; top: 13px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Perfil_Past.html; cursor: pointer; } .Trazado_3 { overflow: visible; position: absolute; width: 29px; height: 11px; left: 0px; top: 21px; transform: matrix(1,0,0,1,0,0); } .Trazado_4 { overflow: visible; position: absolute; width: 14px; height: 14px; left: 7.5px; top: 0px; transform: matrix(1,0,0,1,0,0); } #Icon_feather_home { position: absolute; width: 27px; height: 30px; left: 37.3px; top: 14px; overflow: visible; } .Trazado_5 { overflow: visible; position: absolute; width: 29px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); } #Icon_feather_settings { position: absolute; width: 30px; height: 30px; left: 294px; top: 13px; overflow: visible; --web-animation: fadein 0.3s ease-out; --web-action-type: page; --web-action-target: Configuraci_n.html; cursor: pointer; } .Trazado_41 { overflow: visible; position: absolute; width: 11px; height: 11px; left: 10.5px; top: 10.5px; transform: matrix(1,0,0,1,0,0); } .Trazado_42 { overflow: visible; position: absolute; width: 32px; height: 32px; left: 0px; top: 0px; transform: matrix(1,0,0,1,0,0); }
0.516595
0.044723
.col-md-12 { border: 1px solid whitesmoke; width: 150%; } .tcolor { color: turquoise; text-decoration: none; } .font_size { font-size: 15px; } a { color: black; font-size: inherit; text-decoration: none; } a:hover { color: turquoise; } .font_size2 { font-size: small; } .icon { width: 16.4%; border-radius: 7%; } .icon:hover { opacity: 0.9; } .flexitem { display: flex; flex-wrap: wrap; background-color: #ccc; } .top-left { flex: 50%; } .top-right { flex: 50%; text-align: right; } .fontchange { font-size: 10px; } .popularpost:hover { opacity: 0.9; } .popular_card a { text-decoration: none; color: black; cursor: pointer; } body { font-family: "Open Sans", sans-serif; } .nav-item a { font-size: 14px; font-weight: 600; color: #656565; word-wrap: break-word; margin: 0; padding: 0; } .form-control { font-size: 14px; font-weight: 300; color: #656565; } .container-fluid { padding: 15px; } .container-fluid li { margin-left: 20px; } .container-fluid img { margin-left: 40px; height: 80px; width:140px; } .container-fluid button { border: none; } .container-fluid button:hover { background-color: #fff; } .container-fluid button i { color: #1f2024; } .container-fluid button i:hover { color: #1f2024; } .featured-slidebar { background: url(pexels-stijn-dijkstra-528132.jpg); position: relative; width: 100%; height: 400px; background-repeat: no-repeat; background-size: cover; background-position: center; } @media all and (min-width: 992px) { .dropdown-menu li { position: relative; } .nav-item .submenu { display: none; position: absolute; left: 100%; top: -7px; } .nav-item .submenu-left { right: 100%; left: auto; } .dropdown-menu > li:hover { background-color: #f1f1f1; } .dropdown-menu > li:hover > .submenu { display: block; } } /* ============ desktop view .end// ============ */ /* ============ small devices ============ */ @media (max-width: 991px) { .dropdown-menu .dropdown-menu { margin-left: 0.7rem; margin-right: 0.7rem; margin-bottom: 0.5rem; } } .intro-image { text-align: center; padding-top: 150px; } .intro-image h1 { font-size: 37px; color: #ffffff; font-weight: 700; text-shadow: 0px 0px 10px rgb(0 0 0 / 50%); margin: 0 0 30px; } .intro-image p { font-size: 14px; line-height: 25px; color: #fafafa; margin: 0; } .intro-image button { display: inline-block; height: 40px; background-color: #19ddc4; font-size: 14px; color: rgb(20, 2, 2); line-height: 40px; padding: 0 25px; margin: 30px 0 0; border-radius: 3px; transition: cubic-bezier(0.6, -0.28, 0.735, 0.045) ease; border: none; } .intro-image button:hover { background-color: #1f2024; } .Upper-footer { background: #171921; width: 100%; margin: 0; padding: 20px; } .left-part img{ height:80px;width:140px; } .left-part p { font-size: 13px; line-height: 1.6em; color: #fff; margin: 0; padding: 0; color: rgb(122, 126, 126); } .right-part { padding: 20px; } .right-part a { color: #fff; margin-right: 10px; height: 30px; width: 30px; border-radius: 2px; } .right-part i { padding: 8px; } .lower-footer { background-color: #1f2024; width: 100%; } .lower-left a { color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; margin-left: 20px; padding: 10px; } .lower-right p { color: #fff; text-align: center; font-size: 14px; font-weight: 600; padding: 20px; } .lower-right span { color: #ff00ba; } .scroll-btn { position: fixed; bottom: 20px; right: 30px; z-index: 99; font-size: 18px; border: none; outline: none; background-color: red; color: white; cursor: pointer; padding: 10px; border-radius: 4px; } .scroll-btn:hover { opacity: 0.7; }
public/css/index.css
.col-md-12 { border: 1px solid whitesmoke; width: 150%; } .tcolor { color: turquoise; text-decoration: none; } .font_size { font-size: 15px; } a { color: black; font-size: inherit; text-decoration: none; } a:hover { color: turquoise; } .font_size2 { font-size: small; } .icon { width: 16.4%; border-radius: 7%; } .icon:hover { opacity: 0.9; } .flexitem { display: flex; flex-wrap: wrap; background-color: #ccc; } .top-left { flex: 50%; } .top-right { flex: 50%; text-align: right; } .fontchange { font-size: 10px; } .popularpost:hover { opacity: 0.9; } .popular_card a { text-decoration: none; color: black; cursor: pointer; } body { font-family: "Open Sans", sans-serif; } .nav-item a { font-size: 14px; font-weight: 600; color: #656565; word-wrap: break-word; margin: 0; padding: 0; } .form-control { font-size: 14px; font-weight: 300; color: #656565; } .container-fluid { padding: 15px; } .container-fluid li { margin-left: 20px; } .container-fluid img { margin-left: 40px; height: 80px; width:140px; } .container-fluid button { border: none; } .container-fluid button:hover { background-color: #fff; } .container-fluid button i { color: #1f2024; } .container-fluid button i:hover { color: #1f2024; } .featured-slidebar { background: url(pexels-stijn-dijkstra-528132.jpg); position: relative; width: 100%; height: 400px; background-repeat: no-repeat; background-size: cover; background-position: center; } @media all and (min-width: 992px) { .dropdown-menu li { position: relative; } .nav-item .submenu { display: none; position: absolute; left: 100%; top: -7px; } .nav-item .submenu-left { right: 100%; left: auto; } .dropdown-menu > li:hover { background-color: #f1f1f1; } .dropdown-menu > li:hover > .submenu { display: block; } } /* ============ desktop view .end// ============ */ /* ============ small devices ============ */ @media (max-width: 991px) { .dropdown-menu .dropdown-menu { margin-left: 0.7rem; margin-right: 0.7rem; margin-bottom: 0.5rem; } } .intro-image { text-align: center; padding-top: 150px; } .intro-image h1 { font-size: 37px; color: #ffffff; font-weight: 700; text-shadow: 0px 0px 10px rgb(0 0 0 / 50%); margin: 0 0 30px; } .intro-image p { font-size: 14px; line-height: 25px; color: #fafafa; margin: 0; } .intro-image button { display: inline-block; height: 40px; background-color: #19ddc4; font-size: 14px; color: rgb(20, 2, 2); line-height: 40px; padding: 0 25px; margin: 30px 0 0; border-radius: 3px; transition: cubic-bezier(0.6, -0.28, 0.735, 0.045) ease; border: none; } .intro-image button:hover { background-color: #1f2024; } .Upper-footer { background: #171921; width: 100%; margin: 0; padding: 20px; } .left-part img{ height:80px;width:140px; } .left-part p { font-size: 13px; line-height: 1.6em; color: #fff; margin: 0; padding: 0; color: rgb(122, 126, 126); } .right-part { padding: 20px; } .right-part a { color: #fff; margin-right: 10px; height: 30px; width: 30px; border-radius: 2px; } .right-part i { padding: 8px; } .lower-footer { background-color: #1f2024; width: 100%; } .lower-left a { color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; margin-left: 20px; padding: 10px; } .lower-right p { color: #fff; text-align: center; font-size: 14px; font-weight: 600; padding: 20px; } .lower-right span { color: #ff00ba; } .scroll-btn { position: fixed; bottom: 20px; right: 30px; z-index: 99; font-size: 18px; border: none; outline: none; background-color: red; color: white; cursor: pointer; padding: 10px; border-radius: 4px; } .scroll-btn:hover { opacity: 0.7; }
0.505371
0.103794
header#page-header nav.doc-userinfo { position: absolute; right: 0; bottom: 0; color: #fff; } header#page-header nav.doc-userinfo a { color: #99f; } /* ------------------------------------------------------------------ * Page Editor */ section.editor-content { position: absolute; top: 104px; left: 50%; margin-left: -450px; bottom: 0; } fieldset.edit-fields { position: absolute; top: 10px; bottom: 10px; left: 20px; right: 20px; } fieldset.edit-fields div.top-fields { position: absolute; top: 20px; left: 10px; right: 10px; height: 22px; } fieldset.edit-fields div.bottom-fields { position: absolute; bottom: 10px; left: 10px; right: 10px; height: 22px; } fieldset.edit-fields div.middle-fields { position: absolute; top: 52px; left: 10px; right: 10px; bottom: 42px; } fieldset.edit-fields div.field { position: relative; height: 22px; line-height: 22px; } fieldset.edit-fields div.field label { position: absolute; top: 0; left: 0; bottom: 0; width: 100px; } fieldset.edit-fields div.field input[type=text] { position: absolute; top: 0; right: 0; bottom: 0; left: 110px; } /* ------------------------------------------------------------------ * Page "delete" */ section.delete-content { padding-bottom: 1em; } section.delete-content fieldset { padding: 10pt; } section.delete-content input[type=submit] { margin-top: 1em; } /* ------------------------------------------------------------------ * Page "view" */ section.content h1 { margin: 0; } section.view-content { position: relative; } nav.page-controls { float: right; margin: 10px; padding: 0 10px; border: solid 2px #666; border-radius: 3px; background: #fff; } nav.page-controls ul { margin: 0 0 0 20px; padding: 0; } section.view-content img.float-left { margin-right: 1em; } section.view-content img.float-right { margin-left: 1em; } /* -------------------------------------------------------------------- * Page "Revision History" */ article.revision { margin-top: 0.5em; margin-left: 1em; } div.revision-details { margin-top: 0.5em; margin-left: 1em; } div.revision-graph { width: 70pt; height: 0.5em; float: left; margin: 0.25em 1em; border: solid 1px black; } div.revision-graph div { float: right; height: 100%; } div.revision-graph div.words-removed { background: #ff7b6e; } div.revision-graph div.words-added { background: #a7e59b; } div.revision-graph div.words-changed { background: yellow; } span.diff-added { background: #a7e59b; } span.diff-removed { background: #ff7b6e; text-decoration: line-through; }
website/static/css/doc.css
header#page-header nav.doc-userinfo { position: absolute; right: 0; bottom: 0; color: #fff; } header#page-header nav.doc-userinfo a { color: #99f; } /* ------------------------------------------------------------------ * Page Editor */ section.editor-content { position: absolute; top: 104px; left: 50%; margin-left: -450px; bottom: 0; } fieldset.edit-fields { position: absolute; top: 10px; bottom: 10px; left: 20px; right: 20px; } fieldset.edit-fields div.top-fields { position: absolute; top: 20px; left: 10px; right: 10px; height: 22px; } fieldset.edit-fields div.bottom-fields { position: absolute; bottom: 10px; left: 10px; right: 10px; height: 22px; } fieldset.edit-fields div.middle-fields { position: absolute; top: 52px; left: 10px; right: 10px; bottom: 42px; } fieldset.edit-fields div.field { position: relative; height: 22px; line-height: 22px; } fieldset.edit-fields div.field label { position: absolute; top: 0; left: 0; bottom: 0; width: 100px; } fieldset.edit-fields div.field input[type=text] { position: absolute; top: 0; right: 0; bottom: 0; left: 110px; } /* ------------------------------------------------------------------ * Page "delete" */ section.delete-content { padding-bottom: 1em; } section.delete-content fieldset { padding: 10pt; } section.delete-content input[type=submit] { margin-top: 1em; } /* ------------------------------------------------------------------ * Page "view" */ section.content h1 { margin: 0; } section.view-content { position: relative; } nav.page-controls { float: right; margin: 10px; padding: 0 10px; border: solid 2px #666; border-radius: 3px; background: #fff; } nav.page-controls ul { margin: 0 0 0 20px; padding: 0; } section.view-content img.float-left { margin-right: 1em; } section.view-content img.float-right { margin-left: 1em; } /* -------------------------------------------------------------------- * Page "Revision History" */ article.revision { margin-top: 0.5em; margin-left: 1em; } div.revision-details { margin-top: 0.5em; margin-left: 1em; } div.revision-graph { width: 70pt; height: 0.5em; float: left; margin: 0.25em 1em; border: solid 1px black; } div.revision-graph div { float: right; height: 100%; } div.revision-graph div.words-removed { background: #ff7b6e; } div.revision-graph div.words-added { background: #a7e59b; } div.revision-graph div.words-changed { background: yellow; } span.diff-added { background: #a7e59b; } span.diff-removed { background: #ff7b6e; text-decoration: line-through; }
0.476092
0.100304
@charset "utf-8"; /* CSS Document */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { font-family:inherit; font-size:100%; font-style:inherit; font-weight:inherit; line-height:1.4; } .orderpart{ border:1px solid #cccccc; } body{ margin:0; font-size:10px; color:#252525; text-align:left; } body, input, ul, ol, dl, a, h1, h2, h3, h4, h5, h6, p { font-family:Arial, Helvetica, sans-serif; margin:0; padding:0; border:0; } img{border:0px;} ul{ list-style:none; clear:both;/*add on 2009-1-20*/ } a{ text-decoration:none; color:#093678; } #breadcrumbs a{ text-decoration:none; } #breadcrumbs a:hover{ text-decoration:underline; } a:hover{ color: #2882C6; } a.cta_link{ color:#2D73A8; font-size:1.6em; text-decoration:none; } #title_container #cta_link{ text-decoration:none; } DIV#tabs{ float:left; } DIV#tabs ul{float:left; margin-top:10px; border-bottom:1px solid #8b8b8b; border:none;} DIV#tabs li.long{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat -161px -26px; width:220px; text-align:center; } DIV#tabs li.long_sel{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat -161px -1px; width:220px; text-align:center; } DIV#tabs li.short{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat 0 -26px; width:161px; text-align:center; } DIV#tabs li.short_sel{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat 0px -1px; width:161px; text-align:center; } DIV#tabs li.ui-tabs-selected { border-bottom-width: 0; background:url(../../assets/images/tabs.gif) no-repeat right -27px; } DIV#tabs li a{ color:#fff; cursor:pointer; font-size:1.2em; font-weight:bold; height:19px; line-height:25px; float:left; width:100%; text-align:center; padding:0; text-decoration:none; vertical-align:bottom; } DIV#tabs li.ui-tabs-selected a{ cursor: pointer; font-size:1.3em; color:#0f2d50; height:19px; } .sIFR-active #title h1, .sIFR-active #title_pic h1, .sIFR-active #img-container h1, .sIFR-active #content_container h2, .sIFR-active #content_container h3, .sIFR-active #resource_center h3, .sIFR-active #content_container span.cta_link, .sIFR-active #title_container span.cta_link{ visibility: hidden; } h1{ color: #fff; font-size: 23px; padding:13px 0 0 12px; line-height:44px; font-weight:bold; height:33px; width:96%; } h2{ color:#0f2d50; font-size:2em; margin:18px 0 2px; font-weight:bold; } h3{ color:#0f2d50; font-size:1.5em; font-weight:bold; } h4{ color:#0f2d50; font-size:1.3em; font-weight:bold; line-height:29px; padding:0 0 3px 6px; } h5{ color:#0f2d50; font-size:1.1em; font-weight:bold; } h6{ color:#0f2d50; font-size:0.9em; font-weight:bold; } p{ line-height:18px; margin:0 9px 14px 0; font-size:1.2em; } .for-space{height:26px; width:100%;} .for-space-35{height:35px; width:100%;} .top_space{ padding-top:10px; } .dropdown h4 { background:#DDDDDD url(../../assets/images/bg-sel.gif) no-repeat; border:0; display:block; height:18px; line-height:18px; margin:0; } #html_container{ background:url(../../assets/images/bg.png) no-repeat top center; margin:0 auto; max-width:1700px; min-width:1003px; position:relative; z-index:89; overflow:hidden; } #html_center{ margin:0 auto; width:1003px; position:relative; z-index:88; } /*header css*/ #header_container{ width:100%; height:auto; overflow:hidden; } #logo { display:inline; float:left; height:48px; margin:23px 0 0 23px; width:250px; } #logo a { background:transparent url(../../assets/images/KCCL_LOGO_fixed.png) no-repeat; display:block; height:49px; text-indent:-9999px; width:239px; } #logo1 { display:inline; float:left; height:48px; margin:23px 0 0 23px; width:250px; } #logo1 a { background:transparent url(../../assets/images/devry-newyork.gif) no-repeat; display:block; height:48px; text-indent:-9999px; width:250px; } #request-information { display:inline; float:left; height:28px; margin:21px 0 0 152px; width:156px; } #request-information a { background:transparent url(../../assets/images/btns.gif) no-repeat scroll 0 0; display:block; height:28px; text-indent:-9999px; width:159px; } #request-information a:hover { background:transparent url(../../assets/images/btns.gif) no-repeat scroll 0 bottom; } #apply-online { display:inline; float:left; height:28px; margin:21px 0 0 39px; width:111px; } #apply-online a { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -159px 0; display:block; height:28px; text-indent:-9999px; width:113px; } #apply-online a:hover { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -159px bottom; } #search { display:inline; border:1px solid #CCCCCC; float:left; height:30px; margin:20px 0 0 44px; text-align:left; width:220px; } #search-field { background:#FDFDFD; border:1px solid #CCCCCC; height:18px; margin-top:4px; vertical-align:top; width:156px; } #search-btn { background:transparent url(../../assets/images/btns.gif) no-repeat -272px 0px; border:none; display:inline; height:28px; margin:1px 0 0 -8px; text-indent:-9999px; width:57px; cursor:pointer; overflow:hidden; } #breadcrumbs{ float:left; margin:15px 0 0 74px; color:#000000; font-size:1.1em; } #breadcrumbs a, #breadcrumbs label{ font-size:0.8em; } /*navigate css*/ #navigate_container{ width:199px; height:auto; float:left; padding-bottom:50px; font-size:1.2em; z-index: 200; } #navigate_container ul{ list-style:none; margin:0 0 0 21px; width:154px; float:left; z-index: 200; } #navigate_container ul li{ border:1px solid #d6d6d6; background:url(../../assets/images/bg-nav-level1.gif) repeat-x 0 -17px; height:18px; font-size:1em; font-weight:bold; line-height:17px; } #navigate_container ul li a{ color:#113570; } #navigate_container ul li.title{ border:1px solid #41687e; background:url(../../assets/images/bg-nav-level1.gif) repeat-x; height:17px; color:#ffffff; text-indent:5px; } #navigate_container ul li.level2{ border:0; height:auto; background:url(../../assets/images/bg-nav-level2.gif) no-repeat bottom; padding:7px 0 7px 16px; font-size:0.9em; line-height:11px; font-weight:normal; z-index: 200; } #navigate_container ul li.level2_sel{ background:#004679; color:#ffffff; z-index: 200; } #navigate_container ul li.level2 a{ color:#363636; vertical-align:middle; display:block; } #navigate_container ul ul.level3{ display:none; z-index: 200; } #navigate_container ul li.level2_sel a{ color:#fff; } #sub_nav_container{ background:url(../../assets/images/bg-sub-navs.gif) no-repeat 0 -3px; width:202px; padding-top:2px; position:absolute; display:none; z-index: 200; } #sub_nav_body{ background:url(../../assets/images/bg-sub-navs-body.gif) repeat-y; width:100%; } #sub_nav_bottom{ height:3px; background:url(../../assets/images/bg-sub-navs.gif) no-repeat 0 0; width:100%; overflow:hidden; } #sub_nav_container ul li ul li{ padding:0; font-size:1.1em; color:#262626; background:none; text-indent:-9px; padding-left:9px; } #sub_nav_container ul li ul li.level4{ padding-left:18px; text-indent:-9px; } #sub_nav_container ul li ul li.include_class{ font-style:italic; font-size:0.9em; line-height:17px; } #sub_nav_container ul li ul li a{ padding:0; font-size:0.8em; color:#262626; } #sub_nav_container ul li ul li a:hover{ padding:0; color:#2478ad; text-decoration:underline; } #sub_nav_container ul li{ background:url(../../assets/images/bg-sub-line.gif) no-repeat bottom; padding:2px 9px 4px; color:#0f2d50; } /*main container css*/ #main_container{ width:804px; position:relative; float:left; margin:25px 0 0; padding-bottom:50px; } #img-container{ min-height:44px; } #title{ background:transparent url(../../assets/images/bg-title.gif) no-repeat; height:44px; width:786px; } #title_pic{ width:786px; } #title_pic h1{ position:absolute; margin-top:-15px;} .sIFR-active #title_pic h1{margin-top:0px;} /*content css sidebar*/ #content_container{ float:left; width:545px; margin-right:25px; padding:0 0 0 9px; } #content_container a{ text-decoration:underline; } #content_container h4{ color:#0F2D50; font-size:1.3em; font-weight:bold; line-height:1.4em; padding:0; } /*content css no sidebar*/ #content_container_nosidebar{ float:left; width:790px; padding:0 0 0 10px; } a.def{ text-decoration:underline; } #content_container a.none_underline{ text-decoration:none; } /*widowshade css*/ #accordion{ margin:35px 0 0 -9px; width:550px; display:none; /*border-bottom:1px solid #DBDBDB;*/ } #accordion div.head{ background:url(../../assets/images/pic-windowshade.gif); padding:5px 0 2px 10px; cursor:pointer; width:98%; height:20px; overflow:hidden; } #accordion div.head:focus{outline:none;} #accordion div.pic1 { background:url(../../assets/images/bg-winshade-1.gif); } #accordion div.pic2 { background:url(../../assets/images/bg-winshade-2.gif); } #accordion div.pic3 { background:url(../../assets/images/bg-winshade-3.gif); } #accordion div.pic4 { background:url(../../assets/images/bg-winshade-4.gif); } #accordion div.pic5 { background:url(../../assets/images/bg-winshade-5.gif); } #accordion h3{ cursor:pointer; height:19px; width:450px; } #accordion div.acc_content{ padding:0 6px 0 14px; width:530px; overflow:hidden; background:url(../../assets/images/bg-windowshade.gif) no-repeat; } #accordion div.header_title{ overflow:hidden; padding:9px 0 7px 0; } #accordion div.header_body{ background:#ffffff; padding:0; } #accordion div.bg_white{ background:#ffffff; } #accordion h5{ float:left; line-height:13px; text-align:center; } #content_container h5{text-align:left;} #accordion h6{ float:left; line-height:12px; text-align:center; } .width_one{ width:107px; } .width_two{ width:73px; } .width_three{ width:66px; } .width_four{ width:97px; } .width_five{ width:88px; } .width_six{ width:103px; } .width_one_1{ width:107px; } .width_two_1{ width:223px; } .width_three_1{ width:204px; } #content_container a.btn_detail, #content_container_nosidebar a.btn_detail{ color:#0F2D50; display:block; font-size:1em; margin-left:10px; text-decoration:none; width:87px; } .detail-notice{ padding:5px;} .brief{ margin-bottom:10px; overflow:hidden; } .details{ overflow:hidden; display:none; margin-left:20px; _margin-left:10px; float:left; _width:518px; } #content_container ul{padding-left:15px;/*margin:0 9px 14px 0;*/list-style-type:disc; margin-bottom: 10px;} #content_container ol{padding-left:18px;margin:0 9px 14px 0;} #content_container ol ul, #content_container ul ul{ list-style-type:circle; padding-left:12px; margin:0 9px 4px 0; } #content_container ul.no_type{ list-style-type:none; padding-left:0; } #content_container li{ font-size:11px; } /*sidebar css*/ #sidebar{ margin-top:20px; width:209px; float:left; display:inline; } #sidebar h4{ margin:0; color:#202735; font-weight:normal; line-height:12px; padding:0; vertical-align:bottom; } #resource_main h3, #sidebar h2 { color:#205C82; display:block; font-size:1.0em; margin:0 0 1px; line-height:1.5em; padding:0; height:auto; } #sidebar h2 { font-size:1.1em; } #sidebar h6 { margin:3px 0; } #sidebar h6 img{ padding:0 6px 0 0; vertical-align:top; } #sidebar h6 a{ color:#093678; font-size:11px; height:13px; line-height:13px; } #sidebar form { margin:0 0 3px; height:17px; } #sidebar .field { background:#FDFDFD; border:1px solid #CCCCCC; height:15px; line-height:12px; padding:0 5px 2px; width:136px; font-size:1.1em; color:#202735; } #sidebar a{ color:#FFFFFF; font-size:1.1em; margin:0 ; line-height:12px; } #sidebar .more_container{ position:absolute; bottom:0; height:16px; margin:0 0 0 -4px; } .select { width:159px; border:1px solid #CCCCCC; height:18px; } .send-btn, .go-btn { background:url(../../assets/images/btns.gif) no-repeat -331px 0; cursor:pointer; display:inline; font-size:0; height:16px; line-height:0; margin:0 0 0 5px; text-indent:-9999px; width:38px; } .go-btn { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -370px 0; width:29px; position:absolute; margin:1px 0 0 4px; } /*chat live css*/ #chat_live{ background:url(../../assets/images/bg-chat-live.gif) no-repeat; height:51px; padding:13px 0 0 10px; width:199px; } #chat_live h4{ background:transparent url(../../assets/images/sidebar-hd.gif) no-repeat; text-indent:-9999px; height:12px; margin:0 0 8px; font-size:0; } /*resource center css*/ #resource_center{ background:url(../../assets/images/bg-toolbox.gif) no-repeat; height:133px; margin-top:24px; padding:14px 0 0 12px; width:197px; position:relative; z-index:1; } #resource_center h4.title{ background:transparent url(../../assets/images/sidebar-hd.gif) no-repeat 0 -12px; text-indent:-9999px; margin:0 0 3px; height:12px; margin:0 0 8px; font-size:0; } #sidebar_ad{margin:10px 0 0 5px;} #sidebar #sidebar_ad a{position:absolute; display:block; margin:0 0 0 7px; width:190px; height:295px;background:transparent url(../../assets/images/spacer.gif) no-repeat 0;} /*footer css*/ #footer_container{ background:#f9f9f9; border-top:1px solid #d9e2e8; clear:both; height:246px; min-width:1003px; width:100%; position:relative; z-index:1; float:left; } #footer_center{ background:#f9f9f9; margin:0 auto; width:1003px; position:relative; z-index:1; text-align: center; } #footer_wrapper{ clear:both; float:right; width:970px; margin-top:50px; height:120px; position:relative; text-align:left; } #footer_wrapper ul li{ font-weight:bold; float:left; font-size:1em; } #footer_wrapper ul li.first{ width:185px; } #footer_wrapper ul li.second{ width:170px; } #footer_wrapper ul li.third{ width:150px; } #footer_wrapper ul li.fourth{ width:150px; } #footer_wrapper ul li.fifth{ width:170px; } #footer_wrapper ul li.last{ width:122px; } #footer_wrapper ul li li{ clear:both; width:100%; margin-bottom:3px; } #footer_wrapper ul li li a{ } #footer_wrapper ul li li.title{ color:#232323; } #footer_wrapper a{ font-size:1.0; text-decoration:underline; } #disclaimer,#copyright{ width:804px; font-size:0.9em; color:#787d8d; font-weight:bold; margin: 0 auto; position:relative; text-align:left; } .icon { margin-right: 5px; position: relative; top: 3px; } .dropdown {outline:none;} .dropdown h4{cursor:default; text-indent:5px;} .dropdown * {-moz-user-select:none;} .dropdown h4.over {} .dropdown div {display:none; position:relative;} .dropdown span {position:absolute;} .dropdown ul{position:absolute;display:none; z-index: 5;} .dropdown ul li{text-indent:5px; z-index: 6;} .dropdown ul li.over{ z-index: 7;} .dropdown {float:left; font-size:1.1em; color:#202735;} #sidebar div.dropdown h4{cursor:default; text-indent:5px; line-height:normal; font-size:1.1em; line-height:18px;} .dropdown h4{cursor:default; text-indent:5px; line-height:normal; padding:0;} .dropdown * {-moz-user-select:none;} .dropdown h4.over {} .dropdown span {position:absolute;} .dropdown ul{position:absolute; cursor:default;display:none;background:#FFFFFF none repeat scroll 0 0;border:1px solid #AAAAAA; z-index: 5;} .dropdown ul li{text-indent:5px; font-size:1.1em; white-space:nowrap; z-index: 6;} .dropdown ul li.over{background:#aaa; color:#fff; z-index: 7;} #copyright{ clear:both; text-align:left;} #more-about { width: 275px; padding: 10px 10px 10px 12px; background: #fbfbfb; text-align: left; border: 1px solid #666; position: absolute; margin-left: 0px; margin-bottom: 57px; *margin-left:-959px; *margin-bottom:56px; z-index: 30; font-size: .9em; display:none; } #sitemap { width: 180px; padding: 10px 10px 10px 12px; background: #fbfbfb; text-align: left; border: 1px solid #666; position: absolute; margin-left: 138px; margin-bottom:-49px; *margin-left:-809px; *margin-bottom:-50px; z-index: 30; font-size: .9em; display:none; } #more-about p { color: #333; margin: 0 0 .5em 0; line-height:1.2em; margin:0; padding:0; } #more-about h4 { color: #011222; margin:0; line-height:1.2em; padding:0; font-size:1.1em; } #sitemap h4 { color: #011222; margin:0; line-height:1.2em; padding:0; font-size:1.1em; } #copyright a,#disclaimer a{ color:#787D8D; text-decoration:underline;} #copyright a:hover,#disclaimer a:hover{ text-decoration:none;} .p_l_10{padding-left:10px;} .t_i_12{padding-left:10px; background:transparent url(../../assets/images/arr.gif) no-repeat scroll 0 5px;} sup{font-size:8px;} h2 sup { line-height: 0px; vertical-align: super; font-size: 0.5em; } h2 sub { line-height: 0px; vertical-align: sub; font-size: 0.5em; } #devry a{ text-decoration:underline;} #devry h4 a{ color:#fff;text-decoration:none;} #sidebar ul li.multi{ text-indent: 0pt; padding-left: 2px; } .padding_space{ padding-left:12px; } .standard_font{font-size:10px;} #resource_center h3{font-size:1em;} div.level3,div.level3Decp{display:block; float:left; width:500px; overflow:hidden; padding:2px 0 5px 25px;} #content_container div.level3 a, #content_container div.level3 label{ display:block; float:left; width:240px;} #content_container div.level3 a.special{ display:inline; float:none;} i.globSpec{ display:block; padding:5px 0 0 12px; float:left; width:100%;} #devry div.level3_update,#subProgram div.level3_update{ padding:2px 0 2px 9px; display:block; float:left; width:245px; } #devry div.level3_update div a,#subProgram div.level3_update a{ /*width:235px; padding-left:6px; background:transparent url(../../assets/images/dot.gif) no-repeat scroll 0 6px;*/ text-decoration:underline;/* float:left;*/ margin:0;} /*added on 2010-01-18*/ #devryTitle a.h2a{color:#0F2D50;font-size:2em;font-weight:bold;} #hero_flash_container{ float:left; width:720px; } #flash_container_flash{ width:555px; height:313px; float:left; } #flash_container_right_copy{ position:absolute; left:555px; } .brightcove_hero_package{ width:786px; height:313px; float:left; } .brightcove_hero_holder{ float:left; } .brightcove_right_img{ float:right; } /* Inline Hero Videos */ #hero_flash_container_inline, .hero_flash_container_inline{ width:415px; height:230px; margin-bottom:10px; } #flash_container_inline, .flash_container_inline{ width:415px; height:230px; float:left; } .campus-life-1{background-image:url(../images/campus-life-1.jpg);} .campus-life-2{background-image:url(../images/campus-life-2.jpg);} .financial-aid-1{background-image:url(../images/financial-aid-1.jpg);} .online_programs-1{background-image:url(../images/online_programs-1.jpg);} .transferstudents-1{background-image:url(../images/transferstudents-1.jpg);} ul.inline_list{ margin:0px 0px 10px -15px; padding:0px; list-style-type:none; } .inline_list li{list-style-type:none;} /*Sidebar Hero Videos */ #hero_container_sidebar{ width:209px; margin:0px 0px 10px 0px; } #hero_container_sidebar_tabs{ width:209px; margin:-50px 0px 10px 0px; } #hero_container_sidebar a, #hero_container_sidebar_tabs a{ color:#093678; } #hero_container_sidebar p, #hero_container_sidebar_tabs p{ margin:5px 0px 5px 0px; font-size:12px; } #hero_container_sidebar h2, #hero_container_sidebar_tabs h2{ margin:0px; } #flash_container_sidebar img, #flash_container_sidebar span{ cursor:pointer; } #flash_container_sidebar p{display:none;} .sidebar_lightbox{ color:blue; } .sidebar_infosec #flash_container_sidebar{ margin-top:-25px; } #hero_wrapper{ width:697px; height:419px; background-image:url(../images/hero_background.png); position:fixed; top: 50%; left: 50%; margin-left: -359px; margin-top: -210px; text-align:center; display:none; z-index:100000000; background-color:transparent; } #video_close_btn{ text-indent: -999999px; overflow: hidden; width: 20px; height: 20px; background: url(../images/close-button.png) left top no-repeat; display: block; position: absolute; top: -10px; right: -10px; } #hero_wrapper object, #hero_wrapper embed{ margin:13px 0px 0px 22px; float:left; z-index:100000005; } #hero_cover{ z-index:100000; display:none; width:100%; height:100%; position:fixed; background-color:#000; top:0; left:0; text-align:center; } .sidebar_vid, .hero_lightbox_trigger{ display:none; } .hero_lightbox_trigger{ font-size:11px; text-decoration:underline; cursor:pointer; } span.sidebar_lightbox{margin-top:0px; } .sidebar_vid img{cursor:pointer} #flash_container_sidebar p span{cursor:pointer;} /*Express Links css*/ #express-links{ background: url(../../assets/images/express-links-bg.png) left top no-repeat; margin-top: 24px; padding: 15px 0px 15px 13px; height: 184px; } #express-links h4{ text-indent: -99999px; display: block; background: url(../../assets/images/express-links-header.png) left top no-repeat; height: 32px; width: 136px; margin-bottom: 5px; } #express-links a{ font-size: 12px; text-decoration: underline; color: #002e6e; line-height: 17px; } #express-links a:hover{ text-decoration: none; } #content_container ul.liberal-arts-bullets{ list-style-type:none; margin:-12px 0px 15px 0px; padding:0px; } #content_container ul.liberal-arts-bullets li{font-size:12px;} #sidebar .green-sidebar p{ font-size:11px; width:216px; line-height:15px; } #sidebar .green-sidebar p a{ color:#124a7c; font-size:11px; text-decoration:underline; } #sidebar .green-sidebar p a:hover{ color:#696969; } .dvu-small-title{font-weight: bold; color:#163355; margin-bottom:0px;} .why-devry-hero{background: url(../images/a-salute-to-those-who-let-nothing-stand-in-their-way.jpg) no-repeat;} #express-information{margin: 0px 0px 10px 0px;} #express-information p{ font-weight:bold; color:#124a7c; margin:0px; } #express-information span{ font-style:italic; color:#717171; } #express-information ul{ margin:15px 0px 0px 0px; } #express-information ul a{ font-weight:bold; color:#124a7c; text-decoration:underline; clear:both; } #express-information ul a:hover{ color:#717171; } #express-information ul li{ background:url(../images/express-link-bottom-arrow.png) no-repeat; min-height:30px; margin:0 0 0; padding:5px 0 0 30px; } .lbvid img.green_lightbox_trigger{ cursor:pointer; margin-bottom:10px; } #sidebar .lbvid a.green_lightbox_trigger{ color:#10498b; text-decoration:underline; } #sidebar .lbvid a.green_lightbox_trigger:hover{ color:#696969; } div#sidebar div.sidebar-package p a.brightcoveLightbox{ color:blue; text-decoration:underline; float:left; width: 209px; display: block; font-size: 11px; } div#sidebar div.sidebar-package a.brightcoveLightbox:hover{ color:#696969; text-decoration:underline; } div#sidebar div.sidebar-package img.brightcoveLightbox{ margin-bottom: 10px; } div#sidebar div.sidebar-package p{ margin-bottom:30px; line-height: 1.4; }
DeVry/kccl_dev/resources/css/global.css
@charset "utf-8"; /* CSS Document */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { font-family:inherit; font-size:100%; font-style:inherit; font-weight:inherit; line-height:1.4; } .orderpart{ border:1px solid #cccccc; } body{ margin:0; font-size:10px; color:#252525; text-align:left; } body, input, ul, ol, dl, a, h1, h2, h3, h4, h5, h6, p { font-family:Arial, Helvetica, sans-serif; margin:0; padding:0; border:0; } img{border:0px;} ul{ list-style:none; clear:both;/*add on 2009-1-20*/ } a{ text-decoration:none; color:#093678; } #breadcrumbs a{ text-decoration:none; } #breadcrumbs a:hover{ text-decoration:underline; } a:hover{ color: #2882C6; } a.cta_link{ color:#2D73A8; font-size:1.6em; text-decoration:none; } #title_container #cta_link{ text-decoration:none; } DIV#tabs{ float:left; } DIV#tabs ul{float:left; margin-top:10px; border-bottom:1px solid #8b8b8b; border:none;} DIV#tabs li.long{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat -161px -26px; width:220px; text-align:center; } DIV#tabs li.long_sel{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat -161px -1px; width:220px; text-align:center; } DIV#tabs li.short{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat 0 -26px; width:161px; text-align:center; } DIV#tabs li.short_sel{ height:25px; position: relative; float: left; background:url(../../assets/images/tabs.gif) no-repeat 0px -1px; width:161px; text-align:center; } DIV#tabs li.ui-tabs-selected { border-bottom-width: 0; background:url(../../assets/images/tabs.gif) no-repeat right -27px; } DIV#tabs li a{ color:#fff; cursor:pointer; font-size:1.2em; font-weight:bold; height:19px; line-height:25px; float:left; width:100%; text-align:center; padding:0; text-decoration:none; vertical-align:bottom; } DIV#tabs li.ui-tabs-selected a{ cursor: pointer; font-size:1.3em; color:#0f2d50; height:19px; } .sIFR-active #title h1, .sIFR-active #title_pic h1, .sIFR-active #img-container h1, .sIFR-active #content_container h2, .sIFR-active #content_container h3, .sIFR-active #resource_center h3, .sIFR-active #content_container span.cta_link, .sIFR-active #title_container span.cta_link{ visibility: hidden; } h1{ color: #fff; font-size: 23px; padding:13px 0 0 12px; line-height:44px; font-weight:bold; height:33px; width:96%; } h2{ color:#0f2d50; font-size:2em; margin:18px 0 2px; font-weight:bold; } h3{ color:#0f2d50; font-size:1.5em; font-weight:bold; } h4{ color:#0f2d50; font-size:1.3em; font-weight:bold; line-height:29px; padding:0 0 3px 6px; } h5{ color:#0f2d50; font-size:1.1em; font-weight:bold; } h6{ color:#0f2d50; font-size:0.9em; font-weight:bold; } p{ line-height:18px; margin:0 9px 14px 0; font-size:1.2em; } .for-space{height:26px; width:100%;} .for-space-35{height:35px; width:100%;} .top_space{ padding-top:10px; } .dropdown h4 { background:#DDDDDD url(../../assets/images/bg-sel.gif) no-repeat; border:0; display:block; height:18px; line-height:18px; margin:0; } #html_container{ background:url(../../assets/images/bg.png) no-repeat top center; margin:0 auto; max-width:1700px; min-width:1003px; position:relative; z-index:89; overflow:hidden; } #html_center{ margin:0 auto; width:1003px; position:relative; z-index:88; } /*header css*/ #header_container{ width:100%; height:auto; overflow:hidden; } #logo { display:inline; float:left; height:48px; margin:23px 0 0 23px; width:250px; } #logo a { background:transparent url(../../assets/images/KCCL_LOGO_fixed.png) no-repeat; display:block; height:49px; text-indent:-9999px; width:239px; } #logo1 { display:inline; float:left; height:48px; margin:23px 0 0 23px; width:250px; } #logo1 a { background:transparent url(../../assets/images/devry-newyork.gif) no-repeat; display:block; height:48px; text-indent:-9999px; width:250px; } #request-information { display:inline; float:left; height:28px; margin:21px 0 0 152px; width:156px; } #request-information a { background:transparent url(../../assets/images/btns.gif) no-repeat scroll 0 0; display:block; height:28px; text-indent:-9999px; width:159px; } #request-information a:hover { background:transparent url(../../assets/images/btns.gif) no-repeat scroll 0 bottom; } #apply-online { display:inline; float:left; height:28px; margin:21px 0 0 39px; width:111px; } #apply-online a { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -159px 0; display:block; height:28px; text-indent:-9999px; width:113px; } #apply-online a:hover { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -159px bottom; } #search { display:inline; border:1px solid #CCCCCC; float:left; height:30px; margin:20px 0 0 44px; text-align:left; width:220px; } #search-field { background:#FDFDFD; border:1px solid #CCCCCC; height:18px; margin-top:4px; vertical-align:top; width:156px; } #search-btn { background:transparent url(../../assets/images/btns.gif) no-repeat -272px 0px; border:none; display:inline; height:28px; margin:1px 0 0 -8px; text-indent:-9999px; width:57px; cursor:pointer; overflow:hidden; } #breadcrumbs{ float:left; margin:15px 0 0 74px; color:#000000; font-size:1.1em; } #breadcrumbs a, #breadcrumbs label{ font-size:0.8em; } /*navigate css*/ #navigate_container{ width:199px; height:auto; float:left; padding-bottom:50px; font-size:1.2em; z-index: 200; } #navigate_container ul{ list-style:none; margin:0 0 0 21px; width:154px; float:left; z-index: 200; } #navigate_container ul li{ border:1px solid #d6d6d6; background:url(../../assets/images/bg-nav-level1.gif) repeat-x 0 -17px; height:18px; font-size:1em; font-weight:bold; line-height:17px; } #navigate_container ul li a{ color:#113570; } #navigate_container ul li.title{ border:1px solid #41687e; background:url(../../assets/images/bg-nav-level1.gif) repeat-x; height:17px; color:#ffffff; text-indent:5px; } #navigate_container ul li.level2{ border:0; height:auto; background:url(../../assets/images/bg-nav-level2.gif) no-repeat bottom; padding:7px 0 7px 16px; font-size:0.9em; line-height:11px; font-weight:normal; z-index: 200; } #navigate_container ul li.level2_sel{ background:#004679; color:#ffffff; z-index: 200; } #navigate_container ul li.level2 a{ color:#363636; vertical-align:middle; display:block; } #navigate_container ul ul.level3{ display:none; z-index: 200; } #navigate_container ul li.level2_sel a{ color:#fff; } #sub_nav_container{ background:url(../../assets/images/bg-sub-navs.gif) no-repeat 0 -3px; width:202px; padding-top:2px; position:absolute; display:none; z-index: 200; } #sub_nav_body{ background:url(../../assets/images/bg-sub-navs-body.gif) repeat-y; width:100%; } #sub_nav_bottom{ height:3px; background:url(../../assets/images/bg-sub-navs.gif) no-repeat 0 0; width:100%; overflow:hidden; } #sub_nav_container ul li ul li{ padding:0; font-size:1.1em; color:#262626; background:none; text-indent:-9px; padding-left:9px; } #sub_nav_container ul li ul li.level4{ padding-left:18px; text-indent:-9px; } #sub_nav_container ul li ul li.include_class{ font-style:italic; font-size:0.9em; line-height:17px; } #sub_nav_container ul li ul li a{ padding:0; font-size:0.8em; color:#262626; } #sub_nav_container ul li ul li a:hover{ padding:0; color:#2478ad; text-decoration:underline; } #sub_nav_container ul li{ background:url(../../assets/images/bg-sub-line.gif) no-repeat bottom; padding:2px 9px 4px; color:#0f2d50; } /*main container css*/ #main_container{ width:804px; position:relative; float:left; margin:25px 0 0; padding-bottom:50px; } #img-container{ min-height:44px; } #title{ background:transparent url(../../assets/images/bg-title.gif) no-repeat; height:44px; width:786px; } #title_pic{ width:786px; } #title_pic h1{ position:absolute; margin-top:-15px;} .sIFR-active #title_pic h1{margin-top:0px;} /*content css sidebar*/ #content_container{ float:left; width:545px; margin-right:25px; padding:0 0 0 9px; } #content_container a{ text-decoration:underline; } #content_container h4{ color:#0F2D50; font-size:1.3em; font-weight:bold; line-height:1.4em; padding:0; } /*content css no sidebar*/ #content_container_nosidebar{ float:left; width:790px; padding:0 0 0 10px; } a.def{ text-decoration:underline; } #content_container a.none_underline{ text-decoration:none; } /*widowshade css*/ #accordion{ margin:35px 0 0 -9px; width:550px; display:none; /*border-bottom:1px solid #DBDBDB;*/ } #accordion div.head{ background:url(../../assets/images/pic-windowshade.gif); padding:5px 0 2px 10px; cursor:pointer; width:98%; height:20px; overflow:hidden; } #accordion div.head:focus{outline:none;} #accordion div.pic1 { background:url(../../assets/images/bg-winshade-1.gif); } #accordion div.pic2 { background:url(../../assets/images/bg-winshade-2.gif); } #accordion div.pic3 { background:url(../../assets/images/bg-winshade-3.gif); } #accordion div.pic4 { background:url(../../assets/images/bg-winshade-4.gif); } #accordion div.pic5 { background:url(../../assets/images/bg-winshade-5.gif); } #accordion h3{ cursor:pointer; height:19px; width:450px; } #accordion div.acc_content{ padding:0 6px 0 14px; width:530px; overflow:hidden; background:url(../../assets/images/bg-windowshade.gif) no-repeat; } #accordion div.header_title{ overflow:hidden; padding:9px 0 7px 0; } #accordion div.header_body{ background:#ffffff; padding:0; } #accordion div.bg_white{ background:#ffffff; } #accordion h5{ float:left; line-height:13px; text-align:center; } #content_container h5{text-align:left;} #accordion h6{ float:left; line-height:12px; text-align:center; } .width_one{ width:107px; } .width_two{ width:73px; } .width_three{ width:66px; } .width_four{ width:97px; } .width_five{ width:88px; } .width_six{ width:103px; } .width_one_1{ width:107px; } .width_two_1{ width:223px; } .width_three_1{ width:204px; } #content_container a.btn_detail, #content_container_nosidebar a.btn_detail{ color:#0F2D50; display:block; font-size:1em; margin-left:10px; text-decoration:none; width:87px; } .detail-notice{ padding:5px;} .brief{ margin-bottom:10px; overflow:hidden; } .details{ overflow:hidden; display:none; margin-left:20px; _margin-left:10px; float:left; _width:518px; } #content_container ul{padding-left:15px;/*margin:0 9px 14px 0;*/list-style-type:disc; margin-bottom: 10px;} #content_container ol{padding-left:18px;margin:0 9px 14px 0;} #content_container ol ul, #content_container ul ul{ list-style-type:circle; padding-left:12px; margin:0 9px 4px 0; } #content_container ul.no_type{ list-style-type:none; padding-left:0; } #content_container li{ font-size:11px; } /*sidebar css*/ #sidebar{ margin-top:20px; width:209px; float:left; display:inline; } #sidebar h4{ margin:0; color:#202735; font-weight:normal; line-height:12px; padding:0; vertical-align:bottom; } #resource_main h3, #sidebar h2 { color:#205C82; display:block; font-size:1.0em; margin:0 0 1px; line-height:1.5em; padding:0; height:auto; } #sidebar h2 { font-size:1.1em; } #sidebar h6 { margin:3px 0; } #sidebar h6 img{ padding:0 6px 0 0; vertical-align:top; } #sidebar h6 a{ color:#093678; font-size:11px; height:13px; line-height:13px; } #sidebar form { margin:0 0 3px; height:17px; } #sidebar .field { background:#FDFDFD; border:1px solid #CCCCCC; height:15px; line-height:12px; padding:0 5px 2px; width:136px; font-size:1.1em; color:#202735; } #sidebar a{ color:#FFFFFF; font-size:1.1em; margin:0 ; line-height:12px; } #sidebar .more_container{ position:absolute; bottom:0; height:16px; margin:0 0 0 -4px; } .select { width:159px; border:1px solid #CCCCCC; height:18px; } .send-btn, .go-btn { background:url(../../assets/images/btns.gif) no-repeat -331px 0; cursor:pointer; display:inline; font-size:0; height:16px; line-height:0; margin:0 0 0 5px; text-indent:-9999px; width:38px; } .go-btn { background:transparent url(../../assets/images/btns.gif) no-repeat scroll -370px 0; width:29px; position:absolute; margin:1px 0 0 4px; } /*chat live css*/ #chat_live{ background:url(../../assets/images/bg-chat-live.gif) no-repeat; height:51px; padding:13px 0 0 10px; width:199px; } #chat_live h4{ background:transparent url(../../assets/images/sidebar-hd.gif) no-repeat; text-indent:-9999px; height:12px; margin:0 0 8px; font-size:0; } /*resource center css*/ #resource_center{ background:url(../../assets/images/bg-toolbox.gif) no-repeat; height:133px; margin-top:24px; padding:14px 0 0 12px; width:197px; position:relative; z-index:1; } #resource_center h4.title{ background:transparent url(../../assets/images/sidebar-hd.gif) no-repeat 0 -12px; text-indent:-9999px; margin:0 0 3px; height:12px; margin:0 0 8px; font-size:0; } #sidebar_ad{margin:10px 0 0 5px;} #sidebar #sidebar_ad a{position:absolute; display:block; margin:0 0 0 7px; width:190px; height:295px;background:transparent url(../../assets/images/spacer.gif) no-repeat 0;} /*footer css*/ #footer_container{ background:#f9f9f9; border-top:1px solid #d9e2e8; clear:both; height:246px; min-width:1003px; width:100%; position:relative; z-index:1; float:left; } #footer_center{ background:#f9f9f9; margin:0 auto; width:1003px; position:relative; z-index:1; text-align: center; } #footer_wrapper{ clear:both; float:right; width:970px; margin-top:50px; height:120px; position:relative; text-align:left; } #footer_wrapper ul li{ font-weight:bold; float:left; font-size:1em; } #footer_wrapper ul li.first{ width:185px; } #footer_wrapper ul li.second{ width:170px; } #footer_wrapper ul li.third{ width:150px; } #footer_wrapper ul li.fourth{ width:150px; } #footer_wrapper ul li.fifth{ width:170px; } #footer_wrapper ul li.last{ width:122px; } #footer_wrapper ul li li{ clear:both; width:100%; margin-bottom:3px; } #footer_wrapper ul li li a{ } #footer_wrapper ul li li.title{ color:#232323; } #footer_wrapper a{ font-size:1.0; text-decoration:underline; } #disclaimer,#copyright{ width:804px; font-size:0.9em; color:#787d8d; font-weight:bold; margin: 0 auto; position:relative; text-align:left; } .icon { margin-right: 5px; position: relative; top: 3px; } .dropdown {outline:none;} .dropdown h4{cursor:default; text-indent:5px;} .dropdown * {-moz-user-select:none;} .dropdown h4.over {} .dropdown div {display:none; position:relative;} .dropdown span {position:absolute;} .dropdown ul{position:absolute;display:none; z-index: 5;} .dropdown ul li{text-indent:5px; z-index: 6;} .dropdown ul li.over{ z-index: 7;} .dropdown {float:left; font-size:1.1em; color:#202735;} #sidebar div.dropdown h4{cursor:default; text-indent:5px; line-height:normal; font-size:1.1em; line-height:18px;} .dropdown h4{cursor:default; text-indent:5px; line-height:normal; padding:0;} .dropdown * {-moz-user-select:none;} .dropdown h4.over {} .dropdown span {position:absolute;} .dropdown ul{position:absolute; cursor:default;display:none;background:#FFFFFF none repeat scroll 0 0;border:1px solid #AAAAAA; z-index: 5;} .dropdown ul li{text-indent:5px; font-size:1.1em; white-space:nowrap; z-index: 6;} .dropdown ul li.over{background:#aaa; color:#fff; z-index: 7;} #copyright{ clear:both; text-align:left;} #more-about { width: 275px; padding: 10px 10px 10px 12px; background: #fbfbfb; text-align: left; border: 1px solid #666; position: absolute; margin-left: 0px; margin-bottom: 57px; *margin-left:-959px; *margin-bottom:56px; z-index: 30; font-size: .9em; display:none; } #sitemap { width: 180px; padding: 10px 10px 10px 12px; background: #fbfbfb; text-align: left; border: 1px solid #666; position: absolute; margin-left: 138px; margin-bottom:-49px; *margin-left:-809px; *margin-bottom:-50px; z-index: 30; font-size: .9em; display:none; } #more-about p { color: #333; margin: 0 0 .5em 0; line-height:1.2em; margin:0; padding:0; } #more-about h4 { color: #011222; margin:0; line-height:1.2em; padding:0; font-size:1.1em; } #sitemap h4 { color: #011222; margin:0; line-height:1.2em; padding:0; font-size:1.1em; } #copyright a,#disclaimer a{ color:#787D8D; text-decoration:underline;} #copyright a:hover,#disclaimer a:hover{ text-decoration:none;} .p_l_10{padding-left:10px;} .t_i_12{padding-left:10px; background:transparent url(../../assets/images/arr.gif) no-repeat scroll 0 5px;} sup{font-size:8px;} h2 sup { line-height: 0px; vertical-align: super; font-size: 0.5em; } h2 sub { line-height: 0px; vertical-align: sub; font-size: 0.5em; } #devry a{ text-decoration:underline;} #devry h4 a{ color:#fff;text-decoration:none;} #sidebar ul li.multi{ text-indent: 0pt; padding-left: 2px; } .padding_space{ padding-left:12px; } .standard_font{font-size:10px;} #resource_center h3{font-size:1em;} div.level3,div.level3Decp{display:block; float:left; width:500px; overflow:hidden; padding:2px 0 5px 25px;} #content_container div.level3 a, #content_container div.level3 label{ display:block; float:left; width:240px;} #content_container div.level3 a.special{ display:inline; float:none;} i.globSpec{ display:block; padding:5px 0 0 12px; float:left; width:100%;} #devry div.level3_update,#subProgram div.level3_update{ padding:2px 0 2px 9px; display:block; float:left; width:245px; } #devry div.level3_update div a,#subProgram div.level3_update a{ /*width:235px; padding-left:6px; background:transparent url(../../assets/images/dot.gif) no-repeat scroll 0 6px;*/ text-decoration:underline;/* float:left;*/ margin:0;} /*added on 2010-01-18*/ #devryTitle a.h2a{color:#0F2D50;font-size:2em;font-weight:bold;} #hero_flash_container{ float:left; width:720px; } #flash_container_flash{ width:555px; height:313px; float:left; } #flash_container_right_copy{ position:absolute; left:555px; } .brightcove_hero_package{ width:786px; height:313px; float:left; } .brightcove_hero_holder{ float:left; } .brightcove_right_img{ float:right; } /* Inline Hero Videos */ #hero_flash_container_inline, .hero_flash_container_inline{ width:415px; height:230px; margin-bottom:10px; } #flash_container_inline, .flash_container_inline{ width:415px; height:230px; float:left; } .campus-life-1{background-image:url(../images/campus-life-1.jpg);} .campus-life-2{background-image:url(../images/campus-life-2.jpg);} .financial-aid-1{background-image:url(../images/financial-aid-1.jpg);} .online_programs-1{background-image:url(../images/online_programs-1.jpg);} .transferstudents-1{background-image:url(../images/transferstudents-1.jpg);} ul.inline_list{ margin:0px 0px 10px -15px; padding:0px; list-style-type:none; } .inline_list li{list-style-type:none;} /*Sidebar Hero Videos */ #hero_container_sidebar{ width:209px; margin:0px 0px 10px 0px; } #hero_container_sidebar_tabs{ width:209px; margin:-50px 0px 10px 0px; } #hero_container_sidebar a, #hero_container_sidebar_tabs a{ color:#093678; } #hero_container_sidebar p, #hero_container_sidebar_tabs p{ margin:5px 0px 5px 0px; font-size:12px; } #hero_container_sidebar h2, #hero_container_sidebar_tabs h2{ margin:0px; } #flash_container_sidebar img, #flash_container_sidebar span{ cursor:pointer; } #flash_container_sidebar p{display:none;} .sidebar_lightbox{ color:blue; } .sidebar_infosec #flash_container_sidebar{ margin-top:-25px; } #hero_wrapper{ width:697px; height:419px; background-image:url(../images/hero_background.png); position:fixed; top: 50%; left: 50%; margin-left: -359px; margin-top: -210px; text-align:center; display:none; z-index:100000000; background-color:transparent; } #video_close_btn{ text-indent: -999999px; overflow: hidden; width: 20px; height: 20px; background: url(../images/close-button.png) left top no-repeat; display: block; position: absolute; top: -10px; right: -10px; } #hero_wrapper object, #hero_wrapper embed{ margin:13px 0px 0px 22px; float:left; z-index:100000005; } #hero_cover{ z-index:100000; display:none; width:100%; height:100%; position:fixed; background-color:#000; top:0; left:0; text-align:center; } .sidebar_vid, .hero_lightbox_trigger{ display:none; } .hero_lightbox_trigger{ font-size:11px; text-decoration:underline; cursor:pointer; } span.sidebar_lightbox{margin-top:0px; } .sidebar_vid img{cursor:pointer} #flash_container_sidebar p span{cursor:pointer;} /*Express Links css*/ #express-links{ background: url(../../assets/images/express-links-bg.png) left top no-repeat; margin-top: 24px; padding: 15px 0px 15px 13px; height: 184px; } #express-links h4{ text-indent: -99999px; display: block; background: url(../../assets/images/express-links-header.png) left top no-repeat; height: 32px; width: 136px; margin-bottom: 5px; } #express-links a{ font-size: 12px; text-decoration: underline; color: #002e6e; line-height: 17px; } #express-links a:hover{ text-decoration: none; } #content_container ul.liberal-arts-bullets{ list-style-type:none; margin:-12px 0px 15px 0px; padding:0px; } #content_container ul.liberal-arts-bullets li{font-size:12px;} #sidebar .green-sidebar p{ font-size:11px; width:216px; line-height:15px; } #sidebar .green-sidebar p a{ color:#124a7c; font-size:11px; text-decoration:underline; } #sidebar .green-sidebar p a:hover{ color:#696969; } .dvu-small-title{font-weight: bold; color:#163355; margin-bottom:0px;} .why-devry-hero{background: url(../images/a-salute-to-those-who-let-nothing-stand-in-their-way.jpg) no-repeat;} #express-information{margin: 0px 0px 10px 0px;} #express-information p{ font-weight:bold; color:#124a7c; margin:0px; } #express-information span{ font-style:italic; color:#717171; } #express-information ul{ margin:15px 0px 0px 0px; } #express-information ul a{ font-weight:bold; color:#124a7c; text-decoration:underline; clear:both; } #express-information ul a:hover{ color:#717171; } #express-information ul li{ background:url(../images/express-link-bottom-arrow.png) no-repeat; min-height:30px; margin:0 0 0; padding:5px 0 0 30px; } .lbvid img.green_lightbox_trigger{ cursor:pointer; margin-bottom:10px; } #sidebar .lbvid a.green_lightbox_trigger{ color:#10498b; text-decoration:underline; } #sidebar .lbvid a.green_lightbox_trigger:hover{ color:#696969; } div#sidebar div.sidebar-package p a.brightcoveLightbox{ color:blue; text-decoration:underline; float:left; width: 209px; display: block; font-size: 11px; } div#sidebar div.sidebar-package a.brightcoveLightbox:hover{ color:#696969; text-decoration:underline; } div#sidebar div.sidebar-package img.brightcoveLightbox{ margin-bottom: 10px; } div#sidebar div.sidebar-package p{ margin-bottom:30px; line-height: 1.4; }
0.169612
0.051012
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); :root { --cor-primary: #3f51b5; --cor-secondary: #c3d1f1; --cor-destaque: #278ba9; --cor-clara: #d2ddf5; --cor-bebe: #e1e8f8; --cor-diluida: #f0f4fc; --cor-base: #f7f9fe; --font-family: 'Poppins', sans-serif; --fontse-tamanho-padrao: 16px; --padding-padrao: 16px; --padding-metade: calc(var(--padding-padrao) / 2); --padding-dobro: calc(var(--padding-padrao) * 2); --border-radius-padrao: 10px; --border-radius-metade: calc(var(--padding-padrao) / 2); --border-radius-dobro: calc(var(--padding-padrao) * 2); --sombra-primary: drop-shadow(2px 2px 3px rgb(63 81 181 / 0.4)); --sombra-fina: drob-shadow(2px 2px 1px rgb(63 81 181 / 0.3)); } *, *::after, *::before, html { box-sizing: border-box; margin: 0; padding: 0; } /* Geral (tags HTML) */ body { box-sizing: border-box; font-family: var(--font-family) !important; transition: all 0.5s; } header { width: 100%; height: 70px; background: #ffffff; opacity: 0.9; position: sticky; top: 0; z-index: 9; font-family: var(--font-family); } nav.header.navbar.navbar-expand-lg.navbar-light.bg-light.fixed-top { background: transparent !important; height: 70px; } a.nav-link { padding: 0 1.5rem !important; font-size: 14px; color: var(--cor-primary) !important; } a.nav-link:hover { color: var(--cor-secondary) !important; } .btn-header { background-color: var(--cor-primary); color: #ffffff; font-size: 14px; border-radius: 30px; padding: 8px 28px; transition: all 0.5s; } a.btn-header.mobile { display: none; } .btn-header:hover { color: var(--cor-primary); background-color: var(--cor-secondary); } img.logo { max-width: 100%; max-height: 100%; } a { color: inherit; text-decoration: none !important; transition: filter 0.6s ease-in-out, text-decoration 0.6s ease-in-out, color 0.6s ease-in-out; } a:hover { color: var(--cor-destaque); /* filter: var(--sombra-primary); */ text-decoration: underline solid var(--cor-destaque) 2px; } ul { list-style: none; padding: 0; margin: auto; } input { border-radius: var(--border-radius-padrao); border: none; color: var(--cor-primary); font-weight: bolder; margin: 0 var(--padding-padrao); padding: var(--padding-metade) var(--padding-padrao); } input::placeholder { color: var(--cor-secondary); } /* Gerais (classes) */ .btn { background-color: var(--cor-primary); border: none; border-radius: var(--border-radius-metade); color: #fff; cursor: pointer; padding: var(--padding-metade) var(--padding-padrao); transition: background-color 0.6s ease-in-out, border-radius 0.6s ease-in-out; } .btn:hover { background-color: var(--cor-destaque); border-radius: var(--border-radius-padrao); color: #fff; } /* Navbar (classes)*/ .navbar { align-items: center; display: flex; flex-flow: row nowrap; justify-content: space-between; } .navbar__menu { align-items: center; display: flex; flex: 1 1 calc(100% - 264px); flex-flow: row nowrap; justify-content: flex-end; } .navbar__menu .menu__item { color: var(--cor-primary); font-size: 1.2rem; font-weight: bolder; padding: var(--padding-metade) 0 var(--padding-metade) var(--padding-padrao); transition: filter 0.6s ease-in-out, text-decoration 0.6 ease-in-out; } .navbar__menu .menu__item a:not(.btn):hover, .navbar_menu .menu__item a:not(.navbar__logo):hover { filter: var(--sombra-fina); text-decoration: 2px solid underline; } /* banner */ .banner__one, .banner__two, .banner__three{ display: flex; align-items: center; justify-content: flex-start; width: 100%; } .bannerOne__content, .bannerTwo__content, .bannerThree__content { position: absolute; order: 1; padding-left: 6rem; color: #ffffff; } .bannerOne__content h3 { font-size: 4rem; margin: 0; } .bannerTwo__content h3, .bannerThree__content h3 { font-size: 2rem; margin: 0; } .bannerOne__content p { font-size: 2rem; margin: 0; } .bannerTwo__content p, .bannerThree__content p { font-size: 1rem; margin: 0; } .bannerOne__content a, .bannerTwo__content a, .bannerThree__content a { color: var(--cor-destaque); background-color: #ffffff; border-radius: 20px; padding: 10px 20px; margin-top: 2rem; float: left; transition: all 0.5s; } .bannerOne__content a:hover, .bannerTwo__content a:hover,.bannerThree__content a:hover { color: #ffffff; background: var(--cor-destaque); } .banners { margin-bottom: 3rem; } /* footer */ footer { background: var(--cor-bebe); } footer p { font-size: 12px; color: var(--cor-primary); line-height: 85px; } footer p { font-size: 12px; color: var(--cor-primary); line-height: 65px; padding: 0; margin: 0; } footer .nav { line-height: 65px; font-size: 12px; flex-wrap: nowrap; } .footer { align-items: stretch; background-color: #fff; display: flex; flex-flow: column nowrap; justify-content: flex-start; padding: var(--padding-padrao); } .search { align-items: center; background-image: url(../img/elementos-web-17.png); background-position: center; background-repeat: no-repeat; background-size: cover; display: flex; flex-flow: row nowrap; height: 80vh; justify-content: center; } .search .search__form { background-color: var(--cor-secondary); border-radius: var(--border-radius-padrao); display: flex; filter: var(--sombra-primary); flex: 0 1 75%; flex-flow: row wrap; max-width: 720px; padding: var(--padding-dobro); } .search .search__form label { color: var(--cor-primary); font-weight: bold; font-size: 1.33rem; } .search .search__form input { flex: 1 1 auto; border-bottom-right-radius: 0; border-top-right-radius: 0; margin-right: 0; } .search .search__form button.btn { border-bottom-left-radius: 0; border-top-left-radius: 0; margin-left: 0; } .categories { display: flex; flex-flow: row wrap; background-color: var(--cor-bebe); border-radius: var(--border-radius-dobro); justify-content: space-around; margin: 64px 0; padding: var(--padding-dobro); align-items: stretch; } .categories .category { background-color: #ffffff; display: flex; border-radius: var(--border-radius-padrao); color: var(--cor-primary); flex: 1 1 150px; margin: 16px; text-align: center; justify-content: flex-start; padding: var(--padding-padrao); flex-flow: column nowrap; align-items: center; } .categories .category .category__link { width: 100%; } .categories .category .category__img-container { display: flex; background-color: var(--cor-diluida); justify-items: center; flex-flow: column nowrap; padding: var(--padding-metade); align-items: center; border-radius: var(--border-radius-padrao); } .categories .category .category__img-container .category__img { max-width: 100%; max-height: 100%; transition: filter 0.6s ease-in-out; width: auto; height: auto; } .categories .category .category__img-container:hover .categoy__img { filter: var(--sombra-prinicpal); } .categories .category .category__content { padding: var(--padding-metade) 0 0; } .entries { display: flex; flex-flow: row wrap; justify-content: space-between; margin: 64px 0; align-items: center; } .entries .entry { display: flex; color: var(--cor-primary); flex: 1 1 150px; margin: 16px; text-align: center; justify-content: flex-start; flex-flow: column nowrap; align-items: center; } .entries .entry__link { width: 80%; border-radius: var(--border-radius-dobro); } .entries .entry .entry__img-container { background-color: var(--cor-bebe); display: flex; justify-items: center; flex-flow: column nowrap; padding: var(--padding-metade); align-items: center; border-radius: var(--border-radius-dobro); margin: 16px 0; } .entries .entry .entry__img-container .entry__img { max-width: 100%; max-height: 100%; transition: filter 0.6s ease-in-out; width: auto; height: auto; } .entries .entry .entry__img-container .entry__img:hover { filter: var(--sombra-prinicpal); } .navbar-toggler { border: none !important; outline: none !important; } .navbar-toggler:focus { box-shadow: none !important; } @media only screen and (max-width: 991px) { footer p, footer .nav { text-align: center; align-items: center; flex-wrap: nowrap; } .bannerOne__content h3 { font-size: 2rem; margin: 0; } .bannerOne__content p { font-size: 1rem; margin: 0; } .bannerOne__content, .bannerTwo__content, .bannerThree__content { padding-left: 3rem; } .bannerOne__content a, .bannerTwo__content a, .bannerThree__content a { margin-top: 10px ; } .btn-connect { display: none; } #navbarNavAltMarkup { background: #ffffff; } a.nav-link.header { padding: 20px !important; font-size: 26px; } header { opacity: 1; } a.btn-header.mobile { display: block; width: 80%; margin: 20px auto; padding: 14px; font-size: 26px; } .categories { display: flex; flex-flow: row nowrap; } .entries { display: flex; flex-direction: row; } } @media (max-width: 768px) { .btn-connect { display: none; } div { color: blue; } }
css/style.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); :root { --cor-primary: #3f51b5; --cor-secondary: #c3d1f1; --cor-destaque: #278ba9; --cor-clara: #d2ddf5; --cor-bebe: #e1e8f8; --cor-diluida: #f0f4fc; --cor-base: #f7f9fe; --font-family: 'Poppins', sans-serif; --fontse-tamanho-padrao: 16px; --padding-padrao: 16px; --padding-metade: calc(var(--padding-padrao) / 2); --padding-dobro: calc(var(--padding-padrao) * 2); --border-radius-padrao: 10px; --border-radius-metade: calc(var(--padding-padrao) / 2); --border-radius-dobro: calc(var(--padding-padrao) * 2); --sombra-primary: drop-shadow(2px 2px 3px rgb(63 81 181 / 0.4)); --sombra-fina: drob-shadow(2px 2px 1px rgb(63 81 181 / 0.3)); } *, *::after, *::before, html { box-sizing: border-box; margin: 0; padding: 0; } /* Geral (tags HTML) */ body { box-sizing: border-box; font-family: var(--font-family) !important; transition: all 0.5s; } header { width: 100%; height: 70px; background: #ffffff; opacity: 0.9; position: sticky; top: 0; z-index: 9; font-family: var(--font-family); } nav.header.navbar.navbar-expand-lg.navbar-light.bg-light.fixed-top { background: transparent !important; height: 70px; } a.nav-link { padding: 0 1.5rem !important; font-size: 14px; color: var(--cor-primary) !important; } a.nav-link:hover { color: var(--cor-secondary) !important; } .btn-header { background-color: var(--cor-primary); color: #ffffff; font-size: 14px; border-radius: 30px; padding: 8px 28px; transition: all 0.5s; } a.btn-header.mobile { display: none; } .btn-header:hover { color: var(--cor-primary); background-color: var(--cor-secondary); } img.logo { max-width: 100%; max-height: 100%; } a { color: inherit; text-decoration: none !important; transition: filter 0.6s ease-in-out, text-decoration 0.6s ease-in-out, color 0.6s ease-in-out; } a:hover { color: var(--cor-destaque); /* filter: var(--sombra-primary); */ text-decoration: underline solid var(--cor-destaque) 2px; } ul { list-style: none; padding: 0; margin: auto; } input { border-radius: var(--border-radius-padrao); border: none; color: var(--cor-primary); font-weight: bolder; margin: 0 var(--padding-padrao); padding: var(--padding-metade) var(--padding-padrao); } input::placeholder { color: var(--cor-secondary); } /* Gerais (classes) */ .btn { background-color: var(--cor-primary); border: none; border-radius: var(--border-radius-metade); color: #fff; cursor: pointer; padding: var(--padding-metade) var(--padding-padrao); transition: background-color 0.6s ease-in-out, border-radius 0.6s ease-in-out; } .btn:hover { background-color: var(--cor-destaque); border-radius: var(--border-radius-padrao); color: #fff; } /* Navbar (classes)*/ .navbar { align-items: center; display: flex; flex-flow: row nowrap; justify-content: space-between; } .navbar__menu { align-items: center; display: flex; flex: 1 1 calc(100% - 264px); flex-flow: row nowrap; justify-content: flex-end; } .navbar__menu .menu__item { color: var(--cor-primary); font-size: 1.2rem; font-weight: bolder; padding: var(--padding-metade) 0 var(--padding-metade) var(--padding-padrao); transition: filter 0.6s ease-in-out, text-decoration 0.6 ease-in-out; } .navbar__menu .menu__item a:not(.btn):hover, .navbar_menu .menu__item a:not(.navbar__logo):hover { filter: var(--sombra-fina); text-decoration: 2px solid underline; } /* banner */ .banner__one, .banner__two, .banner__three{ display: flex; align-items: center; justify-content: flex-start; width: 100%; } .bannerOne__content, .bannerTwo__content, .bannerThree__content { position: absolute; order: 1; padding-left: 6rem; color: #ffffff; } .bannerOne__content h3 { font-size: 4rem; margin: 0; } .bannerTwo__content h3, .bannerThree__content h3 { font-size: 2rem; margin: 0; } .bannerOne__content p { font-size: 2rem; margin: 0; } .bannerTwo__content p, .bannerThree__content p { font-size: 1rem; margin: 0; } .bannerOne__content a, .bannerTwo__content a, .bannerThree__content a { color: var(--cor-destaque); background-color: #ffffff; border-radius: 20px; padding: 10px 20px; margin-top: 2rem; float: left; transition: all 0.5s; } .bannerOne__content a:hover, .bannerTwo__content a:hover,.bannerThree__content a:hover { color: #ffffff; background: var(--cor-destaque); } .banners { margin-bottom: 3rem; } /* footer */ footer { background: var(--cor-bebe); } footer p { font-size: 12px; color: var(--cor-primary); line-height: 85px; } footer p { font-size: 12px; color: var(--cor-primary); line-height: 65px; padding: 0; margin: 0; } footer .nav { line-height: 65px; font-size: 12px; flex-wrap: nowrap; } .footer { align-items: stretch; background-color: #fff; display: flex; flex-flow: column nowrap; justify-content: flex-start; padding: var(--padding-padrao); } .search { align-items: center; background-image: url(../img/elementos-web-17.png); background-position: center; background-repeat: no-repeat; background-size: cover; display: flex; flex-flow: row nowrap; height: 80vh; justify-content: center; } .search .search__form { background-color: var(--cor-secondary); border-radius: var(--border-radius-padrao); display: flex; filter: var(--sombra-primary); flex: 0 1 75%; flex-flow: row wrap; max-width: 720px; padding: var(--padding-dobro); } .search .search__form label { color: var(--cor-primary); font-weight: bold; font-size: 1.33rem; } .search .search__form input { flex: 1 1 auto; border-bottom-right-radius: 0; border-top-right-radius: 0; margin-right: 0; } .search .search__form button.btn { border-bottom-left-radius: 0; border-top-left-radius: 0; margin-left: 0; } .categories { display: flex; flex-flow: row wrap; background-color: var(--cor-bebe); border-radius: var(--border-radius-dobro); justify-content: space-around; margin: 64px 0; padding: var(--padding-dobro); align-items: stretch; } .categories .category { background-color: #ffffff; display: flex; border-radius: var(--border-radius-padrao); color: var(--cor-primary); flex: 1 1 150px; margin: 16px; text-align: center; justify-content: flex-start; padding: var(--padding-padrao); flex-flow: column nowrap; align-items: center; } .categories .category .category__link { width: 100%; } .categories .category .category__img-container { display: flex; background-color: var(--cor-diluida); justify-items: center; flex-flow: column nowrap; padding: var(--padding-metade); align-items: center; border-radius: var(--border-radius-padrao); } .categories .category .category__img-container .category__img { max-width: 100%; max-height: 100%; transition: filter 0.6s ease-in-out; width: auto; height: auto; } .categories .category .category__img-container:hover .categoy__img { filter: var(--sombra-prinicpal); } .categories .category .category__content { padding: var(--padding-metade) 0 0; } .entries { display: flex; flex-flow: row wrap; justify-content: space-between; margin: 64px 0; align-items: center; } .entries .entry { display: flex; color: var(--cor-primary); flex: 1 1 150px; margin: 16px; text-align: center; justify-content: flex-start; flex-flow: column nowrap; align-items: center; } .entries .entry__link { width: 80%; border-radius: var(--border-radius-dobro); } .entries .entry .entry__img-container { background-color: var(--cor-bebe); display: flex; justify-items: center; flex-flow: column nowrap; padding: var(--padding-metade); align-items: center; border-radius: var(--border-radius-dobro); margin: 16px 0; } .entries .entry .entry__img-container .entry__img { max-width: 100%; max-height: 100%; transition: filter 0.6s ease-in-out; width: auto; height: auto; } .entries .entry .entry__img-container .entry__img:hover { filter: var(--sombra-prinicpal); } .navbar-toggler { border: none !important; outline: none !important; } .navbar-toggler:focus { box-shadow: none !important; } @media only screen and (max-width: 991px) { footer p, footer .nav { text-align: center; align-items: center; flex-wrap: nowrap; } .bannerOne__content h3 { font-size: 2rem; margin: 0; } .bannerOne__content p { font-size: 1rem; margin: 0; } .bannerOne__content, .bannerTwo__content, .bannerThree__content { padding-left: 3rem; } .bannerOne__content a, .bannerTwo__content a, .bannerThree__content a { margin-top: 10px ; } .btn-connect { display: none; } #navbarNavAltMarkup { background: #ffffff; } a.nav-link.header { padding: 20px !important; font-size: 26px; } header { opacity: 1; } a.btn-header.mobile { display: block; width: 80%; margin: 20px auto; padding: 14px; font-size: 26px; } .categories { display: flex; flex-flow: row nowrap; } .entries { display: flex; flex-direction: row; } } @media (max-width: 768px) { .btn-connect { display: none; } div { color: blue; } }
0.329068
0.058831
[data-project] > .content { height: 100vh; overflow-y: hidden; } .projects { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; display: block; } [data-project] .projects { pointer-events: auto; } .projects .project { position: absolute; width: calc(100% - 4em); margin-left: 4em; height: inherit; top: 0; z-index: 4; overflow-y: scroll; transform: translate3d(100%,0,0) rotateX(0); transition: all .3s ease-out; background: white; } [data-project='intel'] .projects .project.intel, [data-project='moonmoji'] .projects .project.moonmoji, [data-project='retrorecord'] .projects .project.retrorecord, [data-project='emoji-picker'] .projects .project.emoji-picker, [data-project='android-drag-and-drop'] .projects .project.android-drag-and-drop, [data-project='winamp-skins'] .projects .project.winamp-skins, [data-project='audio-visualizer'] .projects .project.audio-visualizer { transform: translate3d(0%,0,0) rotateX(0); } .projects .project .close-link { display: block; z-index: 3; overflow: hidden; border: none; position: absolute; width: 60px; height: 60px; top: 0; right: 0; transition: background-color .3s ease-out; background-color: black; } .projects .project .close-link img { width: 100%; height: 100%; } .projects .project .close-link:hover { background-color: dimgrey; } .projects .project .content { padding-top: 0; } .projects .close { visibility: hidden; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: black; opacity: .4; } .projects .close div { width: 4em; height: 100%; } [data-project] .close { visibility: visible; cursor: none; } .projects .close.hidden { display: none; } /* consider putting this in another stylesheet as well? */ .slideshow { position: relative; height: 520px; border-top: 2px solid lightgrey; border-bottom: 2px solid lightgrey; overflow: hidden; background: radial-gradient(white, rgb(0,0,0,.1)); } .slideshow .prev, .slideshow .next { position: absolute; top: 0; width: 40%; background: transparent; border: none; height: 100%; z-index: 3; cursor: none; } .slideshow .prev { left: 0; } .slideshow .next { right: 0; } .slideshow div { /* slides */ position: absolute; left: 0; top: 0; width: 100%; height: 100%; text-align: center; z-index: 1; } .slideshow div * { height: 100%; transition: opacity .3s ease-out; opacity: 0; } .slideshow[data-index='0'] div:nth-child(1) *, .slideshow[data-index='1'] div:nth-child(2) *, .slideshow[data-index='2'] div:nth-child(3) *, .slideshow[data-index='3'] div:nth-child(4) *, .slideshow[data-index='4'] div:nth-child(5) * { opacity: 1; } .slideshow-container .controls { margin: 2em 2em 0 0; } .project > .slideshow-container .controls { margin-left: 2em; } .slideshow-container .controls .link { display: inline-block; padding: 0 1em 0 1em; margin-right: 1em; font-size: .8em; cursor: pointer; } .slideshow[data-index='0'] + .controls .link:nth-child(1), .slideshow[data-index='1'] + .controls .link:nth-child(2), .slideshow[data-index='2'] + .controls .link:nth-child(3), .slideshow[data-index='3'] + .controls .link:nth-child(4), .slideshow[data-index='4'] + .controls .link:nth-child(5) { background: black; color: white; pointer-events: none; } .slideshow-container .slideshow div img { object-fit: contain; max-width: 100%; user-select: none; }
static/projects.css
[data-project] > .content { height: 100vh; overflow-y: hidden; } .projects { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; display: block; } [data-project] .projects { pointer-events: auto; } .projects .project { position: absolute; width: calc(100% - 4em); margin-left: 4em; height: inherit; top: 0; z-index: 4; overflow-y: scroll; transform: translate3d(100%,0,0) rotateX(0); transition: all .3s ease-out; background: white; } [data-project='intel'] .projects .project.intel, [data-project='moonmoji'] .projects .project.moonmoji, [data-project='retrorecord'] .projects .project.retrorecord, [data-project='emoji-picker'] .projects .project.emoji-picker, [data-project='android-drag-and-drop'] .projects .project.android-drag-and-drop, [data-project='winamp-skins'] .projects .project.winamp-skins, [data-project='audio-visualizer'] .projects .project.audio-visualizer { transform: translate3d(0%,0,0) rotateX(0); } .projects .project .close-link { display: block; z-index: 3; overflow: hidden; border: none; position: absolute; width: 60px; height: 60px; top: 0; right: 0; transition: background-color .3s ease-out; background-color: black; } .projects .project .close-link img { width: 100%; height: 100%; } .projects .project .close-link:hover { background-color: dimgrey; } .projects .project .content { padding-top: 0; } .projects .close { visibility: hidden; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: black; opacity: .4; } .projects .close div { width: 4em; height: 100%; } [data-project] .close { visibility: visible; cursor: none; } .projects .close.hidden { display: none; } /* consider putting this in another stylesheet as well? */ .slideshow { position: relative; height: 520px; border-top: 2px solid lightgrey; border-bottom: 2px solid lightgrey; overflow: hidden; background: radial-gradient(white, rgb(0,0,0,.1)); } .slideshow .prev, .slideshow .next { position: absolute; top: 0; width: 40%; background: transparent; border: none; height: 100%; z-index: 3; cursor: none; } .slideshow .prev { left: 0; } .slideshow .next { right: 0; } .slideshow div { /* slides */ position: absolute; left: 0; top: 0; width: 100%; height: 100%; text-align: center; z-index: 1; } .slideshow div * { height: 100%; transition: opacity .3s ease-out; opacity: 0; } .slideshow[data-index='0'] div:nth-child(1) *, .slideshow[data-index='1'] div:nth-child(2) *, .slideshow[data-index='2'] div:nth-child(3) *, .slideshow[data-index='3'] div:nth-child(4) *, .slideshow[data-index='4'] div:nth-child(5) * { opacity: 1; } .slideshow-container .controls { margin: 2em 2em 0 0; } .project > .slideshow-container .controls { margin-left: 2em; } .slideshow-container .controls .link { display: inline-block; padding: 0 1em 0 1em; margin-right: 1em; font-size: .8em; cursor: pointer; } .slideshow[data-index='0'] + .controls .link:nth-child(1), .slideshow[data-index='1'] + .controls .link:nth-child(2), .slideshow[data-index='2'] + .controls .link:nth-child(3), .slideshow[data-index='3'] + .controls .link:nth-child(4), .slideshow[data-index='4'] + .controls .link:nth-child(5) { background: black; color: white; pointer-events: none; } .slideshow-container .slideshow div img { object-fit: contain; max-width: 100%; user-select: none; }
0.531696
0.078078
body { background-image: url(../images/background/background.png); margin: 0; margin-top: 40px; padding: 0; font-family: Segoe UI, Arial; } a { color: inherit; text-decoration: none; } a:link { color: inherit; text-decoration: none; } a:active { color: inherit; text-decoration: none; } a:visited { color: inherit; text-decoration: none; } div.background { background-image: url(../images/background/background_ebot.png); width: 100%; height: 773px; position: fixed; top: 0; left: 0; background-repeat: no-repeat; background-position: center; z-index: -1; } div.header_top { background: url("/images/top/background.png") repeat-x scroll 0 0 transparent; height: 40px; left: 0; position: fixed; top: 0; width: 100%; z-index: 2000; } div.header_top_text { color: white; font-size: 11px; margin: auto; width: 1020px; } div.header_top_text_right { line-height: 40px; float: right; font-size: 13px; } div.header_top_text_left { line-height: 40px; font-size: 13px; float: left; } div.header { height: 170px; margin: auto; width: 1020px; } div.header_decal { margin-left: 50px; line-height: 170px; padding-top: 20px; } .menu { width: 1006px; margin: auto; height: 54px; } .menu_border_left { background: url(/images/menu/menu-left.png); width: 3px; height: 54px; float: left; } .menu_background { background: url(/images/menu/menu.png); width: 1000px; float:left; height: 54px; } .menu_border_right { background: url(/images/menu/menu-right.png); width: 3px; height: 54px; float:left; } .menu_element { line-height: 54px; font-size: 20px; font-family: Segoe UI; color: white; text-shadow: 1px 1px 1px #000000; margin-left: 30px; cursor: pointer; float: left; } .menu_separator { height: 25px; padding-top: 6px; font-size: 20px; font-family: Arial; color: white; font-weight: bold; text-shadow: 0 1px 0 #0F598F; margin-left: 10px; cursor: default; float: left; } .menu_actif { background-image: url(/images/menu/menu_actif.png); background-repeat: no-repeat; background-position: bottom center; } .menu_element:hover { background-image: url(/images/menu/menu_actif.png); background-repeat: no-repeat; background-position: bottom center; } div.content { margin: auto; margin-top: 20px; padding-bottom: 10px; width: 1150px; } div.content_sub { margin: auto; margin-top: 40px; padding-bottom: 10px; width: 1000px; } .box_header { position: absolute; color: white; top: -20px; left: -13px; width: 500px; background-image: url(/images/block/header.png); height: 42px; padding-left: 20px; bottom: 0px; font-size: 15px; line-height: 30px; text-shadow: 0px 2px 2px #000000; filter: dropshadow(color=#000000, offx=0, offy=2); border-radius: 5px; -webkit-border-radius: 5px; } div.box_home { position: relative; -webkit-border-radius: 0px 20px 0px 20px; border-radius: 0px 20px 0px 20px; width: 550px; background-color: white; min-height: 200px; float: left; margin-right: 45px; margin-bottom: 20px; margin-top: 20px; padding-top: 20px; } div.box_content { position: relative; -webkit-border-radius: 0px 20px 0px 20px; border-radius: 0px 20px 0px 20px; background-color: white; min-height: 200px; margin-bottom: 20px; margin-top: 20px; padding-top: 20px; } div.box_home_right { margin-right: 0px; } div.box { float: left; } .status { } .status-6 { color: green; } .tableScorePlayer { background: #ececec; border-radius: 5px; margin-top: 5px; margin-bottom: 10px; width: 450px; border: 0px; } .tableScorePlayer tr td { border: 1px solid #b1b1b1; border-radius: 5px; font-size: 12px; height: 25px; } .team-ct { background-color: #d9e0f4; } .team-ct span.score { color: #0069ca; font-weight: bold; } .team-t span.score { color: #e5635d; font-weight: bold; } .team-t { background-color: #fcddde; } .team- { background-color: #ffffff; } img.maps { -webkit-border-radius: 20px 0px 20px 0px ; border-radius: 20px 0px 20px 0px ; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); } .bar_container { width: 460px; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); margin: auto; margin-top: 4px; } .bar { float: left; height: 25px; } .bar_ct { background-image: url(/images/zoom/blue.png); } .bar_t { background-image: url(/images/zoom/red.png); } .bar_separator { } .round-summary img { border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); margin-top: 10px; } .round-summaries { width: 425px; margin: auto; } .round-summary-text { width: 400px; margin: auto; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); color: white; -webkit-border-radius: 0px 0px 10px 10px ; border-radius: 0px 0px 10px 10px ; text-shadow: 0px 1px 1px #000000; filter: dropshadow(color=#000000, offx=0, offy=1); } .round-ct { background-color: #7e95c2; } .round-t { background-color: #f0adaa; } .round-text { font-size: 11px; float: left; padding-left: 5px; padding-top: 2px; } .round-text-desc { padding-top: 10px; padding-left: 70px; font-size:13px; } .tableMatchs { font-size:11px; } .tableMatchs tbody tr td { border-bottom: 1px solid black; height: 25px; } .tableMatchs tfoot tr td { height: 25px; text-align: center; color: #777777; } .tableMatchs tbody tr:nth-child(even) { background: #EEE } .tableMatchs tbody tr:nth-child(odd) { background: #FFF } .stats-title { font-size: 11px; } .stats-content { font-size: 14px; padding-bottom: 10px; } .stats-content img { vertical-align: middle; } .stats-content span { font-size: 12px; }
web/css/main.css
body { background-image: url(../images/background/background.png); margin: 0; margin-top: 40px; padding: 0; font-family: Segoe UI, Arial; } a { color: inherit; text-decoration: none; } a:link { color: inherit; text-decoration: none; } a:active { color: inherit; text-decoration: none; } a:visited { color: inherit; text-decoration: none; } div.background { background-image: url(../images/background/background_ebot.png); width: 100%; height: 773px; position: fixed; top: 0; left: 0; background-repeat: no-repeat; background-position: center; z-index: -1; } div.header_top { background: url("/images/top/background.png") repeat-x scroll 0 0 transparent; height: 40px; left: 0; position: fixed; top: 0; width: 100%; z-index: 2000; } div.header_top_text { color: white; font-size: 11px; margin: auto; width: 1020px; } div.header_top_text_right { line-height: 40px; float: right; font-size: 13px; } div.header_top_text_left { line-height: 40px; font-size: 13px; float: left; } div.header { height: 170px; margin: auto; width: 1020px; } div.header_decal { margin-left: 50px; line-height: 170px; padding-top: 20px; } .menu { width: 1006px; margin: auto; height: 54px; } .menu_border_left { background: url(/images/menu/menu-left.png); width: 3px; height: 54px; float: left; } .menu_background { background: url(/images/menu/menu.png); width: 1000px; float:left; height: 54px; } .menu_border_right { background: url(/images/menu/menu-right.png); width: 3px; height: 54px; float:left; } .menu_element { line-height: 54px; font-size: 20px; font-family: Segoe UI; color: white; text-shadow: 1px 1px 1px #000000; margin-left: 30px; cursor: pointer; float: left; } .menu_separator { height: 25px; padding-top: 6px; font-size: 20px; font-family: Arial; color: white; font-weight: bold; text-shadow: 0 1px 0 #0F598F; margin-left: 10px; cursor: default; float: left; } .menu_actif { background-image: url(/images/menu/menu_actif.png); background-repeat: no-repeat; background-position: bottom center; } .menu_element:hover { background-image: url(/images/menu/menu_actif.png); background-repeat: no-repeat; background-position: bottom center; } div.content { margin: auto; margin-top: 20px; padding-bottom: 10px; width: 1150px; } div.content_sub { margin: auto; margin-top: 40px; padding-bottom: 10px; width: 1000px; } .box_header { position: absolute; color: white; top: -20px; left: -13px; width: 500px; background-image: url(/images/block/header.png); height: 42px; padding-left: 20px; bottom: 0px; font-size: 15px; line-height: 30px; text-shadow: 0px 2px 2px #000000; filter: dropshadow(color=#000000, offx=0, offy=2); border-radius: 5px; -webkit-border-radius: 5px; } div.box_home { position: relative; -webkit-border-radius: 0px 20px 0px 20px; border-radius: 0px 20px 0px 20px; width: 550px; background-color: white; min-height: 200px; float: left; margin-right: 45px; margin-bottom: 20px; margin-top: 20px; padding-top: 20px; } div.box_content { position: relative; -webkit-border-radius: 0px 20px 0px 20px; border-radius: 0px 20px 0px 20px; background-color: white; min-height: 200px; margin-bottom: 20px; margin-top: 20px; padding-top: 20px; } div.box_home_right { margin-right: 0px; } div.box { float: left; } .status { } .status-6 { color: green; } .tableScorePlayer { background: #ececec; border-radius: 5px; margin-top: 5px; margin-bottom: 10px; width: 450px; border: 0px; } .tableScorePlayer tr td { border: 1px solid #b1b1b1; border-radius: 5px; font-size: 12px; height: 25px; } .team-ct { background-color: #d9e0f4; } .team-ct span.score { color: #0069ca; font-weight: bold; } .team-t span.score { color: #e5635d; font-weight: bold; } .team-t { background-color: #fcddde; } .team- { background-color: #ffffff; } img.maps { -webkit-border-radius: 20px 0px 20px 0px ; border-radius: 20px 0px 20px 0px ; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); } .bar_container { width: 460px; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); margin: auto; margin-top: 4px; } .bar { float: left; height: 25px; } .bar_ct { background-image: url(/images/zoom/blue.png); } .bar_t { background-image: url(/images/zoom/red.png); } .bar_separator { } .round-summary img { border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); margin-top: 10px; } .round-summaries { width: 425px; margin: auto; } .round-summary-text { width: 400px; margin: auto; border: 3px solid white; -webkit-box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); box-shadow: 0px 0px 2px 2px rgba(00, 00, 00, 1); color: white; -webkit-border-radius: 0px 0px 10px 10px ; border-radius: 0px 0px 10px 10px ; text-shadow: 0px 1px 1px #000000; filter: dropshadow(color=#000000, offx=0, offy=1); } .round-ct { background-color: #7e95c2; } .round-t { background-color: #f0adaa; } .round-text { font-size: 11px; float: left; padding-left: 5px; padding-top: 2px; } .round-text-desc { padding-top: 10px; padding-left: 70px; font-size:13px; } .tableMatchs { font-size:11px; } .tableMatchs tbody tr td { border-bottom: 1px solid black; height: 25px; } .tableMatchs tfoot tr td { height: 25px; text-align: center; color: #777777; } .tableMatchs tbody tr:nth-child(even) { background: #EEE } .tableMatchs tbody tr:nth-child(odd) { background: #FFF } .stats-title { font-size: 11px; } .stats-content { font-size: 14px; padding-bottom: 10px; } .stats-content img { vertical-align: middle; } .stats-content span { font-size: 12px; }
0.390243
0.136724
.dashboard-page { font-family: sans-serif; text-align: center; font-family: Courier; font-weight: 700; /* background-color: #fff; */ padding: 50px 50px 400px; } .dashboard-grid { display: grid; grid-template-columns: repeat(8, 1fr); grid-gap: 45px; grid-auto-rows: minmax(100px, auto); max-width: 1340px; margin: auto; } .dashboard-page .recharts-responsive-container { margin-left: -10px; margin-right: -10px; margin-top: 30px; } .dashboard-widget { background: #ffffff; border: 3px solid #60d09a; padding: 20px 30px 30px; border-radius: 20px; page-break-inside: avoid; } .dashboard-widget p { margin-top: 24px; } .dashboard-widget.indicators { grid-column: 1 / 9; grid-row: 1; } .dashboard-widget.indicators > div > div { flex-grow: 1; } .dashboard-widget.fdv { margin-right: 25px; } .contract .dashboard-widget { padding-top: 25px; } .contract .dashboard-widget, .monthly-plan .dashboard-widget { height: 120px; margin-top: 10px; } .monthly-plan .dashboard-widget { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 3px; padding: 0; overflow: hidden; background-color: #60D09A; font-weight: 700; } .monthly-plan .dashboard-widget div { padding: 16px 0 17px; background-color: #fff; } .dashboard-widget.investments { grid-column: 1 / 4; grid-row: 2; } .dashboard-widget.price-chart { grid-column: 4 / 9; grid-row: 2; } .dashboard-widget.pending-rewards { grid-column: 1 / 4; grid-row: 3; } .dashboard-widget.volume { grid-column: 1 / 4; grid-row: 4; margin-top: -20px; } .dashboard-widget.mcap-tvl-ratio { grid-column: 4 / 9; grid-row: 3 / 5; } .dashboard-widget.protovol { grid-column: 4 / 9; grid-row: 5; } .dashboard-widget.total-supply { grid-column: 1 / 4; grid-row: 5 / 7; } .dashboard-widget.market-screener { grid-column: 1 / 4; grid-row: 7; padding-bottom: 45px; } .dashboard-widget.token-price { grid-column: 4 / 9; grid-row: 6 / 8; } .dashboard-widget.holders { padding-bottom: 0; } .dashboard-widget.leaderboard { grid-column: 1 / 9; grid-row: 8; padding-bottom: 0; } .dashboard-widget.leaderboard .load-more { text-align: center; width: 100%; height: 57px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; } .dashboard-widget.leaderboard .leaderboard-table { align-content: unset; text-align: initial; align-items: center; display: grid; grid-template-columns: 120px 1fr 1fr 1fr 1fr 120px; grid-template-rows: 60px; grid-gap: 3px 0; grid-auto-rows: 60px; background-color: #60D09A; margin: 0 -30px; } .dashboard-widget.leaderboard .leaderboard-table div { background-color: #fff; width: 100%; height: 100%; display: flex; align-items: center; } .dashboard-widget.trading-fees { grid-column: 1 / 9; grid-row: 9; } .dashboard-widget.market-screener .screeners { display: grid; align-items: center; justify-items: center; grid-gap: 0 32px; grid-template-rows: 132px; grid-template-columns: repeat(3, 1fr); } .dashboard-widget.market-screener .screener { background: linear-gradient(90deg, rgb(255, 92, 92) 50%, rgb(96, 208, 154) 50%); position: relative; overflow: hidden; height: 20px; width: 100%; border-radius: 20px; } .dashboard-widget.market-screener .screener-bar { position: absolute; height: 100%; outline: 100px solid rgba(255,255,255,0.7)!important; } .dashboard-widget .pieLabel { font-family: Courier; font-style: normal; font-weight: bold; font-size: 14px; line-height: 16px; text-align: center; background-color: white; box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25); border-radius: 5px; margin: 5px; } .dashboard-widget .pieLegend { margin-top: 30px; width: 100%; } .dashboard-widget .pieLegend tt { height: 38px; } .dashboard-widget .pieLegend td:first-child { text-align: left; } .dashboard-widget .circle { display: inline-block; width: 10px; height: 10px; border-radius: 10px; margin-right: 1em; } .dashboard-widget h2, h3 { text-align: left; color: #323232; } .dashboard-widget h2 { font-family: "Bord Demo"; font-style: normal; font-weight: normal; font-size: 18px; line-height: 22px; text-transform: lowercase; } .dashboard-widget h3 { font-family: "Courier"; font-size: 24px; line-height: 27px; font-weight: bold; } .dashboard-widget h3 span { padding: 3px 11px; background: #60d09a; border-radius: 5px; font-family: Courier; font-style: normal; font-weight: bold; font-size: 14px; line-height: 16px; /* identical to box height */ display: inline-flex; align-items: center; color: #ffffff; }
react_app/styles.css
.dashboard-page { font-family: sans-serif; text-align: center; font-family: Courier; font-weight: 700; /* background-color: #fff; */ padding: 50px 50px 400px; } .dashboard-grid { display: grid; grid-template-columns: repeat(8, 1fr); grid-gap: 45px; grid-auto-rows: minmax(100px, auto); max-width: 1340px; margin: auto; } .dashboard-page .recharts-responsive-container { margin-left: -10px; margin-right: -10px; margin-top: 30px; } .dashboard-widget { background: #ffffff; border: 3px solid #60d09a; padding: 20px 30px 30px; border-radius: 20px; page-break-inside: avoid; } .dashboard-widget p { margin-top: 24px; } .dashboard-widget.indicators { grid-column: 1 / 9; grid-row: 1; } .dashboard-widget.indicators > div > div { flex-grow: 1; } .dashboard-widget.fdv { margin-right: 25px; } .contract .dashboard-widget { padding-top: 25px; } .contract .dashboard-widget, .monthly-plan .dashboard-widget { height: 120px; margin-top: 10px; } .monthly-plan .dashboard-widget { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 3px; padding: 0; overflow: hidden; background-color: #60D09A; font-weight: 700; } .monthly-plan .dashboard-widget div { padding: 16px 0 17px; background-color: #fff; } .dashboard-widget.investments { grid-column: 1 / 4; grid-row: 2; } .dashboard-widget.price-chart { grid-column: 4 / 9; grid-row: 2; } .dashboard-widget.pending-rewards { grid-column: 1 / 4; grid-row: 3; } .dashboard-widget.volume { grid-column: 1 / 4; grid-row: 4; margin-top: -20px; } .dashboard-widget.mcap-tvl-ratio { grid-column: 4 / 9; grid-row: 3 / 5; } .dashboard-widget.protovol { grid-column: 4 / 9; grid-row: 5; } .dashboard-widget.total-supply { grid-column: 1 / 4; grid-row: 5 / 7; } .dashboard-widget.market-screener { grid-column: 1 / 4; grid-row: 7; padding-bottom: 45px; } .dashboard-widget.token-price { grid-column: 4 / 9; grid-row: 6 / 8; } .dashboard-widget.holders { padding-bottom: 0; } .dashboard-widget.leaderboard { grid-column: 1 / 9; grid-row: 8; padding-bottom: 0; } .dashboard-widget.leaderboard .load-more { text-align: center; width: 100%; height: 57px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; } .dashboard-widget.leaderboard .leaderboard-table { align-content: unset; text-align: initial; align-items: center; display: grid; grid-template-columns: 120px 1fr 1fr 1fr 1fr 120px; grid-template-rows: 60px; grid-gap: 3px 0; grid-auto-rows: 60px; background-color: #60D09A; margin: 0 -30px; } .dashboard-widget.leaderboard .leaderboard-table div { background-color: #fff; width: 100%; height: 100%; display: flex; align-items: center; } .dashboard-widget.trading-fees { grid-column: 1 / 9; grid-row: 9; } .dashboard-widget.market-screener .screeners { display: grid; align-items: center; justify-items: center; grid-gap: 0 32px; grid-template-rows: 132px; grid-template-columns: repeat(3, 1fr); } .dashboard-widget.market-screener .screener { background: linear-gradient(90deg, rgb(255, 92, 92) 50%, rgb(96, 208, 154) 50%); position: relative; overflow: hidden; height: 20px; width: 100%; border-radius: 20px; } .dashboard-widget.market-screener .screener-bar { position: absolute; height: 100%; outline: 100px solid rgba(255,255,255,0.7)!important; } .dashboard-widget .pieLabel { font-family: Courier; font-style: normal; font-weight: bold; font-size: 14px; line-height: 16px; text-align: center; background-color: white; box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25); border-radius: 5px; margin: 5px; } .dashboard-widget .pieLegend { margin-top: 30px; width: 100%; } .dashboard-widget .pieLegend tt { height: 38px; } .dashboard-widget .pieLegend td:first-child { text-align: left; } .dashboard-widget .circle { display: inline-block; width: 10px; height: 10px; border-radius: 10px; margin-right: 1em; } .dashboard-widget h2, h3 { text-align: left; color: #323232; } .dashboard-widget h2 { font-family: "Bord Demo"; font-style: normal; font-weight: normal; font-size: 18px; line-height: 22px; text-transform: lowercase; } .dashboard-widget h3 { font-family: "Courier"; font-size: 24px; line-height: 27px; font-weight: bold; } .dashboard-widget h3 span { padding: 3px 11px; background: #60d09a; border-radius: 5px; font-family: Courier; font-style: normal; font-weight: bold; font-size: 14px; line-height: 16px; /* identical to box height */ display: inline-flex; align-items: center; color: #ffffff; }
0.553143
0.141015
*{padding: 0px; margin: 0px;} .fontbold { font-weight: 600; } body { font-family: 'calibri'; background-color: #f0f2f7; } .wrapper { width: 100%; float: left; position: relative; } .logo img { width: 180px; } .wallet-balance-box { background-color: #f4f4f4; padding: 6px 10px; border: 1px solid #e0e0e0; } .blue-icon-box { background-color: #2394c3; border-radius: 100px; width: 44px; height: 43px; text-align: center; line-height: 40px; } .wallet-balance-right-txt { margin-top:11px; } .img-icon-size { width: 25px; } .transparent-btn { background-color: transparent; border: none; padding: 0px; margin-top: 10px; padding-right: 20px; } .transparent-btn:focus { outline: none; } .transparent-btn:hover { cursor: pointer; } .transparent-btn::after { content: url('../images/angle-down.png'); position: absolute; right: 0px; top: 7px; } .nav-set .navbar{ border: 1px solid #d8d8d8; background-color: transparent !important; padding-left: 0px; padding-right: 0px; border-right:0px; display: inline-block; } .nav-set .navbar .nav-link { position: relative; padding-left: 36px !important; padding-right: 47px !important; font-size: 14px; font-family: 'calibri'; color: #000; font-weight: bold; border-right: 1px solid #bfbfbf; } .nav-set .navbar-brand { display: none; } .top-section { border-bottom: 1px solid #cccccc; margin-bottom: 15px; } .nav-icon img { width: 23px; margin-right: 10px; } .section-top-heading { position: relative; padding-left: 30px; } .section-top-heading::before { content: ''; width: 3px; height: 33px; background-color: #2394c3; position: absolute; left: 15px; top: 0px; } .account_profileimg { width: 80px; } .account_profileimg img { width: 80px; border-radius: 100px; } .unstyled-list { list-style: none; padding-left: 0px; margin: 0px; } .account_overview_col-1_topsection { border-bottom: 1px solid #d0d0d0; margin-bottom: 15px; } .list-set li { width: 100%; float: left; font-size: 14px; margin-bottom: 5px; } .nav-tabs .nav-link.active { background-color: transparent; border-left: 0px; border-right: 0px; border-top: 0px; border-bottom: 2px solid #2994c2; color: #2994c2; } .nav-tabs .nav-link { border-left: 0px; border-right: 0px; border-top: 0px; display: inline-block; font-size: 14px; font-weight: 600; color:#2994c2; } .nav-tabs-set { border-bottom: 1px solid #c3c3c3; border-top: 1px solid #c3c3c3; padding-bottom: 1px; display: block; text-align: right; } .input-set { border:none; width: 100%; color: #000; font-weight: 600; } .input-set:focus { outline: none; } .input-set::placeholder { color: #000; font-weight: 600; } .form-container { width: 100%; float: left; border: 1px solid #c1c0c0; padding-left: 10px; padding-right: 10px; border-radius: 4px; } .input-col { border-right: 1px solid #cecece; font-size: 14px; } .row-divider { border-bottom: 1px solid #cecece; margin-right: -10px; margin-left: -10px; } .section-top-subheading::before { content: ''; width: 3px; height: 21px; background-color: #2394c3; position: absolute; left: 15px; top: 0px; } .section-top-subheading { position: relative; padding-left: 30px; } .blue-btn { background-color: #0385e1; color: #fff; } .gray-btn { background-color: #5e5f5f; color: #fff; } .slab-service-list { list-style: none; padding-left: 0px; } ul.slab-service-list li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #c1c0c0; } .select-box { width: 500px; float: left; border: 1px solid #d6d6d6; } .select-box-label { width: 226px; float: left; border-right: 1px solid #d0cece; height: 40px; padding-left: 10px; padding-top: 9px; } .select-box .custom-select { width: 272px; border:none; padding-left: 15px; font-size: 14px; } .active-status-btn { float: right; border: none; padding: 10px 20px 10px 12px; border-radius: 100px; } .arrow-cnt { width: 24px; height: 24px; border-radius: 100px; float: left; background-color: #fff; margin-right: 10px; } .active-status-btn.deactive { background-color: #d0cece; color: #333; font-weight: 600; } .active-status-btn.active { background-color: #0385e1; color: #fff; font-weight: 600; } .active-status-btn:hover { cursor: pointer; } .account_overview_outer { width: 100%; display: inline-block; border: 1px solid #d0cdcd; } .balance-display-card-content { padding-left: 15px; padding-right: 15px; width: calc(100% - 70px); height: 86px; display: flex; align-items: center; justify-content: center; flex-direction: column; } .balance-display-card-col-1 { float: left; height: 86px; background-color: #2994c2; width: 70px; display: flex; align-items: center; justify-content: center; } .recharge_section_outer { border:1px solid #d8d8d8; padding-top: 15px; padding-bottom: 15px; } .recharge-col { padding: 15px; border-bottom: 1px solid #d4d4d4; border-left: 0px; border-right: 0px; border-top: 0px; margin-bottom: 0px; } .recharge-col:last-child { border-bottom: none; } .all-recharge-wrp { border: 1px solid #d4d4d4; } .recharge-name { margin-top: 10px; } .no-brd { border:none; } .recharge-form-outer { border:1px solid gray; } .recharge-form-outer { border: 1px solid #d4cccc; width: 100%; float: left; } .form-group-divder-set { border-bottom: 1px solid #d4d4d4; margin-bottom: 0px; } .recharge-lbl { background-color: #f8f9fa; margin-bottom: 0; padding-top: 8px; border-right: 1px solid #d4d4d4; } .recharge-form-outer input:focus , .recharge-form-outer select:focus { border: none; box-shadow: none; } .logos-section { display: flex; align-items: center; padding-top: 10px; padding-bottom: 10px; } .tbl-bordered { border: 1px solid #d4cccc; } .tbl-bordered td , .tbl-bordered th { border-color: #d4cccc; } .tbl-bordered td { color: #000; font-family: 'montserratmedium'; } .recharge-col.list-group-item.active .recharge-icon { width: 60px; height: 60px; border-radius: 100px; background-color: #fff; text-align: center; line-height: 55px; margin: 0px auto; } .recharge-col.list-group-item .recharge-icon { width: 60px; height: 60px; border-radius: 100px; text-align: center; line-height: 55px; margin: 0px auto; } .recharge-col.list-group-item.active .recharge-name { color: #fff !important; } .recharge-col:hover { cursor: pointer; } .operator-logo { position: absolute; right: 0px; z-index: 10; top: 0px; right: 28px; } #confirm-screen { display: none; } .confirm-screen-col { border: 1px solid #cccccc; } ul.recharge-detail-list { list-style: none; margin-bottom: 0px; padding-left: 0px; } .recharge-detail-list li { text-align: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #c3c3c3; } .recharge-detail-list li:last-child { border-bottom: 0px; margin-bottom: 0px; padding-bottom:0px; } .confirm-screen-header { background-color: #2994c2; color: #fff; padding-top: 10px; padding-bottom: 10px; } .confirm-screen-inner { padding-top: 20px; padding-bottom: 20px; } .btn-side-icon { width: 20px; height: 20px; border-radius: 100px; float: left; margin-right: 10px; margin-top: 2px; line-height: 20px; } .confirm-btn { background-color: #0076a2; } .confirm-bg { background-color: #005778; } .confirm-btn:hover { background-color: #02688e; } .status-icon { width: 80px; height: 80px; border-radius: 100px; margin:0px auto; text-align: center; line-height: 80px; margin-bottom: 10px; } .success-bg { background-color: #00ae90; } .payment-status-header { margin-bottom: 20px; } .payment-status-col { border: 1px solid #c3c3c3; padding-top: 15px; padding-bottom: 15px; } #payment-status { display: none; } .money-remmitance-section-outer-col { background-color: #fff; border: 1px solid #d2d2d2; padding-top: 15px; padding-bottom: 15px; } .blue-icon-box-set { width: 50px; height: 50px; background-color: #2c98c5; text-align: center; border-radius: 100px; line-height: 46px; } .summary-list { padding-left: 15px; padding-right: 15px; border: 1px solid #d0d0d0; padding-top: 15px; padding-bottom: 15px; } .red-btn { background-color: #8d0000; } .green-btn { background-color: #00a651; } .gray-header { width: 100%; display: inline-block; background-color: #efefef; padding: 10px; font-weight: 600; margin-bottom: 10px; } .blue-header { width: 100%; float: left; background-color: #2c98c5; padding: 10px; font-weight: 600; } .beneficiary-list-main { width: 100%; float: left; } .account-search-box { width: 270px; } .account-search-input-container { width: 230PX; float: left; } .account-search-button-container { width: 40px; float: left; } .account-search-button { width: 100%; } .account-search-button { background-color: #2c98c5; border: none; height: 38px; border-radius: 0px 4px 4px 0px; } .account-search-input { width: 100%; height: 38px; padding: 2%; border-radius: 4px 0px 0px 4px; box-shadow: none; border: 1px solid #d0d0d0; font-size: 14px; } .thead-blue { background-color: #2c98c5; color: #fff; font-weight: 600; } .transaction-confirm-section-col { background-color: #fff; border: 1px solid #d2d2d2; padding-top: 15px; padding-bottom: 15px; } .blue-panel { background-color: #2c98c5; width: 100%; display: inline-block; border-radius: 4px; padding: 15px; font-size: 14px; } .white-icon-container { width: 40px; height: 40px; background-color: #fff; border-radius: 100px; float: left; margin-right: 20px; display: flex; align-items: center; justify-content: center; } .blue-txt { color: #2c98c5; } .transaction-confirm-list { list-style: none; padding-left: 0px; margin: 0px; } .transaction-confirm-list li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #c1c0c0; } .transaction-confirm-list li:last-child { border-bottom: 0px; } input::placeholder { color:#000 !important; } .transaction-status-col { background-color: #fff; border: 1px solid #d2d2d2; } .dark-success-bg { background-color: #308601; } .transaction-status-header { padding: 10px; } .transaction-status-icon { width: 35px; height: 35px; background-color: #225f00; display: inline-block; border-radius: 100px; text-align: center; line-height: 35px; } .transaction-list-details-col { width: 50%; float: left; padding-left: 15px; padding-right: 15px; } .transaction-list-details-col ul { padding-left: 0px; list-style: none; margin: 0px; padding-top: 10px; padding-bottom: 10px; } .transaction-list-details-col ul li { width: 100%; float: left; font-size: 14px; margin-bottom: 5px; color: #000; font-weight: 600; } .transaction-list-details { width: 100%; float: left; border: 1px solid #bdbdbd; } .bord-right-set { border-right: 1px solid #bdbdbd; } .transaction-status-inner { margin-top: 15px; margin-bottom: 15px; } .dashed-border { border: 1px dashed #333; padding: 1px 10px; } #transaction-status-screen { display: none; } .modal label { font-family: 'montserratsemibold'; } #search-ifsc { display: none; } .modal-header { background-color: #2c98c5; color: #fff; } ul.search-ifsc-list { list-style: none; /* padding: 0px; */ border: 1px solid #d0d0d0; border-radius: 4px; padding: 10px; } ul.search-ifsc-list li { border-bottom: 1px solid #d0d0d0; padding-bottom: 10px; margin-bottom: 10px; font-family: 'montserratmedium'; } #ifsc-detail { display: none; } .active-status-btn:focus { outline: none; } .datepicker-dropdown { font-size: 0.8125rem; } .hide { display: none; } tr.details td.details-control { background: url(../images/details_close.svg) no-repeat center center; background-size: 40%; } td.details-control { background: url(../images/details_open.svg) no-repeat center center; cursor: pointer; background-size: 40% } ul.row-details-list { list-style: none; /* float: left; */ padding: 10px; background-color: whitesmoke; border-radius: 4px; } ul.row-details-list li { margin-bottom: 10px; border-bottom: 1px solid #d8d8d8; padding-bottom: 10px; } ul.row-details-list li:last-child { border-bottom: 0px; } .valid-feedback-set { font-size: 12px; margin-top: 12px; font-weight: 600; color: gray; } .bord-bottom { border-bottom: 1px solid #d0cccc; padding-bottom: 10px; } .form-btn-section { border-top: 1px dashed #adabab; padding-top: 10px; } .dashboard-inner-col { min-height: 110px; align-items: center; display: flex; padding: 10px; border: 1px solid #d4d2d2; border-radius: 4px; color: #fff; } .dashboard-inner-col .lbl { font-weight: bold; font-size: 14px; } .dashboard_overview .colset { padding-left: 5px; padding-right: 5px; } .dashboard-inner-col-iconbox { min-width: 50px; height: 50px; border-radius: 100%; background-color: #eaeaea; margin-left: auto; text-align: center; line-height: 50px; } .dashboard_overview_section2 { background-color: #fff; padding: 15px; border-radius: 4px; margin-top: 30px; } .banner-right-section { background-color: #fff; padding: 10px; } .fund-transfer-link { background-color: #2394c3; color: #fff; padding: 10px; border-radius: 4px; text-align: center; font-weight: bold; } ul.detail_list { list-style: none; margin-top: 10px; margin-bottom: 0px; } ul.detail_list li { background-color: #f9f9f9; padding: 10px; font-size: 14px; border: 1px solid #dedcdc; border-radius: 4px; } ul.detail_list li .lbl { font-weight: bold; margin-bottom: 5px; } .owl-item { background-color: #fff; padding: 10px; border-bottom: 4px solid #dc3545; } .owl-item h4 { color: #dc3545; font-size: 16px; font-weight: 600; } @media only screen and (max-width: 767px) { .dashboard-inner-col{margin-bottom: 10px;} } .table tr td .btn { margin-bottom: 4px; } /*13-06-2020*/ .support-section { display: inline-block; font-size: 14px } .today_trans { background-image: linear-gradient(to left, #0db2de 0%, #005bea 100%); } .month_tilldate_trans { background-image: linear-gradient(45deg, #f93a5a, #f7778c) ; } .last_month_trans { background-image: linear-gradient(to left, #48d6a8 0%, #029666 100%); } .todays_load { background-image: linear-gradient(to left, #efa65f, #f76a2d); } .outs_blance { background-image: linear-gradient(to left, #8091f5, #3e4ebd) !important; } span.nav-icon { position: absolute; left: 6px; } .nav-set .navbar .nav-link { height: 100%; vertical-align: middle; align-items: center; display: flex; } .table td, .table th { border: 1px solid #dee2e6; } .card-header { padding: 3px 0px; } .card-header h5 button { font-weight: 600 !important; } .operator-logo img { min-width: 70px; } .operator-logo { position: relative !important; right: unset !important; float: right; margin-left: auto; } .navbar-light .navbar-toggler-icon { background-image: none; line-height: 30px; } .navbar-light .navbar-toggler-icon::before { content: "\f0c9"; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #fff; } .navbar-light .navbar-toggler { border: 1px solid #ffffff4f; } @media only screen and (max-width:1199px) { .navbar-toggler{margin-left: 10px !important; margin-right: 0px !important;} .nav-set .navbar .nav-link{padding-left: 58px !important; padding-top: 10px; padding-bottom: 10px;} } @media only screen and (max-width:991px) { .top-section-right{float: left !important; margin-top: 10px;} .wallet-balance-box{margin-left: 0px !important;} } @media only screen and (max-width:517px) { .wallet-balance-box {width: 100%;} .support-section{margin-left: 0px !important; margin-top: 10px; margin-bottom: 10px;} } .row.details-divider { border-bottom:1px solid #dfdfdf; margin-bottom: 10px; } #VendorAddDiv .table-responsive { overflow-y: auto; max-height: 400px; } #VendorAddDiv .table tr td { min-width: 221px; } .table-responsive { overflow-x: unset !important; display: inline-block !important; } .table-scrollable { overflow-x: auto; } #mobile-recharge .section-top-subheading { display: flex; align-items: center; padding-left: 0px; } #mobile-recharge .section-top-subheading::before { content: none; } #mobile-recharge .section-top-subheading h6 { padding-left: 10px; position: relative; } #mobile-recharge .section-top-subheading h6::before { content: ''; width: 3px; height: 21px; background-color: #2394c3; position: absolute; left: 0px; top: 0px; } .account_overview_outer .form-container { margin-bottom: 10px; } @media only screen and (min-width:1199px) { .nav-set .navbar{width: 100%;} .nav-item { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; min-width: 0; max-width: 100%; } .navbar-nav{width: 100%;} }
assets/css/style.css
*{padding: 0px; margin: 0px;} .fontbold { font-weight: 600; } body { font-family: 'calibri'; background-color: #f0f2f7; } .wrapper { width: 100%; float: left; position: relative; } .logo img { width: 180px; } .wallet-balance-box { background-color: #f4f4f4; padding: 6px 10px; border: 1px solid #e0e0e0; } .blue-icon-box { background-color: #2394c3; border-radius: 100px; width: 44px; height: 43px; text-align: center; line-height: 40px; } .wallet-balance-right-txt { margin-top:11px; } .img-icon-size { width: 25px; } .transparent-btn { background-color: transparent; border: none; padding: 0px; margin-top: 10px; padding-right: 20px; } .transparent-btn:focus { outline: none; } .transparent-btn:hover { cursor: pointer; } .transparent-btn::after { content: url('../images/angle-down.png'); position: absolute; right: 0px; top: 7px; } .nav-set .navbar{ border: 1px solid #d8d8d8; background-color: transparent !important; padding-left: 0px; padding-right: 0px; border-right:0px; display: inline-block; } .nav-set .navbar .nav-link { position: relative; padding-left: 36px !important; padding-right: 47px !important; font-size: 14px; font-family: 'calibri'; color: #000; font-weight: bold; border-right: 1px solid #bfbfbf; } .nav-set .navbar-brand { display: none; } .top-section { border-bottom: 1px solid #cccccc; margin-bottom: 15px; } .nav-icon img { width: 23px; margin-right: 10px; } .section-top-heading { position: relative; padding-left: 30px; } .section-top-heading::before { content: ''; width: 3px; height: 33px; background-color: #2394c3; position: absolute; left: 15px; top: 0px; } .account_profileimg { width: 80px; } .account_profileimg img { width: 80px; border-radius: 100px; } .unstyled-list { list-style: none; padding-left: 0px; margin: 0px; } .account_overview_col-1_topsection { border-bottom: 1px solid #d0d0d0; margin-bottom: 15px; } .list-set li { width: 100%; float: left; font-size: 14px; margin-bottom: 5px; } .nav-tabs .nav-link.active { background-color: transparent; border-left: 0px; border-right: 0px; border-top: 0px; border-bottom: 2px solid #2994c2; color: #2994c2; } .nav-tabs .nav-link { border-left: 0px; border-right: 0px; border-top: 0px; display: inline-block; font-size: 14px; font-weight: 600; color:#2994c2; } .nav-tabs-set { border-bottom: 1px solid #c3c3c3; border-top: 1px solid #c3c3c3; padding-bottom: 1px; display: block; text-align: right; } .input-set { border:none; width: 100%; color: #000; font-weight: 600; } .input-set:focus { outline: none; } .input-set::placeholder { color: #000; font-weight: 600; } .form-container { width: 100%; float: left; border: 1px solid #c1c0c0; padding-left: 10px; padding-right: 10px; border-radius: 4px; } .input-col { border-right: 1px solid #cecece; font-size: 14px; } .row-divider { border-bottom: 1px solid #cecece; margin-right: -10px; margin-left: -10px; } .section-top-subheading::before { content: ''; width: 3px; height: 21px; background-color: #2394c3; position: absolute; left: 15px; top: 0px; } .section-top-subheading { position: relative; padding-left: 30px; } .blue-btn { background-color: #0385e1; color: #fff; } .gray-btn { background-color: #5e5f5f; color: #fff; } .slab-service-list { list-style: none; padding-left: 0px; } ul.slab-service-list li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #c1c0c0; } .select-box { width: 500px; float: left; border: 1px solid #d6d6d6; } .select-box-label { width: 226px; float: left; border-right: 1px solid #d0cece; height: 40px; padding-left: 10px; padding-top: 9px; } .select-box .custom-select { width: 272px; border:none; padding-left: 15px; font-size: 14px; } .active-status-btn { float: right; border: none; padding: 10px 20px 10px 12px; border-radius: 100px; } .arrow-cnt { width: 24px; height: 24px; border-radius: 100px; float: left; background-color: #fff; margin-right: 10px; } .active-status-btn.deactive { background-color: #d0cece; color: #333; font-weight: 600; } .active-status-btn.active { background-color: #0385e1; color: #fff; font-weight: 600; } .active-status-btn:hover { cursor: pointer; } .account_overview_outer { width: 100%; display: inline-block; border: 1px solid #d0cdcd; } .balance-display-card-content { padding-left: 15px; padding-right: 15px; width: calc(100% - 70px); height: 86px; display: flex; align-items: center; justify-content: center; flex-direction: column; } .balance-display-card-col-1 { float: left; height: 86px; background-color: #2994c2; width: 70px; display: flex; align-items: center; justify-content: center; } .recharge_section_outer { border:1px solid #d8d8d8; padding-top: 15px; padding-bottom: 15px; } .recharge-col { padding: 15px; border-bottom: 1px solid #d4d4d4; border-left: 0px; border-right: 0px; border-top: 0px; margin-bottom: 0px; } .recharge-col:last-child { border-bottom: none; } .all-recharge-wrp { border: 1px solid #d4d4d4; } .recharge-name { margin-top: 10px; } .no-brd { border:none; } .recharge-form-outer { border:1px solid gray; } .recharge-form-outer { border: 1px solid #d4cccc; width: 100%; float: left; } .form-group-divder-set { border-bottom: 1px solid #d4d4d4; margin-bottom: 0px; } .recharge-lbl { background-color: #f8f9fa; margin-bottom: 0; padding-top: 8px; border-right: 1px solid #d4d4d4; } .recharge-form-outer input:focus , .recharge-form-outer select:focus { border: none; box-shadow: none; } .logos-section { display: flex; align-items: center; padding-top: 10px; padding-bottom: 10px; } .tbl-bordered { border: 1px solid #d4cccc; } .tbl-bordered td , .tbl-bordered th { border-color: #d4cccc; } .tbl-bordered td { color: #000; font-family: 'montserratmedium'; } .recharge-col.list-group-item.active .recharge-icon { width: 60px; height: 60px; border-radius: 100px; background-color: #fff; text-align: center; line-height: 55px; margin: 0px auto; } .recharge-col.list-group-item .recharge-icon { width: 60px; height: 60px; border-radius: 100px; text-align: center; line-height: 55px; margin: 0px auto; } .recharge-col.list-group-item.active .recharge-name { color: #fff !important; } .recharge-col:hover { cursor: pointer; } .operator-logo { position: absolute; right: 0px; z-index: 10; top: 0px; right: 28px; } #confirm-screen { display: none; } .confirm-screen-col { border: 1px solid #cccccc; } ul.recharge-detail-list { list-style: none; margin-bottom: 0px; padding-left: 0px; } .recharge-detail-list li { text-align: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #c3c3c3; } .recharge-detail-list li:last-child { border-bottom: 0px; margin-bottom: 0px; padding-bottom:0px; } .confirm-screen-header { background-color: #2994c2; color: #fff; padding-top: 10px; padding-bottom: 10px; } .confirm-screen-inner { padding-top: 20px; padding-bottom: 20px; } .btn-side-icon { width: 20px; height: 20px; border-radius: 100px; float: left; margin-right: 10px; margin-top: 2px; line-height: 20px; } .confirm-btn { background-color: #0076a2; } .confirm-bg { background-color: #005778; } .confirm-btn:hover { background-color: #02688e; } .status-icon { width: 80px; height: 80px; border-radius: 100px; margin:0px auto; text-align: center; line-height: 80px; margin-bottom: 10px; } .success-bg { background-color: #00ae90; } .payment-status-header { margin-bottom: 20px; } .payment-status-col { border: 1px solid #c3c3c3; padding-top: 15px; padding-bottom: 15px; } #payment-status { display: none; } .money-remmitance-section-outer-col { background-color: #fff; border: 1px solid #d2d2d2; padding-top: 15px; padding-bottom: 15px; } .blue-icon-box-set { width: 50px; height: 50px; background-color: #2c98c5; text-align: center; border-radius: 100px; line-height: 46px; } .summary-list { padding-left: 15px; padding-right: 15px; border: 1px solid #d0d0d0; padding-top: 15px; padding-bottom: 15px; } .red-btn { background-color: #8d0000; } .green-btn { background-color: #00a651; } .gray-header { width: 100%; display: inline-block; background-color: #efefef; padding: 10px; font-weight: 600; margin-bottom: 10px; } .blue-header { width: 100%; float: left; background-color: #2c98c5; padding: 10px; font-weight: 600; } .beneficiary-list-main { width: 100%; float: left; } .account-search-box { width: 270px; } .account-search-input-container { width: 230PX; float: left; } .account-search-button-container { width: 40px; float: left; } .account-search-button { width: 100%; } .account-search-button { background-color: #2c98c5; border: none; height: 38px; border-radius: 0px 4px 4px 0px; } .account-search-input { width: 100%; height: 38px; padding: 2%; border-radius: 4px 0px 0px 4px; box-shadow: none; border: 1px solid #d0d0d0; font-size: 14px; } .thead-blue { background-color: #2c98c5; color: #fff; font-weight: 600; } .transaction-confirm-section-col { background-color: #fff; border: 1px solid #d2d2d2; padding-top: 15px; padding-bottom: 15px; } .blue-panel { background-color: #2c98c5; width: 100%; display: inline-block; border-radius: 4px; padding: 15px; font-size: 14px; } .white-icon-container { width: 40px; height: 40px; background-color: #fff; border-radius: 100px; float: left; margin-right: 20px; display: flex; align-items: center; justify-content: center; } .blue-txt { color: #2c98c5; } .transaction-confirm-list { list-style: none; padding-left: 0px; margin: 0px; } .transaction-confirm-list li { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #c1c0c0; } .transaction-confirm-list li:last-child { border-bottom: 0px; } input::placeholder { color:#000 !important; } .transaction-status-col { background-color: #fff; border: 1px solid #d2d2d2; } .dark-success-bg { background-color: #308601; } .transaction-status-header { padding: 10px; } .transaction-status-icon { width: 35px; height: 35px; background-color: #225f00; display: inline-block; border-radius: 100px; text-align: center; line-height: 35px; } .transaction-list-details-col { width: 50%; float: left; padding-left: 15px; padding-right: 15px; } .transaction-list-details-col ul { padding-left: 0px; list-style: none; margin: 0px; padding-top: 10px; padding-bottom: 10px; } .transaction-list-details-col ul li { width: 100%; float: left; font-size: 14px; margin-bottom: 5px; color: #000; font-weight: 600; } .transaction-list-details { width: 100%; float: left; border: 1px solid #bdbdbd; } .bord-right-set { border-right: 1px solid #bdbdbd; } .transaction-status-inner { margin-top: 15px; margin-bottom: 15px; } .dashed-border { border: 1px dashed #333; padding: 1px 10px; } #transaction-status-screen { display: none; } .modal label { font-family: 'montserratsemibold'; } #search-ifsc { display: none; } .modal-header { background-color: #2c98c5; color: #fff; } ul.search-ifsc-list { list-style: none; /* padding: 0px; */ border: 1px solid #d0d0d0; border-radius: 4px; padding: 10px; } ul.search-ifsc-list li { border-bottom: 1px solid #d0d0d0; padding-bottom: 10px; margin-bottom: 10px; font-family: 'montserratmedium'; } #ifsc-detail { display: none; } .active-status-btn:focus { outline: none; } .datepicker-dropdown { font-size: 0.8125rem; } .hide { display: none; } tr.details td.details-control { background: url(../images/details_close.svg) no-repeat center center; background-size: 40%; } td.details-control { background: url(../images/details_open.svg) no-repeat center center; cursor: pointer; background-size: 40% } ul.row-details-list { list-style: none; /* float: left; */ padding: 10px; background-color: whitesmoke; border-radius: 4px; } ul.row-details-list li { margin-bottom: 10px; border-bottom: 1px solid #d8d8d8; padding-bottom: 10px; } ul.row-details-list li:last-child { border-bottom: 0px; } .valid-feedback-set { font-size: 12px; margin-top: 12px; font-weight: 600; color: gray; } .bord-bottom { border-bottom: 1px solid #d0cccc; padding-bottom: 10px; } .form-btn-section { border-top: 1px dashed #adabab; padding-top: 10px; } .dashboard-inner-col { min-height: 110px; align-items: center; display: flex; padding: 10px; border: 1px solid #d4d2d2; border-radius: 4px; color: #fff; } .dashboard-inner-col .lbl { font-weight: bold; font-size: 14px; } .dashboard_overview .colset { padding-left: 5px; padding-right: 5px; } .dashboard-inner-col-iconbox { min-width: 50px; height: 50px; border-radius: 100%; background-color: #eaeaea; margin-left: auto; text-align: center; line-height: 50px; } .dashboard_overview_section2 { background-color: #fff; padding: 15px; border-radius: 4px; margin-top: 30px; } .banner-right-section { background-color: #fff; padding: 10px; } .fund-transfer-link { background-color: #2394c3; color: #fff; padding: 10px; border-radius: 4px; text-align: center; font-weight: bold; } ul.detail_list { list-style: none; margin-top: 10px; margin-bottom: 0px; } ul.detail_list li { background-color: #f9f9f9; padding: 10px; font-size: 14px; border: 1px solid #dedcdc; border-radius: 4px; } ul.detail_list li .lbl { font-weight: bold; margin-bottom: 5px; } .owl-item { background-color: #fff; padding: 10px; border-bottom: 4px solid #dc3545; } .owl-item h4 { color: #dc3545; font-size: 16px; font-weight: 600; } @media only screen and (max-width: 767px) { .dashboard-inner-col{margin-bottom: 10px;} } .table tr td .btn { margin-bottom: 4px; } /*13-06-2020*/ .support-section { display: inline-block; font-size: 14px } .today_trans { background-image: linear-gradient(to left, #0db2de 0%, #005bea 100%); } .month_tilldate_trans { background-image: linear-gradient(45deg, #f93a5a, #f7778c) ; } .last_month_trans { background-image: linear-gradient(to left, #48d6a8 0%, #029666 100%); } .todays_load { background-image: linear-gradient(to left, #efa65f, #f76a2d); } .outs_blance { background-image: linear-gradient(to left, #8091f5, #3e4ebd) !important; } span.nav-icon { position: absolute; left: 6px; } .nav-set .navbar .nav-link { height: 100%; vertical-align: middle; align-items: center; display: flex; } .table td, .table th { border: 1px solid #dee2e6; } .card-header { padding: 3px 0px; } .card-header h5 button { font-weight: 600 !important; } .operator-logo img { min-width: 70px; } .operator-logo { position: relative !important; right: unset !important; float: right; margin-left: auto; } .navbar-light .navbar-toggler-icon { background-image: none; line-height: 30px; } .navbar-light .navbar-toggler-icon::before { content: "\f0c9"; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #fff; } .navbar-light .navbar-toggler { border: 1px solid #ffffff4f; } @media only screen and (max-width:1199px) { .navbar-toggler{margin-left: 10px !important; margin-right: 0px !important;} .nav-set .navbar .nav-link{padding-left: 58px !important; padding-top: 10px; padding-bottom: 10px;} } @media only screen and (max-width:991px) { .top-section-right{float: left !important; margin-top: 10px;} .wallet-balance-box{margin-left: 0px !important;} } @media only screen and (max-width:517px) { .wallet-balance-box {width: 100%;} .support-section{margin-left: 0px !important; margin-top: 10px; margin-bottom: 10px;} } .row.details-divider { border-bottom:1px solid #dfdfdf; margin-bottom: 10px; } #VendorAddDiv .table-responsive { overflow-y: auto; max-height: 400px; } #VendorAddDiv .table tr td { min-width: 221px; } .table-responsive { overflow-x: unset !important; display: inline-block !important; } .table-scrollable { overflow-x: auto; } #mobile-recharge .section-top-subheading { display: flex; align-items: center; padding-left: 0px; } #mobile-recharge .section-top-subheading::before { content: none; } #mobile-recharge .section-top-subheading h6 { padding-left: 10px; position: relative; } #mobile-recharge .section-top-subheading h6::before { content: ''; width: 3px; height: 21px; background-color: #2394c3; position: absolute; left: 0px; top: 0px; } .account_overview_outer .form-container { margin-bottom: 10px; } @media only screen and (min-width:1199px) { .nav-set .navbar{width: 100%;} .nav-item { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; min-width: 0; max-width: 100%; } .navbar-nav{width: 100%;} }
0.327991
0.097005
.buzz_wrapper{ position:relative; /*background-color:#000;*/ overflow:hidden; height: 700px; margin-top: -100%; } .text{ margin-left: 20%; } .scanline:hover{ width:100%; display:block; background:#000; height:4px; position:relative; z-index:3; margin-bottom:5px; opacity:0.1; } .buzz_wrapper:hover h2:nth-child(3){ color:blue; position:20px 0; -webkit-filter: blur(1px); } .buzz_wrapper:hover h2:nth-child(4){ color:#fff; -webkit-filter: blur(1px); text-shadow:0 0 50px rgba(255,255,255,0.4); } .buzz_wrapper:hover h2:nth-child(5){ color:rgba(255,255,255,0.4); -webkit-filter: blur(15px); } .buzz_wrapper:hover h2{ -webkit-animation: blur 30ms infinite, jerk 50ms infinite; } .buzz_wrapper:hover h2:nth-child(3){ -webkit-animation: jerkblue 1s infinite; } .buzz_wrapper:hover h2:nth-child(2){ -webkit-animation: jerkgreen 1s infinite; } .buzz_wrapper:hover .text{ -webkit-animation: jerkwhole 5s infinite; position:relative; } .scanline{ width:100%; display:block; background:#000; height:4px; position:relative; z-index:3; margin-bottom:5px; opacity:0; } .buzz_wrapper h2{ position:absolute; -webkit-filter: blur(1px); font-size:80px; font-family:'Courier new', fixed; font-weight:bold; } .buzz_wrapper h2:nth-child(1){ color:white; margin-left: 80px; -webkit-filter: blur(2px); font-size: 250%; top: 45vh; } .buzz_wrapper h2:nth-child(2){ color:green; margin-left:2px; -webkit-filter: blur(2px); } @-webkit-keyframes blur { 0% { -webkit-filter: blur(1px); opacity:0.8;} 50% { -webkit-filter: blur(1px); opacity:1; } 100%{ -webkit-filter: blur(1px); opacity:0.8; } } @-webkit-keyframes jerk { 50% { left:1px; } 51% { left:0; } } @-webkit-keyframes jerkup { 50% { top:1px; } 51% { top:0; } } @-webkit-keyframes jerkblue { 0% { left:0; } 30% { left:0; } 31% { left:10px; } 32% { left:0; } 98% { left:0; } 100% { left:10px; } } @-webkit-keyframes jerkgreen { 0% { left:0; } 30% { left:0; } 31% { left:-10px; } 32% { left:0; } 98% { left:0; } 100% { left:-10px; } } @-webkit-keyframes jerkwhole { 30% { } 40% { opacity:1; top:0; left:0; -webkit-transform:scale(1,1); -webkit-transform:skew(0,0);} 41% { opacity:0.8; top:0px; left:-100px; -webkit-transform:scale(1,1.2); -webkit-transform:skew(50deg,0);} 42% { opacity:0.8; top:0px; left:100px; -webkit-transform:scale(1,1.2); -webkit-transform:skew(-80deg,0);} 43% { opacity:1; top:0; left:0; -webkit-transform:scale(1,1); -webkit-transform:skew(0,0);} 65% { } } /*конец текста*/
css/text.css
.buzz_wrapper{ position:relative; /*background-color:#000;*/ overflow:hidden; height: 700px; margin-top: -100%; } .text{ margin-left: 20%; } .scanline:hover{ width:100%; display:block; background:#000; height:4px; position:relative; z-index:3; margin-bottom:5px; opacity:0.1; } .buzz_wrapper:hover h2:nth-child(3){ color:blue; position:20px 0; -webkit-filter: blur(1px); } .buzz_wrapper:hover h2:nth-child(4){ color:#fff; -webkit-filter: blur(1px); text-shadow:0 0 50px rgba(255,255,255,0.4); } .buzz_wrapper:hover h2:nth-child(5){ color:rgba(255,255,255,0.4); -webkit-filter: blur(15px); } .buzz_wrapper:hover h2{ -webkit-animation: blur 30ms infinite, jerk 50ms infinite; } .buzz_wrapper:hover h2:nth-child(3){ -webkit-animation: jerkblue 1s infinite; } .buzz_wrapper:hover h2:nth-child(2){ -webkit-animation: jerkgreen 1s infinite; } .buzz_wrapper:hover .text{ -webkit-animation: jerkwhole 5s infinite; position:relative; } .scanline{ width:100%; display:block; background:#000; height:4px; position:relative; z-index:3; margin-bottom:5px; opacity:0; } .buzz_wrapper h2{ position:absolute; -webkit-filter: blur(1px); font-size:80px; font-family:'Courier new', fixed; font-weight:bold; } .buzz_wrapper h2:nth-child(1){ color:white; margin-left: 80px; -webkit-filter: blur(2px); font-size: 250%; top: 45vh; } .buzz_wrapper h2:nth-child(2){ color:green; margin-left:2px; -webkit-filter: blur(2px); } @-webkit-keyframes blur { 0% { -webkit-filter: blur(1px); opacity:0.8;} 50% { -webkit-filter: blur(1px); opacity:1; } 100%{ -webkit-filter: blur(1px); opacity:0.8; } } @-webkit-keyframes jerk { 50% { left:1px; } 51% { left:0; } } @-webkit-keyframes jerkup { 50% { top:1px; } 51% { top:0; } } @-webkit-keyframes jerkblue { 0% { left:0; } 30% { left:0; } 31% { left:10px; } 32% { left:0; } 98% { left:0; } 100% { left:10px; } } @-webkit-keyframes jerkgreen { 0% { left:0; } 30% { left:0; } 31% { left:-10px; } 32% { left:0; } 98% { left:0; } 100% { left:-10px; } } @-webkit-keyframes jerkwhole { 30% { } 40% { opacity:1; top:0; left:0; -webkit-transform:scale(1,1); -webkit-transform:skew(0,0);} 41% { opacity:0.8; top:0px; left:-100px; -webkit-transform:scale(1,1.2); -webkit-transform:skew(50deg,0);} 42% { opacity:0.8; top:0px; left:100px; -webkit-transform:scale(1,1.2); -webkit-transform:skew(-80deg,0);} 43% { opacity:1; top:0; left:0; -webkit-transform:scale(1,1); -webkit-transform:skew(0,0);} 65% { } } /*конец текста*/
0.228759
0.053329
* { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } body { background-image: url(/img/hike.jpg); height: 100vh; background-size: cover; background-position: center; } ul { float: right; list-style-type: none; margin-right: 120px; } ul li { margin-top: 20px; display: inline-block; } ul li a { text-decoration: none; color: black; padding: 10px; font-size: 16px; } .logo img { float: left; width: 300px; height: auto; margin-top: 30px; margin-left: 50px; } .menu::after { content: ''; display: block; width: 0; height: 5px; margin-top: 3px; background: #00bb31; transition: width 0.5s; } .menu:hover::after { width: 100%; transition: width 0.5s; } .login::after { content: ''; display: block; width: 0; height: 5px; margin-top: 3px; background: #00bb31; } .login:hover::after { width: 100%; transition: width .5s; } .signup:hover a { color: white; } .signup:hover { background: #00bb31; } .login { margin-left: 10px; border-left: 5px solid gray; padding-left: 15px; } .signup { border: 1px solid #00bb31; margin-left: 20px; padding: 10px; border-radius: 10px; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); } .popup { background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; position: absolute; top: 0; display: none; justify-content: center; align-items: center; } .popup-content { border: 20px solid #00bb31; height: auto; width: 350px; box-sizing: border-box; background: #fff; padding: 20px; border-radius: 15px; border-top-right-radius: 0; border-bottom-left-radius: 0; position: relative; } h2 { text-align: center; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 25px; margin-bottom: 20px; padding: 10px; } p { text-align: center; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 14px; padding: 10px; text-decoration: none; } form { margin-top: auto; } input { width: 100%; padding: 15px; box-sizing: border-box; margin-bottom: 10px; border: none; outline: none; border: 1px solid gray; font-size: 16px; border-radius: 10px; } input[type=submit] { font-size: 16px; font-weight: bold; color: #00bb31; background: #fff; margin-top: 20px; border: 2px solid #00bb31; cursor: pointer; } input[type=submit]:hover { color: #fff; background: #00bb31; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); } p a { text-decoration: none; padding: 10px; font-size: 16px; color: #00bb31; font-weight: bold; } .close { position: absolute; top: -15px; right: -15px; background: #fff; height: 40px; width: 40px; border-radius: 50%; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); cursor: pointer; } .popup-login { background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; position: absolute; top: 0; display: none; justify-content: center; align-items: center; } .popup-content-login { border: 20px solid #00bb31; height: auto; width: 350px; box-sizing: border-box; background: #fff; padding: 20px; border-radius: 15px; border-top-right-radius: 0; border-bottom-left-radius: 0; position: relative; } .close-login { position: absolute; top: -15px; right: -15px; background: #fff; height: 40px; width: 40px; border-radius: 50%; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); cursor: pointer; } .container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -35%); width: 1200px; height: 500px; background: rgba(71, 71, 71, 0.3) } .container .box { position: relative; width: calc(400px - 30px); height: calc(500px - 30px); background: #fff; box-sizing: border-box; overflow: hidden; border-top-left-radius: 30px; border-bottom-right-radius: 30px; border: 1px solid #474747; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); float: left; margin: 15px; } .container .box .icon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #f00; transition: 0.5s; z-index: 1; } .icon img { position: absolute; width: 370px; height: 200px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } .container .box:hover .icon { left: calc(30% - 111px); width: 370px; height: 200px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } .container .box .icon .fa { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 80px; transition: 0.5s; color: #fff; } .container .box .content p { text-align: left; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 14px; text-decoration: none; } .container .box .content { position: absolute; top: 700px; height: calc(100% - 100px); text-align: center; padding: 20px; box-sizing: border-box; transition: 0.5s; opacity: 0; } .container .box:hover .content { top: 200px; opacity: 1; } .container .box .content h3 { margin: 0; padding: 0; color: #000; text-align: left; padding: 10px; } .content p a { text-decoration: none; font-size: 14px; color: #00bb31; font-weight: bold; } .userInfo { padding-top: 5%; font-size: 24px; text-align: right; margin-right: 10%;
public/css/u_guide.css
* { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } body { background-image: url(/img/hike.jpg); height: 100vh; background-size: cover; background-position: center; } ul { float: right; list-style-type: none; margin-right: 120px; } ul li { margin-top: 20px; display: inline-block; } ul li a { text-decoration: none; color: black; padding: 10px; font-size: 16px; } .logo img { float: left; width: 300px; height: auto; margin-top: 30px; margin-left: 50px; } .menu::after { content: ''; display: block; width: 0; height: 5px; margin-top: 3px; background: #00bb31; transition: width 0.5s; } .menu:hover::after { width: 100%; transition: width 0.5s; } .login::after { content: ''; display: block; width: 0; height: 5px; margin-top: 3px; background: #00bb31; } .login:hover::after { width: 100%; transition: width .5s; } .signup:hover a { color: white; } .signup:hover { background: #00bb31; } .login { margin-left: 10px; border-left: 5px solid gray; padding-left: 15px; } .signup { border: 1px solid #00bb31; margin-left: 20px; padding: 10px; border-radius: 10px; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); } .popup { background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; position: absolute; top: 0; display: none; justify-content: center; align-items: center; } .popup-content { border: 20px solid #00bb31; height: auto; width: 350px; box-sizing: border-box; background: #fff; padding: 20px; border-radius: 15px; border-top-right-radius: 0; border-bottom-left-radius: 0; position: relative; } h2 { text-align: center; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 25px; margin-bottom: 20px; padding: 10px; } p { text-align: center; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 14px; padding: 10px; text-decoration: none; } form { margin-top: auto; } input { width: 100%; padding: 15px; box-sizing: border-box; margin-bottom: 10px; border: none; outline: none; border: 1px solid gray; font-size: 16px; border-radius: 10px; } input[type=submit] { font-size: 16px; font-weight: bold; color: #00bb31; background: #fff; margin-top: 20px; border: 2px solid #00bb31; cursor: pointer; } input[type=submit]:hover { color: #fff; background: #00bb31; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); } p a { text-decoration: none; padding: 10px; font-size: 16px; color: #00bb31; font-weight: bold; } .close { position: absolute; top: -15px; right: -15px; background: #fff; height: 40px; width: 40px; border-radius: 50%; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); cursor: pointer; } .popup-login { background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; position: absolute; top: 0; display: none; justify-content: center; align-items: center; } .popup-content-login { border: 20px solid #00bb31; height: auto; width: 350px; box-sizing: border-box; background: #fff; padding: 20px; border-radius: 15px; border-top-right-radius: 0; border-bottom-left-radius: 0; position: relative; } .close-login { position: absolute; top: -15px; right: -15px; background: #fff; height: 40px; width: 40px; border-radius: 50%; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); cursor: pointer; } .container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -35%); width: 1200px; height: 500px; background: rgba(71, 71, 71, 0.3) } .container .box { position: relative; width: calc(400px - 30px); height: calc(500px - 30px); background: #fff; box-sizing: border-box; overflow: hidden; border-top-left-radius: 30px; border-bottom-right-radius: 30px; border: 1px solid #474747; box-shadow: 4px 4px 15px -4px rgba(0, 224, 60, 1); float: left; margin: 15px; } .container .box .icon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #f00; transition: 0.5s; z-index: 1; } .icon img { position: absolute; width: 370px; height: 200px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } .container .box:hover .icon { left: calc(30% - 111px); width: 370px; height: 200px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } .container .box .icon .fa { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 80px; transition: 0.5s; color: #fff; } .container .box .content p { text-align: left; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-size: 14px; text-decoration: none; } .container .box .content { position: absolute; top: 700px; height: calc(100% - 100px); text-align: center; padding: 20px; box-sizing: border-box; transition: 0.5s; opacity: 0; } .container .box:hover .content { top: 200px; opacity: 1; } .container .box .content h3 { margin: 0; padding: 0; color: #000; text-align: left; padding: 10px; } .content p a { text-decoration: none; font-size: 14px; color: #00bb31; font-weight: bold; } .userInfo { padding-top: 5%; font-size: 24px; text-align: right; margin-right: 10%;
0.469034
0.119254
body { font-family: 'Open Sans'; background-color: white; font-smooth: always; } h1,h2,h3,h4,h5,h6 { font-family: 'Open Sans'; font-variant: small-caps; color: #131669; border-bottom: 1px solid #090B4F; } h1 > i, h2 > i, h3 > i, h4 > i, h5 > i, h6 > i { color: #24267E; } a { font-family: 'Open Sans'; color: #090B4F; text-decoration: none; font-variant: small-caps; font-weight: 600; border-bottom: 1px solid #090B4F; padding: 0px 3px 0px 3px; transition: all 0.5s ease-in; } a:hover { border-radius: 3px; background-color: #24267E; color: white; border-bottom: 1px transparent; } .content nav ul { margin-left: 0; padding-left: 0; } .content nav li { list-style-type: none; display: inline-block; } .content nav a { border: 1px solid #ddd; padding: 3px; border-radius: 3px; } li { list-style-type: disc; color: #24267E; margin-bottom: 5px; } .sidebar { display: flex; flex-direction: column; justify-content: space-between; width: 75px; height: 100vh; position: fixed; top: 0; left: 0; background-color: #24267E; padding: 0; margin: 0; } .sidebar div { color: white; font-family: Montserrat; font-variant: small-caps; } .sidebar > div:first-of-type { font-size: 1.6rem; } .sidebar > div:last-of-type { font-size: 0.7rem; font-variant: normal; padding: 5px; padding-bottom: 3vh; text-align: center; display: none; } .sidebar div a { color: white; border-bottom: 0px; font-weight: 700; } .sidebar div a:hover { background-color: #24267E; } .rotate { background-color: #FFFF00; transform: rotate(-90deg); } .rotate .inner { position: absolute; top: -15px; left: -300%; } .sidebar div .postfix { color: #7779D8; } .content { display: flex; flex-direction: column; margin-left: 100px; margin-top: 2vw; } .tab div { width: 100%; padding-right: 2vw; display: block; } .tab div li { color: #24267E; } .tab div img { margin: 5px; } table { width: 100%; padding-left: 40px; } tr td:first-of-type { font-weight: bold; font-variant: small-caps; width: 50%; } .topRated tr td:first-of-type { padding-left: 0; width: 5%; text-align: right; } .topRated { padding-left: 0; } @media only screen and (min-width: 768px) { .tab { display: table; } .tab div { width: 30vw; display: table-cell; } .sidebar > div:last-of-type { display: block; } }
style.css
body { font-family: 'Open Sans'; background-color: white; font-smooth: always; } h1,h2,h3,h4,h5,h6 { font-family: 'Open Sans'; font-variant: small-caps; color: #131669; border-bottom: 1px solid #090B4F; } h1 > i, h2 > i, h3 > i, h4 > i, h5 > i, h6 > i { color: #24267E; } a { font-family: 'Open Sans'; color: #090B4F; text-decoration: none; font-variant: small-caps; font-weight: 600; border-bottom: 1px solid #090B4F; padding: 0px 3px 0px 3px; transition: all 0.5s ease-in; } a:hover { border-radius: 3px; background-color: #24267E; color: white; border-bottom: 1px transparent; } .content nav ul { margin-left: 0; padding-left: 0; } .content nav li { list-style-type: none; display: inline-block; } .content nav a { border: 1px solid #ddd; padding: 3px; border-radius: 3px; } li { list-style-type: disc; color: #24267E; margin-bottom: 5px; } .sidebar { display: flex; flex-direction: column; justify-content: space-between; width: 75px; height: 100vh; position: fixed; top: 0; left: 0; background-color: #24267E; padding: 0; margin: 0; } .sidebar div { color: white; font-family: Montserrat; font-variant: small-caps; } .sidebar > div:first-of-type { font-size: 1.6rem; } .sidebar > div:last-of-type { font-size: 0.7rem; font-variant: normal; padding: 5px; padding-bottom: 3vh; text-align: center; display: none; } .sidebar div a { color: white; border-bottom: 0px; font-weight: 700; } .sidebar div a:hover { background-color: #24267E; } .rotate { background-color: #FFFF00; transform: rotate(-90deg); } .rotate .inner { position: absolute; top: -15px; left: -300%; } .sidebar div .postfix { color: #7779D8; } .content { display: flex; flex-direction: column; margin-left: 100px; margin-top: 2vw; } .tab div { width: 100%; padding-right: 2vw; display: block; } .tab div li { color: #24267E; } .tab div img { margin: 5px; } table { width: 100%; padding-left: 40px; } tr td:first-of-type { font-weight: bold; font-variant: small-caps; width: 50%; } .topRated tr td:first-of-type { padding-left: 0; width: 5%; text-align: right; } .topRated { padding-left: 0; } @media only screen and (min-width: 768px) { .tab { display: table; } .tab div { width: 30vw; display: table-cell; } .sidebar > div:last-of-type { display: block; } }
0.591723
0.121738
@import url(../custom/notanotheranimetheme.css); :root { --theme-background-image: url(../svg/blank.png); --main-theme-color: rgb(67, 181, 129); --theme-transparency: rgba(0, 0, 0, 0.8); --home-icon-image: url(../svg/discord.svg); --home-icon-image-position: center center; --home-icon-image-zoom: 120%; --server-listing-width: 72px; --font-size: 90%; --mention-color: rgba(250, 166, 26, 0.05); --mention-sider: rgba(250, 166, 26, 1); --mention-hover-color: rgba(250, 166, 26, 0.08); --category-hover-color: rgb(60, 202, 138); --unread-server-animation: rainbow; --video-screen-button-background-color: rgba(200, 200, 200, 0.2); --video-screen-button-foreground-color: white; --video-screen-button-background-hovor-color: rgba(200, 200, 200, 0.4); --video-screen-button-foreground-hovor-color: white; --member-listing-role-color: var(--main-theme-color); --small-user-popout-background-image: var(--theme-background-image); --small-user-popout-background-transparency: rgba(0, 0, 0, 0.6); --small-user-popout-background-image-position: center; --big-user-popout-background-image: var(--theme-background-image); --big-user-popout-background-transparency: rgba(0, 0, 0, 0.6); --big-user-popout-background-image-position: center; --code-markup-background-color: rgba(0, 0, 0, 0.6); --code-markup-border: 1px solid transparent; --message-box-transparency: rgba(0, 0, 0, 0.6); --embed-background-transparency: rgba(0, 0, 0, 0.6); --message-hover-buttons-background: rgba(200, 200, 200, 0.1); --context-menu-transparency: rgba(15, 15, 15, 0.8); --add-discover-icon-transparency: rgba(200, 200, 200, 0.15); --add-discover-icon-color: #43b581; --channel-limit-count-color: var(--channels-default); --channel-limit-background-left: rgba(200, 200, 200, 0.1); --channel-limit-background-right: rgba(200, 200, 200, 0.2); --scrollbar-color: rgba(200, 200, 200, 0.2); --unread-message-divider-color: #f04747; --unread-message-divider-font-color: #fff; --new-messages-bar-background-color: #7289da; --new-messages-bar-font-color: #fff; --emoji-menu-background-color: rgba(0, 0, 0, 0.6); --emoji-menu-sider-background-color: rgba(0, 0, 0, 0); --emoji-menu-server-header-background-color: rgba(0, 0, 0, 0.8); --emoji-menu-bottom-bar-background-color: black; --emoji-menu-search-bar-background-color: rgba(200, 200, 200, 0.1); --message-search-menu-background-color: rgba(0, 0, 0, 0.8); --message-search-container-background-color: rgba(0, 0, 0, 0.6); --message-search-result-background-color: rgba(200, 200, 200, 0.05); --text-voice-channel-color: rgb(142, 146, 151); --text-voice-channel-hover-color: #dcddde; --text-voice-channel-selected-text-color: #fff; --unread-text-channel-color: #fff; --unread-text-channel-bubble-color: var(--main-theme-color); --folder-background-color: #2f3136; --expanded-folder-background-color: transparent; --reaction-emoji-background-color: rgba(0, 0, 0, 0); --reaction-emoji-border-color: 1px solid transparent; --reaction-emoji-hover-background-color: rgba(255, 255, 255, 0.1); --reaction-emoji-hover-border-color: rgba(255, 255, 255, 0.2); }
config/notanotheranimetheme.css
@import url(../custom/notanotheranimetheme.css); :root { --theme-background-image: url(../svg/blank.png); --main-theme-color: rgb(67, 181, 129); --theme-transparency: rgba(0, 0, 0, 0.8); --home-icon-image: url(../svg/discord.svg); --home-icon-image-position: center center; --home-icon-image-zoom: 120%; --server-listing-width: 72px; --font-size: 90%; --mention-color: rgba(250, 166, 26, 0.05); --mention-sider: rgba(250, 166, 26, 1); --mention-hover-color: rgba(250, 166, 26, 0.08); --category-hover-color: rgb(60, 202, 138); --unread-server-animation: rainbow; --video-screen-button-background-color: rgba(200, 200, 200, 0.2); --video-screen-button-foreground-color: white; --video-screen-button-background-hovor-color: rgba(200, 200, 200, 0.4); --video-screen-button-foreground-hovor-color: white; --member-listing-role-color: var(--main-theme-color); --small-user-popout-background-image: var(--theme-background-image); --small-user-popout-background-transparency: rgba(0, 0, 0, 0.6); --small-user-popout-background-image-position: center; --big-user-popout-background-image: var(--theme-background-image); --big-user-popout-background-transparency: rgba(0, 0, 0, 0.6); --big-user-popout-background-image-position: center; --code-markup-background-color: rgba(0, 0, 0, 0.6); --code-markup-border: 1px solid transparent; --message-box-transparency: rgba(0, 0, 0, 0.6); --embed-background-transparency: rgba(0, 0, 0, 0.6); --message-hover-buttons-background: rgba(200, 200, 200, 0.1); --context-menu-transparency: rgba(15, 15, 15, 0.8); --add-discover-icon-transparency: rgba(200, 200, 200, 0.15); --add-discover-icon-color: #43b581; --channel-limit-count-color: var(--channels-default); --channel-limit-background-left: rgba(200, 200, 200, 0.1); --channel-limit-background-right: rgba(200, 200, 200, 0.2); --scrollbar-color: rgba(200, 200, 200, 0.2); --unread-message-divider-color: #f04747; --unread-message-divider-font-color: #fff; --new-messages-bar-background-color: #7289da; --new-messages-bar-font-color: #fff; --emoji-menu-background-color: rgba(0, 0, 0, 0.6); --emoji-menu-sider-background-color: rgba(0, 0, 0, 0); --emoji-menu-server-header-background-color: rgba(0, 0, 0, 0.8); --emoji-menu-bottom-bar-background-color: black; --emoji-menu-search-bar-background-color: rgba(200, 200, 200, 0.1); --message-search-menu-background-color: rgba(0, 0, 0, 0.8); --message-search-container-background-color: rgba(0, 0, 0, 0.6); --message-search-result-background-color: rgba(200, 200, 200, 0.05); --text-voice-channel-color: rgb(142, 146, 151); --text-voice-channel-hover-color: #dcddde; --text-voice-channel-selected-text-color: #fff; --unread-text-channel-color: #fff; --unread-text-channel-bubble-color: var(--main-theme-color); --folder-background-color: #2f3136; --expanded-folder-background-color: transparent; --reaction-emoji-background-color: rgba(0, 0, 0, 0); --reaction-emoji-border-color: 1px solid transparent; --reaction-emoji-hover-background-color: rgba(255, 255, 255, 0.1); --reaction-emoji-hover-border-color: rgba(255, 255, 255, 0.2); }
0.374676
0.058885
.noty_animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } /*-- 5.2 Note / .note --*/ .note { overflow-x: hidden; overflow-y: hidden; } .note-container { position: relative; overflow: hidden; margin-left: -15px; margin-right: -15px; } .note-top-toolbar { background-color: #fff; border-bottom: #eee 1px solid; margin-left: -15px; margin-right: -15px; padding: 10px; } .note-top-toolbar .note-list-back { display: none; margin-left: 6px !important; } .note-top-toolbar .btn-group { margin: 0px; } .note-sidebar { width: 160px; background-color: #f1f1f1; position: fixed; border-right: #e9e9e9 1px solid; overflow-y: auto; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-content { position: relative; overflow: hidden; margin-left: 160px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-content .note-list-wrap { padding-top: 40px; width: 360px; height: 100%; position: fixed; background-color: #f9f9f9; border-right: #e9e9e9 1px solid; height: 300px; overflow-y: auto; } .note-body { margin-left: 360px; position: fixed; overflow-y: auto; background-color: #fff; } .hide-note-sidebar .note-sidebar { left: -160px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .hide-note-sidebar .note-content { margin-left: 0px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-box-list { margin: 0px; padding: 0px; } .note-box-list li { list-style: none; } .note-box-list li a { color: #454545; display: block; padding: 8px 15px; } .note-box-list li a:hover, .note-box-list li a:focus { text-decoration: none; background-color: #f9f9f9; color: #15bdc3; } .note-box-list li a i { font-size: 16px; position: relative; top: 2px; margin-right: 6px; width: 20px; text-align: center; display: inline-block; } .note-box-list li a .new-item-count { display: inline-block; background-color: #15bdc3; color: #fff; padding: 4px 6px; font-size: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin-left: 6px; } .note-list-item { padding: 0px 12px; width: 100%; display: table; position: relative; cursor: pointer; overflow: hidden; border-bottom: #f1f1f1 1px solid; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item .note-list-date { font-size: 11px; color: #888; margin-bottom: 4px; display: block; text-transform: uppercase; } .note-list-item:hover { background-color: #ffffff; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item.note-item-selected, .note-list-item.note-item-selected:hover, .note-list-item.note-item-selected:focus { background-color: azure; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item.note-important { overflow: hidden; } .note-list-item.note-important .note-mark-important { position: absolute; right: -5px; top: -20px; width: 32px; height: 32px; display: block; text-align: center; } .note-list-item.note-important .note-mark-important i { font-size: 14px; position: relative; left: 0px; top: 15px; color: #ff5722; } .note-list-item.note-pinned .pin-ribbon { position: absolute; right: -20px; top: -20px; background: #0097a7; width: 40px; height: 40px; transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); } .note-list-item.note-pinned .pin-ribbon i { position: relative; top: 22px; right: -15px; font-size: 12px; color: #fff; transform: rotate(25deg); -ms-transform: rotate(25deg); -webkit-transform: rotate(25deg); } .note-list-item ul { margin: 0px; padding: 0px; list-style: none; } .note-list-item .note-list-action { width: 30px; display: table-cell; vertical-align: top; position: relative; z-index: 9000; padding-top: 10px; } .note-list-details { display: table-cell; vertical-align: top; padding: 10px 0px 10px 0px; } .note-list-details .note-intro h4 { font-size: 12px; margin-top: 0px; margin-bottom: 6px; } .note-list-details .note-intro p { margin-bottom: 0px; font-size: 12px; color: #868686; } .note-content { background-color: #fff; position: relative; } .note-content h3 { font-weight: 300; padding: 0px 20px; margin-bottom: 0px; font-size: 18px; } .note-content .note-body { z-index: 6000; overflow-y: visible; } .note-content .note-body.full-screen { z-index: 8000; } .note-content .note-content-body { padding: 0px 0px; margin: 0px 0px; } .note-content .note-content-body .note-editor { border: 0px; } .note-list-toolbar { width: 360px; height: 40px; padding: 0px 10px; border-bottom: #e5e5e5 1px solid; border-right: #e5e5e5 1px solid; position: fixed; z-index: 1800; background-color: #f5f5f5; } .note-list-toolbar .note-check-all { width: 32px; padding: 8px 0px 11px 2px; } .note-list-toolbar .btn-toolbar { padding: 0px 4px; } .note-list-toolbar .btn-group .btn { border: none; height: 39px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; } .note-list-toolbar .btn-group .btn:hover, .note-list-toolbar .btn-group .btn:focus { background-color: #eee; } .note-list-toolbar .dropdown-menu { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; margin-top: 0px; } .list-search-form { background-color: #fff; width: 360px; height: 40px; position: fixed; margin-left: -10px; padding-right: -10px; z-index: 2000; display: none; } .list-search-form .list-search-input { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; padding-right: 35px; border-left: transparent; border-right: transparent; border-top: transparent; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .list-search-form .list-search-input:focus { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .list-search-form .s-input-close { width: 32px; height: 32px; display: inline-block; position: absolute; right: 3px; top: 3px; text-align: center; line-height: 32px; font-size: 20px; cursor: pointer; } .note .top-bar { z-index: 7000; } .note .modal-backdrop { display: none; } .note .modal-dialog { margin: 70px auto; } .note .left-aside { z-index: 8000; } .note .right-aside { z-index: 8200; } .note .mask { z-index: 7800; } .note .r-mask { z-index: 8100; } .tooltip { z-index: 8000 !important; }
resources/assets/admin/css/all-css/note.css
.noty_animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } /*-- 5.2 Note / .note --*/ .note { overflow-x: hidden; overflow-y: hidden; } .note-container { position: relative; overflow: hidden; margin-left: -15px; margin-right: -15px; } .note-top-toolbar { background-color: #fff; border-bottom: #eee 1px solid; margin-left: -15px; margin-right: -15px; padding: 10px; } .note-top-toolbar .note-list-back { display: none; margin-left: 6px !important; } .note-top-toolbar .btn-group { margin: 0px; } .note-sidebar { width: 160px; background-color: #f1f1f1; position: fixed; border-right: #e9e9e9 1px solid; overflow-y: auto; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-content { position: relative; overflow: hidden; margin-left: 160px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-content .note-list-wrap { padding-top: 40px; width: 360px; height: 100%; position: fixed; background-color: #f9f9f9; border-right: #e9e9e9 1px solid; height: 300px; overflow-y: auto; } .note-body { margin-left: 360px; position: fixed; overflow-y: auto; background-color: #fff; } .hide-note-sidebar .note-sidebar { left: -160px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .hide-note-sidebar .note-content { margin-left: 0px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-box-list { margin: 0px; padding: 0px; } .note-box-list li { list-style: none; } .note-box-list li a { color: #454545; display: block; padding: 8px 15px; } .note-box-list li a:hover, .note-box-list li a:focus { text-decoration: none; background-color: #f9f9f9; color: #15bdc3; } .note-box-list li a i { font-size: 16px; position: relative; top: 2px; margin-right: 6px; width: 20px; text-align: center; display: inline-block; } .note-box-list li a .new-item-count { display: inline-block; background-color: #15bdc3; color: #fff; padding: 4px 6px; font-size: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin-left: 6px; } .note-list-item { padding: 0px 12px; width: 100%; display: table; position: relative; cursor: pointer; overflow: hidden; border-bottom: #f1f1f1 1px solid; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item .note-list-date { font-size: 11px; color: #888; margin-bottom: 4px; display: block; text-transform: uppercase; } .note-list-item:hover { background-color: #ffffff; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item.note-item-selected, .note-list-item.note-item-selected:hover, .note-list-item.note-item-selected:focus { background-color: azure; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } .note-list-item.note-important { overflow: hidden; } .note-list-item.note-important .note-mark-important { position: absolute; right: -5px; top: -20px; width: 32px; height: 32px; display: block; text-align: center; } .note-list-item.note-important .note-mark-important i { font-size: 14px; position: relative; left: 0px; top: 15px; color: #ff5722; } .note-list-item.note-pinned .pin-ribbon { position: absolute; right: -20px; top: -20px; background: #0097a7; width: 40px; height: 40px; transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); } .note-list-item.note-pinned .pin-ribbon i { position: relative; top: 22px; right: -15px; font-size: 12px; color: #fff; transform: rotate(25deg); -ms-transform: rotate(25deg); -webkit-transform: rotate(25deg); } .note-list-item ul { margin: 0px; padding: 0px; list-style: none; } .note-list-item .note-list-action { width: 30px; display: table-cell; vertical-align: top; position: relative; z-index: 9000; padding-top: 10px; } .note-list-details { display: table-cell; vertical-align: top; padding: 10px 0px 10px 0px; } .note-list-details .note-intro h4 { font-size: 12px; margin-top: 0px; margin-bottom: 6px; } .note-list-details .note-intro p { margin-bottom: 0px; font-size: 12px; color: #868686; } .note-content { background-color: #fff; position: relative; } .note-content h3 { font-weight: 300; padding: 0px 20px; margin-bottom: 0px; font-size: 18px; } .note-content .note-body { z-index: 6000; overflow-y: visible; } .note-content .note-body.full-screen { z-index: 8000; } .note-content .note-content-body { padding: 0px 0px; margin: 0px 0px; } .note-content .note-content-body .note-editor { border: 0px; } .note-list-toolbar { width: 360px; height: 40px; padding: 0px 10px; border-bottom: #e5e5e5 1px solid; border-right: #e5e5e5 1px solid; position: fixed; z-index: 1800; background-color: #f5f5f5; } .note-list-toolbar .note-check-all { width: 32px; padding: 8px 0px 11px 2px; } .note-list-toolbar .btn-toolbar { padding: 0px 4px; } .note-list-toolbar .btn-group .btn { border: none; height: 39px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; } .note-list-toolbar .btn-group .btn:hover, .note-list-toolbar .btn-group .btn:focus { background-color: #eee; } .note-list-toolbar .dropdown-menu { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; margin-top: 0px; } .list-search-form { background-color: #fff; width: 360px; height: 40px; position: fixed; margin-left: -10px; padding-right: -10px; z-index: 2000; display: none; } .list-search-form .list-search-input { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; padding-right: 35px; border-left: transparent; border-right: transparent; border-top: transparent; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .list-search-form .list-search-input:focus { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .list-search-form .s-input-close { width: 32px; height: 32px; display: inline-block; position: absolute; right: 3px; top: 3px; text-align: center; line-height: 32px; font-size: 20px; cursor: pointer; } .note .top-bar { z-index: 7000; } .note .modal-backdrop { display: none; } .note .modal-dialog { margin: 70px auto; } .note .left-aside { z-index: 8000; } .note .right-aside { z-index: 8200; } .note .mask { z-index: 7800; } .note .r-mask { z-index: 8100; } .tooltip { z-index: 8000 !important; }
0.294621
0.064831
a { font-family: Arial, sans-serif; font-size: 12px; color: white; } .dropdown-content { font-family: Arial, sans-serif; font-size: 12px; color: black; } /*tooltips*/ .tooltip .tooltiptext { visibility: hidden; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; margin-top: 20px; /* Position the tooltip */ position: fixed; z-index: 1000; } .tooltip:hover .tooltiptext { visibility: visible; } /*sceneeditor*/ .addnodebutton { cursor: pointer; font-size: 12px; border-style: solid; border-width: 1px; outline: none; color: white; padding: 5px 10px; align-self: center; background-color: inherit; font-family: inherit; display: block; width: inherit; } .cube { object-fit: scale-down; width: 650px; } .cube_selected { object-fit: scale-down; width: 650px; } .cube_gizmo { object-fit: scale-down; width: 650px; } .cube_gizmo2 { object-fit: scale-down; width: 650px; } /*animation editor*/ .fakeTimeline { object-fit: scale-down; width: 1180px; margin-top: 30px; } .text { font-family: Arial, sans-serif; font-size: 12px; color: white; margin: 2px; } .contrButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ height: 20px; width: 20px; cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; margin: 1px; padding: unset; } .contrButton img { height: 100%; width: 100%; } .contrButton:hover { background-blend-mode: multiply; background-color: #757575; } .contrButton:active { background-blend-mode: multiply; background-color: #505050; } .fake-buttons { height: 20px; } #Invisibutton { background: none; border: none; } .fold_button{ height: 15px; } .ToolButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ height: 30px; width: 30px; cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; padding: 4px 4px 4px 4px; margin: 2px; } .ToolButton img { height: 100%; width: 100%; } .ToolButton:hover { background-blend-mode: multiply; background-color: #757575; } .ToolButton:focus { background-color: #505050; } .hide-button { object-fit: scale-down; background: none; border: none; height: 10px; width: 35px; margin: 2px; } .hide-button img { height: 100%; width: 100%; } .TextButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; margin: 2px; } .fieldset_header{ display: inherit; margin: 10px; } fieldset{ color: white; font-family: Arial, Helvetica, sans-serif; font-size: 12px; margin: 20px; } .fieldset_container{ overflow-y: scroll; overflow-x: hidden; } .column1row1{ grid-column: 1; grid-row: 1; } .column2row1{ grid-column: 2; grid-row: 1; } .column1{ grid-column: 1; } .column2{ grid-column: 2; } .column3{ grid-column: 3; } .column4{ grid-column: 4; } .column5{ grid-column: 5; } .column6{ grid-column: 6; } .column1-6{ grid-column: 1 / span 6; } .fieldset_content { display: grid; grid-auto-columns: auto auto auto; margin: 10px; color: white; font-family: Arial, Helvetica, sans-serif; font-size: 12px; grid-gap: 1px; } .fieldset_transform { display: grid; grid-template-columns: 15px 75px 15px 75px 15px 75px; margin: 10px; } .fieldset_transform input { width: 75%; } .fieldset_mesh{ display: grid; grid-template-columns: 45px 150px; margin: 10px; } .fieldset_material{ display: grid; grid-template-columns: 62px 100px 120px; margin: 10px; } .fieldset_content label { margin: 5px; margin-right: 2px; } .ressource_explorer{ display: grid; grid-template-columns: 120px 120px 120px 120px 120px 120px; margin: 30px; } .ressource_explorer img{ height: 100px; } .ressource_explorer div{ margin-left: 5px; color: white; font-family: Arial, Helvetica, sans-serif; } .navbar { overflow: hidden; background-color: #333; font-family: Arial, Helvetica, sans-serif; } .navbar a { float: left; font-size: 16px; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } .dropdown { float: left; overflow: hidden; } .dropdown .dropbutton { cursor: pointer; font-size: 12px; border: none; outline: none; color: white; padding: 5px 10px; background-color: inherit; font-family: inherit; margin: 0; } .navbar a:hover, .dropdown:hover .dropbutton, .dropbutton:focus { background-color: #ddd; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; max-width: fit-content; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); z-index: 999; } .dropdown-content a { float: none; color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover { background-color: #ddd; } .add_dropdown { display: inline-block; overflow: hidden; width: inherit; font-family: Arial, Helvetica, sans-serif; } .add_dropdown .dropbutton { cursor: pointer; font-size: 12px; border: none; outline: none; color: white; padding: 5px 10px; align-self: center; background-color: inherit; font-family: inherit; display: block; width: inherit; } .add_dropdown:hover .dropbutton, .dropbutton:focus { background-color: #ddd; } .show { display: block; } .folded { display: none; } h2 { font-family: Arial, sans-serif; font-size: 12px; color: #999999; } .sketch_canvas { object-fit: scale-down; width: 850px; }
Miscellaneous/Experiments/Lea/Usertest-Prototyp/Typescript-GoldenLayout/src/ui-elements.css
a { font-family: Arial, sans-serif; font-size: 12px; color: white; } .dropdown-content { font-family: Arial, sans-serif; font-size: 12px; color: black; } /*tooltips*/ .tooltip .tooltiptext { visibility: hidden; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; margin-top: 20px; /* Position the tooltip */ position: fixed; z-index: 1000; } .tooltip:hover .tooltiptext { visibility: visible; } /*sceneeditor*/ .addnodebutton { cursor: pointer; font-size: 12px; border-style: solid; border-width: 1px; outline: none; color: white; padding: 5px 10px; align-self: center; background-color: inherit; font-family: inherit; display: block; width: inherit; } .cube { object-fit: scale-down; width: 650px; } .cube_selected { object-fit: scale-down; width: 650px; } .cube_gizmo { object-fit: scale-down; width: 650px; } .cube_gizmo2 { object-fit: scale-down; width: 650px; } /*animation editor*/ .fakeTimeline { object-fit: scale-down; width: 1180px; margin-top: 30px; } .text { font-family: Arial, sans-serif; font-size: 12px; color: white; margin: 2px; } .contrButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ height: 20px; width: 20px; cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; margin: 1px; padding: unset; } .contrButton img { height: 100%; width: 100%; } .contrButton:hover { background-blend-mode: multiply; background-color: #757575; } .contrButton:active { background-blend-mode: multiply; background-color: #505050; } .fake-buttons { height: 20px; } #Invisibutton { background: none; border: none; } .fold_button{ height: 15px; } .ToolButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ height: 30px; width: 30px; cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; padding: 4px 4px 4px 4px; margin: 2px; } .ToolButton img { height: 100%; width: 100%; } .ToolButton:hover { background-blend-mode: multiply; background-color: #757575; } .ToolButton:focus { background-color: #505050; } .hide-button { object-fit: scale-down; background: none; border: none; height: 10px; width: 35px; margin: 2px; } .hide-button img { height: 100%; width: 100%; } .TextButton { object-fit: scale-down; font-size: 16px; /* Set a font size */ cursor: pointer; /* Mouse pointer on hover */ background-color: #9d9d9d; border: none; margin: 2px; } .fieldset_header{ display: inherit; margin: 10px; } fieldset{ color: white; font-family: Arial, Helvetica, sans-serif; font-size: 12px; margin: 20px; } .fieldset_container{ overflow-y: scroll; overflow-x: hidden; } .column1row1{ grid-column: 1; grid-row: 1; } .column2row1{ grid-column: 2; grid-row: 1; } .column1{ grid-column: 1; } .column2{ grid-column: 2; } .column3{ grid-column: 3; } .column4{ grid-column: 4; } .column5{ grid-column: 5; } .column6{ grid-column: 6; } .column1-6{ grid-column: 1 / span 6; } .fieldset_content { display: grid; grid-auto-columns: auto auto auto; margin: 10px; color: white; font-family: Arial, Helvetica, sans-serif; font-size: 12px; grid-gap: 1px; } .fieldset_transform { display: grid; grid-template-columns: 15px 75px 15px 75px 15px 75px; margin: 10px; } .fieldset_transform input { width: 75%; } .fieldset_mesh{ display: grid; grid-template-columns: 45px 150px; margin: 10px; } .fieldset_material{ display: grid; grid-template-columns: 62px 100px 120px; margin: 10px; } .fieldset_content label { margin: 5px; margin-right: 2px; } .ressource_explorer{ display: grid; grid-template-columns: 120px 120px 120px 120px 120px 120px; margin: 30px; } .ressource_explorer img{ height: 100px; } .ressource_explorer div{ margin-left: 5px; color: white; font-family: Arial, Helvetica, sans-serif; } .navbar { overflow: hidden; background-color: #333; font-family: Arial, Helvetica, sans-serif; } .navbar a { float: left; font-size: 16px; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } .dropdown { float: left; overflow: hidden; } .dropdown .dropbutton { cursor: pointer; font-size: 12px; border: none; outline: none; color: white; padding: 5px 10px; background-color: inherit; font-family: inherit; margin: 0; } .navbar a:hover, .dropdown:hover .dropbutton, .dropbutton:focus { background-color: #ddd; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; max-width: fit-content; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); z-index: 999; } .dropdown-content a { float: none; color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover { background-color: #ddd; } .add_dropdown { display: inline-block; overflow: hidden; width: inherit; font-family: Arial, Helvetica, sans-serif; } .add_dropdown .dropbutton { cursor: pointer; font-size: 12px; border: none; outline: none; color: white; padding: 5px 10px; align-self: center; background-color: inherit; font-family: inherit; display: block; width: inherit; } .add_dropdown:hover .dropbutton, .dropbutton:focus { background-color: #ddd; } .show { display: block; } .folded { display: none; } h2 { font-family: Arial, sans-serif; font-size: 12px; color: #999999; } .sketch_canvas { object-fit: scale-down; width: 850px; }
0.512937
0.11129
.logo, .menu li a, .mobMenu li a { line-height:70px } .agents ul, .jobAction li, .mediaBox ul li, .menu, .mobMenu, .offerUL li, .summary ul { list-style:none } .allServices:nth-child(odd), .clear, .essentialPadding .col-md-6:nth-child(even), .mediaMain .col-md-4:nth-child(4n) { clear:both } .applyNowMailTo, .bannerText1 h2, .continueBtn, .dependCont h2, .mediaBox h2, .testiCont h2 { text-transform:uppercase } body, html { margin:0; padding:0; font-family:'Open Sans', sans-serif; height:100%; -webkit-overflow-scrolling:touch } .agImg, .select-style, .sevicesList, .teamList { overflow:hidden } .container { width:960px; padding:0 } .header { height:70px; background:#646464; position:fixed; width:100%; z-index:9 } .homeHeader { background:0 0 } .headerFixed { background:#273C4D } .logo { float:left } .menu { float:right } .menu li { display:inline-block } .menu li a { color:#fff; padding-right:10px; padding-left:5px; border-right:1px solid #fff; font-weight:600 } .menu li a.myAcc { padding:5px 14px 6px; background:#fedf4a; border-radius:3px; color:#2b3247; border:0 } .menu li a:hover { text-decoration:none } .mobMenu, .mobMenu1 { display:none } .mobMenu { position:absolute; right:91px } .mobMenu li { display:inline-block } .mobMenu li a { color:#fff; padding-right:15px; padding-left:15px; border-right:1px solid #fff; font-weight:600 } .mobMenu li a.myAcc { padding:5px 14px 6px; background:#fedf4a; border-radius:5px; color:#2b3247; border:0 } .dl-menuwrapper { text-align:right } .dl-menuwrapper .dl-menu.dl-menuopen { top:-15px; text-align:left } .dl-menuwrapper button { top:-67px; right:0 } .dl-menuwrapper { top:80px } .banner { width:100%; background:url(../img/banner.jpg) no-repeat; padding:40px 0 10px; position:relative; border-bottom:1px solid #ddd; background-size:cover } .bannerClean { width:150px; height:150px; margin:70px auto 0; background:#fedf4a; border-radius:10px; color:#2b3247; text-align:center } .bannerText, .bannerTextNew { text-align:justify; font-weight:400 } .stepLabels, label.stepLabels { margin-right:10px } .bannerClean img { margin-top:25px } .bannerClean p { margin-top:15px; font-size:16px; font-weight:600; color:#2b3149 } .bannerText { color:#DDD; font-size:13px; padding-top:25px } .bannerTextNew { color:#273C4D; font-size:14px; padding-top:75px } .bannerText1, .bannerText1 h3, .checkboxes, .checkboxes label img, .couponText, .dependCont h2, .logoBox, .serviceText, .serviceText p, .stepNo, .testiCont h2, input.agentRadio+label, input.form-control, input.form-control.searchBar, li.customTab>a, p.selService { text-align:center } .summary h3, .thx { color:#888; font-weight:400 } .thx { padding:45px 0 0; margin-left:40px } .summary { width:100%; background:#fbfbf9; border:1px solid #BBB; padding:20px } .summary ul, .total { border-bottom:1px solid #ddd } .applyBtn, .couponText { height:24px; border:1px solid #ddd } .summary h3 { font-size:14px; margin-top:0 } .summary ul { padding:0 0 20px; margin-bottom:0 } .summary ul li { display:block; font-size:13px; color:#444 } .ipLabel, .stepLabels { display:inline-block } .summary ul li p span { font-size:11px; color:#868686; text-decoration:line-through } .faqText a, .footerLinkBox a, .logoBoxLeftIn a, .serpadding a { text-decoration:none } .totalLabel { font-size:16px; color:#888; padding-top:15px } .totalPrice { font-size:24px; color:#273C4D; padding-top:10px } .taxLabel { font-size:15px; color:#888; padding-top:15px } .taxPrice { font-size:16px; color:#273C4D; padding-top:10px } .total { margin-bottom:15px } .couponText { width:calc(100% - 75px); float:left; background:#fff; border-bottom-left-radius:3px; border-top-left-radius:3px; font-size:12px; color:#000; outline:0 } .applyBtn, .locationMarkerButton { background:#ffde00; color:#2b304a; font-weight:600; font-size:13px } .applyBtn { width:75px; border-bottom-right-radius:3px; border-top-right-radius:3px } .locationMarkerButton { width:30px; border:1px solid #ddd; border-bottom-right-radius:3px; border-top-right-radius:3px; line-height:1.9; margin-left:-30px; padding-top:0 } .rightBox { padding:0; margin-bottom:20px } .stepsBox { background:#fbfbf9; margin-bottom:20px; border:1px solid #BBB } .stepNo { width:32px; height:32px; float:left; background:#273C4D; color:#FFF; font-size:20px; line-height:32px; margin-bottom:0 } .stepHead { cursor:pointer; line-height:32px } .stepTitle { margin-bottom:0; margin-left:45px; font-size:13px; color:#273C4D } .activeTitle { visibility:visible } .stepContent { padding:10px 40px } .stepMain { color:#1f1f1f; font-size:14px } .stepLabels { font-size:13px; font-weight:400; color:#444 } hr { height:1px; background:#ddd; border:0 } .continueBtn, .signTxt { border:1px solid #ddd; height:28px } hr.lessMar { margin-bottom:10px } .continueBtn { width:184px; background:#FFDE00; border-radius:5px; color:#666; font-weight:600; font-size:13px } .customRow { width:75%; margin:0 auto } .addArea, .signLabel { margin:15px 0 0 } .signLabel, .signTxtDiv { padding:0 } .addArea, .signTxt { background:#eee; font-size:12px; padding:5px } .signTxt { border-radius:3px; width:calc(100% - 264px) } .addArea { border:1px solid #ddd; border-radius:3px; width:274px; height:70px; resize:none } .forgot { font-size:10px; color:#444; margin-top:5px } .payLeft li a, li.customTab>a { font-size:13px; margin-right:0 } .customTab { width:50% } li.customTab>a { border-radius:0; background:#ddd; color:#1f1f1f } .nav-tabs>li.customTab.active>a, .nav-tabs>li.customTab.active>a:focus, .nav-tabs>li.customTab.active>a:hover { background:#fbfbf9 } .tabContent { border-left:1px solid #ddd; border-right:1px solid #ddd; border-bottom:1px solid #ddd; margin-bottom:10px; padding-bottom:15px } .paymentBox { border:1px solid #ddd } .payLeft { background:#ddd; float:left; height:100% } .payLeft li { display:block; float:none } .payLeft li a { color:#444; padding:10px 5px; border:0 } .payLeft li.active a { border-radius:0; margin:0 } .payRight { float:left; padding:15px; width:83% } .bankList { background:#fff } .bank { width:121px; height:38px; border:1px solid #eee; float:left; margin:10px; background:#f9f9f9; padding:6px 5px 0 } .fridgeSection, .homeSection { margin-top:30px } .homeText { font-size:11px; color:#444 } .date .form-control { height:24px; display:inline-block; font-size:13px } .date .input-group-addon { padding:0 10px } .dateBox { width:160px; margin-right:10px } .mainSec { margin-top:10px } input.options { width:66px; height:77px; outline:0; visibility:hidden; margin:0; -webkit-appearance:none; -moz-appearance:none; -ms-appearance:none; appearance:none } input.options:focus { outline:0 } .checkboxes { position:relative; width:66px; height:77px; display:inline-block; margin-right:5px; margin-bottom:20px } .checkboxes label { position:absolute; width:100%; height:90px; left:0; top:0; font-size:11px; color:#444; font-weight:400; border:1px solid #ddd; outline:0; background:#eee; background:-moz-linear-gradient(top, #eee 0, #ddd 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(100%, #ddd)); background:-webkit-linear-gradient(top, #eee 0, #ddd 100%); background:-o-linear-gradient(top, #eee 0, #ddd 100%); background:-ms-linear-gradient(top, #eee 0, #ddd 100%); background:linear-gradient(to bottom, #eee 0, #ddd 100%); filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0) } .checkboxes label img { display:block; margin:21px 21px 7px } .checkboxes input.active { background:#FFE000; outline:0 } input.options.active:checked+label { font-weight:600; color:#2B304A; background:#FFE000 } input.options.active:checked+label img { display:none } input.options.active:not(:checked)+label img { display:block } input.options.active:checked+label:before { content:url(/img/checked.png); margin:21px 21px 7px; width:24px; height:24px; display:block } input.agentRadio, input.agentRadio+label { height:117px; background:#eee; border-radius:0 } .agents ul { padding:0 } .agents ul li { display:inline-block } input.agentRadio { width:103px; display:none } input.agentRadio+label { width:99px; color:#666; font-size:12px; font-weight:600 } input.agentRadio+label span { font-size:11px; font-weight:600; display:block } .city select, .select-style select { box-shadow:none; font-size:13px; -webkit-appearance:none; -moz-appearance:none } input.agentRadio+label img { width:76px; height:76px; border-radius:100%; border:2px solid #fff; margin:5px 13px 0 } .agents ul li.active input.agentRadio+label { background:#FFE000 } .select-style { padding:0; margin:0; display:inline-table; border:1px solid #ddd; width:150px; height:24px; border-radius:3px; background:url(../img/arrow.png) 90% 50% no-repeat #fff } .select-style select { padding:0 8px; width:100%; border:none; background-color:transparent; background-image:none; appearance:none } .city, .city select { background:url(../img/arrow.png) 90% 50% no-repeat } .select-style select:focus { outline:0 } .city { width:110px; color:#fff; margin-left:15px; margin-right:15px; border-radius:3px } .city select { padding-left:5px; width:100%; border:none; appearance:none } .menuOption { background-color:#273C4D } .bankSelect { width:174px } .stepContent h3 { color:#666; font-size:14px; font-weight:400; float:left } .stepContent h3 span { color:#666; font-size:16px; font-weight:600 } .payment { margin-top:15px } .logo-cover { margin-top:10px } .icheckbox_square-blue, .iradio_square-blue { display:inline-block; vertical-align:middle; margin:0 3px 0 0; width:14px; height:14px; border:1px solid #bbb; border-radius:100%; padding:1px; cursor:pointer } .icheckbox_square-blue { background:#fff } .icheckbox_square-blue.checked, .icheckbox_square-blue.hover { background:url(../img/radio.png); background-size:100%; border:none } .icheckbox_square-blue.disabled { background:#bbb; cursor:default } .icheckbox_bath, .icheckbox_carpet, .icheckbox_fridge, .icheckbox_home, .icheckbox_shoes, .icheckbox_sofa, .icheckbox_windows { vertical-align:middle; margin:0; padding:0; width:66px; height:77px; cursor:pointer; display:inline-block } .icheckbox_square-blue.checked.disabled { background:#bbb } .icheckbox_home { background:url(../img/home.jpg) } .icheckbox_home.checked, .icheckbox_home.hover { background:url(../img/homeChecked.jpg); background-size:100%; border:none } .icheckbox_bath { background:url(../img/bathroom.jpg) } .icheckbox_bath.checked, .icheckbox_bath.hover { background:url(../img/bathChecked.jpg); background-size:100%; border:none } .icheckbox_windows { background:url(../img/windows.jpg) } .icheckbox_windows.checked, .icheckbox_windows.hover { background:url(../img/windowsChecked.jpg); background-size:100%; border:none } .icheckbox_sofa { background:url(../img/sofa.jpg) } .icheckbox_sofa.checked, .icheckbox_sofa.hover { background:url(../img/sofaChecked.jpg); background-size:100%; border:none } .icheckbox_carpet { background:url(../img/carpet.jpg) } .icheckbox_carpet.checked, .icheckbox_carpet.hover { background:url(../img/carpetChecked.jpg); background-size:100%; border:none } .icheckbox_fridge { background:url(../img/fridge.jpg) } .icheckbox_fridge.checked, .icheckbox_fridge.hover { background:url(../img/fridgeChecked.jpg); background-size:100%; border:none } .icheckbox_shoes { background:url(../img/shoes.jpg) } .abBanner img, .mediaBox, .mediaCont { width:100% } .icheckbox_shoes.checked, .icheckbox_shoes.hover { background:url(../img/shoesChecked.jpg); background-size:100%; border:none } .iradio_square-blue { background:#fff } .iradio_square-blue.checked, .iradio_square-blue.hover { background:url(../img/radio.png); background-size:100%; border:none } .iradio_square-blue.disabled { background:#bbb; cursor:default } .iradio_square-blue.checked.disabled { background:#bbb } @media (-o-min-device-pixel-ratio:5/4), (-webkit-min-device-pixel-ratio:1.25), (min-resolution:120dpi) { .icheckbox_square-blue, .iradio_square-blue { background-image:url(../img/blue@2x.png); -webkit-background-size:240px 24px; background-size:240px 24px } } .mediaBox { display:inline-block; margin:50px 0 } .mediaBox h2 { color:#fedf4a; font-size:18px } .mediaBox ul li { color:#fff; font-size:16px; margin:30px 0 } .logoBox { position:relative } .logoBox img { max-height:40px } .logoSec { margin:40px 25px; display:inline-block } .logoSec:first-child { margin-left:0 } .logoSec:last-child { margin-right:0 } .logoSec:last-child:before { position:absolute; top:0; right:105px; content:''; width:0; height:0; border-style:solid; border-width:20px 17px 0; border-color:#273C4D transparent transparent } .meetCont { position:relative; height:350px } .meetCont .logoBoxLeft { height:100%; display:inline-block; background-color:#eee; transform:skew(-10deg, 0deg); -webkit-transform:skew(-10deg, 0deg); -moz-transform:skew(-10deg, 0deg); -o-transform:skew(-10deg, 0deg); -ms-transform:skew(-10deg, 0deg); width:55%; z-index:8; position:relative; left:-5% } .meetCont .logoBoxRight { right:0; position:absolute; width:55%; height:350px; display:inline-block; background:url(../img/aboutBanner.png) center no-repeat; background-size:cover } .logoBoxLeftIn { position:absolute; top:50%; left:50%; transform:skew(10deg, 0deg) translate(-50%, -50%); -webkit-transform:skew(10deg, 0deg) translate(-50%, -50%); -moz-transform:skew(10deg, 0deg) translate(-50%, -50%); -o-transform:skew(10deg, 0deg) translate(-50%, -50%); -ms-transform:skew(10deg, 0deg) translate(-50%, -50%) } .logoBoxLeftIn h2 { color:#2b3149; font-size:24px; font-weight:600; margin:0 0 15px } .logoBoxLeftIn p { color:#2b3149; font-size:16px } .logoBoxLeftIn a { display:inline-block; border:1px solid #2b3149; color:#2b3149; padding:5px 15px; margin:10px 0 0 } .logoBoxLeftIn a:hover { background:#2b3149; color:#fff } .transition { transition:.5s all; -webkit-transition:.5s all; -moz-transition:.5s all; -ms-transition:.5s all; -o-transition:.5s all } .dependCont { padding:50px 15px; clear:both; background-color:#fedf4a } .dependCont h2 { font-weight:600; color:#2b3149; font-size:24px; margin:0 0 30px } .dependBox { display:inline-block; margin-bottom:20px } .dependBox p { display:inline-block; margin:0; float:left; font-size:16px; color:#2b3149; font-weight:600 } .dependBox .dependBoxImg { display:inline-block; float:left; margin-right:16px } .testiCont { padding:50px 0; background:url(../img/sliderBg.png) center no-repeat; background-size:cover } .testiCont h2 { font-weight:600; color:#2b3149; font-size:24px; margin:0 0 30px } #owl-testmonials .item { padding:30px } #owl-testmonials .item p { padding-left:50px; color:#2b3149; font-size:15px } #owl-testmonials .testImg { width:135px; margin:20px auto; border-radius:50%; overflow:hidden } #owl-testmonials .testImg img { width:100% } .owl-next, .owl-prev { font-size:0; height:24px; width:14px; display:inline-block } .owl-prev { background:url(../img/previous.png); float:left } .owl-next { background:url(../img/next.png); float:right } .addIco, .agDet, .agImg, .jobIco, .phoneIco, .searchBar1, .servicesText, .sevicesList, .timeImg, .timerText, .titleData { float:left } #owl-testmonials .owl-buttons { position:absolute; width:100%; top:50%; margin-top:-12px } .serpadding { padding-bottom:40px } footer { background:#273C4D; padding:50px 50px 20px } footer p { font-size:13px; color:#fff; margin:20px 0; width:80%; font-weight:100 } .footerLinkBox h2 { color:#fedf4a; font-size:16px; margin:0 0 15px; font-weight:400 } .footerLinkBox a { display:block; color:#fff; font-size:13px; margin-bottom:15px; font-weight:100; line-height:1 } @font-face { font-family:OpenSans; src:url(OpenSans.eot) format('embedded-opentype'); font-weight:400; font-style:normal } body { overflow-x:hidden; position:relative } .menu { margin-bottom:0 } .mainBanner { background:#575757; background-size:cover; padding-bottom:98px } input.form-control.searchBar { outline:0 } .bannerText1 { padding:140px 0 0 } .bannerText1 h2 { font-size:35px; color:#FFE037 } .bannerText1 h3 { font-size:19px; color:#fff; width:54%; margin:auto } button.btn.serviceBut, input.form-control { height:40px } .logoBoxLeftIn p:before, .mediaBox li:before { width:36px; height:32px; margin-left:-50px; content:'' } .serviceBut1 span { font-size:16px!important; color:#2B3246; font-weight:600 } .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { padding-left:20px; padding-right:20px } p.selService { margin-top:50px } .serviceText { font-size:24px; color:#fff } .serviceText p { font-size:18px; font-weight:700; padding-bottom:20px; color:#273C4D } .homeService { margin-top:-120px; padding-top:0 } #bigTriangleColor { fill:#273C4D; position:absolute; top:1 } .workContent { position:relative } .work { background-color:#273C4D; padding:30px 0 0 } .mediaBox li:before { background:url(../img/yellow.png) center center no-repeat; position:absolute } .logoBoxLeftIn p:before { background:url(../img/blue2.png) center center no-repeat; position:absolute } .hoverText { display:none; position:absolute; width:100%; top:0; background-color:#273C4D; height:100%; text-align:left; color:#fff } .hoverText ul, .sevicesList { position:relative } .aboutBox, .teamLast, .teamList, .workList, .workText, .workimg { text-align:center } .hoverText li { list-style-type:disc; list-style-position:inside } .hoverText span { margin-left:-5px } .hoverText ul { padding:5px; top:50%; -webkit-transform:translateY(-50%); -moz-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); transform:translateY(-50%); vertical-align:top } .serpadding:hover .hoverText { display:block } .aboutYou, .buttonsLink, .teamLast { display:inline-block } .workText h2 { color:#fff; padding-bottom:0 } .workList h5 { font-size:16px; color:#fff; font-weight:600 } .workList p { color:#fff; font-size:14px } .workimg { width:100px; height:100px; background-color:#fff; margin:auto; border-radius:50%; border:2px solid #273C4D } .workimg img { padding-top:20px; width:50px; height:75px } #bigTriangleColors { fill:#273C4D; position:relative } .searchBar1 { width:300px } .socialImg img { padding-right:20px } #bigTriangleColors1 { fill:#fff } .searchBar { width:65%; margin:30px auto } .item p:before { content:''; background:url(../img/blue2.png) center center no-repeat; position:absolute; width:36px; height:32px; margin-left:-42px } .inMedia:after { bottom:-50px; z-index:10; background:inherit; right:0; left:inherit } .inMedia { height:500px; background-color:#273C4D } .buttonsLink { width:45%; margin-right:12px; padding-bottom:60px } .buttonsLink img { width:100% } .aboutYou img, .teamLast { width:180px } .buttonsLink:last-child { margin-right:0 } .mobImg { position:absolute; top:30px } .mobiles, .teamList { position:relative } .buttonsLinkBox { padding:100px 0 0 } .downloadAppText { font-size:20px } .serviceBut, .serviceBut:active, .serviceBut:hover, .serviceBut:link { background:#fedf4a; outline:0; border:none; color:#273C4D } .aboutBanner { background:url(../img/aboutBanner.png) center center no-repeat; background-size:cover; height:100% } .aboutBanner p { color:#2B3146 } .aboutText h3, .teamLast h4 { color:#2B3147; font-weight:600 } .teamImg { padding-left:0!important; padding-bottom:60px } .teamLast h4 { font-size:18px } .teamLast { background-color:#EEE; margin:auto; height:180px; padding-top:48px } .teamList, .teamList img { width:128px } .aboutBox { padding-bottom:40px } .aboutText { padding-top:60px } .aboutText h3 { font-size:24px; padding-bottom:30px } .aboutText p { font-size:14px; color:#242413; padding-bottom:10px; font-weight:400 } .team h3, .teamImg h5 { color:#2B3148; font-weight:600 } .border { padding-top:70px } .team { padding:60px } .team h3 { padding-bottom:25px; font-size:24px } .teamImg h5 { font-size:16px } .teamImg p { font-size:14px; color:#242413; height:160px } .teamList { height:128px; margin:0 auto; background:#E4E4E4; border-radius:3px; color:#2b3247; border:1px solid #2B3247 } .descriptionHoverText li, .teamMemberName { list-style-type:none; list-style-position:inside; color:#FDDF37 } .teamListPadding { padding-bottom:40px; width:20% } .teamListPadding:hover .descriptionHoverText { display:block } .descriptionHoverText { display:none; position:absolute; width:100%; top:0; background-color:#273C4D; height:100%; text-align:left } .mediaImg img, .mediaImg:before, .pressSection img { display:inline-block; vertical-align:middle } .hoverTextListContainer { padding-left:5px!important; padding-right:5px; top:50%; position:absolute; margin-top:-20px; text-align:center; margin-bottom:10px; left:50%; margin-left:-23px } .android, .essential, .leftNoPadding { padding-left:0 } .teamMemberName { font-weight:700 } .careerText { padding-top:120px; padding-bottom:30px } .careerText h3 { font-size:24px; color:#2B3147; font-weight:600; padding-bottom:40px } .careerText h6, .careerText p { font-size:14px; color:#242413 } .careerText h6 { padding-top:90px } .applyNow h5 { padding-top:30px; font-size:18px; font-weight:600; color:#2B3146 } .applyNowBtn { padding-top:30px; padding-bottom:50px } .customerText h6 { font-size:14px; color:#242413; padding-top:40px; padding-bottom:60px } .customerText h5 { font-size:18px; color:#2B3146 } .customerText p { font-size:14px; color:#242413 } button.btn.serviceBut { font-size:14px; color:#2B3246 } .essentialPadding { padding-top:35px } .leadsText h3 { font-size:18px; color:#2B3146 } .leadsText h2, .leadsText h4 { font-size:14px; color:#858585; font-weight:600 } .leadsText span { color:#858585 } .leadsText p { font-size:14px; color:#242413 } .android { padding-top:27px } .applyNowBtn2 { padding-top:40px; padding-bottom:65px } .agent { padding-top:26px } .agentApplyNowBtn { padding-top:25px; padding-bottom:40px } .serviceBut span { font-size:14px; color:#2B3246; font-weight:600 } .serText { padding-top:120px; padding-bottom:30px } .leftNoPadding, .serText h3 { padding-bottom:40px } .serText h3 { font-size:24px; color:#2B3146; font-weight:600 } .serText p { margin:0 0 40px; font-size:14px; color:#242413 } .servicesText h4 { font-size:20px; color:#242413; margin-top:0; font-weight:600 } .servicesText span { color:#858585 } .servicesText p { font-size:14px; color:#202020 } .sevicesList { width:150px; height:150px; margin:0 20px 0 auto; background:#E4E4E4; border-radius:6px; color:#2b3247; text-align:center } .servicesText p { margin:0 } .servicesText { width:calc(100% - 180px) } .sevicesList img { margin-top:25px } .sevicesList p { color:#2C3E50; font-size:14px; font-weight:700; padding-top:10px } .trustText { padding-top:120px; padding-bottom:30px } .trustText h3 { font-size:24px; color:#2B3146; font-weight:600 } .safetyList h3 { padding:0; margin-top:0; margin-bottom:0; font-size:16px; color:#2B3148; font-weight:600; margin-left:-20px } .mediaBox p, .safetyList p { font-size:14px; color:#2B3146 } .imgPadding { padding:0 } .safetyMain { padding-top:55px; padding-bottom:50px } .safetyP { padding-top:20px } .safetyList { padding:50px 0 } .mediaMain { padding-top:30px } .mediaBox { padding-bottom:40px } .mediaBox p { margin:0 20px } .mediaBox span { font-size:12px; color:#868686 } .mediaImg { height:54px; text-align:center; font:0/0 a } .applyNowMailTo, .faq1 h4, .faqText h3, .faqs h4 { font-weight:600 } input[type=radio].cRadio+label, input[type=radio].fRadio+label { font-family:Arial, sans-serif; color:#444; font-size:14px } .mediaImg:before { content:' '; height:100% } .mediaBox p:before { content:''; background:url(../img/before.png) center center no-repeat; position:absolute; width:24px; height:21px; margin-left:-30px } .pressSection img { width:160px; margin-left:-30px; margin-top:-50px } .faqText { padding-top:120px; padding-bottom:90px } .faqText h3 { font-size:24px; color:#2B3146; padding-bottom:40px } .faqText p { font-size:14px; color:#2B3148; padding-bottom:10px } .faqMain { padding-top:60px } .faq1 h4 { font-size:16px; color:#2B3147 } .faq1 p { font-size:14px; color:#444; margin-left:15px } .faq1, .faqs { padding-bottom:60px } .faqs h4 { font-size:16px; color:#2B3147 } .faqs p { font-size:14px; color:#444 } .teamImg img { width:100% } .allServices { margin-bottom:30px } .servicePrice { text-align:right } .greet, .gvFeed, .jobIco, .offerHead, .uName { text-align:center } .inTheMediaLinks, .inTheMediaLinks:hover { color:#fff } .publicationEm { color:#FEDF4A } .teamLinkedinProfiles { width:24px!important; position:absolute; bottom:0 } .applyNowMailTo { color:#2B3246 } .trustAndSafetyDesc { height:260px } .step1Address { margin-bottom:5px } .inputFields { background:#fff; border:1px solid #ddd; border-radius:3px; width:100%; height:28px; font-size:12px; padding:5px } .leftSideLabel { margin-left:15px; margin-bottom:0; padding-bottom:0 } .absoluteCenter { padding:5px } .centerContainer { position:absolute; top:50%; left:50%; width:50em; height:18em; margin-top:-9em; margin-left:-25em } .labelsNewTimesaver { padding-top:0 } .selectpicker { background-image:none } .newTimesaverRegister { background-color:#FFE000; width:150px; font-weight:700; margin-right:-15px; margin-bottom:20px } input[type=radio].cRadio+label span, input[type=radio].fRadio+label span { width:14px; height:14px; margin:-1px 4px 0 0; vertical-align:middle; cursor:pointer } input[type=radio].cRadio { display:none } input[type=radio].cRadio+label span { display:inline-block; -moz-border-radius:50%; border-radius:50%; border:1px solid #C5C5C5; background-color:#fff } input[type=radio].cRadio:checked+label span { background-color:#273C4D; -webkit-box-shadow:inset 0 0 0 .2em #fff; -moz-box-shadow:inset 0 0 0 .1em #fff; box-shadow:inset 0 0 0 .2em #fff } input[type=radio].cRadio:focus { outline:0 } input[type=radio].fRadio { display:none } input[type=radio].fRadio+label span { display:inline-block; -moz-border-radius:50%; border-radius:50%; border:1px solid #C5C5C5; background-color:#fff } input[type=radio].fRadio:checked+label span { background-color:#273C4D; -webkit-box-shadow:inset 0 0 0 .2em #fff; -moz-box-shadow:inset 0 0 0 .1em #fff; box-shadow:inset 0 0 0 .2em #fff } input[type=radio].fRadio:focus { outline:0 } .leftBar { background:#444; padding:70px 0 0; -webkit-transition:all ease-out 1s; -moz-transition:all ease-out 1s; -o-transition:all ease-out 1s; transition:all ease-out 1s; width:20% } .greet { font-size:14px; color:#AAABAB; margin-top:30px; margin-bottom:0 } .uName { font-size:20px; color:#FED237; margin-top:0; margin-bottom:30px } .uDetails { width:170px; margin:0 auto; color:#fff; min-height:150px } .addIco, .phoneIco { width:24px; height:24px; margin-right:10px } .phoneIco { background:url(../img/phone.png) no-repeat } .addIco { background:url(../img/add.png) no-repeat } .address, .phone { float:left; vertical-align:middle; width:110px; margin-right:5px; margin-bottom:20px } .earned { width:94%; margin:10px 10px 15px; border:1px dashed #AAA; padding:20px; position:relative } .earnTxt, .outOf, .timeEarned { margin-bottom:0 } .timeImg { margin-right:10px } .timeEarned { font-size:32px; color:#FFE100; margin-top:0; font-weight:600 } .timeEarned span { font-size:24px; font-style:italic; color:#AAABAB; font-weight:300 } .outOf { font-size:32px; color:#FFE100; margin-top:0; font-weight:600; margin-left:30px } .earnTxt { font-size:24px; font-style:italic; color:#AAABAB; font-weight:300; text-align:right } .info { position:absolute; top:7px; right:7px } .gvFeed { width:185px; border-radius:3px; color:#2B304A; font-size:13px; font-weight:600; display:block; margin:0 auto 20px; background:#FFE000; padding:6px 0 } .jobIco, .offerHead img { margin-right:10px } .offerBox { padding:15px; border-top:1px solid #222 } .offerHead { color:#FFE000; font-size:16px; font-weight:400; margin-bottom:0; margin-top:10px } .offerUL { padding:0 } .offerUL li { width:94%; margin:10px; background:#555; font-size:14px; padding:15px; position:relative } .offerTitle { font-weight:600; color:#fff; margin-bottom:0 } .code, .valid { color:#DDD; margin-bottom:0 } .code { font-weight:400 } .jobTitle, .sortBy, .tasks { font-weight:600 } .valid { font-size:12px } li.per:before { content:url(../img/per.png); width:29px; height:29px; position:absolute; right:0; top:0 } .jobIco, .jobIco img { width:60px } .rightContent { padding:90px 0 90px 25px } .sortBy { display:inline-block; font-size:13px } .tasks { font-size:16px; color:#444; margin-top:5px } .rightTop { border-bottom:1px solid #AAA } .rightContent .gvFeed { margin-bottom:10px } .jobs { margin-top:20px } .panel-group .panel { border-radius:0 } .panel-default>.panel-heading { background:#EEE; box-shadow:none; padding-bottom:20px } .jobIco { height:60px; background:#fff } .titleData { width:65% } .jobTitle { font-size:18px; color:#2B304A; margin-bottom:0 } .jobStatus, .jobTime { color:#333; margin-bottom:0 } .jobTime { font-size:14px; font-weight:400 } .jobStatus { font-size:12px } .jobStatus span { font-weight:600; color:#2B314A } .jobPrice { font-size:18px; color:#2B304A; font-weight:600; margin-bottom:0 } .panel-default { border:1px solid #BBB } .panel-body { border-top:1px solid #BBB; background:#F4F4F4 } .jobAction li, .jobAction li a { background:#FFE000; border-radius:3px } .jobAction { padding:0; text-align:center; margin-top:-30px } .jobAction li a, .write { padding:5px; text-align:center } .jobAction li { width:175px; height:30px; display:inline-block } .jobDataRight p span, .offerBoxLeft, .write { display:block } .jobAction li a { display:block; font-size:13px; color:#2B314A; font-weight:400 } .jobData { margin:30px } .assign { font-size:12px; color:#333 } .assign span { font-size:18px; color:#2B304A; font-weight:600 } .jobDataRight { border-left:1px solid #ccc; word-wrap:break-word } .agImg { width:80px; height:80px; border-radius:100%; margin-right:10px } .agMob { font-size:14px; color:#333; margin-bottom:0 } .write { width:105px; font-size:13px; color:#2B314A; background:#ddd; background:-moz-linear-gradient(top, #ddd 0, #ccc 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(100%, #ccc)); background:-webkit-linear-gradient(top, #ddd 0, #ccc 100%); background:-o-linear-gradient(top, #ddd 0, #ccc 100%); background:-ms-linear-gradient(top, #ddd 0, #ccc 100%); background:linear-gradient(to bottom, #ddd 0, #ccc 100%); filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#cccccc', GradientType=0) } .jobDataRight p { font-size:13px; color:#333 } .filDown { margin-top:25px; margin-right:20px; float:right } .activeAcc { transform:rotate(-180deg); -moz-transform:rotate(-180deg); -ms-transform:rotate(-180deg); -o-transform:rotate(-180deg); -webkit-transform:rotate(-180deg); transition:transform 550ms ease; -moz-transition:-moz-transform 550ms ease; -ms-transition:-ms-transform 550ms ease; -o-transition:-o-transform 550ms ease; -webkit-transition:-webkit-transform 550ms ease } .inActAcc { transform:rotate(-360deg); -moz-transform:rotate(-360deg); -ms-transform:rotate(-360deg); -o-transform:rotate(-360deg); -webkit-transform:rotate(-360deg); transition:transform 550ms ease; -moz-transition:-moz-transform 550ms ease; -ms-transition:-ms-transform 550ms ease; -o-transition:-o-transform 550ms ease; -webkit-transition:-webkit-transform 550ms ease } .jobDrop { width:125px!important; background:url(../img/arrow.png) 90% 50% no-repeat; color:#2B3149; margin-left:5px; border-radius:0 } .jobDrop select { padding:3px 10px; width:100%; border:none; box-shadow:none; background:0 0; font-size:13px; -webkit-appearance:none; -moz-appearance:none; appearance:none } .sidebar { float:right; margin-top:16px; margin-right:25px; display:none } @font-face { font-family:icomoon; src:url(../fonts/icomoon.eot?ks3jkg); src:url(../fonts/icomoon.eot?#iefixks3jkg) format('embedded-opentype'), url(../fonts/icomoon.ttf?ks3jkg) format('truetype'), url(../fonts/icomoon.woff?ks3jkg) format('woff'), url(../fonts/icomoon.svg?ks3jkg#icomoon) format('svg'); font-weight:400; font-style:normal } [class*=" icon-"], [class^=icon-] { font-family:icomoon; speak:none; font-style:normal; font-weight:400; font-variant:normal; text-transform:none; line-height:1; color:#fff; font-size:32px; cursor:pointer; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale } .icon-menu:before { content:"\e9bd" } .noBookingsYet { font-size:16px; font-weight:700 } .whyDependOnUs { margin-left:-70px } .allServicesCategoryList { color:#273C4D; text-decoration:none } .offersZoneTitle { font-weight:600; margin-bottom:0 } .offersZoneCode { font-weight:400; margin-bottom:0 } .offersZoneTerms { font-size:12px; margin-bottom:0 } .limitedOffersView { height:65px; overflow-y:hidden } .expandToViewMore { text-align:center; cursor:hand; cursor:pointer } .countryCodePlaceholder { height:28px; padding:5px; line-height:1; background:#d3d3d3; margin-left:1px; width:31px!important } #offerBanner { background-color:#FFE037; color:#273C4D; margin:0; width:100%; text-align:center; padding:10px; font-size:14px; -webkit-backface-visibility:hidden } .ticketResponseCustomer { background-color:#FFE000; border:0; white-space:pre-line } .ticketResponseAdmin { background-color:#273C4D; color:#fff; border:0; float:right; white-space:pre-line } .btn-blue { background-image:none; background-color:#FFE000; text-shadow:none } .newBannerBackground { background:#FEDF49; padding-top:70px } .newBannerCreative { height:100%; margin-top:10px; padding-bottom:20px; margin-left:-100px } .dropdownjs::after { background-color:#263C4D; top:0; right:0; font-size:40px; content:"\E5CF"; color:#FFD650; line-height:1.04 } @media only screen and (max-width:768px) { .jobDataRight { border-left:0 } .jobDataRight p span { display:initial } .jobAction li { margin-left:0!important } }
assets/cityook/css/main-1.3.min_.css
.logo, .menu li a, .mobMenu li a { line-height:70px } .agents ul, .jobAction li, .mediaBox ul li, .menu, .mobMenu, .offerUL li, .summary ul { list-style:none } .allServices:nth-child(odd), .clear, .essentialPadding .col-md-6:nth-child(even), .mediaMain .col-md-4:nth-child(4n) { clear:both } .applyNowMailTo, .bannerText1 h2, .continueBtn, .dependCont h2, .mediaBox h2, .testiCont h2 { text-transform:uppercase } body, html { margin:0; padding:0; font-family:'Open Sans', sans-serif; height:100%; -webkit-overflow-scrolling:touch } .agImg, .select-style, .sevicesList, .teamList { overflow:hidden } .container { width:960px; padding:0 } .header { height:70px; background:#646464; position:fixed; width:100%; z-index:9 } .homeHeader { background:0 0 } .headerFixed { background:#273C4D } .logo { float:left } .menu { float:right } .menu li { display:inline-block } .menu li a { color:#fff; padding-right:10px; padding-left:5px; border-right:1px solid #fff; font-weight:600 } .menu li a.myAcc { padding:5px 14px 6px; background:#fedf4a; border-radius:3px; color:#2b3247; border:0 } .menu li a:hover { text-decoration:none } .mobMenu, .mobMenu1 { display:none } .mobMenu { position:absolute; right:91px } .mobMenu li { display:inline-block } .mobMenu li a { color:#fff; padding-right:15px; padding-left:15px; border-right:1px solid #fff; font-weight:600 } .mobMenu li a.myAcc { padding:5px 14px 6px; background:#fedf4a; border-radius:5px; color:#2b3247; border:0 } .dl-menuwrapper { text-align:right } .dl-menuwrapper .dl-menu.dl-menuopen { top:-15px; text-align:left } .dl-menuwrapper button { top:-67px; right:0 } .dl-menuwrapper { top:80px } .banner { width:100%; background:url(../img/banner.jpg) no-repeat; padding:40px 0 10px; position:relative; border-bottom:1px solid #ddd; background-size:cover } .bannerClean { width:150px; height:150px; margin:70px auto 0; background:#fedf4a; border-radius:10px; color:#2b3247; text-align:center } .bannerText, .bannerTextNew { text-align:justify; font-weight:400 } .stepLabels, label.stepLabels { margin-right:10px } .bannerClean img { margin-top:25px } .bannerClean p { margin-top:15px; font-size:16px; font-weight:600; color:#2b3149 } .bannerText { color:#DDD; font-size:13px; padding-top:25px } .bannerTextNew { color:#273C4D; font-size:14px; padding-top:75px } .bannerText1, .bannerText1 h3, .checkboxes, .checkboxes label img, .couponText, .dependCont h2, .logoBox, .serviceText, .serviceText p, .stepNo, .testiCont h2, input.agentRadio+label, input.form-control, input.form-control.searchBar, li.customTab>a, p.selService { text-align:center } .summary h3, .thx { color:#888; font-weight:400 } .thx { padding:45px 0 0; margin-left:40px } .summary { width:100%; background:#fbfbf9; border:1px solid #BBB; padding:20px } .summary ul, .total { border-bottom:1px solid #ddd } .applyBtn, .couponText { height:24px; border:1px solid #ddd } .summary h3 { font-size:14px; margin-top:0 } .summary ul { padding:0 0 20px; margin-bottom:0 } .summary ul li { display:block; font-size:13px; color:#444 } .ipLabel, .stepLabels { display:inline-block } .summary ul li p span { font-size:11px; color:#868686; text-decoration:line-through } .faqText a, .footerLinkBox a, .logoBoxLeftIn a, .serpadding a { text-decoration:none } .totalLabel { font-size:16px; color:#888; padding-top:15px } .totalPrice { font-size:24px; color:#273C4D; padding-top:10px } .taxLabel { font-size:15px; color:#888; padding-top:15px } .taxPrice { font-size:16px; color:#273C4D; padding-top:10px } .total { margin-bottom:15px } .couponText { width:calc(100% - 75px); float:left; background:#fff; border-bottom-left-radius:3px; border-top-left-radius:3px; font-size:12px; color:#000; outline:0 } .applyBtn, .locationMarkerButton { background:#ffde00; color:#2b304a; font-weight:600; font-size:13px } .applyBtn { width:75px; border-bottom-right-radius:3px; border-top-right-radius:3px } .locationMarkerButton { width:30px; border:1px solid #ddd; border-bottom-right-radius:3px; border-top-right-radius:3px; line-height:1.9; margin-left:-30px; padding-top:0 } .rightBox { padding:0; margin-bottom:20px } .stepsBox { background:#fbfbf9; margin-bottom:20px; border:1px solid #BBB } .stepNo { width:32px; height:32px; float:left; background:#273C4D; color:#FFF; font-size:20px; line-height:32px; margin-bottom:0 } .stepHead { cursor:pointer; line-height:32px } .stepTitle { margin-bottom:0; margin-left:45px; font-size:13px; color:#273C4D } .activeTitle { visibility:visible } .stepContent { padding:10px 40px } .stepMain { color:#1f1f1f; font-size:14px } .stepLabels { font-size:13px; font-weight:400; color:#444 } hr { height:1px; background:#ddd; border:0 } .continueBtn, .signTxt { border:1px solid #ddd; height:28px } hr.lessMar { margin-bottom:10px } .continueBtn { width:184px; background:#FFDE00; border-radius:5px; color:#666; font-weight:600; font-size:13px } .customRow { width:75%; margin:0 auto } .addArea, .signLabel { margin:15px 0 0 } .signLabel, .signTxtDiv { padding:0 } .addArea, .signTxt { background:#eee; font-size:12px; padding:5px } .signTxt { border-radius:3px; width:calc(100% - 264px) } .addArea { border:1px solid #ddd; border-radius:3px; width:274px; height:70px; resize:none } .forgot { font-size:10px; color:#444; margin-top:5px } .payLeft li a, li.customTab>a { font-size:13px; margin-right:0 } .customTab { width:50% } li.customTab>a { border-radius:0; background:#ddd; color:#1f1f1f } .nav-tabs>li.customTab.active>a, .nav-tabs>li.customTab.active>a:focus, .nav-tabs>li.customTab.active>a:hover { background:#fbfbf9 } .tabContent { border-left:1px solid #ddd; border-right:1px solid #ddd; border-bottom:1px solid #ddd; margin-bottom:10px; padding-bottom:15px } .paymentBox { border:1px solid #ddd } .payLeft { background:#ddd; float:left; height:100% } .payLeft li { display:block; float:none } .payLeft li a { color:#444; padding:10px 5px; border:0 } .payLeft li.active a { border-radius:0; margin:0 } .payRight { float:left; padding:15px; width:83% } .bankList { background:#fff } .bank { width:121px; height:38px; border:1px solid #eee; float:left; margin:10px; background:#f9f9f9; padding:6px 5px 0 } .fridgeSection, .homeSection { margin-top:30px } .homeText { font-size:11px; color:#444 } .date .form-control { height:24px; display:inline-block; font-size:13px } .date .input-group-addon { padding:0 10px } .dateBox { width:160px; margin-right:10px } .mainSec { margin-top:10px } input.options { width:66px; height:77px; outline:0; visibility:hidden; margin:0; -webkit-appearance:none; -moz-appearance:none; -ms-appearance:none; appearance:none } input.options:focus { outline:0 } .checkboxes { position:relative; width:66px; height:77px; display:inline-block; margin-right:5px; margin-bottom:20px } .checkboxes label { position:absolute; width:100%; height:90px; left:0; top:0; font-size:11px; color:#444; font-weight:400; border:1px solid #ddd; outline:0; background:#eee; background:-moz-linear-gradient(top, #eee 0, #ddd 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(100%, #ddd)); background:-webkit-linear-gradient(top, #eee 0, #ddd 100%); background:-o-linear-gradient(top, #eee 0, #ddd 100%); background:-ms-linear-gradient(top, #eee 0, #ddd 100%); background:linear-gradient(to bottom, #eee 0, #ddd 100%); filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0) } .checkboxes label img { display:block; margin:21px 21px 7px } .checkboxes input.active { background:#FFE000; outline:0 } input.options.active:checked+label { font-weight:600; color:#2B304A; background:#FFE000 } input.options.active:checked+label img { display:none } input.options.active:not(:checked)+label img { display:block } input.options.active:checked+label:before { content:url(/img/checked.png); margin:21px 21px 7px; width:24px; height:24px; display:block } input.agentRadio, input.agentRadio+label { height:117px; background:#eee; border-radius:0 } .agents ul { padding:0 } .agents ul li { display:inline-block } input.agentRadio { width:103px; display:none } input.agentRadio+label { width:99px; color:#666; font-size:12px; font-weight:600 } input.agentRadio+label span { font-size:11px; font-weight:600; display:block } .city select, .select-style select { box-shadow:none; font-size:13px; -webkit-appearance:none; -moz-appearance:none } input.agentRadio+label img { width:76px; height:76px; border-radius:100%; border:2px solid #fff; margin:5px 13px 0 } .agents ul li.active input.agentRadio+label { background:#FFE000 } .select-style { padding:0; margin:0; display:inline-table; border:1px solid #ddd; width:150px; height:24px; border-radius:3px; background:url(../img/arrow.png) 90% 50% no-repeat #fff } .select-style select { padding:0 8px; width:100%; border:none; background-color:transparent; background-image:none; appearance:none } .city, .city select { background:url(../img/arrow.png) 90% 50% no-repeat } .select-style select:focus { outline:0 } .city { width:110px; color:#fff; margin-left:15px; margin-right:15px; border-radius:3px } .city select { padding-left:5px; width:100%; border:none; appearance:none } .menuOption { background-color:#273C4D } .bankSelect { width:174px } .stepContent h3 { color:#666; font-size:14px; font-weight:400; float:left } .stepContent h3 span { color:#666; font-size:16px; font-weight:600 } .payment { margin-top:15px } .logo-cover { margin-top:10px } .icheckbox_square-blue, .iradio_square-blue { display:inline-block; vertical-align:middle; margin:0 3px 0 0; width:14px; height:14px; border:1px solid #bbb; border-radius:100%; padding:1px; cursor:pointer } .icheckbox_square-blue { background:#fff } .icheckbox_square-blue.checked, .icheckbox_square-blue.hover { background:url(../img/radio.png); background-size:100%; border:none } .icheckbox_square-blue.disabled { background:#bbb; cursor:default } .icheckbox_bath, .icheckbox_carpet, .icheckbox_fridge, .icheckbox_home, .icheckbox_shoes, .icheckbox_sofa, .icheckbox_windows { vertical-align:middle; margin:0; padding:0; width:66px; height:77px; cursor:pointer; display:inline-block } .icheckbox_square-blue.checked.disabled { background:#bbb } .icheckbox_home { background:url(../img/home.jpg) } .icheckbox_home.checked, .icheckbox_home.hover { background:url(../img/homeChecked.jpg); background-size:100%; border:none } .icheckbox_bath { background:url(../img/bathroom.jpg) } .icheckbox_bath.checked, .icheckbox_bath.hover { background:url(../img/bathChecked.jpg); background-size:100%; border:none } .icheckbox_windows { background:url(../img/windows.jpg) } .icheckbox_windows.checked, .icheckbox_windows.hover { background:url(../img/windowsChecked.jpg); background-size:100%; border:none } .icheckbox_sofa { background:url(../img/sofa.jpg) } .icheckbox_sofa.checked, .icheckbox_sofa.hover { background:url(../img/sofaChecked.jpg); background-size:100%; border:none } .icheckbox_carpet { background:url(../img/carpet.jpg) } .icheckbox_carpet.checked, .icheckbox_carpet.hover { background:url(../img/carpetChecked.jpg); background-size:100%; border:none } .icheckbox_fridge { background:url(../img/fridge.jpg) } .icheckbox_fridge.checked, .icheckbox_fridge.hover { background:url(../img/fridgeChecked.jpg); background-size:100%; border:none } .icheckbox_shoes { background:url(../img/shoes.jpg) } .abBanner img, .mediaBox, .mediaCont { width:100% } .icheckbox_shoes.checked, .icheckbox_shoes.hover { background:url(../img/shoesChecked.jpg); background-size:100%; border:none } .iradio_square-blue { background:#fff } .iradio_square-blue.checked, .iradio_square-blue.hover { background:url(../img/radio.png); background-size:100%; border:none } .iradio_square-blue.disabled { background:#bbb; cursor:default } .iradio_square-blue.checked.disabled { background:#bbb } @media (-o-min-device-pixel-ratio:5/4), (-webkit-min-device-pixel-ratio:1.25), (min-resolution:120dpi) { .icheckbox_square-blue, .iradio_square-blue { background-image:url(../img/blue@2x.png); -webkit-background-size:240px 24px; background-size:240px 24px } } .mediaBox { display:inline-block; margin:50px 0 } .mediaBox h2 { color:#fedf4a; font-size:18px } .mediaBox ul li { color:#fff; font-size:16px; margin:30px 0 } .logoBox { position:relative } .logoBox img { max-height:40px } .logoSec { margin:40px 25px; display:inline-block } .logoSec:first-child { margin-left:0 } .logoSec:last-child { margin-right:0 } .logoSec:last-child:before { position:absolute; top:0; right:105px; content:''; width:0; height:0; border-style:solid; border-width:20px 17px 0; border-color:#273C4D transparent transparent } .meetCont { position:relative; height:350px } .meetCont .logoBoxLeft { height:100%; display:inline-block; background-color:#eee; transform:skew(-10deg, 0deg); -webkit-transform:skew(-10deg, 0deg); -moz-transform:skew(-10deg, 0deg); -o-transform:skew(-10deg, 0deg); -ms-transform:skew(-10deg, 0deg); width:55%; z-index:8; position:relative; left:-5% } .meetCont .logoBoxRight { right:0; position:absolute; width:55%; height:350px; display:inline-block; background:url(../img/aboutBanner.png) center no-repeat; background-size:cover } .logoBoxLeftIn { position:absolute; top:50%; left:50%; transform:skew(10deg, 0deg) translate(-50%, -50%); -webkit-transform:skew(10deg, 0deg) translate(-50%, -50%); -moz-transform:skew(10deg, 0deg) translate(-50%, -50%); -o-transform:skew(10deg, 0deg) translate(-50%, -50%); -ms-transform:skew(10deg, 0deg) translate(-50%, -50%) } .logoBoxLeftIn h2 { color:#2b3149; font-size:24px; font-weight:600; margin:0 0 15px } .logoBoxLeftIn p { color:#2b3149; font-size:16px } .logoBoxLeftIn a { display:inline-block; border:1px solid #2b3149; color:#2b3149; padding:5px 15px; margin:10px 0 0 } .logoBoxLeftIn a:hover { background:#2b3149; color:#fff } .transition { transition:.5s all; -webkit-transition:.5s all; -moz-transition:.5s all; -ms-transition:.5s all; -o-transition:.5s all } .dependCont { padding:50px 15px; clear:both; background-color:#fedf4a } .dependCont h2 { font-weight:600; color:#2b3149; font-size:24px; margin:0 0 30px } .dependBox { display:inline-block; margin-bottom:20px } .dependBox p { display:inline-block; margin:0; float:left; font-size:16px; color:#2b3149; font-weight:600 } .dependBox .dependBoxImg { display:inline-block; float:left; margin-right:16px } .testiCont { padding:50px 0; background:url(../img/sliderBg.png) center no-repeat; background-size:cover } .testiCont h2 { font-weight:600; color:#2b3149; font-size:24px; margin:0 0 30px } #owl-testmonials .item { padding:30px } #owl-testmonials .item p { padding-left:50px; color:#2b3149; font-size:15px } #owl-testmonials .testImg { width:135px; margin:20px auto; border-radius:50%; overflow:hidden } #owl-testmonials .testImg img { width:100% } .owl-next, .owl-prev { font-size:0; height:24px; width:14px; display:inline-block } .owl-prev { background:url(../img/previous.png); float:left } .owl-next { background:url(../img/next.png); float:right } .addIco, .agDet, .agImg, .jobIco, .phoneIco, .searchBar1, .servicesText, .sevicesList, .timeImg, .timerText, .titleData { float:left } #owl-testmonials .owl-buttons { position:absolute; width:100%; top:50%; margin-top:-12px } .serpadding { padding-bottom:40px } footer { background:#273C4D; padding:50px 50px 20px } footer p { font-size:13px; color:#fff; margin:20px 0; width:80%; font-weight:100 } .footerLinkBox h2 { color:#fedf4a; font-size:16px; margin:0 0 15px; font-weight:400 } .footerLinkBox a { display:block; color:#fff; font-size:13px; margin-bottom:15px; font-weight:100; line-height:1 } @font-face { font-family:OpenSans; src:url(OpenSans.eot) format('embedded-opentype'); font-weight:400; font-style:normal } body { overflow-x:hidden; position:relative } .menu { margin-bottom:0 } .mainBanner { background:#575757; background-size:cover; padding-bottom:98px } input.form-control.searchBar { outline:0 } .bannerText1 { padding:140px 0 0 } .bannerText1 h2 { font-size:35px; color:#FFE037 } .bannerText1 h3 { font-size:19px; color:#fff; width:54%; margin:auto } button.btn.serviceBut, input.form-control { height:40px } .logoBoxLeftIn p:before, .mediaBox li:before { width:36px; height:32px; margin-left:-50px; content:'' } .serviceBut1 span { font-size:16px!important; color:#2B3246; font-weight:600 } .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { padding-left:20px; padding-right:20px } p.selService { margin-top:50px } .serviceText { font-size:24px; color:#fff } .serviceText p { font-size:18px; font-weight:700; padding-bottom:20px; color:#273C4D } .homeService { margin-top:-120px; padding-top:0 } #bigTriangleColor { fill:#273C4D; position:absolute; top:1 } .workContent { position:relative } .work { background-color:#273C4D; padding:30px 0 0 } .mediaBox li:before { background:url(../img/yellow.png) center center no-repeat; position:absolute } .logoBoxLeftIn p:before { background:url(../img/blue2.png) center center no-repeat; position:absolute } .hoverText { display:none; position:absolute; width:100%; top:0; background-color:#273C4D; height:100%; text-align:left; color:#fff } .hoverText ul, .sevicesList { position:relative } .aboutBox, .teamLast, .teamList, .workList, .workText, .workimg { text-align:center } .hoverText li { list-style-type:disc; list-style-position:inside } .hoverText span { margin-left:-5px } .hoverText ul { padding:5px; top:50%; -webkit-transform:translateY(-50%); -moz-transform:translateY(-50%); -ms-transform:translateY(-50%); -o-transform:translateY(-50%); transform:translateY(-50%); vertical-align:top } .serpadding:hover .hoverText { display:block } .aboutYou, .buttonsLink, .teamLast { display:inline-block } .workText h2 { color:#fff; padding-bottom:0 } .workList h5 { font-size:16px; color:#fff; font-weight:600 } .workList p { color:#fff; font-size:14px } .workimg { width:100px; height:100px; background-color:#fff; margin:auto; border-radius:50%; border:2px solid #273C4D } .workimg img { padding-top:20px; width:50px; height:75px } #bigTriangleColors { fill:#273C4D; position:relative } .searchBar1 { width:300px } .socialImg img { padding-right:20px } #bigTriangleColors1 { fill:#fff } .searchBar { width:65%; margin:30px auto } .item p:before { content:''; background:url(../img/blue2.png) center center no-repeat; position:absolute; width:36px; height:32px; margin-left:-42px } .inMedia:after { bottom:-50px; z-index:10; background:inherit; right:0; left:inherit } .inMedia { height:500px; background-color:#273C4D } .buttonsLink { width:45%; margin-right:12px; padding-bottom:60px } .buttonsLink img { width:100% } .aboutYou img, .teamLast { width:180px } .buttonsLink:last-child { margin-right:0 } .mobImg { position:absolute; top:30px } .mobiles, .teamList { position:relative } .buttonsLinkBox { padding:100px 0 0 } .downloadAppText { font-size:20px } .serviceBut, .serviceBut:active, .serviceBut:hover, .serviceBut:link { background:#fedf4a; outline:0; border:none; color:#273C4D } .aboutBanner { background:url(../img/aboutBanner.png) center center no-repeat; background-size:cover; height:100% } .aboutBanner p { color:#2B3146 } .aboutText h3, .teamLast h4 { color:#2B3147; font-weight:600 } .teamImg { padding-left:0!important; padding-bottom:60px } .teamLast h4 { font-size:18px } .teamLast { background-color:#EEE; margin:auto; height:180px; padding-top:48px } .teamList, .teamList img { width:128px } .aboutBox { padding-bottom:40px } .aboutText { padding-top:60px } .aboutText h3 { font-size:24px; padding-bottom:30px } .aboutText p { font-size:14px; color:#242413; padding-bottom:10px; font-weight:400 } .team h3, .teamImg h5 { color:#2B3148; font-weight:600 } .border { padding-top:70px } .team { padding:60px } .team h3 { padding-bottom:25px; font-size:24px } .teamImg h5 { font-size:16px } .teamImg p { font-size:14px; color:#242413; height:160px } .teamList { height:128px; margin:0 auto; background:#E4E4E4; border-radius:3px; color:#2b3247; border:1px solid #2B3247 } .descriptionHoverText li, .teamMemberName { list-style-type:none; list-style-position:inside; color:#FDDF37 } .teamListPadding { padding-bottom:40px; width:20% } .teamListPadding:hover .descriptionHoverText { display:block } .descriptionHoverText { display:none; position:absolute; width:100%; top:0; background-color:#273C4D; height:100%; text-align:left } .mediaImg img, .mediaImg:before, .pressSection img { display:inline-block; vertical-align:middle } .hoverTextListContainer { padding-left:5px!important; padding-right:5px; top:50%; position:absolute; margin-top:-20px; text-align:center; margin-bottom:10px; left:50%; margin-left:-23px } .android, .essential, .leftNoPadding { padding-left:0 } .teamMemberName { font-weight:700 } .careerText { padding-top:120px; padding-bottom:30px } .careerText h3 { font-size:24px; color:#2B3147; font-weight:600; padding-bottom:40px } .careerText h6, .careerText p { font-size:14px; color:#242413 } .careerText h6 { padding-top:90px } .applyNow h5 { padding-top:30px; font-size:18px; font-weight:600; color:#2B3146 } .applyNowBtn { padding-top:30px; padding-bottom:50px } .customerText h6 { font-size:14px; color:#242413; padding-top:40px; padding-bottom:60px } .customerText h5 { font-size:18px; color:#2B3146 } .customerText p { font-size:14px; color:#242413 } button.btn.serviceBut { font-size:14px; color:#2B3246 } .essentialPadding { padding-top:35px } .leadsText h3 { font-size:18px; color:#2B3146 } .leadsText h2, .leadsText h4 { font-size:14px; color:#858585; font-weight:600 } .leadsText span { color:#858585 } .leadsText p { font-size:14px; color:#242413 } .android { padding-top:27px } .applyNowBtn2 { padding-top:40px; padding-bottom:65px } .agent { padding-top:26px } .agentApplyNowBtn { padding-top:25px; padding-bottom:40px } .serviceBut span { font-size:14px; color:#2B3246; font-weight:600 } .serText { padding-top:120px; padding-bottom:30px } .leftNoPadding, .serText h3 { padding-bottom:40px } .serText h3 { font-size:24px; color:#2B3146; font-weight:600 } .serText p { margin:0 0 40px; font-size:14px; color:#242413 } .servicesText h4 { font-size:20px; color:#242413; margin-top:0; font-weight:600 } .servicesText span { color:#858585 } .servicesText p { font-size:14px; color:#202020 } .sevicesList { width:150px; height:150px; margin:0 20px 0 auto; background:#E4E4E4; border-radius:6px; color:#2b3247; text-align:center } .servicesText p { margin:0 } .servicesText { width:calc(100% - 180px) } .sevicesList img { margin-top:25px } .sevicesList p { color:#2C3E50; font-size:14px; font-weight:700; padding-top:10px } .trustText { padding-top:120px; padding-bottom:30px } .trustText h3 { font-size:24px; color:#2B3146; font-weight:600 } .safetyList h3 { padding:0; margin-top:0; margin-bottom:0; font-size:16px; color:#2B3148; font-weight:600; margin-left:-20px } .mediaBox p, .safetyList p { font-size:14px; color:#2B3146 } .imgPadding { padding:0 } .safetyMain { padding-top:55px; padding-bottom:50px } .safetyP { padding-top:20px } .safetyList { padding:50px 0 } .mediaMain { padding-top:30px } .mediaBox { padding-bottom:40px } .mediaBox p { margin:0 20px } .mediaBox span { font-size:12px; color:#868686 } .mediaImg { height:54px; text-align:center; font:0/0 a } .applyNowMailTo, .faq1 h4, .faqText h3, .faqs h4 { font-weight:600 } input[type=radio].cRadio+label, input[type=radio].fRadio+label { font-family:Arial, sans-serif; color:#444; font-size:14px } .mediaImg:before { content:' '; height:100% } .mediaBox p:before { content:''; background:url(../img/before.png) center center no-repeat; position:absolute; width:24px; height:21px; margin-left:-30px } .pressSection img { width:160px; margin-left:-30px; margin-top:-50px } .faqText { padding-top:120px; padding-bottom:90px } .faqText h3 { font-size:24px; color:#2B3146; padding-bottom:40px } .faqText p { font-size:14px; color:#2B3148; padding-bottom:10px } .faqMain { padding-top:60px } .faq1 h4 { font-size:16px; color:#2B3147 } .faq1 p { font-size:14px; color:#444; margin-left:15px } .faq1, .faqs { padding-bottom:60px } .faqs h4 { font-size:16px; color:#2B3147 } .faqs p { font-size:14px; color:#444 } .teamImg img { width:100% } .allServices { margin-bottom:30px } .servicePrice { text-align:right } .greet, .gvFeed, .jobIco, .offerHead, .uName { text-align:center } .inTheMediaLinks, .inTheMediaLinks:hover { color:#fff } .publicationEm { color:#FEDF4A } .teamLinkedinProfiles { width:24px!important; position:absolute; bottom:0 } .applyNowMailTo { color:#2B3246 } .trustAndSafetyDesc { height:260px } .step1Address { margin-bottom:5px } .inputFields { background:#fff; border:1px solid #ddd; border-radius:3px; width:100%; height:28px; font-size:12px; padding:5px } .leftSideLabel { margin-left:15px; margin-bottom:0; padding-bottom:0 } .absoluteCenter { padding:5px } .centerContainer { position:absolute; top:50%; left:50%; width:50em; height:18em; margin-top:-9em; margin-left:-25em } .labelsNewTimesaver { padding-top:0 } .selectpicker { background-image:none } .newTimesaverRegister { background-color:#FFE000; width:150px; font-weight:700; margin-right:-15px; margin-bottom:20px } input[type=radio].cRadio+label span, input[type=radio].fRadio+label span { width:14px; height:14px; margin:-1px 4px 0 0; vertical-align:middle; cursor:pointer } input[type=radio].cRadio { display:none } input[type=radio].cRadio+label span { display:inline-block; -moz-border-radius:50%; border-radius:50%; border:1px solid #C5C5C5; background-color:#fff } input[type=radio].cRadio:checked+label span { background-color:#273C4D; -webkit-box-shadow:inset 0 0 0 .2em #fff; -moz-box-shadow:inset 0 0 0 .1em #fff; box-shadow:inset 0 0 0 .2em #fff } input[type=radio].cRadio:focus { outline:0 } input[type=radio].fRadio { display:none } input[type=radio].fRadio+label span { display:inline-block; -moz-border-radius:50%; border-radius:50%; border:1px solid #C5C5C5; background-color:#fff } input[type=radio].fRadio:checked+label span { background-color:#273C4D; -webkit-box-shadow:inset 0 0 0 .2em #fff; -moz-box-shadow:inset 0 0 0 .1em #fff; box-shadow:inset 0 0 0 .2em #fff } input[type=radio].fRadio:focus { outline:0 } .leftBar { background:#444; padding:70px 0 0; -webkit-transition:all ease-out 1s; -moz-transition:all ease-out 1s; -o-transition:all ease-out 1s; transition:all ease-out 1s; width:20% } .greet { font-size:14px; color:#AAABAB; margin-top:30px; margin-bottom:0 } .uName { font-size:20px; color:#FED237; margin-top:0; margin-bottom:30px } .uDetails { width:170px; margin:0 auto; color:#fff; min-height:150px } .addIco, .phoneIco { width:24px; height:24px; margin-right:10px } .phoneIco { background:url(../img/phone.png) no-repeat } .addIco { background:url(../img/add.png) no-repeat } .address, .phone { float:left; vertical-align:middle; width:110px; margin-right:5px; margin-bottom:20px } .earned { width:94%; margin:10px 10px 15px; border:1px dashed #AAA; padding:20px; position:relative } .earnTxt, .outOf, .timeEarned { margin-bottom:0 } .timeImg { margin-right:10px } .timeEarned { font-size:32px; color:#FFE100; margin-top:0; font-weight:600 } .timeEarned span { font-size:24px; font-style:italic; color:#AAABAB; font-weight:300 } .outOf { font-size:32px; color:#FFE100; margin-top:0; font-weight:600; margin-left:30px } .earnTxt { font-size:24px; font-style:italic; color:#AAABAB; font-weight:300; text-align:right } .info { position:absolute; top:7px; right:7px } .gvFeed { width:185px; border-radius:3px; color:#2B304A; font-size:13px; font-weight:600; display:block; margin:0 auto 20px; background:#FFE000; padding:6px 0 } .jobIco, .offerHead img { margin-right:10px } .offerBox { padding:15px; border-top:1px solid #222 } .offerHead { color:#FFE000; font-size:16px; font-weight:400; margin-bottom:0; margin-top:10px } .offerUL { padding:0 } .offerUL li { width:94%; margin:10px; background:#555; font-size:14px; padding:15px; position:relative } .offerTitle { font-weight:600; color:#fff; margin-bottom:0 } .code, .valid { color:#DDD; margin-bottom:0 } .code { font-weight:400 } .jobTitle, .sortBy, .tasks { font-weight:600 } .valid { font-size:12px } li.per:before { content:url(../img/per.png); width:29px; height:29px; position:absolute; right:0; top:0 } .jobIco, .jobIco img { width:60px } .rightContent { padding:90px 0 90px 25px } .sortBy { display:inline-block; font-size:13px } .tasks { font-size:16px; color:#444; margin-top:5px } .rightTop { border-bottom:1px solid #AAA } .rightContent .gvFeed { margin-bottom:10px } .jobs { margin-top:20px } .panel-group .panel { border-radius:0 } .panel-default>.panel-heading { background:#EEE; box-shadow:none; padding-bottom:20px } .jobIco { height:60px; background:#fff } .titleData { width:65% } .jobTitle { font-size:18px; color:#2B304A; margin-bottom:0 } .jobStatus, .jobTime { color:#333; margin-bottom:0 } .jobTime { font-size:14px; font-weight:400 } .jobStatus { font-size:12px } .jobStatus span { font-weight:600; color:#2B314A } .jobPrice { font-size:18px; color:#2B304A; font-weight:600; margin-bottom:0 } .panel-default { border:1px solid #BBB } .panel-body { border-top:1px solid #BBB; background:#F4F4F4 } .jobAction li, .jobAction li a { background:#FFE000; border-radius:3px } .jobAction { padding:0; text-align:center; margin-top:-30px } .jobAction li a, .write { padding:5px; text-align:center } .jobAction li { width:175px; height:30px; display:inline-block } .jobDataRight p span, .offerBoxLeft, .write { display:block } .jobAction li a { display:block; font-size:13px; color:#2B314A; font-weight:400 } .jobData { margin:30px } .assign { font-size:12px; color:#333 } .assign span { font-size:18px; color:#2B304A; font-weight:600 } .jobDataRight { border-left:1px solid #ccc; word-wrap:break-word } .agImg { width:80px; height:80px; border-radius:100%; margin-right:10px } .agMob { font-size:14px; color:#333; margin-bottom:0 } .write { width:105px; font-size:13px; color:#2B314A; background:#ddd; background:-moz-linear-gradient(top, #ddd 0, #ccc 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(100%, #ccc)); background:-webkit-linear-gradient(top, #ddd 0, #ccc 100%); background:-o-linear-gradient(top, #ddd 0, #ccc 100%); background:-ms-linear-gradient(top, #ddd 0, #ccc 100%); background:linear-gradient(to bottom, #ddd 0, #ccc 100%); filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#cccccc', GradientType=0) } .jobDataRight p { font-size:13px; color:#333 } .filDown { margin-top:25px; margin-right:20px; float:right } .activeAcc { transform:rotate(-180deg); -moz-transform:rotate(-180deg); -ms-transform:rotate(-180deg); -o-transform:rotate(-180deg); -webkit-transform:rotate(-180deg); transition:transform 550ms ease; -moz-transition:-moz-transform 550ms ease; -ms-transition:-ms-transform 550ms ease; -o-transition:-o-transform 550ms ease; -webkit-transition:-webkit-transform 550ms ease } .inActAcc { transform:rotate(-360deg); -moz-transform:rotate(-360deg); -ms-transform:rotate(-360deg); -o-transform:rotate(-360deg); -webkit-transform:rotate(-360deg); transition:transform 550ms ease; -moz-transition:-moz-transform 550ms ease; -ms-transition:-ms-transform 550ms ease; -o-transition:-o-transform 550ms ease; -webkit-transition:-webkit-transform 550ms ease } .jobDrop { width:125px!important; background:url(../img/arrow.png) 90% 50% no-repeat; color:#2B3149; margin-left:5px; border-radius:0 } .jobDrop select { padding:3px 10px; width:100%; border:none; box-shadow:none; background:0 0; font-size:13px; -webkit-appearance:none; -moz-appearance:none; appearance:none } .sidebar { float:right; margin-top:16px; margin-right:25px; display:none } @font-face { font-family:icomoon; src:url(../fonts/icomoon.eot?ks3jkg); src:url(../fonts/icomoon.eot?#iefixks3jkg) format('embedded-opentype'), url(../fonts/icomoon.ttf?ks3jkg) format('truetype'), url(../fonts/icomoon.woff?ks3jkg) format('woff'), url(../fonts/icomoon.svg?ks3jkg#icomoon) format('svg'); font-weight:400; font-style:normal } [class*=" icon-"], [class^=icon-] { font-family:icomoon; speak:none; font-style:normal; font-weight:400; font-variant:normal; text-transform:none; line-height:1; color:#fff; font-size:32px; cursor:pointer; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale } .icon-menu:before { content:"\e9bd" } .noBookingsYet { font-size:16px; font-weight:700 } .whyDependOnUs { margin-left:-70px } .allServicesCategoryList { color:#273C4D; text-decoration:none } .offersZoneTitle { font-weight:600; margin-bottom:0 } .offersZoneCode { font-weight:400; margin-bottom:0 } .offersZoneTerms { font-size:12px; margin-bottom:0 } .limitedOffersView { height:65px; overflow-y:hidden } .expandToViewMore { text-align:center; cursor:hand; cursor:pointer } .countryCodePlaceholder { height:28px; padding:5px; line-height:1; background:#d3d3d3; margin-left:1px; width:31px!important } #offerBanner { background-color:#FFE037; color:#273C4D; margin:0; width:100%; text-align:center; padding:10px; font-size:14px; -webkit-backface-visibility:hidden } .ticketResponseCustomer { background-color:#FFE000; border:0; white-space:pre-line } .ticketResponseAdmin { background-color:#273C4D; color:#fff; border:0; float:right; white-space:pre-line } .btn-blue { background-image:none; background-color:#FFE000; text-shadow:none } .newBannerBackground { background:#FEDF49; padding-top:70px } .newBannerCreative { height:100%; margin-top:10px; padding-bottom:20px; margin-left:-100px } .dropdownjs::after { background-color:#263C4D; top:0; right:0; font-size:40px; content:"\E5CF"; color:#FFD650; line-height:1.04 } @media only screen and (max-width:768px) { .jobDataRight { border-left:0 } .jobDataRight p span { display:initial } .jobAction li { margin-left:0!important } }
0.162779
0.098642
position: absolute; top: 0; left: 0; width: 55px; bottom: 0; overflow: hidden; z-index: 3; display: none; background: rgba(255, 255, 255, .8); box-shadow: 0 2px 2px #333; font-size: 12px; font-weight: normal; border-right: 1px solid #333; } #toolbar .logo { float: left; margin: 5px; width: 45px; height: value(menubar-logoIco-height); background: url(#host.layout#/static/icon.png); background-position: center center; background-repeat: no-repeat; cursor: pointer; } #toolbar .items { float: left; padding: 0; margin: 0; } #toolbar li { position: relative; width: 55px; height: 40px; line-height: 40px; font-family: awesome; float: left; } #toolbar li .item { width: 100%; height: 100%; text-align: center; background-color: rgba(255, 255, 255, 0.8); background-size: 100%; background-repeat: no-repeat; background-position: center center; color: #868D80; font-size: 20px; cursor: pointer; } #toolbar li.selected .item { background: white; } #toolbar li .item:hover { color: black; } #toolbar li .item.selected { background: #333; color: white } #toolbar li .notification { position: absolute; min-width: 10px; font-size: 12px; bottom: 0; right: 5px; color: white; border-radius: 10px; background: #00B085; height: 16px; line-height: 16px; text-align: center; padding: 0 3px; } #toolbar .loading { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #d7d7d7 url(#host.layout#/static/loading.gif) no-repeat center center; display: none; } @media only screen and (max-width: 640px) { #toolbar { background: rgba(50, 50, 50, .8); box-shadow: none; border: 0; } #toolbar .logo { background-size: 20px; } #toolbar li .item { background-color: inherit; font-size: 16px; line-height: 42px; color: white; } #toolbar li .item:hover { color: white; } #toolbar li .item.selected { background: white; color: #333; } } @media only screen and (max-width: 640px) { #viewport.portrait #toolbar { width: auto; height: 40px; right: 0; } #viewport.portrait #toolbar li { width: 40px; height: 40px; line-height: 40px; } #viewport.portrait #toolbar .logo { width: 40px; height: 40px; line-height: 40px; margin: auto; } #viewport.portrait.show-search #toolbar .items { display: none; } #viewport.landscape #toolbar .logo { width: 45px; height: 35px; } }
0.1.0/client/css/toolbar.css
position: absolute; top: 0; left: 0; width: 55px; bottom: 0; overflow: hidden; z-index: 3; display: none; background: rgba(255, 255, 255, .8); box-shadow: 0 2px 2px #333; font-size: 12px; font-weight: normal; border-right: 1px solid #333; } #toolbar .logo { float: left; margin: 5px; width: 45px; height: value(menubar-logoIco-height); background: url(#host.layout#/static/icon.png); background-position: center center; background-repeat: no-repeat; cursor: pointer; } #toolbar .items { float: left; padding: 0; margin: 0; } #toolbar li { position: relative; width: 55px; height: 40px; line-height: 40px; font-family: awesome; float: left; } #toolbar li .item { width: 100%; height: 100%; text-align: center; background-color: rgba(255, 255, 255, 0.8); background-size: 100%; background-repeat: no-repeat; background-position: center center; color: #868D80; font-size: 20px; cursor: pointer; } #toolbar li.selected .item { background: white; } #toolbar li .item:hover { color: black; } #toolbar li .item.selected { background: #333; color: white } #toolbar li .notification { position: absolute; min-width: 10px; font-size: 12px; bottom: 0; right: 5px; color: white; border-radius: 10px; background: #00B085; height: 16px; line-height: 16px; text-align: center; padding: 0 3px; } #toolbar .loading { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #d7d7d7 url(#host.layout#/static/loading.gif) no-repeat center center; display: none; } @media only screen and (max-width: 640px) { #toolbar { background: rgba(50, 50, 50, .8); box-shadow: none; border: 0; } #toolbar .logo { background-size: 20px; } #toolbar li .item { background-color: inherit; font-size: 16px; line-height: 42px; color: white; } #toolbar li .item:hover { color: white; } #toolbar li .item.selected { background: white; color: #333; } } @media only screen and (max-width: 640px) { #viewport.portrait #toolbar { width: auto; height: 40px; right: 0; } #viewport.portrait #toolbar li { width: 40px; height: 40px; line-height: 40px; } #viewport.portrait #toolbar .logo { width: 40px; height: 40px; line-height: 40px; margin: auto; } #viewport.portrait.show-search #toolbar .items { display: none; } #viewport.landscape #toolbar .logo { width: 45px; height: 35px; } }
0.66888
0.091342
nav { background: rgba(0,0,0,0.4); height: 50px } #banner { background: rgba(0,0,0,0.4); height: 500px } nav ul { list-style: none; margin: 0; float: right; } nav ul li,nav .logo { display: inline-block; line-height: 50px; margin-right: 20px; } nav ul li a,nav .logo a { line-height: inherit; text-decoration: none; display: inline-block; height: inherit; color: #fff } nav .logo { float: left; font-size: 20px; font-weight: bold; letter-spacing: 2px; } #banner .inner { max-width: 300px; text-align: center; margin: 0 auto; position: relative; top: 80px } #banner .inner h1 { margin: 0; } button { border: none; background: #333; color: #eee; padding: 10px } #banner .inner .more { margin-top: 80px } /*页头style E*/ /*内容style S*/ .green-section { text-align: center; background: #089DB0; color: #fff; padding: 100px 0; } .wrapper { max-width: 1080px; margin: 0 auto; } .hr { width: 100%; height: 2px; margin: 20px auto; } .green-section .hr { background: #078494; width: 50%; } .icon-group { margin-top: 40px; } .green-section .icon-group .icon { display: inline-block; width: 80px; height: 80px; background: #0D6F7C; transform: rotate(45deg); margin: 20px; } .gray-section { background: #252f34; color: #fff } .gray-section .img-section { width: 40%; } .img-section img { width: 100% } .gray-section .text-section { width: 60%; } .article-preview > div { float: left; font-size: 0px } .article-preview:nth-child(odd) { background-color: rgba(255,255,255,0.05); } .article-preview:after { content: ''; clear: both; display: block; } .text-section { position: relative; top: 60px; left: 50px; } .text-section h2 { margin-bottom: 20px; } .text-section .sub-heading { font-size: 22px; margin-top: 0px } .text-section p { font-size: 18px; letter-spacing: 1px; } .text-section > * { max-width: 90%; } .purple-section { background: #3f3965; color: #fff; padding: 80px; } .purple-section .heading-wrapper { text-align: center; } .heading-wrapper .hr { background: #373259; width: 50% } .card { float: left; width: 50%; min-height: 300px; padding: 50px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; /*border: 1px solid white*/ } .clearfix:after { content: ''; clear: both; display: block; } .card p { font-size: 18px; letter-spacing: 1px; } .card:first-child { background: rgba(0,0,0,0.05); } .card:nth-child(2) { background: rgba(0,0,0,0.09); } .card:nth-child(3) { background: rgba(0,0,0,0.14); } .card:nth-child(4) { background: rgba(0,0,0,0.18); } /*内容style E*/ /*页脚style S*/ footer { background: #333; color: #fff; min-height: 200px; text-align: center; } ul.share-group { display: block; width: 1080px; margin: 0 auto; padding: 30px } .share-group li { display: inline-block; padding: 10px } .copy { padding: 20px } /*页脚style E*/ .main-wrapper { background: #444 url(/img/banner.jpg); background-attachment: fixed; background-repeat: no-repeat; background-size: cover; background-position: center; overflow: hidden; } .mask { display: none; position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.2); } #sidebar { position: fixed; top: 0; bottom: 0; right: -300px; width: 300px; background: #333; color: #fff; transition: right 0.5s; } #sidebar ul { padding: 0; margin: 0; list-style: none; } #sidebar ul a { padding: 10px 30px; width: 100%; display: inline-block; text-decoration: none; } #sidebar ul a:hover { background: #444; } .back-to-top { display: none; position: fixed; bottom: 30px; right: 30px; border: 1px solid #888; }
frontend/css/main.css
nav { background: rgba(0,0,0,0.4); height: 50px } #banner { background: rgba(0,0,0,0.4); height: 500px } nav ul { list-style: none; margin: 0; float: right; } nav ul li,nav .logo { display: inline-block; line-height: 50px; margin-right: 20px; } nav ul li a,nav .logo a { line-height: inherit; text-decoration: none; display: inline-block; height: inherit; color: #fff } nav .logo { float: left; font-size: 20px; font-weight: bold; letter-spacing: 2px; } #banner .inner { max-width: 300px; text-align: center; margin: 0 auto; position: relative; top: 80px } #banner .inner h1 { margin: 0; } button { border: none; background: #333; color: #eee; padding: 10px } #banner .inner .more { margin-top: 80px } /*页头style E*/ /*内容style S*/ .green-section { text-align: center; background: #089DB0; color: #fff; padding: 100px 0; } .wrapper { max-width: 1080px; margin: 0 auto; } .hr { width: 100%; height: 2px; margin: 20px auto; } .green-section .hr { background: #078494; width: 50%; } .icon-group { margin-top: 40px; } .green-section .icon-group .icon { display: inline-block; width: 80px; height: 80px; background: #0D6F7C; transform: rotate(45deg); margin: 20px; } .gray-section { background: #252f34; color: #fff } .gray-section .img-section { width: 40%; } .img-section img { width: 100% } .gray-section .text-section { width: 60%; } .article-preview > div { float: left; font-size: 0px } .article-preview:nth-child(odd) { background-color: rgba(255,255,255,0.05); } .article-preview:after { content: ''; clear: both; display: block; } .text-section { position: relative; top: 60px; left: 50px; } .text-section h2 { margin-bottom: 20px; } .text-section .sub-heading { font-size: 22px; margin-top: 0px } .text-section p { font-size: 18px; letter-spacing: 1px; } .text-section > * { max-width: 90%; } .purple-section { background: #3f3965; color: #fff; padding: 80px; } .purple-section .heading-wrapper { text-align: center; } .heading-wrapper .hr { background: #373259; width: 50% } .card { float: left; width: 50%; min-height: 300px; padding: 50px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; /*border: 1px solid white*/ } .clearfix:after { content: ''; clear: both; display: block; } .card p { font-size: 18px; letter-spacing: 1px; } .card:first-child { background: rgba(0,0,0,0.05); } .card:nth-child(2) { background: rgba(0,0,0,0.09); } .card:nth-child(3) { background: rgba(0,0,0,0.14); } .card:nth-child(4) { background: rgba(0,0,0,0.18); } /*内容style E*/ /*页脚style S*/ footer { background: #333; color: #fff; min-height: 200px; text-align: center; } ul.share-group { display: block; width: 1080px; margin: 0 auto; padding: 30px } .share-group li { display: inline-block; padding: 10px } .copy { padding: 20px } /*页脚style E*/ .main-wrapper { background: #444 url(/img/banner.jpg); background-attachment: fixed; background-repeat: no-repeat; background-size: cover; background-position: center; overflow: hidden; } .mask { display: none; position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.2); } #sidebar { position: fixed; top: 0; bottom: 0; right: -300px; width: 300px; background: #333; color: #fff; transition: right 0.5s; } #sidebar ul { padding: 0; margin: 0; list-style: none; } #sidebar ul a { padding: 10px 30px; width: 100%; display: inline-block; text-decoration: none; } #sidebar ul a:hover { background: #444; } .back-to-top { display: none; position: fixed; bottom: 30px; right: 30px; border: 1px solid #888; }
0.430028
0.094177