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 |
|---|---|---|---|---|
.boxxi {
background-color: rgba(0, 0, 0, 1);
position: relative;
overflow: hidden;
}
.boxxi--full {
height: 100% !important;
width: 100% !important;
max-width: 100% !important;
position: absolute;
top: 0;
left: 0;
}
.boxxi__video {
display: block;
object-fit: contain;
height: 100%;
width: 100%;
}
.boxxi__controls {
background-color: rgba(0, 0, 0, .25);
width: 100%;
position: absolute;
bottom: 0;
/*transform: translateY(100%);
transition: transform .25s 1s ease-in;*/
}
.boxxi:hover .boxxi__controls {
transform: translateY(0);
transition: transform .25s 0s ease-in;
}
.boxxi__btn {
color: #fff;
background-color: transparent;
border: 0;
font-family: inherit;
font-size: 12px;
line-height: 30px;
text-transform: uppercase;
display: inline-block;
height: 30px;
padding: 0 12px;
}
.boxxi__btn:focus {
background-color: rgba(15, 222, 189, .25);
outline: none;
}
.boxxi__btn > svg {
fill: #fff;
display: block;
height: 12px;
width: 15px;
transition: fill linear .1s 0s;
}
.boxxi__btn:hover > svg {
fill: rgba(15, 222, 189, 1);
}
/* --------------------*/
/* video progress line */
/* --------------------*/
.boxxi__progress {
background-color: rgba(255, 255, 255, .25);
height: 5px;
position: relative;
transition: height .075s 0s linear;
}
.boxxi__progress-bar {
background-color: rgba(15, 222, 189, 1);
height: 100%;
position: absolute;
}
.boxxi__progress:hover {
height: 10px;
}
/* ---------------------------- */
/* time passed / video duration */
/* ---------------------------- */
.boxxi__time {
width: 150px;
}
/* ---------------------------- */
/* volume controller */
/* ---------------------------- */
.boxxi__range {
height: 30px;
width: 100px;
margin: 0 12px;
position: relative;
float: left;
}
/* progress line */
.boxxi__range-line {
background-color: rgba(255, 255, 255, 1);
border-radius: 5px;
height: 4px;
width: 50%;
position: absolute;
top: calc(50% - 2px);
z-index: 1;
}
/* progress line thumb */
.boxxi__range-line::after {
content: '';
background-color: rgba(255, 255, 255, 1);
border-radius: 50%;
display: block;
width: 12px;
height: 12px;
position: absolute;
/*z-index: 1;*/
top: calc(50% - 6px);
left: calc(100% - 6px);
transition: background-color linear .1s;
}
.boxxi__range:hover .boxxi__range-line::after {
background-color: rgba(15, 222, 189, 1);
}
/* progress line overall duration */
.boxxi__range-full {
background-color: rgba(255,255,255,.25);
border-radius: 5px;
height: 4px;
width: 100%;
position: absolute;
top: calc(50% - 2px);
}
.boxxi--left { float: left; }
.boxxi--right { float: right; } | css/boxxi.css | .boxxi {
background-color: rgba(0, 0, 0, 1);
position: relative;
overflow: hidden;
}
.boxxi--full {
height: 100% !important;
width: 100% !important;
max-width: 100% !important;
position: absolute;
top: 0;
left: 0;
}
.boxxi__video {
display: block;
object-fit: contain;
height: 100%;
width: 100%;
}
.boxxi__controls {
background-color: rgba(0, 0, 0, .25);
width: 100%;
position: absolute;
bottom: 0;
/*transform: translateY(100%);
transition: transform .25s 1s ease-in;*/
}
.boxxi:hover .boxxi__controls {
transform: translateY(0);
transition: transform .25s 0s ease-in;
}
.boxxi__btn {
color: #fff;
background-color: transparent;
border: 0;
font-family: inherit;
font-size: 12px;
line-height: 30px;
text-transform: uppercase;
display: inline-block;
height: 30px;
padding: 0 12px;
}
.boxxi__btn:focus {
background-color: rgba(15, 222, 189, .25);
outline: none;
}
.boxxi__btn > svg {
fill: #fff;
display: block;
height: 12px;
width: 15px;
transition: fill linear .1s 0s;
}
.boxxi__btn:hover > svg {
fill: rgba(15, 222, 189, 1);
}
/* --------------------*/
/* video progress line */
/* --------------------*/
.boxxi__progress {
background-color: rgba(255, 255, 255, .25);
height: 5px;
position: relative;
transition: height .075s 0s linear;
}
.boxxi__progress-bar {
background-color: rgba(15, 222, 189, 1);
height: 100%;
position: absolute;
}
.boxxi__progress:hover {
height: 10px;
}
/* ---------------------------- */
/* time passed / video duration */
/* ---------------------------- */
.boxxi__time {
width: 150px;
}
/* ---------------------------- */
/* volume controller */
/* ---------------------------- */
.boxxi__range {
height: 30px;
width: 100px;
margin: 0 12px;
position: relative;
float: left;
}
/* progress line */
.boxxi__range-line {
background-color: rgba(255, 255, 255, 1);
border-radius: 5px;
height: 4px;
width: 50%;
position: absolute;
top: calc(50% - 2px);
z-index: 1;
}
/* progress line thumb */
.boxxi__range-line::after {
content: '';
background-color: rgba(255, 255, 255, 1);
border-radius: 50%;
display: block;
width: 12px;
height: 12px;
position: absolute;
/*z-index: 1;*/
top: calc(50% - 6px);
left: calc(100% - 6px);
transition: background-color linear .1s;
}
.boxxi__range:hover .boxxi__range-line::after {
background-color: rgba(15, 222, 189, 1);
}
/* progress line overall duration */
.boxxi__range-full {
background-color: rgba(255,255,255,.25);
border-radius: 5px;
height: 4px;
width: 100%;
position: absolute;
top: calc(50% - 2px);
}
.boxxi--left { float: left; }
.boxxi--right { float: right; } | 0.477311 | 0.060808 |
body {
font-family: "Helvetica", sans-serif;
font-size: 16px;
line-height: 1.5;
color: #111;
background: #FFFFFF;
box-sizing: border-box;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Georgia", serif;
margin-top: 0;
margin-bottom: 0.2em;
}
a {
color: black;
text-decoration: none;
padding: 0.5rem 1rem;
border-top: 0.2rem transparent purple;
border-bottom: 0.2rem transparent purple;
border-radius: 0.2rem;
}
a:focus,
a:hover {
color: purple;
border-top: 0.2rem solid purple;
border-bottom: 0.2rem solid purple;
}
.site-wrapper {
}
section.newsletter,
section.testimonials,
footer {
box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
.wrapper {
padding: 1%;
max-width: 75rem;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
p.site-title {
margin: 0;
font-family: "Georgia", serif;
font-size: 2.5rem;
color: purple;
}
p.site-subtitle {
margin: 0;
text-transform: uppercase;
letter-spacing: -0.05rem;
}
label,
#menu {
display: none;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
list-style: none;
list-style-position: outside;
text-decoration: none;
margin-left: 1rem;
margin-right: 0;
padding: 0;
}
/* Call to action */
.call-to-action .wrapper {
width: 75%;
flex-direction: column;
max-height: 20rem;
align-items: flex-start;
justify-content: center;
}
.call-to-action h2,
.call-to-action p,
.call-to-action a {
flex: 0 1 75%;
max-width: 60%;
}
a.contact-us {
text-decoration: none;
color: black;
font-weight: bold;
padding: 0.4rem 2rem;
border: 0.15rem solid black;
}
a.contact-us:hover,
a.contact-us:focus {
color: purple;
border: 0.15rem solid purple;
}
.call-to-action img {
flex: 0 0 100%;
width: 10rem;
height: auto;
}
/* Newsletter */
.newsletter {
width: 100%;
background: purple;
}
.newsletter h2 {
color: white;
}
.newsletter .wrapper {
justify-content: center;
}
.newsletter input {
margin-left: 1rem;
margin-bottom: 2rem;
background: white;
border-radius: 0.2rem;
border: 0.1rem solid black;
padding: 0.5rem 1rem;
}
.newsletter .email {
flex: 0 1 25%;
}
.newsletter .email:focus {
border-color: green;
}
/* Team and testimonials */
.team h2,
.newsletter h2,
.testimonials h2 {
text-align: center;
padding: 1em;
margin-bottom: 0;
}
.heading-bottom-border {
min-height: 0.2rem;
background: black;
max-width: 8%;
margin: auto;
margin-bottom: 1.5em;
}
.team-box,
.testimonial-box {
flex: 0 0 30%;
position: relative;
padding: 1rem;
}
.team-box img,
.testimonial-box img {
display: block;
margin: auto;
width: 10rem;
height: 10rem;
border-radius: 50%;
overflow: hidden;
object-fit: cover;
box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.5);
}
.team-box img:after,
.testimonial-box img:after {
border: 1rem solid black;
}
.team-box p,
.testimonial-box p {
text-align: center;
}
p.message {
font-style: italic;
}
p.name {
font-weight: bold;
margin-bottom: 0;
}
p.position {
margin-top: 0;
}
/* Footer */
footer .wrapper {
align-items: flex-start;
}
footer h2 {
margin-bottom: 1rem;
}
.sitemap {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
footer .footer-boast,
footer .sitemap,
footer .contacts {
flex: 0 0 30%;
}
footer ul {
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}
footer .sitemap ul {
flex-direction: row;
align-items: flex-start;
justify-items: flex-start;
}
footer .contacts ul {
flex-direction: column;
flex-wrap: nowrap;
}
footer li {
flex: 0 1 45%;
list-style: none;
list-style-position: outside;
margin: 0;
padding: 0;
}
footer a {
padding: 0;
}
@media screen and (max-width: 900px) {
body {
font-size: 16px;
}
nav {
display: none;
flex: 1 0 100%;
}
label {
display: block;
}
#menu:checked ~ nav {
display: block;
}
nav li {
margin: 0;
padding: 0 2rem;
width: 100%;
}
nav li a {
display: block;
border: 0.2rem solid transparent;
border-radius: 0.2rem;
}
.team-box,
.testimonial-box {
flex: 0 1 50%;
position: relative;
padding: 1rem;
}
footer .footer-boast,
footer .sitemap,
footer .contacts {
flex: 0 0 100%;
}
footer h3 {
padding-top: 1em;
}
}
@media screen and (min-width: 1200px) {
body {
font-size: 18px;
}
}
@media screen and (min-width: 1900px) {
body {
font-size: 23px;
}
} | 10. Exercise-Media-Queries-Resources/47_L6_E2_Langing-page-v1/47.css | body {
font-family: "Helvetica", sans-serif;
font-size: 16px;
line-height: 1.5;
color: #111;
background: #FFFFFF;
box-sizing: border-box;
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Georgia", serif;
margin-top: 0;
margin-bottom: 0.2em;
}
a {
color: black;
text-decoration: none;
padding: 0.5rem 1rem;
border-top: 0.2rem transparent purple;
border-bottom: 0.2rem transparent purple;
border-radius: 0.2rem;
}
a:focus,
a:hover {
color: purple;
border-top: 0.2rem solid purple;
border-bottom: 0.2rem solid purple;
}
.site-wrapper {
}
section.newsletter,
section.testimonials,
footer {
box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
.wrapper {
padding: 1%;
max-width: 75rem;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
p.site-title {
margin: 0;
font-family: "Georgia", serif;
font-size: 2.5rem;
color: purple;
}
p.site-subtitle {
margin: 0;
text-transform: uppercase;
letter-spacing: -0.05rem;
}
label,
#menu {
display: none;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
list-style: none;
list-style-position: outside;
text-decoration: none;
margin-left: 1rem;
margin-right: 0;
padding: 0;
}
/* Call to action */
.call-to-action .wrapper {
width: 75%;
flex-direction: column;
max-height: 20rem;
align-items: flex-start;
justify-content: center;
}
.call-to-action h2,
.call-to-action p,
.call-to-action a {
flex: 0 1 75%;
max-width: 60%;
}
a.contact-us {
text-decoration: none;
color: black;
font-weight: bold;
padding: 0.4rem 2rem;
border: 0.15rem solid black;
}
a.contact-us:hover,
a.contact-us:focus {
color: purple;
border: 0.15rem solid purple;
}
.call-to-action img {
flex: 0 0 100%;
width: 10rem;
height: auto;
}
/* Newsletter */
.newsletter {
width: 100%;
background: purple;
}
.newsletter h2 {
color: white;
}
.newsletter .wrapper {
justify-content: center;
}
.newsletter input {
margin-left: 1rem;
margin-bottom: 2rem;
background: white;
border-radius: 0.2rem;
border: 0.1rem solid black;
padding: 0.5rem 1rem;
}
.newsletter .email {
flex: 0 1 25%;
}
.newsletter .email:focus {
border-color: green;
}
/* Team and testimonials */
.team h2,
.newsletter h2,
.testimonials h2 {
text-align: center;
padding: 1em;
margin-bottom: 0;
}
.heading-bottom-border {
min-height: 0.2rem;
background: black;
max-width: 8%;
margin: auto;
margin-bottom: 1.5em;
}
.team-box,
.testimonial-box {
flex: 0 0 30%;
position: relative;
padding: 1rem;
}
.team-box img,
.testimonial-box img {
display: block;
margin: auto;
width: 10rem;
height: 10rem;
border-radius: 50%;
overflow: hidden;
object-fit: cover;
box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.5);
}
.team-box img:after,
.testimonial-box img:after {
border: 1rem solid black;
}
.team-box p,
.testimonial-box p {
text-align: center;
}
p.message {
font-style: italic;
}
p.name {
font-weight: bold;
margin-bottom: 0;
}
p.position {
margin-top: 0;
}
/* Footer */
footer .wrapper {
align-items: flex-start;
}
footer h2 {
margin-bottom: 1rem;
}
.sitemap {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
footer .footer-boast,
footer .sitemap,
footer .contacts {
flex: 0 0 30%;
}
footer ul {
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}
footer .sitemap ul {
flex-direction: row;
align-items: flex-start;
justify-items: flex-start;
}
footer .contacts ul {
flex-direction: column;
flex-wrap: nowrap;
}
footer li {
flex: 0 1 45%;
list-style: none;
list-style-position: outside;
margin: 0;
padding: 0;
}
footer a {
padding: 0;
}
@media screen and (max-width: 900px) {
body {
font-size: 16px;
}
nav {
display: none;
flex: 1 0 100%;
}
label {
display: block;
}
#menu:checked ~ nav {
display: block;
}
nav li {
margin: 0;
padding: 0 2rem;
width: 100%;
}
nav li a {
display: block;
border: 0.2rem solid transparent;
border-radius: 0.2rem;
}
.team-box,
.testimonial-box {
flex: 0 1 50%;
position: relative;
padding: 1rem;
}
footer .footer-boast,
footer .sitemap,
footer .contacts {
flex: 0 0 100%;
}
footer h3 {
padding-top: 1em;
}
}
@media screen and (min-width: 1200px) {
body {
font-size: 18px;
}
}
@media screen and (min-width: 1900px) {
body {
font-size: 23px;
}
} | 0.343012 | 0.07477 |
.pull-right {
float: right;
}
/* line 9, ../sass/_utils.scss */
.pull-left {
float: left;
}
/* line 13, ../sass/_utils.scss */
.full-width {
width: 100%;
}
/* line 17, ../sass/_utils.scss */
.content-box {
box-sizing: content-box;
}
/* line 21, ../sass/_utils.scss */
.pl {
padding-left: 15px;
}
/* line 25, ../sass/_utils.scss */
.pr {
padding-right: 15px;
}
/* line 29, ../sass/_utils.scss */
.p-min {
padding: 5px;
}
/* line 34, ../sass/_utils.scss */
.mb {
margin-bottom: 15px;
}
/* line 38, ../sass/_utils.scss */
.mb-min {
margin-bottom: 5px;
}
/* line 42, ../sass/_utils.scss */
.mb-big {
margin-bottom: 50px;
}
/* line 46, ../sass/_utils.scss */
.mt {
margin-top: 15px;
}
/* line 50, ../sass/_utils.scss */
.mt-big {
margin-top: 50px;
}
/* line 55, ../sass/_utils.scss */
.hide,
.hidden {
display: none;
}
/* line 60, ../sass/_utils.scss */
.show {
display: block;
}
/* line 65, ../sass/_utils.scss */
.invisible {
visibility: hidden;
}
/* line 70, ../sass/_utils.scss */
.text-left {
text-align: left;
}
/* line 74, ../sass/_utils.scss */
.text-right {
text-align: right;
}
/* line 78, ../sass/_utils.scss */
.text-center,
.centered {
text-align: center;
}
/* line 83, ../sass/_utils.scss */
.no-pad {
padding: 0;
}
/* line 87, ../sass/_utils.scss */
.strong {
font-weight: bold;
font-style: italic;
}
/* line 93, ../sass/_utils.scss */
.truncate {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
/* line 102, ../sass/_utils.scss */
.clearfix {
*zoom: 1;
}
/* line 14, ../sass/_mixins.scss */
.clearfix:before, .clearfix:after {
display: table;
content: "";
}
/* line 19, ../sass/_mixins.scss */
.clearfix:after {
clear: both;
}
/* line 106, ../sass/_utils.scss */
.clear-left {
clear: left;
width: 100%;
}
/* line 111, ../sass/_utils.scss */
.no-pad-top {
margin-top: 0 !important;
}
/* line 115, ../sass/_utils.scss */
ul.unstyled, ul.inline,
ol.unstyled,
ol.inline {
margin-left: 0;
padding: 0;
list-style: none;
}
/* line 125, ../sass/_utils.scss */
.inline > li {
display: inline-block;
}
/* line 128, ../sass/_utils.scss */
.inline > li:first-child {
padding-left: 0;
}
/* line 132, ../sass/_utils.scss */
.inline > li > a {
display: inline-block;
}
/* line 138, ../sass/_utils.scss */
.link {
color: #368de8;
}
/* line 140, ../sass/_utils.scss */
.link:hover {
color: #0e4177;
}
/* line 145, ../sass/_utils.scss */
.error {
color: #f20d2e;
font-weight: normal;
}
/* line 152, ../sass/_utils.scss */
.no-select-padding select.form-control {
padding: 0px;
}
/* line 158, ../sass/_utils.scss */
.segregated-box {
border: 1px solid grey;
padding: 20px 42px 20px 0px;
}
/* line 163, ../sass/_utils.scss */
.box-title {
margin-bottom: 10px;
margin-left: 20px;
font-weight: bold;
}
/* line 169, ../sass/_utils.scss */
.no-items {
font-style: italic;
font-weight: 100;
}
/* line 174, ../sass/_utils.scss */
.loading {
text-align: center;
}
/* line 178, ../sass/_utils.scss */
.align-bottom {
position: absolute;
right: 0;
bottom: 0;
text-align: right;
}
/* line 185, ../sass/_utils.scss */
.angular-multiline {
white-space: pre-wrap;
}
/** todo revise james' css **/
/* line 190, ../sass/_utils.scss */
input.ng-pristine + ul#strength {
display: none;
}
/** TODO review this, has effect across all input fields */
/* line 195, ../sass/_utils.scss */
input.ng-dirty.ng-invalid {
border: 1px solid Red;
}
/* line 199, ../sass/_utils.scss */
ul#strength {
display: inline;
list-style: none;
margin: 0;
margin-left: 15px;
padding: 0;
vertical-align: 2px;
}
/* line 207, ../sass/_utils.scss */
.point:last {
margin: 0 !important;
}
/* line 210, ../sass/_utils.scss */
.point {
background: #DDD;
border-radius: 2px;
display: inline-block;
height: 5px;
margin-right: 1px;
width: 20px;
}
/* line 218, ../sass/_utils.scss */
#footer {
position: fixed;
bottom: 5px;
}
/* line 1, ../sass/_base.scss */
html {
font-family: 'Lato', sans-serif;
-webkit-text-size-adjust: inherit !important;
}
/* line 6, ../sass/_base.scss */
body {
background: #e7ecf2;
color: #585858;
margin-top: 20px;
font-family: 'Lato', sans-serif;
}
/** Headers / headings **/
/* line 15, ../sass/_base.scss */
h3 {
font-size: 22px;
}
/* line 19, ../sass/_base.scss */
.note {
font-style: italic;
}
/* line 23, ../sass/_base.scss */
hr {
margin-top: 15px;
margin-bottom: 10px;
border-top: 1px dashed #eeeeee;
float: left;
width: 100%;
}
/* line 31, ../sass/_base.scss */
.para-thumb {
margin-right: 10px;
}
/* line 35, ../sass/_base.scss */
.left {
float: left;
}
/* line 39, ../sass/_base.scss */
.back-to-admin {
margin-bottom: 20px;
background: #fff;
}
/* line 42, ../sass/_base.scss */
.back-to-admin a {
padding: 10px 20px;
width: 200px;
}
/* line 46, ../sass/_base.scss */
.back-to-admin a i {
margin-right: 10px;
}
/* line 50, ../sass/_base.scss */
.back-to-admin a:hover {
color: white;
cursor: pointer;
}
/* line 57, ../sass/_base.scss */
.back-to-results {
margin-right: 20px;
}
/* line 61, ../sass/_base.scss */
.page-content {
padding-bottom: 60px;
}
/* line 64, ../sass/_base.scss */
.page-content.home {
margin-top: 20px;
}
/* line 69, ../sass/_base.scss */
.user-picture {
max-width: 150px;
}
/* line 72, ../sass/_base.scss */
.diagnosis-staff {
margin-bottom: 10px;
}
/* line 76, ../sass/_base.scss */
.content-panel.overflow {
overflow: visible !important;
}
/* line 80, ../sass/_base.scss */
.page-head {
margin-bottom: 20px;
}
/* line 82, ../sass/_base.scss */
.page-head .badge {
margin: 20px 20px 0;
}
/* line 89, ../sass/_base.scss */
.content-panel.gp-login {
position: relative;
}
/* line 92, ../sass/_base.scss */
.content-panel.gp-login .content-inner {
padding: 0 50px 50px;
}
/* line 96, ../sass/_base.scss */
.content-panel.gp-login table {
margin-bottom: 50px;
}
/* line 99, ../sass/_base.scss */
.content-panel.gp-login h4 {
margin: 30px 0 20px;
}
/* line 103, ../sass/_base.scss */
.content-panel.gp-login .for {
margin-top: -20px;
font-size: 16px;
}
/* line 107, ../sass/_base.scss */
.content-panel.gp-login .panel-footer {
padding: 20px 0;
}
/* line 110, ../sass/_base.scss */
.content-panel.gp-login .panel-footer p {
margin: 10px 20px;
}
/* line 115, ../sass/_base.scss */
.content-panel.gp-login .actions-footer {
margin-top: 20px;
}
/* line 118, ../sass/_base.scss */
.content-panel.gp-login .actions-footer .note {
margin-top: 2px;
}
/* line 126, ../sass/_base.scss */
.success-badge {
position: absolute;
right: 20px;
top: 20px;
}
/* line 131, ../sass/_base.scss */
.success-badge p {
float: right;
margin-right: 110px;
margin-top: 30px;
font-size: 18px;
font-weight: bold;
}
/* line 140, ../sass/_base.scss */
.success-container {
height: 150px;
position: relative;
width: 100%;
}
/* line 145, ../sass/_base.scss */
.success-container .sweet-alert {
position: absolute;
left: calc(50% - 60px);
top: 0;
right: auto;
margin: auto;
padding: 17px 17px 0;
}
/* line 153, ../sass/_base.scss */
.success-container .sweet-alert h2 {
margin: 0 -15px;
}
/* line 159, ../sass/_base.scss */
.row-question {
margin: 2px 0 20px 0;
}
/* line 163, ../sass/_base.scss */
.panel-header {
padding: 10px;
margin-bottom: 10px;
}
/* line 167, ../sass/_base.scss */
.panel-header h3 {
margin: 0;
line-height: 45px;
}
/* line 171, ../sass/_base.scss */
.panel-header h3 .badge {
margin-right: 10px;
}
/* line 176, ../sass/_base.scss */
.panel-header .badge {
height: 45px;
width: 45px;
}
/* line 183, ../sass/_base.scss */
.subnav-row .content-panel {
margin-top: 10px;
}
/* line 188, ../sass/_base.scss */
.content-area.whatcan p {
font-size: 17px;
}
/* line 192, ../sass/_base.scss */
.featured-news-heading {
margin: 5px 0;
}
/* line 194, ../sass/_base.scss */
.featured-news-heading a {
margin-right: 20px;
}
/* line 198, ../sass/_base.scss */
.featured-news-heading .news-date {
font-size: 14px;
}
/* line 203, ../sass/_base.scss */
.content-panel {
background: #ffffff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0px 1px 1px #bfcdde;
-moz-box-shadow: 0px 1px 1px #bfcdde;
box-shadow: 0px 1px 1px #bfcdde;
overflow: hidden;
}
/* line 209, ../sass/_base.scss */
.content-panel.about {
padding: 15px;
font-size: 17px;
margin: 0 0 10px 0;
}
/* line 214, ../sass/_base.scss */
.content-panel.about h4 {
font-weight: bold;
}
/* line 219, ../sass/_base.scss */
.content-panel.navbar-default {
margin-bottom: 0;
}
/* line 223, ../sass/_base.scss */
.content-panel.chart-container {
margin-bottom: 20px;
}
/* line 226, ../sass/_base.scss */
.content-panel.chart-container .panel-intro h3 {
margin: 0;
}
/* line 232, ../sass/_base.scss */
.content-panel.lowlight {
background: #f3f6f9;
}
/* line 236, ../sass/_base.scss */
.content-panel.user-settings {
margin-bottom: 20px;
}
/* line 239, ../sass/_base.scss */
.content-panel.user-settings label.control-label {
text-align: left;
}
/* line 245, ../sass/_base.scss */
.content-panel.multi-search > div {
margin: 10px 0 15px;
}
/* line 251, ../sass/_base.scss */
.content-panel .search-intro i {
display: block;
margin: 0 auto;
}
/* line 257, ../sass/_base.scss */
.content-panel .content-inner {
padding: 10px;
}
/* line 261, ../sass/_base.scss */
.content-panel .intro-block {
padding: 15px;
}
/* line 265, ../sass/_base.scss */
.content-panel .panel-footer, .content-panel .panel-intro {
background: #f3f6f9;
width: 100%;
padding: 0 0 15px 0;
}
/* line 270, ../sass/_base.scss */
.content-panel .panel-footer {
border-top: 1px solid #e4e9f0;
}
/* line 274, ../sass/_base.scss */
.content-panel .panel-intro {
padding: 10px;
}
/* line 277, ../sass/_base.scss */
.content-panel .panel-intro h3 {
padding-bottom: 5px;
margin: 0;
}
/* line 282, ../sass/_base.scss */
.content-panel .panel-intro p {
margin: 0;
}
/* line 286, ../sass/_base.scss */
.content-panel .panel-intro img {
margin-right: 5px;
}
/* line 290, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-heading {
font-size: 12px;
margin-bottom: 0px;
margin-top: 0px;
}
/* line 297, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-heading a {
font-size: 15px;
}
/* line 301, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-content {
color: grey;
margin-bottom: 5px;
}
/* line 309, ../sass/_base.scss */
.health-surveys > .row {
position: relative;
}
/* line 312, ../sass/_base.scss */
.health-surveys .list-date {
color: #959595;
}
/* line 316, ../sass/_base.scss */
.health-surveys .opt-epro-logo {
width: 140px;
margin-bottom: 1em;
}
/* line 322, ../sass/_base.scss */
.chart-content-panel {
box-shadow: none;
padding: 0 10px 10px 10px;
}
/* line 328, ../sass/_base.scss */
.panel-heading h3 {
margin: 0;
font-weight: bold;
}
/* line 334, ../sass/_base.scss */
.panel-info {
margin: 10px 0 10px 10px;
}
/* line 339, ../sass/_base.scss */
.patient-details .content-panel {
margin-bottom: 20px;
}
/* line 344, ../sass/_base.scss */
.patient-details .panel-body h4 {
margin-top: 0px;
margin-bottom: 0px;
}
/* line 348, ../sass/_base.scss */
.patient-details .panel-body h4.survey {
margin-bottom: 5px;
}
/* line 352, ../sass/_base.scss */
.patient-details .panel-body h5, .patient-details .panel-body h6 {
margin-top: 20px;
margin-bottom: 5px;
}
/* line 358, ../sass/_base.scss */
.patient-details .panel-body .contact-points h4 {
margin-top: 20px;
margin-bottom: 5px;
}
/* line 366, ../sass/_base.scss */
.details-filter {
width: 100%;
margin-bottom: 5px;
}
/* line 370, ../sass/_base.scss */
.details-filter .checkbox-label {
margin: 0 10px 0 5px;
}
/* line 376, ../sass/_base.scss */
.btn-group-switcher.btn-group .btn + .btn {
margin-left: 0;
}
/* line 380, ../sass/_base.scss */
.btn-group-switcher a {
background: #f5f5f5;
color: #585858;
}
/* line 384, ../sass/_base.scss */
.btn-group-switcher a.btn {
margin-left: 0;
}
/* line 386, ../sass/_base.scss */
.btn-group-switcher a.btn:hover {
color: #585858;
}
/* line 391, ../sass/_base.scss */
.btn-group-switcher a.active {
background: #00adc6;
color: #ffffff;
}
/* line 395, ../sass/_base.scss */
.btn-group-switcher a.active:hover {
color: #ffffff;
}
/* line 401, ../sass/_base.scss */
.btn-group-switcher .group-image {
width: 30px;
margin-right: 5px;
}
/* line 407, ../sass/_base.scss */
.enter-symptoms {
margin-left: 10px;
}
/* line 412, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a {
border: 1px solid #dddddd;
}
/* line 415, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a.active {
background: white;
color: #368de8;
border: 1px solid #dddddd;
box-shadow: none;
font-weight: bold;
}
/* line 423, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a:first-of-type {
border-right: 0;
}
/* line 428, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher div, .specialty-switcher .btn-group-switcher div:hover {
background: #BEDAF7;
color: #585858;
}
/* line 434, ../sass/_base.scss */
.btn.btn-append {
color: #585858;
}
/* line 436, ../sass/_base.scss */
.btn.btn-append:hover {
color: #585858;
}
/* line 441, ../sass/_base.scss */
.btn-wide {
width: 85px;
}
/* line 446, ../sass/_base.scss */
.btn .icon-back-to {
position: relative;
top: 3px;
}
/* line 452, ../sass/_base.scss */
.edit-code-input {
margin-bottom: 10px;
}
/* line 456, ../sass/_base.scss */
.added-container {
min-height: 120px;
}
/* line 459, ../sass/_base.scss */
.added-container .identifier-list-item {
margin-bottom: 10px;
}
/* line 461, ../sass/_base.scss */
.added-container .identifier-list-item > .btn-group {
margin-right: 15px;
}
/* line 467, ../sass/_base.scss */
.add-container {
margin-top: 10px;
padding-top: 10px;
border-top: 1px dashed #e2e2e2;
}
/* line 473, ../sass/_base.scss */
.add-container .add-feature button {
margin: 0 0 0 10px;
}
/* line 480, ../sass/_base.scss */
.identifier-add-container input[type="text"] {
width: 40%;
float: left;
margin-right: 10px;
}
/* line 485, ../sass/_base.scss */
.identifier-add-container select {
width: 25%;
}
/* line 490, ../sass/_base.scss */
.added-specialty {
margin-bottom: 5px;
}
/* line 494, ../sass/_base.scss */
.notification-dialog {
position: absolute;
width: 300px;
height: auto;
bottom: 10%;
right: 25%;
left: 50%;
margin-left: -150px;
border: 1px solid #9dd487;
padding: 10px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
/* line 506, ../sass/_base.scss */
.notification-dialog h3 {
margin-top: 0;
}
/* line 511, ../sass/_base.scss */
.help-text {
margin-top: 20px;
}
/* line 515, ../sass/_base.scss */
.print-success-message {
margin-left: 20px;
}
/* line 520, ../sass/_base.scss */
.row aside > h3 {
margin-top: 0;
}
/* line 526, ../sass/_base.scss */
.user-info .panel-footer {
text-align: center;
padding: 10px;
}
/* line 532, ../sass/_base.scss */
.add-form {
margin-top: 10px;
}
/* line 537, ../sass/_base.scss */
.homepage-cols .news-container {
margin-top: 0;
}
/* line 543, ../sass/_base.scss */
.mobile-app img.app-store {
height: 44px;
margin-bottom: 10px;
}
/* line 548, ../sass/_base.scss */
.mobile-app .app-image {
margin-right: 10px;
}
/* line 554, ../sass/_base.scss */
.reviews .review {
border-bottom: 1px solid #f8f8f8;
}
/* line 557, ../sass/_base.scss */
.reviews .review .rating {
margin-top: -5px;
}
/* line 559, ../sass/_base.scss */
.reviews .review .rating li {
padding-right: 0;
}
/* line 564, ../sass/_base.scss */
.reviews .review i {
color: #f0ad4e;
font-size: 12px;
}
/* line 569, ../sass/_base.scss */
.reviews .review h5 {
font-weight: 700;
}
/* line 574, ../sass/_base.scss */
.reviews .social-link {
text-align: center;
}
/* line 576, ../sass/_base.scss */
.reviews .social-link i {
color: #368de8;
}
/* line 583, ../sass/_base.scss */
.reviews ul.rating.stars-5 * {
display: inline-block;
}
/* line 589, ../sass/_base.scss */
.reviews ul.rating.stars-4 * {
display: inline-block;
}
/* line 593, ../sass/_base.scss */
.reviews ul.rating.stars-4 .five {
display: none !important;
}
/* line 599, ../sass/_base.scss */
.reviews ul.rating.stars-3 * {
display: inline-block;
}
/* line 603, ../sass/_base.scss */
.reviews ul.rating.stars-3 .five, .reviews ul.rating.stars-3 .four {
display: none !important;
}
/* line 609, ../sass/_base.scss */
.reviews ul.rating.stars-2 * {
display: inline-block;
}
/* line 613, ../sass/_base.scss */
.reviews ul.rating.stars-2 .five, .reviews ul.rating.stars-2 .four, .reviews ul.rating.stars-2 .three {
display: none !important;
}
/* line 619, ../sass/_base.scss */
.reviews ul.rating.stars-1 * {
display: inline-block;
}
/* line 623, ../sass/_base.scss */
.reviews ul.rating.stars-1 .five, .reviews ul.rating.stars-1 .four, .reviews ul.rating.stars-1 .three, .reviews ul.rating.stars-1 .two {
display: none !important;
}
/* line 631, ../sass/_base.scss */
.user-details-header {
margin-bottom: 10px;
}
/** lists **/
/* line 638, ../sass/_base.scss */
ul .news-item {
margin-bottom: 5px;
}
/* line 644, ../sass/_base.scss */
.table-filter-container .feature-list {
margin-top: 10px;
}
/* line 646, ../sass/_base.scss */
.table-filter-container .feature-list li {
height: auto;
}
/* line 648, ../sass/_base.scss */
.table-filter-container .feature-list li .feature-list-delete {
padding: 4px;
}
/* line 655, ../sass/_base.scss */
.name-action-list {
margin-top: 10px;
}
/* line 657, ../sass/_base.scss */
.name-action-list li {
margin: 0 10px 10px 0;
height: auto;
float: left;
}
/* line 662, ../sass/_base.scss */
.name-action-list li > div {
color: #585858;
height: 100%;
padding: 4px;
text-align: left;
}
/* line 668, ../sass/_base.scss */
.name-action-list li div.feature-list-name {
background: #e0e0e0;
min-width: 100px;
line-height: 25px;
border-right: 1px solid #cfcfcf;
}
/* line 674, ../sass/_base.scss */
.name-action-list li .feature-list-delete {
background: #e0e0e0;
min-width: 35px;
text-align: center;
padding: 3px 0 4px 0;
line-height: 1.5em;
}
/* line 681, ../sass/_base.scss */
.name-action-list li .feature-list-delete:hover {
background: #f20d2e;
}
/* line 684, ../sass/_base.scss */
.name-action-list li .feature-list-delete:hover a {
color: #ffffff;
margin-top: 4px;
}
/* line 690, ../sass/_base.scss */
.name-action-list li .feature-list-delete a {
color: #afafaf;
margin-top: 4px;
width: 100%;
height: 100%;
display: block;
}
/* line 702, ../sass/_base.scss */
.asserter {
font-weight: normal;
}
/* line 706, ../sass/_base.scss */
.prepend {
height: 100%;
}
/* line 710, ../sass/_base.scss */
.badge {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 30px;
width: 30px;
font-size: 1.25rem;
text-transform: uppercase;
color: #ffffff;
font-weight: normal;
text-align: center;
line-height: 25px;
}
/* line 721, ../sass/_base.scss */
.badge.primary {
background: #368de8;
}
/* line 724, ../sass/_base.scss */
.badge.aqua {
background: #00adc6;
}
/* line 727, ../sass/_base.scss */
.badge.aquamarine {
background: #00aa9e;
}
/* line 730, ../sass/_base.scss */
.badge.white {
background: #ffffff;
}
/* line 732, ../sass/_base.scss */
.badge.white i {
background-size: 100%;
}
/* line 737, ../sass/_base.scss */
.badge i {
display: block;
margin: 5px auto;
}
/* line 742, ../sass/_base.scss */
.badge.warning {
background-color: #ffbc3c;
}
/* line 745, ../sass/_base.scss */
.badge.completed {
background-color: #3dcd4e;
}
/* line 748, ../sass/_base.scss */
.badge.ignored {
background-color: #f20d2e;
}
/* line 752, ../sass/_base.scss */
.badge.icon-large {
height: 50px;
width: 50px;
padding-top: 5px;
line-height: 40px;
}
/* line 758, ../sass/_base.scss */
.badge.icon-large img {
width: 90%;
}
/* line 764, ../sass/_base.scss */
.badge-small {
height: 18px;
width: 18px;
line-height: 12px;
padding: 3px;
}
/* line 771, ../sass/_base.scss */
.badge-tiny {
height: 12px;
width: 12px;
line-height: 8px;
padding: 3px;
font-size: 0.75rem;
}
/** buttons **/
/* line 781, ../sass/_base.scss */
.btn {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #ffffff;
font-size: 1.4rem;
min-height: 40px;
min-width: 34px;
line-height: 26px;
}
/* line 789, ../sass/_base.scss */
.btn:hover {
color: #ffffff;
}
/* line 798, ../sass/_base.scss */
.social-link {
margin-bottom: 10px;
color: #585858;
font-size: 16px;
display: block;
}
/* line 804, ../sass/_base.scss */
.social-link h3 {
line-height: 43px;
margin: 0;
}
/* line 809, ../sass/_base.scss */
.social-link:hover {
text-decoration: none;
}
/* line 813, ../sass/_base.scss */
.social-link i {
margin-right: 10px;
}
/* line 819, ../sass/_base.scss */
.export-container button {
margin-top: 20px;
}
/* line 823, ../sass/_base.scss */
.button-dropdown-group .dropdown > button {
height: 34px;
}
/* line 827, ../sass/_base.scss */
.button-dropdown-group button {
border-right: 1px solid #1f6bba;
min-height: 34px;
}
/* line 831, ../sass/_base.scss */
.button-dropdown-group button span {
margin: 1px 0 0 8px;
}
/* line 837, ../sass/_base.scss */
.button-dropdown-group button span, .btn-group button span {
margin-left: 4px;
}
/* line 842, ../sass/_base.scss */
.btn-grey {
background-color: #7a7a7a;
}
/** generic color styles **/
/* line 848, ../sass/_base.scss */
.blue {
background-color: #368de8;
color: #ffffff;
}
/* line 852, ../sass/_base.scss */
.blue:active, .blue:focus {
color: #ffffff;
outline: 0;
}
/* line 857, ../sass/_base.scss */
.aquamarine {
background-color: #00aa9e;
}
/* line 860, ../sass/_base.scss */
.negative {
background-color: #f20d2e;
}
/* line 863, ../sass/_base.scss */
.white {
background-color: #ffffff;
color: #000000;
}
/* line 867, ../sass/_base.scss */
.white:active, .white:focus, .white:hover {
color: #000000;
outline: 0;
}
/* text classes */
/* line 875, ../sass/_base.scss */
.light-text {
color: #768696;
}
/* line 878, ../sass/_base.scss */
.sub-text {
font-size: 0.85rem;
}
/* line 882, ../sass/_base.scss */
.blue-text {
color: #368de8;
}
/* line 887, ../sass/_base.scss */
.modal-dialog.modal-sm {
width: 45%;
}
/* line 893, ../sass/_base.scss */
.stats-modal .modal-dialog {
margin: 165px auto;
}
/* line 899, ../sass/_base.scss */
.survey-modal .row-question {
margin: 2px 0 20px 0;
}
/* line 902, ../sass/_base.scss */
.survey-modal .question-text {
/*font-weight: bold;*/
color: black;
margin-bottom: 10px;
}
/* line 907, ../sass/_base.scss */
.survey-modal .question-description {
font-weight: normal;
color: #2a6496;
}
/* line 911, ../sass/_base.scss */
.survey-modal .question-group-description {
font-weight: normal;
color: #2a6496;
margin-bottom: 20px;
}
/* line 916, ../sass/_base.scss */
.survey-modal .question-group-description br {
margin-bottom: 10px;
}
/* line 919, ../sass/_base.scss */
.survey-modal .pull-right {
padding: 0;
}
/* line 922, ../sass/_base.scss */
.survey-modal .span-radio {
margin-right: 10px;
}
/* line 925, ../sass/_base.scss */
.survey-modal .div-question-group {
margin-bottom: 20px;
}
/* line 928, ../sass/_base.scss */
.survey-modal .help-link {
margin-left: 5px;
}
/* line 932, ../sass/_base.scss */
.survey-modal input[type="radio"], .survey-modal input[type="range"], .survey-modal .radio-label {
cursor: pointer;
}
/* line 936, ../sass/_base.scss */
.survey-modal .modal-dialog label {
font-weight: normal;
font-size: 1em;
}
/* line 941, ../sass/_base.scss */
.survey-modal .numeric-text {
width: 50%;
}
/* line 945, ../sass/_base.scss */
.survey-modal .required-question {
font-weight: normal;
color: red;
}
/* line 950, ../sass/_base.scss */
.survey-modal .datetime {
font-weight: bold;
padding-top: 0.5em;
}
/** TODO add this in more appropriate place **/
/* line 958, ../sass/_base.scss */
.showHideText {
font-size: 16px;
line-height: 16px;
height: 35px;
overflow: hidden;
}
/* line 964, ../sass/_base.scss */
.show {
overflow: visible;
height: auto;
min-height: 35px;
}
/* line 970, ../sass/_base.scss */
.showHideLink {
font-size: 16px;
}
/* line 974, ../sass/_base.scss */
.alert-block {
margin-top: 20px;
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* line 985, ../sass/_base.scss */
.alert-block h3 {
color: #c09853;
}
/** temporary icons stuff **/
/* line 992, ../sass/_base.scss */
.hero-icon {
display: block;
margin: 0 auto;
}
/* line 997, ../sass/_base.scss */
i.icon-hero-manage {
background: url("../../../images/icons/hero-manage.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1003, ../sass/_base.scss */
i.icon-hero-monitor {
background: url("../../../images/icons/hero-monitor.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1009, ../sass/_base.scss */
i.icon-hero-make {
background: url("../../../images/icons/hero-make.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1015, ../sass/_base.scss */
i.icon-search-black {
background: url("../../../images/icons/search-black.png") 0 0 no-repeat;
height: 36px;
width: 36px;
}
/* line 1021, ../sass/_base.scss */
i.icon-account {
background: url("../../../images/icons/account.png") 0 0 no-repeat;
height: 32px;
width: 32px;
}
/* line 1027, ../sass/_base.scss */
i.icon-organisations {
background: url("../../../images/icons/organisations.png") 0 0 no-repeat;
height: 22px;
width: 24px;
margin-top: 7px;
}
/* line 1034, ../sass/_base.scss */
i.icon-facebook {
background: url("../../../images/icons/facebook.png") 0 0 no-repeat;
height: 39px;
width: 39px;
margin-top: 3px;
display: block;
}
/* line 1042, ../sass/_base.scss */
i.icon-news {
background: url("../../../images/icons/news.png") 0 0 no-repeat;
height: 22px;
width: 24px;
margin-top: 7px;
}
/* line 1049, ../sass/_base.scss */
i.icon-settings {
background: url("../../../images/icons/settings.png") 0 0 no-repeat;
height: 22px;
width: 24px;
display: block;
margin-top: 9px;
}
/* line 1057, ../sass/_base.scss */
i.icon-patients {
background: url("../../../images/icons/patients.png") 0 0 no-repeat;
height: 27px;
width: 17px;
}
/* line 1063, ../sass/_base.scss */
i.icon-join {
background: url("../../../images/icons/join.png") 0 0 no-repeat;
height: 24px;
width: 22px;
}
/* line 1069, ../sass/_base.scss */
i.icon-reply {
background: url("../../../images/icons/reply-icon.png") 0 0 no-repeat;
height: 15px;
width: 16px;
}
/* line 1075, ../sass/_base.scss */
i.icon-sort {
background: url("../../../images/icons/sort.png") 0 0 no-repeat;
height: 25px;
width: 20px;
}
/* line 1081, ../sass/_base.scss */
i.icon-join-large {
background: url("../../../images/icons/join-large.png") 0 0 no-repeat;
height: 37px;
width: 33px;
display: block;
}
/* line 1088, ../sass/_base.scss */
i.icon-login-large {
background: url("../../../images/icons/login-large.png") 0 0 no-repeat;
height: 37px;
width: 33px;
display: block;
}
/* line 1095, ../sass/_base.scss */
i.icon-help {
background: url("../../../images/icons/help.png") 0 0 no-repeat;
height: 22px;
width: 24px;
}
/* line 1101, ../sass/_base.scss */
i.icon-issues {
background: url("../../../images/icons/issues.png") 0 0 no-repeat;
height: 22px;
width: 24px;
}
/* line 1107, ../sass/_base.scss */
i.icon-messages {
background: url("../../../images/icons/messages.png") 0 0 no-repeat;
height: 22px;
width: 37px;
}
/* line 1113, ../sass/_base.scss */
i.icon-results-large {
background: url("../../../images/icons/results-large.png") 0 0 no-repeat;
height: 100px;
width: 100px;
}
/* line 1119, ../sass/_base.scss */
i.icon-circle-arrow {
background: url("../../../images/icons/circle-arrow.png") 0 0 no-repeat;
height: 30px;
width: 30px;
}
/* line 1125, ../sass/_base.scss */
i.icon-result-info {
background: url("../../../images/icons/result-info.png") 0 0 no-repeat;
height: 27px;
width: 27px;
}
/* line 1131, ../sass/_base.scss */
i.icon-result-down {
background: url("../../../images/icons/result-down.png") 0 0 no-repeat;
height: 35px;
width: 17px;
display: block;
}
/* line 1138, ../sass/_base.scss */
i.icon-result-up {
background: url("../../../images/icons/result-up.png") 0 0 no-repeat;
height: 35px;
width: 17px;
display: block;
}
/* line 1145, ../sass/_base.scss */
i.icon-plot-this {
background: url("../../../images/icons/plot-this.png") 0 0 no-repeat;
height: 30px;
width: 30px;
display: block;
}
/* line 1152, ../sass/_base.scss */
i.icon-back-to {
background: url("../../../images/icons/back-to.png") 0 0 no-repeat;
height: 22px;
width: 23px;
display: block;
margin-right: 10px;
}
/* line 1160, ../sass/_base.scss */
i.icon-brand-pulse {
background: url("../../../images/icons/brand-pulse.png") 0 0 no-repeat;
height: 30px;
width: 30px;
display: block;
margin-right: 5px;
}
/* line 1168, ../sass/_base.scss */
i.icon-forward-to {
background: url("../../../images/icons/forward-to.png") 0 0 no-repeat;
height: 22px;
width: 23px;
display: block;
margin-left: 10px;
position: relative;
top: 4px;
}
@media only screen and (max-width: 1024px) {
/* line 1182, ../sass/_base.scss */
.content-panel {
margin-bottom: 20px;
}
/* line 1185, ../sass/_base.scss */
.content-panel.panel-header {
margin-bottom: 5px;
}
}
@media only screen and (max-width: 1024px) {
/* line 1195, ../sass/_base.scss */
.results-modal .modal-dialog.modal-sm {
width: 95%;
margin: 5% auto;
}
}
/* line 1, ../sass/_nav.scss */
.navbar-default {
border: none;
height: 70px;
}
/* line 5, ../sass/_nav.scss */
.navbar-default .nav-public {
height: 70px;
}
/* line 8, ../sass/_nav.scss */
.navbar-default .nav-public .public {
height: 100%;
}
/* line 10, ../sass/_nav.scss */
.navbar-default .nav-public .public li {
height: 100%;
}
/* line 12, ../sass/_nav.scss */
.navbar-default .nav-public .public li a {
line-height: 37px;
color: #ffffff;
}
/* line 15, ../sass/_nav.scss */
.navbar-default .nav-public .public li a i {
margin-right: 10px;
}
/* line 20, ../sass/_nav.scss */
.navbar-default .nav-public .public li.join {
background: #00adc6;
}
/* line 24, ../sass/_nav.scss */
.navbar-default .nav-public .public li.login {
background: #368de8;
}
/* line 31, ../sass/_nav.scss */
.navbar-default .nav-account {
height: 70px;
background: #00adc6;
margin-right: -15px;
padding: 16px 10px 10px;
}
/* line 37, ../sass/_nav.scss */
.navbar-default .nav-account i {
margin-right: 5px;
}
/* line 41, ../sass/_nav.scss */
.navbar-default .nav-account h4 {
color: #ffffff;
font-weight: normal;
font-size: 1.75rem;
margin: 0;
width: 300px;
}
/* line 51, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a {
text-decoration: underline;
color: #deebed;
font-size: 1.25rem;
font-weight: normal;
padding: 0 5px;
}
/* line 58, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a:hover, .navbar-default .nav-account .navbar-nav li a:active {
color: #ffffff;
}
/* line 62, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a:first-child {
padding-left: 0;
}
/* line 70, ../sass/_nav.scss */
.navbar-default .brand {
height: 41px;
}
/* line 74, ../sass/_nav.scss */
.navbar-default .sub-brand {
height: 30px;
margin: 7px 0 0 20px;
}
/* line 81, ../sass/_nav.scss */
.secondary-nav li {
margin-left: 0;
}
/* line 85, ../sass/_nav.scss */
.secondary-nav li:first-child a {
border-left: none;
}
/* line 90, ../sass/_nav.scss */
.secondary-nav li.active {
position: relative;
}
/* line 92, ../sass/_nav.scss */
.secondary-nav li.active a {
color: #f8f8f8;
background: #368de8;
}
/* line 96, ../sass/_nav.scss */
.secondary-nav li.active a:hover, .secondary-nav li.active a:focus {
color: #f8f8f8;
background: #368de8;
}
/* line 102, ../sass/_nav.scss */
.secondary-nav li.active:after {
height: 20px;
width: 100%;
display: block;
background: url(../../../images/icons/nav-active.png) 50% 0 no-repeat;
position: absolute;
bottom: -20px;
left: 0;
content: "";
}
/* line 114, ../sass/_nav.scss */
.secondary-nav li a {
border-left: 1px solid #e4e9f0;
color: #959595;
font-size: 1.5rem;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
/* line 120, ../sass/_nav.scss */
.secondary-nav li a:hover {
background: #f8f8f8;
color: #368de8;
}
/* line 128, ../sass/_nav.scss */
.nav-pills.secondary-nav li {
margin-left: 0;
}
/* line 132, ../sass/_nav.scss */
html, body {
height: 100%;
}
/* line 135, ../sass/_nav.scss */
html > .container, body > .container {
min-height: 100%;
margin-bottom: -106px;
position: relative;
}
/* line 141, ../sass/_nav.scss */
html .clearFooter, body .clearFooter {
height: 106px;
clear: both;
}
/* line 148, ../sass/_nav.scss */
.footer {
margin-top: 40px;
background: #ffffff;
height: 106px;
position: relative;
overflow: hidden;
}
/* line 155, ../sass/_nav.scss */
.footer .brand {
float: left;
line-height: 55px;
padding: 15px;
}
/* line 160, ../sass/_nav.scss */
.footer .brand img {
height: 30px;
}
/* line 166, ../sass/_nav.scss */
.footer .partner-info > h5 {
width: 100%;
text-align: center;
float: left;
}
/* line 173, ../sass/_nav.scss */
.footer .partner-links {
margin: 0 auto;
padding: 15px 35px;
}
/* line 177, ../sass/_nav.scss */
.footer .partner-links a {
margin: 0 10px;
float: left;
}
/* line 181, ../sass/_nav.scss */
.footer .partner-links a.other-partners {
clear: left;
color: #959595;
width: 100%;
text-decoration: underline;
}
/* line 190, ../sass/_nav.scss */
.footer .legal-links {
padding-top: 15px;
}
/* line 192, ../sass/_nav.scss */
.footer .legal-links li {
line-height: 40px;
padding: 0 10px;
font-size: 1.25rem;
color: #959595;
}
/* line 198, ../sass/_nav.scss */
.footer .legal-links li a {
font-size: 1.25rem;
color: #959595;
}
/* line 202, ../sass/_nav.scss */
.footer .legal-links li a:hover {
color: #368de8;
}
/* line 210, ../sass/_nav.scss */
.footer .legal-links.partner-list li {
line-height: 5px;
}
/* line 216, ../sass/_nav.scss */
.footer p {
font-size: 1.75rem;
color: #959595;
position: absolute;
left: 25%;
top: 25%;
}
/* line 225, ../sass/_nav.scss */
.nav-utils {
height: 70px;
}
/* line 227, ../sass/_nav.scss */
.nav-utils li {
width: 70px;
margin-left: -2px;
height: 100%;
background: #f8f8f8;
border-left: 1px solid #e4e9f0;
}
/* line 233, ../sass/_nav.scss */
.nav-utils li a {
height: 100%;
width: 100%;
text-align: center;
font-size: 1rem;
color: #959595;
text-decoration: none;
}
/* line 241, ../sass/_nav.scss */
.nav-utils li a i {
display: block;
margin: 20px auto 0;
}
/* line 250, ../sass/_nav.scss */
.subnav-row .content-panel {
overflow: visible;
}
/* line 255, ../sass/_nav.scss */
.nav-tabs li {
cursor: pointer;
}
/* line 259, ../sass/_nav.scss */
.nav-tabs li.active a {
color: #368de8;
font-weight: bold;
}
/* line 263, ../sass/_nav.scss */
.nav-tabs li.active a:hover {
color: #368de8;
font-weight: bold;
}
/* line 270, ../sass/_nav.scss */
.nav-tabs li a {
border: 1px solid #dddddd;
background: #f5f5f5;
color: #585858;
}
/* line 275, ../sass/_nav.scss */
.nav-tabs li a:hover {
border: 1px solid #dddddd;
color: #368de8;
background: #f5f5f5;
}
/* line 283, ../sass/_nav.scss */
.nav-tabs {
border-bottom: none;
}
/* line 286, ../sass/_nav.scss */
.image-colour-key-red {
width: 15px;
height: 15px;
border: none;
background-color: red;
float: left;
margin-right: 7px;
position: relative;
top: 2px;
}
@media only screen and (max-width: 1023px) {
/* line 301, ../sass/_nav.scss */
.navbar-header {
position: relative;
}
/* line 307, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li a {
text-align: right;
}
/* line 311, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link {
position: absolute;
height: 40px;
width: 40px;
right: 70px;
top: 10px;
}
/* line 318, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link a {
height: 40px;
width: 40px;
display: block;
text-align: center;
}
/* line 324, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link a i {
display: block;
}
/* line 338, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav .nav-public .public {
height: 70px;
margin: 0;
}
/* line 341, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav .nav-public .public li {
height: 100%;
float: left;
padding-top: 5px;
}
/* line 352, ../sass/_nav.scss */
.navbar-brand .brand {
height: auto;
}
/* line 355, ../sass/_nav.scss */
.navbar-brand img {
height: 28px;
width: 160px;
}
/* line 359, ../sass/_nav.scss */
.navbar-brand img.sub-brand {
width: 50px;
height: 20px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
/* line 385, ../sass/_nav.scss */
.footer .legal-links {
width: 40%;
}
/* line 387, ../sass/_nav.scss */
.footer .legal-links li {
display: block;
text-align: right;
line-height: 22px;
}
/* line 393, ../sass/_nav.scss */
.footer .partner-info {
width: 60%;
}
}
@media (max-width: 767px) {
/* line 402, ../sass/_nav.scss */
.navbar-brand .brand {
height: auto;
}
/* line 405, ../sass/_nav.scss */
.navbar-brand img {
height: 28px;
width: 130px;
}
/* line 409, ../sass/_nav.scss */
.navbar-brand img.sub-brand {
width: 40px;
height: 15px;
margin: 7px 0 0 5px;
}
/* line 419, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public {
height: 70px;
margin: 0;
}
/* line 422, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public li {
height: 100%;
float: left;
padding-top: 5px;
}
/* line 427, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public li a {
padding-left: 5px;
padding-right: 5px;
min-width: 60px;
text-align: center;
}
/* line 437, ../sass/_nav.scss */
.temp-mobile-nav .mobile-list {
padding-right: 10px;
}
/* line 442, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link {
right: 85px;
}
/* line 446, ../sass/_nav.scss */
.nav-account {
display: none;
}
/* line 450, ../sass/_nav.scss */
.footer {
height: auto;
}
/* line 454, ../sass/_nav.scss */
.footer .legal-links li {
line-height: normal;
}
/* line 459, ../sass/_nav.scss */
.footer .partner-info {
padding: 5px;
}
/* line 463, ../sass/_nav.scss */
.footer .partner-links {
padding: 0;
}
/* line 465, ../sass/_nav.scss */
.footer .partner-links a {
float: none;
}
/* line 468, ../sass/_nav.scss */
.footer .partner-links a.other-partners {
float: left;
text-align: center;
padding-top: 5px;
}
}
/** Actual Tables **/
/* line 3, ../sass/_tables.scss */
.forced-width {
width: 300px;
}
/* line 10, ../sass/_tables.scss */
table tr td .filetype-icon {
margin-right: 5px;
}
/** fake Tables **/
/* line 20, ../sass/_tables.scss */
.faux-table {
margin-top: 20px;
font-size: 1.5rem;
}
/* line 24, ../sass/_tables.scss */
.faux-table .table-head {
background: #f3f6f9;
height: 40px;
display: table;
width: 100%;
border-bottom: 1px solid #e4e9f0;
}
/* line 31, ../sass/_tables.scss */
.faux-table .table-head .head-item {
height: 100%;
border-right: 1px solid #e4e9f0;
display: table-cell;
vertical-align: middle;
text-align: left;
padding: 0 10px;
font-weight: bold;
}
/* line 40, ../sass/_tables.scss */
.faux-table .table-head .head-item a {
color: #585858;
text-decoration: none;
cursor: pointer;
}
/* line 48, ../sass/_tables.scss */
.faux-table .panel-body {
background: #ffffff;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
margin-top: 0;
border-top: 0;
overflow: visible;
border-bottom: 1px solid #e4e9f0;
}
/* line 55, ../sass/_tables.scss */
.faux-table .panel-body .panel-heading {
background: none;
}
/* line 59, ../sass/_tables.scss */
.faux-table .panel-body .panel-heading {
padding: 0;
}
/* line 64, ../sass/_tables.scss */
.faux-table .panel-body .panel-collapse button {
line-height: 20px;
min-height: 30px;
}
/* line 69, ../sass/_tables.scss */
.faux-table .panel-body .panel-collapse .link-list-item {
clear: left;
margin-top: 10px;
}
/* line 75, ../sass/_tables.scss */
.faux-table .panel-body .link-list-item {
margin-top: 5px;
}
/* line 80, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-'], .faux-table .panel-body .add-location div[class*='col-md-'] {
padding-left: 5px;
padding-right: 5px;
width: 160px;
}
/* line 85, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-']:first-child, .faux-table .panel-body .location-list-item div[class*='col-md-'].first-child, .faux-table .panel-body .add-location div[class*='col-md-']:first-child, .faux-table .panel-body .add-location div[class*='col-md-'].first-child {
padding-left: 15px;
}
/* line 89, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-']:last-child, .faux-table .panel-body .add-location div[class*='col-md-']:last-child {
margin-right: 10px;
}
/* line 96, ../sass/_tables.scss */
.faux-table .accordion-toggle {
text-decoration: none;
}
/* line 101, ../sass/_tables.scss */
.faux-table .item-header.open {
border: 2px solid #368de8;
}
/* line 106, ../sass/_tables.scss */
.faux-table .faux-row {
display: table;
width: 100%;
padding: 5px 0;
font-size: 1.4rem;
background: #fff;
border-bottom: 1px solid #e4e9f0;
}
/* line 114, ../sass/_tables.scss */
.faux-table .faux-row.dull {
opacity: 0.3;
filter: alpha(opacity=30);
}
/* line 118, ../sass/_tables.scss */
.faux-table .faux-row.highlight {
opacity: 1;
filter: alpha(opacity=100);
background: #f5f5f5;
}
/* line 122, ../sass/_tables.scss */
.faux-table .faux-row.highlight .row-item {
font-weight: bold;
}
/* line 127, ../sass/_tables.scss */
.faux-table .faux-row .row-item {
display: table-cell;
text-align: left;
padding: 0 5px;
color: #585858;
text-decoration: none;
vertical-align: middle;
font-family: 'Lato', sans-serif;
}
/* line 136, ../sass/_tables.scss */
.faux-table .faux-row .row-item.plot-this {
width: 40px;
}
/* line 140, ../sass/_tables.scss */
.faux-table .faux-row .row-item span {
display: block;
float: left;
}
/* line 145, ../sass/_tables.scss */
.faux-table .faux-row .row-item.row-break {
/*temp wrapping fix */
white-space: -moz-pre-wrap !important;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
/* THIS SHOULD BE HERE */
}
/* line 155, ../sass/_tables.scss */
.faux-table .faux-row .row-item.actions {
text-align: center;
padding: 0 10px;
}
/* line 159, ../sass/_tables.scss */
.faux-table .faux-row .row-item.actions .button-dropdown-group {
width: 120px;
margin: 0 auto;
}
/* line 165, ../sass/_tables.scss */
.faux-table .faux-row .row-item ul {
margin-bottom: 0;
}
/* line 172, ../sass/_tables.scss */
.faux-table.three-col .row-item, .faux-table.three-col .head-item {
width: 33.33%;
}
/* line 178, ../sass/_tables.scss */
.faux-table.four-col .row-item, .faux-table.four-col .head-item {
width: 25%;
}
/* line 184, ../sass/_tables.scss */
.faux-table.five-col .row-item, .faux-table.five-col .head-item {
width: 20%;
}
/* line 190, ../sass/_tables.scss */
.faux-table.six-col .row-item, .faux-table.six-col .head-item {
width: 16.66%;
}
/* line 195, ../sass/_tables.scss */
.faux-table.seven-col .row-item, .faux-table.seven-col .head-item {
width: 14.44%;
}
/* line 200, ../sass/_tables.scss */
.faux-table.eight-col .row-item, .faux-table.eight-col .head-item {
width: 12.5%;
}
/* line 206, ../sass/_tables.scss */
.faux-table.nine-col .row-item, .faux-table.nine-col .head-item {
width: 11.1%;
}
/* line 212, ../sass/_tables.scss */
.visible-for-col {
padding-top: 20px;
}
/* line 214, ../sass/_tables.scss */
.visible-for-col h5 {
text-align: left;
float: left;
}
/* line 218, ../sass/_tables.scss */
.visible-for-col input[type="checkbox"] {
height: auto;
float: left;
margin: 7px 0 0 10px;
width: auto;
}
/* line 226, ../sass/_tables.scss */
.date-th {
min-width: 100px;
}
/* line 229, ../sass/_tables.scss */
.button-th {
min-width: 160px;
}
/* line 234, ../sass/_tables.scss */
.result-link a {
/*temp wrapping fix */
white-space: -moz-pre-wrap !important;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
white-space: pre-wrap;
/* css-3 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}
/* line 246, ../sass/_tables.scss */
.cleared-row {
float: left;
clear: left;
margin-top: 5px;
width: 100%;
}
/* line 252, ../sass/_tables.scss */
.log-container {
margin-top: 20px;
}
/* line 256, ../sass/_tables.scss */
.log-container table thead {
background: #f3f6f9;
height: 40px;
border-bottom: 1px solid #e4e9f0;
}
/* line 260, ../sass/_tables.scss */
.log-container table thead th {
height: 100%;
border-right: 1px solid #e4e9f0;
display: table-cell;
vertical-align: middle;
text-align: left;
padding: 10px;
font-weight: bold;
}
/* line 269, ../sass/_tables.scss */
.log-container table thead th a {
color: #585858;
}
@media (max-width: 767px) {
/* line 281, ../sass/_tables.scss */
.details-container table tr td {
width: 50%;
}
}
/** form styles **/
/* line 3, ../sass/_forms.scss */
.form-control {
height: 40px;
}
/* line 8, ../sass/_forms.scss */
.dob-row div[class*='col-md-'] {
padding-left: 5px;
padding-right: 5px;
}
/* line 12, ../sass/_forms.scss */
.dob-row div[class*='col-md-'].day {
padding-left: 0;
}
/* line 16, ../sass/_forms.scss */
.dob-row div[class*='col-md-'].year {
padding-right: 0;
}
/* line 22, ../sass/_forms.scss */
.panel-body {
padding: 15px 15px 10px;
}
/* line 28, ../sass/_forms.scss */
.panel-body .panel-body-footer {
width: 100%;
padding: 0;
}
/* line 34, ../sass/_forms.scss */
.form-section {
margin-top: 50px !important;
}
/* line 38, ../sass/_forms.scss */
.form-save {
margin-top: 10px;
}
/* line 42, ../sass/_forms.scss */
input[type="text"],
input[type="password"],
select,
.group-select {
background: #fff;
border: 1px solid #cccccc;
}
/* line 49, ../sass/_forms.scss */
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
.group-select:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 53, ../sass/_forms.scss */
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
select:-moz-placeholder,
.group-select:-moz-placeholder {
color: #7a7a7a;
}
/* line 56, ../sass/_forms.scss */
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.group-select::-webkit-input-placeholder {
color: #7a7a7a;
}
/* line 61, ../sass/_forms.scss */
label {
color: #585858;
}
/* line 66, ../sass/_forms.scss */
.label a {
color: #ffffff;
}
/* line 71, ../sass/_forms.scss */
.disabled {
cursor: not-allowed;
background: #f8f8f8;
color: #989898;
width: auto;
font-weight: normal;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 1px solid #f3f3f3;
}
/* line 82, ../sass/_forms.scss */
.edit-code {
background: #ffffff;
}
/* line 86, ../sass/_forms.scss */
input.alert-checkbox {
margin-right: 7px;
}
/* line 90, ../sass/_forms.scss */
.btn:active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 94, ../sass/_forms.scss */
.filter-panel {
overflow: visible;
}
/* line 97, ../sass/_forms.scss */
.filter-panel .panel-footer {
padding: 0;
}
/* line 102, ../sass/_forms.scss */
.filter-tags-container {
clear: left;
margin: 15px 0 0;
}
/* line 106, ../sass/_forms.scss */
.filter-tags-container li {
margin-right: 3px;
}
/* line 112, ../sass/_forms.scss */
.add-recipient-button {
margin-top: 27px;
}
/* line 116, ../sass/_forms.scss */
.search-container {
position: relative;
height: 60px;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
/* line 121, ../sass/_forms.scss */
.search-container i {
position: absolute;
left: 10px;
top: 10px;
}
/* line 126, ../sass/_forms.scss */
.search-container input[type="text"] {
border: none;
background: #ffffff;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
height: 100%;
width: 100%;
text-indent: 40px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 137, ../sass/_forms.scss */
.select-container {
margin-right: 15px;
}
/* line 140, ../sass/_forms.scss */
.select-container .btn-group {
background: #ffffff;
border: 1px solid #e4e9f0;
}
/* line 145, ../sass/_forms.scss */
.select-container .btn-group.open .dropdown-toggle {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 150, ../sass/_forms.scss */
.select-container .btn-group button {
background: transparent;
color: #7a7a7a;
position: relative;
height: 34px;
padding: 0 50px 0 10px;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
width: 220px;
}
/* line 162, ../sass/_forms.scss */
.select-container .dropdown-menu {
width: 221px;
-webkit-box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
-moz-box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
margin-top: 0;
overflow-y: scroll;
max-height: 200px;
}
/* line 171, ../sass/_forms.scss */
.select-container .dropdown-menu li a {
cursor: pointer;
}
/* line 173, ../sass/_forms.scss */
.select-container .dropdown-menu li a span {
cursor: pointer;
}
/* line 181, ../sass/_forms.scss */
.caret-container {
display: block;
height: 100%;
line-height: 100%;
width: 34px;
background: #e0e0e0;
position: absolute;
right: 0;
top: 0;
}
/* line 191, ../sass/_forms.scss */
.caret-container .caret {
border-top: 8px solid #ffffff;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
margin-top: 16px;
}
/* line 200, ../sass/_forms.scss */
.button-dropdown-group > button {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
line-height: 20px;
}
/* line 206, ../sass/_forms.scss */
.button-dropdown-group .dropdown > button {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
/* line 211, ../sass/_forms.scss */
.button-dropdown-group .dropdown-menu {
position: absolute;
min-width: 100px;
left: -75px;
}
/* line 216, ../sass/_forms.scss */
.button-dropdown-group .dropdown-menu > li a {
text-align: left;
padding: 5px;
font-size: 1.5rem;
}
/* line 224, ../sass/_forms.scss */
.capsule-list {
padding-left: 10px;
}
/* line 226, ../sass/_forms.scss */
.capsule-list li {
background: #00aa9e;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-right: 5px;
padding: 5px;
color: #ffffff;
}
/* line 234, ../sass/_forms.scss */
.capsule-list > li:first-child {
padding-left: 5px;
}
/* line 239, ../sass/_forms.scss */
.form-edit-row {
margin-top: 0px;
}
/* line 243, ../sass/_forms.scss */
.set-date-range {
margin-top: 25px;
}
/* line 248, ../sass/_forms.scss */
.group-list-item li {
width: auto;
height: 40px;
border: none;
color: #ffffff;
font-size: 1.25rem;
overflow: hidden;
padding: 5px 0;
text-align: center;
line-height: 30px;
}
/* line 259, ../sass/_forms.scss */
.group-list-item li.group-list-name {
width: 52%;
font-size: 1.3rem;
color: #4a4a4a;
background: #f8f8f8;
border: 1px solid #e4e9f0;
}
/* line 267, ../sass/_forms.scss */
.group-list-item li.group-list-role {
color: #e0e0e0;
font-size: 3rem;
padding: 0 10px;
font-weight: bold;
width: 180px;
}
/* line 274, ../sass/_forms.scss */
.group-list-item li.group-list-role span {
font-size: 1.35rem;
height: 100%;
position: relative;
top: -4px;
font-weight: normal;
color: #585858;
float: left;
display: block;
}
/* line 284, ../sass/_forms.scss */
.group-list-item li.group-list-role span.bracket {
display: block;
float: left;
min-width: 0;
font-size: 3rem;
color: #e0e0e0;
font-weight: bold;
width: 15px;
}
/* line 294, ../sass/_forms.scss */
.group-list-item li.group-list-role span.group-role {
min-width: 80px;
top: 3px;
}
/* line 301, ../sass/_forms.scss */
.group-list-item li.group-list-delete {
font-size: 2rem;
padding: 0;
}
/* line 304, ../sass/_forms.scss */
.group-list-item li.group-list-delete a {
color: #f20d2e;
display: block;
height: 100%;
width: 100%;
}
/* line 314, ../sass/_forms.scss */
.data-range-container {
margin-top: 20px;
width: 100%;
}
/* line 319, ../sass/_forms.scss */
.data-range-container .dropdown-menu .btn {
color: #333333;
}
/* line 325, ../sass/_forms.scss */
.custom-select {
position: relative;
height: 34px;
float: left;
width: 50%;
margin-right: 10px;
cursor: pointer;
}
/* line 333, ../sass/_forms.scss */
.custom-select .caret-container {
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
/* line 339, ../sass/_forms.scss */
.custom-select .caret-container .caret {
margin-left: 12px;
cursor: pointer;
}
/* line 346, ../sass/_forms.scss */
.radio-button-list {
padding-left: 10px;
}
/* line 348, ../sass/_forms.scss */
.radio-button-list .btn {
background: #e0e0e0;
color: #585858;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-left: 1px solid #c3c3c3;
line-height: 15px;
white-space: normal;
word-spacing: 999999px;
width: 58px;
font-size: 1.2rem;
}
/* line 359, ../sass/_forms.scss */
.radio-button-list .btn:first-child {
border-left: 0;
}
/* line 363, ../sass/_forms.scss */
.radio-button-list .btn.active, .radio-button-list .btn:hover {
background: #00adc6;
border-left: 1px solid #039288;
-webkit-box-shadow: 0;
-moz-box-shadow: 0;
box-shadow: 0;
color: #ffffff;
}
/* line 373, ../sass/_forms.scss */
.select-add-group select {
width: 50%;
float: left;
height: 40px;
}
/* line 379, ../sass/_forms.scss */
.select-add-group .group-list-item {
width: auto;
float: left;
clear: left;
}
/* line 384, ../sass/_forms.scss */
.select-add-group .group-list-item .radio-button-list {
padding-left: 0;
margin-top: 10px;
}
/* line 388, ../sass/_forms.scss */
.select-add-group .group-list-item .radio-button-list li.active {
background: #00adc6;
}
/* line 394, ../sass/_forms.scss */
.select-add-group button {
float: left;
margin-top: 2px;
}
/* line 401, ../sass/_forms.scss */
.add-feature select {
float: left;
width: 80%;
}
/* line 407, ../sass/_forms.scss */
.bracket {
font-size: 3rem;
font-weight: bold;
display: block;
width: 20px;
float: left;
text-align: center;
line-height: 38px;
color: #e0e0e0;
}
/* line 417, ../sass/_forms.scss */
.bracket.pre {
margin-left: 5px;
}
/* line 426, ../sass/_forms.scss */
.bracket-input input, .bracket-input select {
width: 120px;
float: left;
height: 30px;
margin-top: 5px;
}
/* line 435, ../sass/_forms.scss */
.clamped {
line-height: 1.5;
overflow: hidden;
position: relative;
}
/* line 441, ../sass/_forms.scss */
.clamped-2 {
/* Clamp to 2 lines, ie line-height x 2: */
max-height: 3em;
}
/* line 446, ../sass/_forms.scss */
.ellipsis {
background: #fff;
bottom: 0;
position: absolute;
right: 10px;
}
/* line 453, ../sass/_forms.scss */
.fill {
background: #fff;
height: 100%;
position: absolute;
width: 100%;
}
/* line 461, ../sass/_forms.scss */
textarea.form-control.article-content {
height: 200px;
}
/* line 465, ../sass/_forms.scss */
textarea.form-control.big {
height: 120px;
}
/* line 469, ../sass/_forms.scss */
.input-comments {
width: 100%;
}
/* line 473, ../sass/_forms.scss */
.row.inline-row {
margin-bottom: 3px;
}
/* line 475, ../sass/_forms.scss */
.row.inline-row .inline-span, .row.inline-row .date-input, .row.inline-row .results-enter {
float: left;
}
/* line 480, ../sass/_forms.scss */
.row.inline-row .form-control.input-value {
margin-right: 5px;
}
/* line 484, ../sass/_forms.scss */
.row.inline-row, .enter-results-row {
margin-bottom: 15px;
}
/* line 488, ../sass/_forms.scss */
.date-input {
margin-right: 5px;
}
/* line 492, ../sass/_forms.scss */
.instructions {
font-weight: normal;
}
/* line 496, ../sass/_forms.scss */
.date-input {
float: left;
}
/* line 501, ../sass/_forms.scss */
.row.inline-row .inline-span {
width: 80px;
}
/* line 504, ../sass/_forms.scss */
.row.inline-row .form-control {
width: 80px;
}
/* line 507, ../sass/_forms.scss */
.row.inline-row .form-control.input-value {
width: 160px;
}
/* line 510, ../sass/_forms.scss */
.row.inline-row .form-control.input-comments {
width: 100%;
}
/* line 515, ../sass/_forms.scss */
.form-control.no-float {
float: none;
}
/* line 519, ../sass/_forms.scss */
.top-offset {
margin-bottom: 0;
}
/* line 522, ../sass/_forms.scss */
.top-offset.twenty {
margin-top: 20px;
}
/** Selectize tweaks **/
/* line 529, ../sass/_forms.scss */
.optgroup-header {
font-weight: bold;
}
/* line 533, ../sass/_forms.scss */
.selectize-input {
height: 40px;
}
/* line 537, ../sass/_forms.scss */
.selectize-control.loading {
text-align: left !important;
}
/* line 542, ../sass/_forms.scss */
.selectize-control.multi .selectize-input > div {
background: #00adc6;
border-radius: 4px;
color: white;
}
/* line 549, ../sass/_forms.scss */
.selectize-dropdown, .selectize-input, .selectize-input input {
font-size: inherit;
}
/* line 553, ../sass/_forms.scss */
input.ng-invalid, textarea.ng-invalid {
border-color: red;
}
/* line 557, ../sass/_forms.scss */
th, td {
zoom: env() !important;
}
/* line 1, ../sass/_lists.scss */
.aside-actions {
height: 140px;
margin-bottom: 0;
}
/* line 7, ../sass/_lists.scss */
.aside-actions li a {
width: 70px;
height: 75px;
display: block;
text-align: center;
color: #909090;
font-size: 1.125rem;
text-decoration: none;
padding: 20px 10px;
background: #f3f6f9;
}
/* line 18, ../sass/_lists.scss */
.aside-actions li a.reply {
line-height: 50px;
}
/* line 22, ../sass/_lists.scss */
.aside-actions li a.active {
background: #368de8;
color: #ffffff;
}
/* line 27, ../sass/_lists.scss */
.aside-actions li a .message-count {
font-weight: bold;
text-align: center;
font-size: 1.25rem;
display: block;
}
/* line 38, ../sass/_lists.scss */
.groups-list li {
color: #585858;
margin: 5px 5px 0 0;
}
/* line 42, ../sass/_lists.scss */
.groups-list li .light-text {
font-size: 1rem;
}
/* line 46, ../sass/_lists.scss */
.groups-list li .group-image {
width: 30px;
}
/* line 49, ../sass/_lists.scss */
.groups-list li .group-description {
margin-left: 5px;
}
/* line 52, ../sass/_lists.scss */
.groups-list li .group-link:hover, .groups-list li .group-link:visited, .groups-list li .group-link:link, .groups-list li .group-link:active {
text-decoration: none;
outline: none;
border: 0px none transparent;
}
/* line 62, ../sass/_lists.scss */
.faux-table .faux-row .row-item .patient-groups li {
width: 100%;
float: left;
}
/* line 66, ../sass/_lists.scss */
.faux-table .faux-row .row-item .patient-groups li span {
float: left;
}
/* line 73, ../sass/_lists.scss */
.locations-list {
margin-top: 20px;
}
/* line 76, ../sass/_lists.scss */
.locations-list:first-child {
margin-top: 0;
}
/* line 81, ../sass/_lists.scss */
.button-list {
margin: 20px 0;
}
/* line 86, ../sass/_lists.scss */
.image-list li > div {
position: relative;
min-height: 200px;
}
/* line 90, ../sass/_lists.scss */
.image-list li > div:first-child {
padding-left: 0;
}
/* line 95, ../sass/_lists.scss */
.image-list .content-panel {
margin-top: 20px;
padding: 15px;
}
/* line 101, ../sass/_lists.scss */
.image-list .one-image img:first-child {
width: 100%;
}
/* line 106, ../sass/_lists.scss */
.image-list .two-images {
position: relative;
}
/* line 108, ../sass/_lists.scss */
.image-list .two-images img:first-child {
position: absolute;
right: 0;
bottom: 0;
}
/* line 116, ../sass/_lists.scss */
.faq-list-header {
text-transform: uppercase;
font-weight: bold;
}
/* line 121, ../sass/_lists.scss */
.faq-list {
margin-top: 30px;
margin-left: 0;
padding-left: 0;
list-style-position: inside;
}
/* line 126, ../sass/_lists.scss */
.faq-list li {
margin-top: 30px;
font-weight: bold;
}
/* line 129, ../sass/_lists.scss */
.faq-list li span {
padding-left: 5px;
}
/* line 132, ../sass/_lists.scss */
.faq-list li p {
font-weight: normal;
margin-top: 5px;
}
/** hero pane **/
/* line 3, ../sass/_hero.scss */
.hero-panel {
background: url("../../../images/hero-bg-low.jpg") 0 0 no-repeat;
background-size: cover;
-ms-behavior: url(/backgroundsize.min.htc);
width: 100%;
height: 430px;
margin-top: 20px;
}
/* line 11, ../sass/_hero.scss */
.hero-panel .ie-hero-image {
display: none;
}
/* line 15, ../sass/_hero.scss */
.hero-panel .hero-pane {
height: 100%;
color: #ffffff;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 23, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine {
background: #00aa9e;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 25, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine:hover {
background: #00aa9e;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 34, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua {
background: #00adc6;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 36, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua:hover {
background: #00adc6;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 45, ../sass/_hero.scss */
.hero-panel .hero-pane.blue {
background: #368de8;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 47, ../sass/_hero.scss */
.hero-panel .hero-pane.blue:hover {
background: #368de8;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 56, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content {
text-align: center;
margin: 25% 0;
font-weight: 100;
font-size: 2.5rem;
}
/* line 62, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content h2 {
font-size: 7rem;
}
/** todo BELOW SMALL DESKTOP - review potential need for mobile design **/
@media only screen and (max-width: 992px) {
/* line 72, ../sass/_hero.scss */
.hero-panel {
height: auto;
background: none;
margin-top: 0;
}
/* line 78, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content {
margin: 0;
padding: 10px;
}
/* line 82, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content h2 {
font-size: 5rem;
}
/* line 86, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content p {
font-size: 1.8rem;
}
/* line 90, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content > i {
background-position: 50%;
background-size: 100%;
height: 130px;
width: 60px;
float: left;
}
/* line 99, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine {
background: #00aa9e;
opacity: 1;
filter: alpha(opacity=100);
-webkit-border-radius: 8px 8px 0 0;
-moz-border-radius: 8px 8px 0 0;
border-radius: 8px 8px 0 0;
}
/* line 104, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua {
background: #00adc6;
opacity: 1;
filter: alpha(opacity=100);
}
/* line 108, ../sass/_hero.scss */
.hero-panel .hero-pane.blue {
background: #368de8;
opacity: 1;
filter: alpha(opacity=100);
-webkit-border-radius: 0 0 8px 8px;
-moz-border-radius: 0 0 8px 8px;
border-radius: 0 0 8px 8px;
}
}
@media (max-width: 767px) {
/* line 118, ../sass/_hero.scss */
.hero-pane i {
display: none;
}
}
/* line 1, ../sass/_messages.scss */
.message-item, .tab-panel-item {
margin-bottom: 20px;
position: relative;
}
/* line 5, ../sass/_messages.scss */
.message-item span.new-message, .tab-panel-item span.new-message {
font-size: 1.5rem;
font-weight: normal;
margin-right: 20px;
position: absolute;
top: -10px;
left: -10px;
z-index: 2;
}
/* line 15, ../sass/_messages.scss */
.message-item .content-panel, .tab-panel-item .content-panel {
position: relative;
z-index: 1;
}
/* line 20, ../sass/_messages.scss */
.message-item .quick-reply, .tab-panel-item .quick-reply {
width: 96%;
margin: -15px auto 15px;
padding: 30px 20px 20px 20px;
position: relative;
z-index: 0;
}
/* line 27, ../sass/_messages.scss */
.message-item .quick-reply label, .tab-panel-item .quick-reply label {
color: #909090;
}
/* line 31, ../sass/_messages.scss */
.message-item .quick-reply textarea, .tab-panel-item .quick-reply textarea {
width: 100%;
color: #353535;
background: #f8f8f8;
border: 1px solid #e4e9f0;
height: 80px;
}
/* line 39, ../sass/_messages.scss */
.message-item .quick-reply fieldset, .tab-panel-item .quick-reply fieldset {
margin-top: 10px;
}
/* line 43, ../sass/_messages.scss */
.message-item .quick-reply .message-summary, .tab-panel-item .quick-reply .message-summary {
padding-top: 0;
}
/* line 46, ../sass/_messages.scss */
.message-item .quick-reply .message-summary .date-stamp, .tab-panel-item .quick-reply .message-summary .date-stamp {
margin-top: 0;
}
/* line 53, ../sass/_messages.scss */
.message-item .delete-news a, .tab-panel-item .delete-news a {
background: #f20d2e;
color: #ffffff;
height: 72px;
}
/* line 61, ../sass/_messages.scss */
.preview-news-link-labels .label {
font-size: 14px;
line-height: 25px;
}
/* line 66, ../sass/_messages.scss */
.message-summary {
padding: 15px;
font-size: 1rem;
}
/* line 70, ../sass/_messages.scss */
.message-summary .message-title {
color: #353535;
margin: 0;
font-size: 2rem;
font-weight: bold;
max-width: 84%;
}
/* line 77, ../sass/_messages.scss */
.message-summary .message-title .label-archived {
font-size: 11px;
position: relative;
top: -2px;
}
/* line 83, ../sass/_messages.scss */
.message-summary .message-title a {
padding-right: 10px;
width: 94%;
}
/* line 88, ../sass/_messages.scss */
.message-summary .message-title .recipient {
color: #909090;
font-size: 1.5rem;
font-weight: normal;
margin-top: 3px;
clear: left;
margin-bottom: 10px;
}
/* line 98, ../sass/_messages.scss */
.message-summary .view-patient {
margin-left: 10px;
font-weight: bold;
text-decoration: underline;
}
/* line 104, ../sass/_messages.scss */
.message-summary .last-message {
clear: left;
}
/* line 106, ../sass/_messages.scss */
.message-summary .last-message h4 {
color: #368de8;
font-size: 1.5rem;
margin-bottom: 0;
}
/* line 111, ../sass/_messages.scss */
.message-summary .last-message .message-content {
color: #353535;
font-size: 1.5rem;
}
/* line 115, ../sass/_messages.scss */
.message-summary .last-message .date-stamp {
color: #909090;
font-size: 1.5rem;
}
/* line 119, ../sass/_messages.scss */
.message-summary .last-message .date-stamp ul {
margin-bottom: 0;
position: relative;
bottom: -5px;
}
/* line 124, ../sass/_messages.scss */
.message-summary .last-message .date-stamp ul .archive-link {
padding-right: 10px;
padding-left: 10px;
}
/* line 131, ../sass/_messages.scss */
.message-summary .last-message .conversation-user-picture {
margin-right: 10px;
margin-top: 5px;
max-height: 50px;
}
/* line 138, ../sass/_messages.scss */
.message-summary .date-stamp {
margin-top: 10px;
font-size: 14px;
}
/* line 143, ../sass/_messages.scss */
.message-summary .date-stamp ul li {
padding: 0 5px;
}
/* line 150, ../sass/_messages.scss */
.message-content > p {
max-height: 40px;
overflow: hidden;
}
/* line 156, ../sass/_messages.scss */
.news-date {
color: #a8a8a8;
}
/* line 160, ../sass/_messages.scss */
.news-actions {
text-align: left;
margin-bottom: 10px;
}
/* line 165, ../sass/_messages.scss */
.message-type-badge {
clear: left;
background: #00adc6;
color: #ffffff;
font-size: 1.4rem;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
padding: 5px;
float: left;
position: absolute;
top: 10px;
right: 77px;
}
@media (max-width: 767px) {
/* line 180, ../sass/_messages.scss */
.message-summary .message-title {
width: 80%;
}
/* line 183, ../sass/_messages.scss */
.message-type-badge {
position: relative;
top: 0;
right: 0;
}
}
/* line 1, ../sass/_results.scss */
.large-label {
font-size: 20px;
}
/* line 5, ../sass/_results.scss */
.results-header {
height: 120px;
overflow: hidden;
margin-bottom: 20px;
}
/* line 10, ../sass/_results.scss */
.results-header.variable {
height: auto;
}
/* line 13, ../sass/_results.scss */
.results-header .header-icon {
background: #368de8;
padding: 10px;
text-align: center;
width: 120px;
height: 100%;
margin-right: 20px;
}
/* line 20, ../sass/_results.scss */
.results-header .header-icon i {
display: block;
}
/* line 25, ../sass/_results.scss */
.results-header .panel-controls {
clear: right;
}
/* line 29, ../sass/_results.scss */
.results-header .form-row {
width: 400px;
margin-bottom: 10px;
}
/* line 33, ../sass/_results.scss */
.results-header .form-row label, .results-header .form-row select {
width: 50%;
float: left;
}
/* line 38, ../sass/_results.scss */
.results-header .form-row label {
padding-right: 20px;
text-align: right;
padding-top: 7px;
}
/* line 45, ../sass/_results.scss */
.results-header .content-inner {
padding: 10px 0 0;
}
/* line 50, ../sass/_results.scss */
.actions-row {
margin-top: 20px;
}
/* line 54, ../sass/_results.scss */
.results-container {
float: left;
width: 100%;
margin-top: 20px;
}
/* line 59, ../sass/_results.scss */
.results-container .results-list {
margin-left: -5px;
margin-right: -5px;
}
/* line 67, ../sass/_results.scss */
.result-item-container {
height: 256px;
float: left;
padding: 5px;
}
/* line 72, ../sass/_results.scss */
.result-item-container .result-item {
height: 100%;
padding: 15px;
position: relative;
}
/* line 78, ../sass/_results.scss */
.result-item-container .result-header {
width: 100%;
height: 35px;
border-bottom: 1px solid #e4e9f0;
color: #585858;
}
/* line 84, ../sass/_results.scss */
.result-item-container .result-header h4 {
font-weight: bold;
margin: 0;
line-height: 26px;
}
/* line 89, ../sass/_results.scss */
.result-item-container .result-header h4 .info-link {
font-size: 14px;
font-weight: normal;
color: #00adc6;
text-decoration: none;
}
/* line 98, ../sass/_results.scss */
.result-item-container .result-change {
margin: 0;
}
/* line 101, ../sass/_results.scss */
.result-item-container .result-change dt {
font-size: 50px;
float: left;
}
/* line 105, ../sass/_results.scss */
.result-item-container .result-change dt span {
font-size: 14px;
}
/* line 108, ../sass/_results.scss */
.result-item-container .result-change dt span.result-value {
font-size: 50px;
}
/* line 114, ../sass/_results.scss */
.result-item-container .result-change dd {
float: right;
text-align: right;
width: 30%;
padding-top: 39px;
padding-left: 24px;
}
/* line 121, ../sass/_results.scss */
.result-item-container .result-change dd i {
margin-top: 2px;
}
/* line 125, ../sass/_results.scss */
.result-item-container .result-change dd span {
clear: right;
margin-right: 5px;
}
/* line 132, ../sass/_results.scss */
.result-item-container .info-list {
width: 100%;
}
/* line 134, ../sass/_results.scss */
.result-item-container .info-list li {
width: 100%;
color: #8f8f8f;
}
/* line 140, ../sass/_results.scss */
.result-item-container .result-footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background: #f3f6f9;
border-top: 1px solid #e4e9f0;
padding: 4px 10px;
}
/* line 150, ../sass/_results.scss */
.result-item-container .result-footer a {
font-size: 18px;
color: #aebccf;
text-decoration: none;
}
/* line 158, ../sass/_results.scss */
.result-heading-title {
max-width: 190px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* line 167, ../sass/_results.scss */
.specialty-manager .add-container {
padding-top: 0;
border-top: 0;
margin-top: 0;
}
/* line 173, ../sass/_results.scss */
.specialty-manager .no-label {
padding-top: 29px;
}
/* line 180, ../sass/_results.scss */
.td-strong {
font-weight: bold;
}
/* line 183, ../sass/_results.scss */
.row-question {
margin: 10px 0 0 15px;
}
/* line 186, ../sass/_results.scss */
.question-description {
font-weight: normal;
color: #368DE8;
font-size: 14px;
}
/* line 191, ../sass/_results.scss */
.question-group-description {
font-weight: normal;
color: #2a6496;
margin-bottom: 10px;
margin-top: 10px;
font-size: 14px;
}
/* line 198, ../sass/_results.scss */
.rz-model-value {
font-weight: bold;
font-size: 20px;
line-height: 20px;
}
/* line 203, ../sass/_results.scss */
.rz-tick {
height: 1px !important;
}
/* line 206, ../sass/_results.scss */
.capitalize {
text-transform: capitalize;
}
/* line 213, ../sass/_results.scss */
.result-detail-panel .result-item-container {
width: 100%;
height: auto;
padding: 0;
}
/* line 218, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-value {
width: 50%;
float: left;
}
/* line 224, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-change dd {
float: left;
}
/* line 229, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment {
width: 50%;
padding-top: 15px;
clear: left;
}
/* line 234, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment label {
margn-bottom: 0;
}
/* line 240, ../sass/_results.scss */
.result-detail-panel .info-list {
width: 50%;
}
/* line 243, ../sass/_results.scss */
.result-detail-panel .info-list.inline {
margin-top: 20px;
}
/* line 247, ../sass/_results.scss */
.result-detail-panel .info-list li {
width: auto;
margin-right: 20px;
font-size: 18px;
}
/* line 252, ../sass/_results.scss */
.result-detail-panel .info-list li strong {
color: #585858;
}
/* line 260, ../sass/_results.scss */
.result-detail-panel .info-header {
text-align: center;
padding: 10px;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
overflow: hidden;
}
/* line 265, ../sass/_results.scss */
.result-detail-panel .info-header p {
padding: 0;
margin: 0;
color: white;
font-weight: bold;
}
/* line 273, ../sass/_results.scss */
.result-detail-panel .faux-table {
margin-top: 0;
}
/* line 277, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item, .result-detail-panel .faux-table.three-col .head-item {
width: 30.5%;
text-align: center;
}
/* line 281, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item.plot-this, .result-detail-panel .faux-table.three-col .head-item.plot-this {
width: 40px;
padding: 0;
text-align: center;
}
/* line 286, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item.plot-this i, .result-detail-panel .faux-table.three-col .head-item.plot-this i {
margin: 0 auto;
}
/* line 295, ../sass/_results.scss */
.survey-modal-header {
background-color: #F5F5F5;
}
/* line 297, ../sass/_results.scss */
.survey-modal-header .close {
opacity: 1;
padding: 10px;
}
/* line 303, ../sass/_results.scss */
.reset-button {
margin-top: 1em;
}
/* line 307, ../sass/_results.scss */
.eq-survey {
margin-top: 5em;
}
/* line 309, ../sass/_results.scss */
.eq-survey .span-radio {
display: block;
}
/* line 313, ../sass/_results.scss */
.eq-survey .slider-component ul {
padding-left: 0;
}
/* line 315, ../sass/_results.scss */
.eq-survey .slider-component ul li {
font-weight: bold;
font-size: 1.5rem;
}
/* line 320, ../sass/_results.scss */
.eq-survey .slider-component .slider-text {
margin-top: 15px;
}
/* line 324, ../sass/_results.scss */
.eq-survey__copyright {
width: 50%;
float: left;
text-align: left;
display: inline-block;
}
/* line 329, ../sass/_results.scss */
.eq-survey__copyright p {
font-weight: bolder;
font-size: 12px;
}
/* line 337, ../sass/_results.scss */
.eq-survey-footer .btn-lg, .pos-survey-footer .btn-lg {
font-size: 1.5em;
margin-left: 1em !important;
}
/* line 343, ../sass/_results.scss */
.terms-well {
margin-top: 20px;
text-align: center;
margin-bottom: 0;
}
/* line 350, ../sass/_results.scss */
.pos-survey .symptoms-intro-text {
margin-top: 2em;
}
/* line 353, ../sass/_results.scss */
.pos-survey .symptom-label-text {
margin-top: 10px;
}
/* line 357, ../sass/_results.scss */
.pos-survey .symptom-heading th {
text-align: center;
}
/* line 363, ../sass/_results.scss */
.result-graph {
float: left;
width: 100%;
padding: 5px;
}
/* line 371, ../sass/_results.scss */
.header-select > div {
height: 75px;
}
/* line 374, ../sass/_results.scss */
.header-select select {
margin-top: 20px;
}
/* line 378, ../sass/_results.scss */
.header-select .select-title {
float: right;
}
/* line 383, ../sass/_results.scss */
.historical-data {
position: relative;
}
/* line 386, ../sass/_results.scss */
.historical-data .faux-table {
max-height: 600px;
overflow-y: scroll;
}
/* line 390, ../sass/_results.scss */
.historical-data .faux-table .faux-row {
cursor: pointer;
}
/* line 393, ../sass/_results.scss */
.historical-data .faux-table .faux-row.active div.row-item {
color: #368DE8;
background: #eee;
}
/* line 400, ../sass/_results.scss */
.historical-data .overlay {
position: absolute;
pointer-events: none;
bottom: 0;
left: 15px;
right: 15px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 50px;
background-color: rgba(255, 255, 255, 0.4);
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0)), to(white));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0)', endColorstr='white', GradientType=0);
}
/* line 411, ../sass/_results.scss */
.historical-data .download-all {
margin: 10px 10px 10px 0;
}
/* line 417, ../sass/_results.scss */
.result-graph .container {
width: auto;
}
/* line 422, ../sass/_results.scss */
.admin-header {
padding-left: 210px;
padding-top: 10px;
}
/* line 426, ../sass/_results.scss */
.label-request {
margin-left: 10px;
position: relative;
top: -2px;
}
/* line 431, ../sass/_results.scss */
.user-header-picture {
max-height: 40px;
padding-right: 10px;
}
@media (max-width: 767px) {
/* line 439, ../sass/_results.scss */
.header-select > div {
height: auto;
}
/* line 443, ../sass/_results.scss */
.header-select h1 {
font-size: 30px;
}
/* line 447, ../sass/_results.scss */
.header-select select {
margin-bottom: 10px;
margin-top: 0;
}
/* line 452, ../sass/_results.scss */
.header-select .select-title {
float: left;
}
/* line 456, ../sass/_results.scss */
.results-header {
height: 185px;
}
/* line 458, ../sass/_results.scss */
.results-header .header-icon {
display: none;
}
/* line 462, ../sass/_results.scss */
.results-header .form-row {
width: 100%;
}
/* line 464, ../sass/_results.scss */
.results-header .form-row label, .results-header .form-row select {
text-align: center;
width: 100%;
}
/* line 473, ../sass/_results.scss */
.result-detail-panel .result-item-container .info-list {
width: auto;
}
/* line 476, ../sass/_results.scss */
.result-detail-panel .result-item-container .info-list.inline {
margin-top: 10px;
}
/* line 481, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-value {
float: none;
width: auto;
}
/* line 486, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment {
width: auto;
}
/* line 492, ../sass/_results.scss */
.admin-header {
padding-left: 60px;
padding-top: 0;
margin: 0;
font-size: 12px;
}
/* line 499, ../sass/_results.scss */
.back-to-admin a {
width: auto;
padding: 10px;
}
}
@media (max-width: 767px) {
/* line 506, ../sass/_results.scss */
.result-text {
display: none;
}
}
/* line 512, ../sass/_results.scss */
.select-result-type {
width: 390px;
margin-left: 10px;
}
/* line 518, ../sass/_results.scss */
.results-filter-list .feature-list-item {
float: left;
margin: 0 5px 5px 0;
}
/* line 2, ../sass/_components.scss */
.pagination.results {
display: block;
margin: 0 auto;
width: 200px;
}
/* line 9, ../sass/_components.scss */
.resize-text-buttons {
float: right;
text-align: center;
}
/* line 12, ../sass/_components.scss */
.resize-text-buttons p {
font-size: 2em;
}
/* line 15, ../sass/_components.scss */
.resize-text-buttons .btn-circle {
border: none;
color: white;
background-color: #368de8;
min-height: 30px;
min-width: 30px;
text-align: center;
padding: 6px 0;
line-height: 1.42;
width: 60px;
height: 60px;
font-size: 3em;
border-radius: 30px;
}
/* line 29, ../sass/_components.scss */
.resize-text-buttons .btn-circle__icon {
position: relative;
bottom: 7px;
}
/* line 33, ../sass/_components.scss */
.resize-text-buttons .btn-circle:nth-child(2) {
margin-right: .75em;
}
/* line 39, ../sass/_components.scss */
.step-markers {
margin: 20px 0 5px;
}
/* line 41, ../sass/_components.scss */
.step-markers li {
background: #e7ecf2;
-webkit-box-shadow: inset 0 0 0 #959595;
-moz-box-shadow: inset 0 0 0 #959595;
box-shadow: inset 0 0 0 #959595;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 10px;
width: 10px;
margin: 0 5px;
}
/* line 49, ../sass/_components.scss */
.step-markers li.active {
height: 15px;
width: 15px;
background: #368de8;
}
/* line 57, ../sass/_components.scss */
.step-title {
margin: 0 0 10px;
}
/* line 61, ../sass/_components.scss */
hr.solid {
border-top: 1px solid #eeeeee;
}
/* line 65, ../sass/_components.scss */
.article-content-small {
height: 4em;
}
/* line 70, ../sass/_components.scss */
.tab-panel-item .aside-actions {
height: 180px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
}
/* line 77, ../sass/_components.scss */
.tab-panel-item .aside-actions.dashboard {
height: 190px;
}
/* line 79, ../sass/_components.scss */
.tab-panel-item .aside-actions.dashboard li {
height: 95px;
}
/* line 84, ../sass/_components.scss */
.tab-panel-item .aside-actions li {
height: 75px;
}
/* line 87, ../sass/_components.scss */
.tab-panel-item .aside-actions li a {
height: 100%;
line-height: 15px;
padding-top: 15px;
}
/* line 95, ../sass/_components.scss */
.tab-panel-item .item-detail {
padding: 20px 20px 10px;
}
/* line 98, ../sass/_components.scss */
.tab-panel-item .item-detail .last-login {
width: 40%;
padding: 0;
}
/* line 103, ../sass/_components.scss */
.tab-panel-item .item-detail dl {
margin-bottom: 10px;
}
/* line 108, ../sass/_components.scss */
.tab-panel-item .item-detail dl dd {
color: #768696;
}
/* line 115, ../sass/_components.scss */
.user-details {
padding: 20px 20px 0;
}
/* line 118, ../sass/_components.scss */
.user-details h3 {
margin-top: 0;
}
/* line 122, ../sass/_components.scss */
.user-details h4 {
margin: 0 0 5px;
}
/* line 126, ../sass/_components.scss */
.user-details .news-actions {
margin-bottom: 10px;
}
/* line 130, ../sass/_components.scss */
.user-details .user-picture {
max-width: 50px;
margin-right: 10px;
}
/** MODALS **/
/* line 142, ../sass/_components.scss */
.modal-dialog {
width: 75%;
}
/* line 145, ../sass/_components.scss */
.modal-dialog label {
font-size: 1.5rem;
}
/* line 149, ../sass/_components.scss */
.modal-dialog .added-container {
margin-top: 30px;
}
/** GRAPHS **/
/* line 159, ../sass/_components.scss */
.graph-selector h3 {
margin: 0;
line-height: 35px;
}
/* line 166, ../sass/_components.scss */
.span-download {
margin-left: 10px;
}
/* line 170, ../sass/_components.scss */
.badge.gp {
color: #ffffff;
background: #00adc6;
font-size: 35px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 85px;
line-height: 70px;
width: 85px;
text-align: center;
font-weight: bold;
}
/* line 181, ../sass/_components.scss */
.badge.gp.small {
height: 30px;
width: 30px;
font-size: 16px;
line-height: 23px;
padding: 5px 5px;
}
/* line 192, ../sass/_components.scss */
.slider {
display: block;
position: relative;
height: 30px;
width: 100%;
}
/* line 198, ../sass/_components.scss */
.slider span.bar {
height: 50%;
z-index: 0;
background: #eee;
left: 0;
top: 25%;
cursor: pointer;
}
/* line 208, ../sass/_components.scss */
.slider span.bar.selection {
background: #0a0;
opacity: 0.5;
}
/* line 212, ../sass/_components.scss */
.slider span.bar.unselected {
width: auto;
background: #a00;
opacity: 0.5;
}
/* line 217, ../sass/_components.scss */
.slider span.pointer {
cursor: pointer;
width: 15px;
top: 0;
bottom: 0;
background-color: #368DE8;
}
/* line 228, ../sass/_components.scss */
.slider span.bubble {
font-size: 1em;
line-height: 1.4em;
font-family: sans-serif;
text-align: center;
text-shadow: none;
top: -1.3em;
cursor: pointer;
}
/* line 237, ../sass/_components.scss */
.slider span.bubble.selection, .slider span.bubble.limit {
top: 25%;
}
/* line 247, ../sass/_components.scss */
.message-preview {
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
}
/* line 254, ../sass/_components.scss */
.research-study .textarea {
height: auto;
}
/* line 259, ../sass/_components.scss */
::-ms-tooltip {
display: none;
}
@media only screen and (max-width: 1024px) {
/* line 269, ../sass/_components.scss */
.tab-panel-item .item-detail {
padding: 5px 20px;
}
/* line 273, ../sass/_components.scss */
.modal-dialog {
width: auto;
}
}
@media (max-width: 1199px) {
/* line 281, ../sass/_components.scss */
.tab-panel-item .item-detail .last-login {
padding-left: 15px;
padding-right: 15px;
}
}
@media all and (max-width: 600px) {
/* line 290, ../sass/_components.scss */
g.highcharts-input-group {
display: none;
}
}
/* line 1, ../sass/_media.scss */
.media-message {
padding: 20px;
}
/* line 5, ../sass/_media.scss */
.media-thumbnail {
position: relative;
border: 1px solid #00adc6;
border-radius: 4px;
overflow: hidden;
}
/* line 11, ../sass/_media.scss */
.media-thumbnail .media-body {
position: relative;
}
/* line 13, ../sass/_media.scss */
.media-thumbnail .media-body a {
display: block;
cursor: pointer;
text-align: center;
}
/* line 19, ../sass/_media.scss */
.media-thumbnail .media-body img {
height: 130px;
width: auto;
}
/* line 24, ../sass/_media.scss */
.media-thumbnail .media-meta {
width: 100%;
background: #f3f6f9;
border-top: 1px solid #e4e9f0;
padding: 4px 10px;
color: #aebccf;
}
/* line 31, ../sass/_media.scss */
.media-thumbnail .media-meta p {
margin: 0;
}
/* line 35, ../sass/_media.scss */
.media-thumbnail .media-meta .timestamp {
font-size: 11px;
margin-top: 10px;
}
/* line 42, ../sass/_media.scss */
.image-action {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
height: 40px;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
padding: 10px;
color: white;
}
/* line 53, ../sass/_media.scss */
.image-action i {
color: white;
font-size: 16px;
margin-right: 5px;
} | root/webapp/app/styles/patientview/stylesheets/screen.css | .pull-right {
float: right;
}
/* line 9, ../sass/_utils.scss */
.pull-left {
float: left;
}
/* line 13, ../sass/_utils.scss */
.full-width {
width: 100%;
}
/* line 17, ../sass/_utils.scss */
.content-box {
box-sizing: content-box;
}
/* line 21, ../sass/_utils.scss */
.pl {
padding-left: 15px;
}
/* line 25, ../sass/_utils.scss */
.pr {
padding-right: 15px;
}
/* line 29, ../sass/_utils.scss */
.p-min {
padding: 5px;
}
/* line 34, ../sass/_utils.scss */
.mb {
margin-bottom: 15px;
}
/* line 38, ../sass/_utils.scss */
.mb-min {
margin-bottom: 5px;
}
/* line 42, ../sass/_utils.scss */
.mb-big {
margin-bottom: 50px;
}
/* line 46, ../sass/_utils.scss */
.mt {
margin-top: 15px;
}
/* line 50, ../sass/_utils.scss */
.mt-big {
margin-top: 50px;
}
/* line 55, ../sass/_utils.scss */
.hide,
.hidden {
display: none;
}
/* line 60, ../sass/_utils.scss */
.show {
display: block;
}
/* line 65, ../sass/_utils.scss */
.invisible {
visibility: hidden;
}
/* line 70, ../sass/_utils.scss */
.text-left {
text-align: left;
}
/* line 74, ../sass/_utils.scss */
.text-right {
text-align: right;
}
/* line 78, ../sass/_utils.scss */
.text-center,
.centered {
text-align: center;
}
/* line 83, ../sass/_utils.scss */
.no-pad {
padding: 0;
}
/* line 87, ../sass/_utils.scss */
.strong {
font-weight: bold;
font-style: italic;
}
/* line 93, ../sass/_utils.scss */
.truncate {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
/* line 102, ../sass/_utils.scss */
.clearfix {
*zoom: 1;
}
/* line 14, ../sass/_mixins.scss */
.clearfix:before, .clearfix:after {
display: table;
content: "";
}
/* line 19, ../sass/_mixins.scss */
.clearfix:after {
clear: both;
}
/* line 106, ../sass/_utils.scss */
.clear-left {
clear: left;
width: 100%;
}
/* line 111, ../sass/_utils.scss */
.no-pad-top {
margin-top: 0 !important;
}
/* line 115, ../sass/_utils.scss */
ul.unstyled, ul.inline,
ol.unstyled,
ol.inline {
margin-left: 0;
padding: 0;
list-style: none;
}
/* line 125, ../sass/_utils.scss */
.inline > li {
display: inline-block;
}
/* line 128, ../sass/_utils.scss */
.inline > li:first-child {
padding-left: 0;
}
/* line 132, ../sass/_utils.scss */
.inline > li > a {
display: inline-block;
}
/* line 138, ../sass/_utils.scss */
.link {
color: #368de8;
}
/* line 140, ../sass/_utils.scss */
.link:hover {
color: #0e4177;
}
/* line 145, ../sass/_utils.scss */
.error {
color: #f20d2e;
font-weight: normal;
}
/* line 152, ../sass/_utils.scss */
.no-select-padding select.form-control {
padding: 0px;
}
/* line 158, ../sass/_utils.scss */
.segregated-box {
border: 1px solid grey;
padding: 20px 42px 20px 0px;
}
/* line 163, ../sass/_utils.scss */
.box-title {
margin-bottom: 10px;
margin-left: 20px;
font-weight: bold;
}
/* line 169, ../sass/_utils.scss */
.no-items {
font-style: italic;
font-weight: 100;
}
/* line 174, ../sass/_utils.scss */
.loading {
text-align: center;
}
/* line 178, ../sass/_utils.scss */
.align-bottom {
position: absolute;
right: 0;
bottom: 0;
text-align: right;
}
/* line 185, ../sass/_utils.scss */
.angular-multiline {
white-space: pre-wrap;
}
/** todo revise james' css **/
/* line 190, ../sass/_utils.scss */
input.ng-pristine + ul#strength {
display: none;
}
/** TODO review this, has effect across all input fields */
/* line 195, ../sass/_utils.scss */
input.ng-dirty.ng-invalid {
border: 1px solid Red;
}
/* line 199, ../sass/_utils.scss */
ul#strength {
display: inline;
list-style: none;
margin: 0;
margin-left: 15px;
padding: 0;
vertical-align: 2px;
}
/* line 207, ../sass/_utils.scss */
.point:last {
margin: 0 !important;
}
/* line 210, ../sass/_utils.scss */
.point {
background: #DDD;
border-radius: 2px;
display: inline-block;
height: 5px;
margin-right: 1px;
width: 20px;
}
/* line 218, ../sass/_utils.scss */
#footer {
position: fixed;
bottom: 5px;
}
/* line 1, ../sass/_base.scss */
html {
font-family: 'Lato', sans-serif;
-webkit-text-size-adjust: inherit !important;
}
/* line 6, ../sass/_base.scss */
body {
background: #e7ecf2;
color: #585858;
margin-top: 20px;
font-family: 'Lato', sans-serif;
}
/** Headers / headings **/
/* line 15, ../sass/_base.scss */
h3 {
font-size: 22px;
}
/* line 19, ../sass/_base.scss */
.note {
font-style: italic;
}
/* line 23, ../sass/_base.scss */
hr {
margin-top: 15px;
margin-bottom: 10px;
border-top: 1px dashed #eeeeee;
float: left;
width: 100%;
}
/* line 31, ../sass/_base.scss */
.para-thumb {
margin-right: 10px;
}
/* line 35, ../sass/_base.scss */
.left {
float: left;
}
/* line 39, ../sass/_base.scss */
.back-to-admin {
margin-bottom: 20px;
background: #fff;
}
/* line 42, ../sass/_base.scss */
.back-to-admin a {
padding: 10px 20px;
width: 200px;
}
/* line 46, ../sass/_base.scss */
.back-to-admin a i {
margin-right: 10px;
}
/* line 50, ../sass/_base.scss */
.back-to-admin a:hover {
color: white;
cursor: pointer;
}
/* line 57, ../sass/_base.scss */
.back-to-results {
margin-right: 20px;
}
/* line 61, ../sass/_base.scss */
.page-content {
padding-bottom: 60px;
}
/* line 64, ../sass/_base.scss */
.page-content.home {
margin-top: 20px;
}
/* line 69, ../sass/_base.scss */
.user-picture {
max-width: 150px;
}
/* line 72, ../sass/_base.scss */
.diagnosis-staff {
margin-bottom: 10px;
}
/* line 76, ../sass/_base.scss */
.content-panel.overflow {
overflow: visible !important;
}
/* line 80, ../sass/_base.scss */
.page-head {
margin-bottom: 20px;
}
/* line 82, ../sass/_base.scss */
.page-head .badge {
margin: 20px 20px 0;
}
/* line 89, ../sass/_base.scss */
.content-panel.gp-login {
position: relative;
}
/* line 92, ../sass/_base.scss */
.content-panel.gp-login .content-inner {
padding: 0 50px 50px;
}
/* line 96, ../sass/_base.scss */
.content-panel.gp-login table {
margin-bottom: 50px;
}
/* line 99, ../sass/_base.scss */
.content-panel.gp-login h4 {
margin: 30px 0 20px;
}
/* line 103, ../sass/_base.scss */
.content-panel.gp-login .for {
margin-top: -20px;
font-size: 16px;
}
/* line 107, ../sass/_base.scss */
.content-panel.gp-login .panel-footer {
padding: 20px 0;
}
/* line 110, ../sass/_base.scss */
.content-panel.gp-login .panel-footer p {
margin: 10px 20px;
}
/* line 115, ../sass/_base.scss */
.content-panel.gp-login .actions-footer {
margin-top: 20px;
}
/* line 118, ../sass/_base.scss */
.content-panel.gp-login .actions-footer .note {
margin-top: 2px;
}
/* line 126, ../sass/_base.scss */
.success-badge {
position: absolute;
right: 20px;
top: 20px;
}
/* line 131, ../sass/_base.scss */
.success-badge p {
float: right;
margin-right: 110px;
margin-top: 30px;
font-size: 18px;
font-weight: bold;
}
/* line 140, ../sass/_base.scss */
.success-container {
height: 150px;
position: relative;
width: 100%;
}
/* line 145, ../sass/_base.scss */
.success-container .sweet-alert {
position: absolute;
left: calc(50% - 60px);
top: 0;
right: auto;
margin: auto;
padding: 17px 17px 0;
}
/* line 153, ../sass/_base.scss */
.success-container .sweet-alert h2 {
margin: 0 -15px;
}
/* line 159, ../sass/_base.scss */
.row-question {
margin: 2px 0 20px 0;
}
/* line 163, ../sass/_base.scss */
.panel-header {
padding: 10px;
margin-bottom: 10px;
}
/* line 167, ../sass/_base.scss */
.panel-header h3 {
margin: 0;
line-height: 45px;
}
/* line 171, ../sass/_base.scss */
.panel-header h3 .badge {
margin-right: 10px;
}
/* line 176, ../sass/_base.scss */
.panel-header .badge {
height: 45px;
width: 45px;
}
/* line 183, ../sass/_base.scss */
.subnav-row .content-panel {
margin-top: 10px;
}
/* line 188, ../sass/_base.scss */
.content-area.whatcan p {
font-size: 17px;
}
/* line 192, ../sass/_base.scss */
.featured-news-heading {
margin: 5px 0;
}
/* line 194, ../sass/_base.scss */
.featured-news-heading a {
margin-right: 20px;
}
/* line 198, ../sass/_base.scss */
.featured-news-heading .news-date {
font-size: 14px;
}
/* line 203, ../sass/_base.scss */
.content-panel {
background: #ffffff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0px 1px 1px #bfcdde;
-moz-box-shadow: 0px 1px 1px #bfcdde;
box-shadow: 0px 1px 1px #bfcdde;
overflow: hidden;
}
/* line 209, ../sass/_base.scss */
.content-panel.about {
padding: 15px;
font-size: 17px;
margin: 0 0 10px 0;
}
/* line 214, ../sass/_base.scss */
.content-panel.about h4 {
font-weight: bold;
}
/* line 219, ../sass/_base.scss */
.content-panel.navbar-default {
margin-bottom: 0;
}
/* line 223, ../sass/_base.scss */
.content-panel.chart-container {
margin-bottom: 20px;
}
/* line 226, ../sass/_base.scss */
.content-panel.chart-container .panel-intro h3 {
margin: 0;
}
/* line 232, ../sass/_base.scss */
.content-panel.lowlight {
background: #f3f6f9;
}
/* line 236, ../sass/_base.scss */
.content-panel.user-settings {
margin-bottom: 20px;
}
/* line 239, ../sass/_base.scss */
.content-panel.user-settings label.control-label {
text-align: left;
}
/* line 245, ../sass/_base.scss */
.content-panel.multi-search > div {
margin: 10px 0 15px;
}
/* line 251, ../sass/_base.scss */
.content-panel .search-intro i {
display: block;
margin: 0 auto;
}
/* line 257, ../sass/_base.scss */
.content-panel .content-inner {
padding: 10px;
}
/* line 261, ../sass/_base.scss */
.content-panel .intro-block {
padding: 15px;
}
/* line 265, ../sass/_base.scss */
.content-panel .panel-footer, .content-panel .panel-intro {
background: #f3f6f9;
width: 100%;
padding: 0 0 15px 0;
}
/* line 270, ../sass/_base.scss */
.content-panel .panel-footer {
border-top: 1px solid #e4e9f0;
}
/* line 274, ../sass/_base.scss */
.content-panel .panel-intro {
padding: 10px;
}
/* line 277, ../sass/_base.scss */
.content-panel .panel-intro h3 {
padding-bottom: 5px;
margin: 0;
}
/* line 282, ../sass/_base.scss */
.content-panel .panel-intro p {
margin: 0;
}
/* line 286, ../sass/_base.scss */
.content-panel .panel-intro img {
margin-right: 5px;
}
/* line 290, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-heading {
font-size: 12px;
margin-bottom: 0px;
margin-top: 0px;
}
/* line 297, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-heading a {
font-size: 15px;
}
/* line 301, ../sass/_base.scss */
.content-panel .panel-intro .featured-news-content {
color: grey;
margin-bottom: 5px;
}
/* line 309, ../sass/_base.scss */
.health-surveys > .row {
position: relative;
}
/* line 312, ../sass/_base.scss */
.health-surveys .list-date {
color: #959595;
}
/* line 316, ../sass/_base.scss */
.health-surveys .opt-epro-logo {
width: 140px;
margin-bottom: 1em;
}
/* line 322, ../sass/_base.scss */
.chart-content-panel {
box-shadow: none;
padding: 0 10px 10px 10px;
}
/* line 328, ../sass/_base.scss */
.panel-heading h3 {
margin: 0;
font-weight: bold;
}
/* line 334, ../sass/_base.scss */
.panel-info {
margin: 10px 0 10px 10px;
}
/* line 339, ../sass/_base.scss */
.patient-details .content-panel {
margin-bottom: 20px;
}
/* line 344, ../sass/_base.scss */
.patient-details .panel-body h4 {
margin-top: 0px;
margin-bottom: 0px;
}
/* line 348, ../sass/_base.scss */
.patient-details .panel-body h4.survey {
margin-bottom: 5px;
}
/* line 352, ../sass/_base.scss */
.patient-details .panel-body h5, .patient-details .panel-body h6 {
margin-top: 20px;
margin-bottom: 5px;
}
/* line 358, ../sass/_base.scss */
.patient-details .panel-body .contact-points h4 {
margin-top: 20px;
margin-bottom: 5px;
}
/* line 366, ../sass/_base.scss */
.details-filter {
width: 100%;
margin-bottom: 5px;
}
/* line 370, ../sass/_base.scss */
.details-filter .checkbox-label {
margin: 0 10px 0 5px;
}
/* line 376, ../sass/_base.scss */
.btn-group-switcher.btn-group .btn + .btn {
margin-left: 0;
}
/* line 380, ../sass/_base.scss */
.btn-group-switcher a {
background: #f5f5f5;
color: #585858;
}
/* line 384, ../sass/_base.scss */
.btn-group-switcher a.btn {
margin-left: 0;
}
/* line 386, ../sass/_base.scss */
.btn-group-switcher a.btn:hover {
color: #585858;
}
/* line 391, ../sass/_base.scss */
.btn-group-switcher a.active {
background: #00adc6;
color: #ffffff;
}
/* line 395, ../sass/_base.scss */
.btn-group-switcher a.active:hover {
color: #ffffff;
}
/* line 401, ../sass/_base.scss */
.btn-group-switcher .group-image {
width: 30px;
margin-right: 5px;
}
/* line 407, ../sass/_base.scss */
.enter-symptoms {
margin-left: 10px;
}
/* line 412, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a {
border: 1px solid #dddddd;
}
/* line 415, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a.active {
background: white;
color: #368de8;
border: 1px solid #dddddd;
box-shadow: none;
font-weight: bold;
}
/* line 423, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher a:first-of-type {
border-right: 0;
}
/* line 428, ../sass/_base.scss */
.specialty-switcher .btn-group-switcher div, .specialty-switcher .btn-group-switcher div:hover {
background: #BEDAF7;
color: #585858;
}
/* line 434, ../sass/_base.scss */
.btn.btn-append {
color: #585858;
}
/* line 436, ../sass/_base.scss */
.btn.btn-append:hover {
color: #585858;
}
/* line 441, ../sass/_base.scss */
.btn-wide {
width: 85px;
}
/* line 446, ../sass/_base.scss */
.btn .icon-back-to {
position: relative;
top: 3px;
}
/* line 452, ../sass/_base.scss */
.edit-code-input {
margin-bottom: 10px;
}
/* line 456, ../sass/_base.scss */
.added-container {
min-height: 120px;
}
/* line 459, ../sass/_base.scss */
.added-container .identifier-list-item {
margin-bottom: 10px;
}
/* line 461, ../sass/_base.scss */
.added-container .identifier-list-item > .btn-group {
margin-right: 15px;
}
/* line 467, ../sass/_base.scss */
.add-container {
margin-top: 10px;
padding-top: 10px;
border-top: 1px dashed #e2e2e2;
}
/* line 473, ../sass/_base.scss */
.add-container .add-feature button {
margin: 0 0 0 10px;
}
/* line 480, ../sass/_base.scss */
.identifier-add-container input[type="text"] {
width: 40%;
float: left;
margin-right: 10px;
}
/* line 485, ../sass/_base.scss */
.identifier-add-container select {
width: 25%;
}
/* line 490, ../sass/_base.scss */
.added-specialty {
margin-bottom: 5px;
}
/* line 494, ../sass/_base.scss */
.notification-dialog {
position: absolute;
width: 300px;
height: auto;
bottom: 10%;
right: 25%;
left: 50%;
margin-left: -150px;
border: 1px solid #9dd487;
padding: 10px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
/* line 506, ../sass/_base.scss */
.notification-dialog h3 {
margin-top: 0;
}
/* line 511, ../sass/_base.scss */
.help-text {
margin-top: 20px;
}
/* line 515, ../sass/_base.scss */
.print-success-message {
margin-left: 20px;
}
/* line 520, ../sass/_base.scss */
.row aside > h3 {
margin-top: 0;
}
/* line 526, ../sass/_base.scss */
.user-info .panel-footer {
text-align: center;
padding: 10px;
}
/* line 532, ../sass/_base.scss */
.add-form {
margin-top: 10px;
}
/* line 537, ../sass/_base.scss */
.homepage-cols .news-container {
margin-top: 0;
}
/* line 543, ../sass/_base.scss */
.mobile-app img.app-store {
height: 44px;
margin-bottom: 10px;
}
/* line 548, ../sass/_base.scss */
.mobile-app .app-image {
margin-right: 10px;
}
/* line 554, ../sass/_base.scss */
.reviews .review {
border-bottom: 1px solid #f8f8f8;
}
/* line 557, ../sass/_base.scss */
.reviews .review .rating {
margin-top: -5px;
}
/* line 559, ../sass/_base.scss */
.reviews .review .rating li {
padding-right: 0;
}
/* line 564, ../sass/_base.scss */
.reviews .review i {
color: #f0ad4e;
font-size: 12px;
}
/* line 569, ../sass/_base.scss */
.reviews .review h5 {
font-weight: 700;
}
/* line 574, ../sass/_base.scss */
.reviews .social-link {
text-align: center;
}
/* line 576, ../sass/_base.scss */
.reviews .social-link i {
color: #368de8;
}
/* line 583, ../sass/_base.scss */
.reviews ul.rating.stars-5 * {
display: inline-block;
}
/* line 589, ../sass/_base.scss */
.reviews ul.rating.stars-4 * {
display: inline-block;
}
/* line 593, ../sass/_base.scss */
.reviews ul.rating.stars-4 .five {
display: none !important;
}
/* line 599, ../sass/_base.scss */
.reviews ul.rating.stars-3 * {
display: inline-block;
}
/* line 603, ../sass/_base.scss */
.reviews ul.rating.stars-3 .five, .reviews ul.rating.stars-3 .four {
display: none !important;
}
/* line 609, ../sass/_base.scss */
.reviews ul.rating.stars-2 * {
display: inline-block;
}
/* line 613, ../sass/_base.scss */
.reviews ul.rating.stars-2 .five, .reviews ul.rating.stars-2 .four, .reviews ul.rating.stars-2 .three {
display: none !important;
}
/* line 619, ../sass/_base.scss */
.reviews ul.rating.stars-1 * {
display: inline-block;
}
/* line 623, ../sass/_base.scss */
.reviews ul.rating.stars-1 .five, .reviews ul.rating.stars-1 .four, .reviews ul.rating.stars-1 .three, .reviews ul.rating.stars-1 .two {
display: none !important;
}
/* line 631, ../sass/_base.scss */
.user-details-header {
margin-bottom: 10px;
}
/** lists **/
/* line 638, ../sass/_base.scss */
ul .news-item {
margin-bottom: 5px;
}
/* line 644, ../sass/_base.scss */
.table-filter-container .feature-list {
margin-top: 10px;
}
/* line 646, ../sass/_base.scss */
.table-filter-container .feature-list li {
height: auto;
}
/* line 648, ../sass/_base.scss */
.table-filter-container .feature-list li .feature-list-delete {
padding: 4px;
}
/* line 655, ../sass/_base.scss */
.name-action-list {
margin-top: 10px;
}
/* line 657, ../sass/_base.scss */
.name-action-list li {
margin: 0 10px 10px 0;
height: auto;
float: left;
}
/* line 662, ../sass/_base.scss */
.name-action-list li > div {
color: #585858;
height: 100%;
padding: 4px;
text-align: left;
}
/* line 668, ../sass/_base.scss */
.name-action-list li div.feature-list-name {
background: #e0e0e0;
min-width: 100px;
line-height: 25px;
border-right: 1px solid #cfcfcf;
}
/* line 674, ../sass/_base.scss */
.name-action-list li .feature-list-delete {
background: #e0e0e0;
min-width: 35px;
text-align: center;
padding: 3px 0 4px 0;
line-height: 1.5em;
}
/* line 681, ../sass/_base.scss */
.name-action-list li .feature-list-delete:hover {
background: #f20d2e;
}
/* line 684, ../sass/_base.scss */
.name-action-list li .feature-list-delete:hover a {
color: #ffffff;
margin-top: 4px;
}
/* line 690, ../sass/_base.scss */
.name-action-list li .feature-list-delete a {
color: #afafaf;
margin-top: 4px;
width: 100%;
height: 100%;
display: block;
}
/* line 702, ../sass/_base.scss */
.asserter {
font-weight: normal;
}
/* line 706, ../sass/_base.scss */
.prepend {
height: 100%;
}
/* line 710, ../sass/_base.scss */
.badge {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 30px;
width: 30px;
font-size: 1.25rem;
text-transform: uppercase;
color: #ffffff;
font-weight: normal;
text-align: center;
line-height: 25px;
}
/* line 721, ../sass/_base.scss */
.badge.primary {
background: #368de8;
}
/* line 724, ../sass/_base.scss */
.badge.aqua {
background: #00adc6;
}
/* line 727, ../sass/_base.scss */
.badge.aquamarine {
background: #00aa9e;
}
/* line 730, ../sass/_base.scss */
.badge.white {
background: #ffffff;
}
/* line 732, ../sass/_base.scss */
.badge.white i {
background-size: 100%;
}
/* line 737, ../sass/_base.scss */
.badge i {
display: block;
margin: 5px auto;
}
/* line 742, ../sass/_base.scss */
.badge.warning {
background-color: #ffbc3c;
}
/* line 745, ../sass/_base.scss */
.badge.completed {
background-color: #3dcd4e;
}
/* line 748, ../sass/_base.scss */
.badge.ignored {
background-color: #f20d2e;
}
/* line 752, ../sass/_base.scss */
.badge.icon-large {
height: 50px;
width: 50px;
padding-top: 5px;
line-height: 40px;
}
/* line 758, ../sass/_base.scss */
.badge.icon-large img {
width: 90%;
}
/* line 764, ../sass/_base.scss */
.badge-small {
height: 18px;
width: 18px;
line-height: 12px;
padding: 3px;
}
/* line 771, ../sass/_base.scss */
.badge-tiny {
height: 12px;
width: 12px;
line-height: 8px;
padding: 3px;
font-size: 0.75rem;
}
/** buttons **/
/* line 781, ../sass/_base.scss */
.btn {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #ffffff;
font-size: 1.4rem;
min-height: 40px;
min-width: 34px;
line-height: 26px;
}
/* line 789, ../sass/_base.scss */
.btn:hover {
color: #ffffff;
}
/* line 798, ../sass/_base.scss */
.social-link {
margin-bottom: 10px;
color: #585858;
font-size: 16px;
display: block;
}
/* line 804, ../sass/_base.scss */
.social-link h3 {
line-height: 43px;
margin: 0;
}
/* line 809, ../sass/_base.scss */
.social-link:hover {
text-decoration: none;
}
/* line 813, ../sass/_base.scss */
.social-link i {
margin-right: 10px;
}
/* line 819, ../sass/_base.scss */
.export-container button {
margin-top: 20px;
}
/* line 823, ../sass/_base.scss */
.button-dropdown-group .dropdown > button {
height: 34px;
}
/* line 827, ../sass/_base.scss */
.button-dropdown-group button {
border-right: 1px solid #1f6bba;
min-height: 34px;
}
/* line 831, ../sass/_base.scss */
.button-dropdown-group button span {
margin: 1px 0 0 8px;
}
/* line 837, ../sass/_base.scss */
.button-dropdown-group button span, .btn-group button span {
margin-left: 4px;
}
/* line 842, ../sass/_base.scss */
.btn-grey {
background-color: #7a7a7a;
}
/** generic color styles **/
/* line 848, ../sass/_base.scss */
.blue {
background-color: #368de8;
color: #ffffff;
}
/* line 852, ../sass/_base.scss */
.blue:active, .blue:focus {
color: #ffffff;
outline: 0;
}
/* line 857, ../sass/_base.scss */
.aquamarine {
background-color: #00aa9e;
}
/* line 860, ../sass/_base.scss */
.negative {
background-color: #f20d2e;
}
/* line 863, ../sass/_base.scss */
.white {
background-color: #ffffff;
color: #000000;
}
/* line 867, ../sass/_base.scss */
.white:active, .white:focus, .white:hover {
color: #000000;
outline: 0;
}
/* text classes */
/* line 875, ../sass/_base.scss */
.light-text {
color: #768696;
}
/* line 878, ../sass/_base.scss */
.sub-text {
font-size: 0.85rem;
}
/* line 882, ../sass/_base.scss */
.blue-text {
color: #368de8;
}
/* line 887, ../sass/_base.scss */
.modal-dialog.modal-sm {
width: 45%;
}
/* line 893, ../sass/_base.scss */
.stats-modal .modal-dialog {
margin: 165px auto;
}
/* line 899, ../sass/_base.scss */
.survey-modal .row-question {
margin: 2px 0 20px 0;
}
/* line 902, ../sass/_base.scss */
.survey-modal .question-text {
/*font-weight: bold;*/
color: black;
margin-bottom: 10px;
}
/* line 907, ../sass/_base.scss */
.survey-modal .question-description {
font-weight: normal;
color: #2a6496;
}
/* line 911, ../sass/_base.scss */
.survey-modal .question-group-description {
font-weight: normal;
color: #2a6496;
margin-bottom: 20px;
}
/* line 916, ../sass/_base.scss */
.survey-modal .question-group-description br {
margin-bottom: 10px;
}
/* line 919, ../sass/_base.scss */
.survey-modal .pull-right {
padding: 0;
}
/* line 922, ../sass/_base.scss */
.survey-modal .span-radio {
margin-right: 10px;
}
/* line 925, ../sass/_base.scss */
.survey-modal .div-question-group {
margin-bottom: 20px;
}
/* line 928, ../sass/_base.scss */
.survey-modal .help-link {
margin-left: 5px;
}
/* line 932, ../sass/_base.scss */
.survey-modal input[type="radio"], .survey-modal input[type="range"], .survey-modal .radio-label {
cursor: pointer;
}
/* line 936, ../sass/_base.scss */
.survey-modal .modal-dialog label {
font-weight: normal;
font-size: 1em;
}
/* line 941, ../sass/_base.scss */
.survey-modal .numeric-text {
width: 50%;
}
/* line 945, ../sass/_base.scss */
.survey-modal .required-question {
font-weight: normal;
color: red;
}
/* line 950, ../sass/_base.scss */
.survey-modal .datetime {
font-weight: bold;
padding-top: 0.5em;
}
/** TODO add this in more appropriate place **/
/* line 958, ../sass/_base.scss */
.showHideText {
font-size: 16px;
line-height: 16px;
height: 35px;
overflow: hidden;
}
/* line 964, ../sass/_base.scss */
.show {
overflow: visible;
height: auto;
min-height: 35px;
}
/* line 970, ../sass/_base.scss */
.showHideLink {
font-size: 16px;
}
/* line 974, ../sass/_base.scss */
.alert-block {
margin-top: 20px;
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* line 985, ../sass/_base.scss */
.alert-block h3 {
color: #c09853;
}
/** temporary icons stuff **/
/* line 992, ../sass/_base.scss */
.hero-icon {
display: block;
margin: 0 auto;
}
/* line 997, ../sass/_base.scss */
i.icon-hero-manage {
background: url("../../../images/icons/hero-manage.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1003, ../sass/_base.scss */
i.icon-hero-monitor {
background: url("../../../images/icons/hero-monitor.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1009, ../sass/_base.scss */
i.icon-hero-make {
background: url("../../../images/icons/hero-make.png") 0 0 no-repeat;
height: 145px;
width: 145px;
}
/* line 1015, ../sass/_base.scss */
i.icon-search-black {
background: url("../../../images/icons/search-black.png") 0 0 no-repeat;
height: 36px;
width: 36px;
}
/* line 1021, ../sass/_base.scss */
i.icon-account {
background: url("../../../images/icons/account.png") 0 0 no-repeat;
height: 32px;
width: 32px;
}
/* line 1027, ../sass/_base.scss */
i.icon-organisations {
background: url("../../../images/icons/organisations.png") 0 0 no-repeat;
height: 22px;
width: 24px;
margin-top: 7px;
}
/* line 1034, ../sass/_base.scss */
i.icon-facebook {
background: url("../../../images/icons/facebook.png") 0 0 no-repeat;
height: 39px;
width: 39px;
margin-top: 3px;
display: block;
}
/* line 1042, ../sass/_base.scss */
i.icon-news {
background: url("../../../images/icons/news.png") 0 0 no-repeat;
height: 22px;
width: 24px;
margin-top: 7px;
}
/* line 1049, ../sass/_base.scss */
i.icon-settings {
background: url("../../../images/icons/settings.png") 0 0 no-repeat;
height: 22px;
width: 24px;
display: block;
margin-top: 9px;
}
/* line 1057, ../sass/_base.scss */
i.icon-patients {
background: url("../../../images/icons/patients.png") 0 0 no-repeat;
height: 27px;
width: 17px;
}
/* line 1063, ../sass/_base.scss */
i.icon-join {
background: url("../../../images/icons/join.png") 0 0 no-repeat;
height: 24px;
width: 22px;
}
/* line 1069, ../sass/_base.scss */
i.icon-reply {
background: url("../../../images/icons/reply-icon.png") 0 0 no-repeat;
height: 15px;
width: 16px;
}
/* line 1075, ../sass/_base.scss */
i.icon-sort {
background: url("../../../images/icons/sort.png") 0 0 no-repeat;
height: 25px;
width: 20px;
}
/* line 1081, ../sass/_base.scss */
i.icon-join-large {
background: url("../../../images/icons/join-large.png") 0 0 no-repeat;
height: 37px;
width: 33px;
display: block;
}
/* line 1088, ../sass/_base.scss */
i.icon-login-large {
background: url("../../../images/icons/login-large.png") 0 0 no-repeat;
height: 37px;
width: 33px;
display: block;
}
/* line 1095, ../sass/_base.scss */
i.icon-help {
background: url("../../../images/icons/help.png") 0 0 no-repeat;
height: 22px;
width: 24px;
}
/* line 1101, ../sass/_base.scss */
i.icon-issues {
background: url("../../../images/icons/issues.png") 0 0 no-repeat;
height: 22px;
width: 24px;
}
/* line 1107, ../sass/_base.scss */
i.icon-messages {
background: url("../../../images/icons/messages.png") 0 0 no-repeat;
height: 22px;
width: 37px;
}
/* line 1113, ../sass/_base.scss */
i.icon-results-large {
background: url("../../../images/icons/results-large.png") 0 0 no-repeat;
height: 100px;
width: 100px;
}
/* line 1119, ../sass/_base.scss */
i.icon-circle-arrow {
background: url("../../../images/icons/circle-arrow.png") 0 0 no-repeat;
height: 30px;
width: 30px;
}
/* line 1125, ../sass/_base.scss */
i.icon-result-info {
background: url("../../../images/icons/result-info.png") 0 0 no-repeat;
height: 27px;
width: 27px;
}
/* line 1131, ../sass/_base.scss */
i.icon-result-down {
background: url("../../../images/icons/result-down.png") 0 0 no-repeat;
height: 35px;
width: 17px;
display: block;
}
/* line 1138, ../sass/_base.scss */
i.icon-result-up {
background: url("../../../images/icons/result-up.png") 0 0 no-repeat;
height: 35px;
width: 17px;
display: block;
}
/* line 1145, ../sass/_base.scss */
i.icon-plot-this {
background: url("../../../images/icons/plot-this.png") 0 0 no-repeat;
height: 30px;
width: 30px;
display: block;
}
/* line 1152, ../sass/_base.scss */
i.icon-back-to {
background: url("../../../images/icons/back-to.png") 0 0 no-repeat;
height: 22px;
width: 23px;
display: block;
margin-right: 10px;
}
/* line 1160, ../sass/_base.scss */
i.icon-brand-pulse {
background: url("../../../images/icons/brand-pulse.png") 0 0 no-repeat;
height: 30px;
width: 30px;
display: block;
margin-right: 5px;
}
/* line 1168, ../sass/_base.scss */
i.icon-forward-to {
background: url("../../../images/icons/forward-to.png") 0 0 no-repeat;
height: 22px;
width: 23px;
display: block;
margin-left: 10px;
position: relative;
top: 4px;
}
@media only screen and (max-width: 1024px) {
/* line 1182, ../sass/_base.scss */
.content-panel {
margin-bottom: 20px;
}
/* line 1185, ../sass/_base.scss */
.content-panel.panel-header {
margin-bottom: 5px;
}
}
@media only screen and (max-width: 1024px) {
/* line 1195, ../sass/_base.scss */
.results-modal .modal-dialog.modal-sm {
width: 95%;
margin: 5% auto;
}
}
/* line 1, ../sass/_nav.scss */
.navbar-default {
border: none;
height: 70px;
}
/* line 5, ../sass/_nav.scss */
.navbar-default .nav-public {
height: 70px;
}
/* line 8, ../sass/_nav.scss */
.navbar-default .nav-public .public {
height: 100%;
}
/* line 10, ../sass/_nav.scss */
.navbar-default .nav-public .public li {
height: 100%;
}
/* line 12, ../sass/_nav.scss */
.navbar-default .nav-public .public li a {
line-height: 37px;
color: #ffffff;
}
/* line 15, ../sass/_nav.scss */
.navbar-default .nav-public .public li a i {
margin-right: 10px;
}
/* line 20, ../sass/_nav.scss */
.navbar-default .nav-public .public li.join {
background: #00adc6;
}
/* line 24, ../sass/_nav.scss */
.navbar-default .nav-public .public li.login {
background: #368de8;
}
/* line 31, ../sass/_nav.scss */
.navbar-default .nav-account {
height: 70px;
background: #00adc6;
margin-right: -15px;
padding: 16px 10px 10px;
}
/* line 37, ../sass/_nav.scss */
.navbar-default .nav-account i {
margin-right: 5px;
}
/* line 41, ../sass/_nav.scss */
.navbar-default .nav-account h4 {
color: #ffffff;
font-weight: normal;
font-size: 1.75rem;
margin: 0;
width: 300px;
}
/* line 51, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a {
text-decoration: underline;
color: #deebed;
font-size: 1.25rem;
font-weight: normal;
padding: 0 5px;
}
/* line 58, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a:hover, .navbar-default .nav-account .navbar-nav li a:active {
color: #ffffff;
}
/* line 62, ../sass/_nav.scss */
.navbar-default .nav-account .navbar-nav li a:first-child {
padding-left: 0;
}
/* line 70, ../sass/_nav.scss */
.navbar-default .brand {
height: 41px;
}
/* line 74, ../sass/_nav.scss */
.navbar-default .sub-brand {
height: 30px;
margin: 7px 0 0 20px;
}
/* line 81, ../sass/_nav.scss */
.secondary-nav li {
margin-left: 0;
}
/* line 85, ../sass/_nav.scss */
.secondary-nav li:first-child a {
border-left: none;
}
/* line 90, ../sass/_nav.scss */
.secondary-nav li.active {
position: relative;
}
/* line 92, ../sass/_nav.scss */
.secondary-nav li.active a {
color: #f8f8f8;
background: #368de8;
}
/* line 96, ../sass/_nav.scss */
.secondary-nav li.active a:hover, .secondary-nav li.active a:focus {
color: #f8f8f8;
background: #368de8;
}
/* line 102, ../sass/_nav.scss */
.secondary-nav li.active:after {
height: 20px;
width: 100%;
display: block;
background: url(../../../images/icons/nav-active.png) 50% 0 no-repeat;
position: absolute;
bottom: -20px;
left: 0;
content: "";
}
/* line 114, ../sass/_nav.scss */
.secondary-nav li a {
border-left: 1px solid #e4e9f0;
color: #959595;
font-size: 1.5rem;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
/* line 120, ../sass/_nav.scss */
.secondary-nav li a:hover {
background: #f8f8f8;
color: #368de8;
}
/* line 128, ../sass/_nav.scss */
.nav-pills.secondary-nav li {
margin-left: 0;
}
/* line 132, ../sass/_nav.scss */
html, body {
height: 100%;
}
/* line 135, ../sass/_nav.scss */
html > .container, body > .container {
min-height: 100%;
margin-bottom: -106px;
position: relative;
}
/* line 141, ../sass/_nav.scss */
html .clearFooter, body .clearFooter {
height: 106px;
clear: both;
}
/* line 148, ../sass/_nav.scss */
.footer {
margin-top: 40px;
background: #ffffff;
height: 106px;
position: relative;
overflow: hidden;
}
/* line 155, ../sass/_nav.scss */
.footer .brand {
float: left;
line-height: 55px;
padding: 15px;
}
/* line 160, ../sass/_nav.scss */
.footer .brand img {
height: 30px;
}
/* line 166, ../sass/_nav.scss */
.footer .partner-info > h5 {
width: 100%;
text-align: center;
float: left;
}
/* line 173, ../sass/_nav.scss */
.footer .partner-links {
margin: 0 auto;
padding: 15px 35px;
}
/* line 177, ../sass/_nav.scss */
.footer .partner-links a {
margin: 0 10px;
float: left;
}
/* line 181, ../sass/_nav.scss */
.footer .partner-links a.other-partners {
clear: left;
color: #959595;
width: 100%;
text-decoration: underline;
}
/* line 190, ../sass/_nav.scss */
.footer .legal-links {
padding-top: 15px;
}
/* line 192, ../sass/_nav.scss */
.footer .legal-links li {
line-height: 40px;
padding: 0 10px;
font-size: 1.25rem;
color: #959595;
}
/* line 198, ../sass/_nav.scss */
.footer .legal-links li a {
font-size: 1.25rem;
color: #959595;
}
/* line 202, ../sass/_nav.scss */
.footer .legal-links li a:hover {
color: #368de8;
}
/* line 210, ../sass/_nav.scss */
.footer .legal-links.partner-list li {
line-height: 5px;
}
/* line 216, ../sass/_nav.scss */
.footer p {
font-size: 1.75rem;
color: #959595;
position: absolute;
left: 25%;
top: 25%;
}
/* line 225, ../sass/_nav.scss */
.nav-utils {
height: 70px;
}
/* line 227, ../sass/_nav.scss */
.nav-utils li {
width: 70px;
margin-left: -2px;
height: 100%;
background: #f8f8f8;
border-left: 1px solid #e4e9f0;
}
/* line 233, ../sass/_nav.scss */
.nav-utils li a {
height: 100%;
width: 100%;
text-align: center;
font-size: 1rem;
color: #959595;
text-decoration: none;
}
/* line 241, ../sass/_nav.scss */
.nav-utils li a i {
display: block;
margin: 20px auto 0;
}
/* line 250, ../sass/_nav.scss */
.subnav-row .content-panel {
overflow: visible;
}
/* line 255, ../sass/_nav.scss */
.nav-tabs li {
cursor: pointer;
}
/* line 259, ../sass/_nav.scss */
.nav-tabs li.active a {
color: #368de8;
font-weight: bold;
}
/* line 263, ../sass/_nav.scss */
.nav-tabs li.active a:hover {
color: #368de8;
font-weight: bold;
}
/* line 270, ../sass/_nav.scss */
.nav-tabs li a {
border: 1px solid #dddddd;
background: #f5f5f5;
color: #585858;
}
/* line 275, ../sass/_nav.scss */
.nav-tabs li a:hover {
border: 1px solid #dddddd;
color: #368de8;
background: #f5f5f5;
}
/* line 283, ../sass/_nav.scss */
.nav-tabs {
border-bottom: none;
}
/* line 286, ../sass/_nav.scss */
.image-colour-key-red {
width: 15px;
height: 15px;
border: none;
background-color: red;
float: left;
margin-right: 7px;
position: relative;
top: 2px;
}
@media only screen and (max-width: 1023px) {
/* line 301, ../sass/_nav.scss */
.navbar-header {
position: relative;
}
/* line 307, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li a {
text-align: right;
}
/* line 311, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link {
position: absolute;
height: 40px;
width: 40px;
right: 70px;
top: 10px;
}
/* line 318, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link a {
height: 40px;
width: 40px;
display: block;
text-align: center;
}
/* line 324, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link a i {
display: block;
}
/* line 338, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav .nav-public .public {
height: 70px;
margin: 0;
}
/* line 341, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav .nav-public .public li {
height: 100%;
float: left;
padding-top: 5px;
}
/* line 352, ../sass/_nav.scss */
.navbar-brand .brand {
height: auto;
}
/* line 355, ../sass/_nav.scss */
.navbar-brand img {
height: 28px;
width: 160px;
}
/* line 359, ../sass/_nav.scss */
.navbar-brand img.sub-brand {
width: 50px;
height: 20px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
/* line 385, ../sass/_nav.scss */
.footer .legal-links {
width: 40%;
}
/* line 387, ../sass/_nav.scss */
.footer .legal-links li {
display: block;
text-align: right;
line-height: 22px;
}
/* line 393, ../sass/_nav.scss */
.footer .partner-info {
width: 60%;
}
}
@media (max-width: 767px) {
/* line 402, ../sass/_nav.scss */
.navbar-brand .brand {
height: auto;
}
/* line 405, ../sass/_nav.scss */
.navbar-brand img {
height: 28px;
width: 130px;
}
/* line 409, ../sass/_nav.scss */
.navbar-brand img.sub-brand {
width: 40px;
height: 15px;
margin: 7px 0 0 5px;
}
/* line 419, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public {
height: 70px;
margin: 0;
}
/* line 422, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public li {
height: 100%;
float: left;
padding-top: 5px;
}
/* line 427, ../sass/_nav.scss */
.temp-mobile-nav .nav-public .public li a {
padding-left: 5px;
padding-right: 5px;
min-width: 60px;
text-align: center;
}
/* line 437, ../sass/_nav.scss */
.temp-mobile-nav .mobile-list {
padding-right: 10px;
}
/* line 442, ../sass/_nav.scss */
.navbar-header .temp-mobile-nav ul li.help-link {
right: 85px;
}
/* line 446, ../sass/_nav.scss */
.nav-account {
display: none;
}
/* line 450, ../sass/_nav.scss */
.footer {
height: auto;
}
/* line 454, ../sass/_nav.scss */
.footer .legal-links li {
line-height: normal;
}
/* line 459, ../sass/_nav.scss */
.footer .partner-info {
padding: 5px;
}
/* line 463, ../sass/_nav.scss */
.footer .partner-links {
padding: 0;
}
/* line 465, ../sass/_nav.scss */
.footer .partner-links a {
float: none;
}
/* line 468, ../sass/_nav.scss */
.footer .partner-links a.other-partners {
float: left;
text-align: center;
padding-top: 5px;
}
}
/** Actual Tables **/
/* line 3, ../sass/_tables.scss */
.forced-width {
width: 300px;
}
/* line 10, ../sass/_tables.scss */
table tr td .filetype-icon {
margin-right: 5px;
}
/** fake Tables **/
/* line 20, ../sass/_tables.scss */
.faux-table {
margin-top: 20px;
font-size: 1.5rem;
}
/* line 24, ../sass/_tables.scss */
.faux-table .table-head {
background: #f3f6f9;
height: 40px;
display: table;
width: 100%;
border-bottom: 1px solid #e4e9f0;
}
/* line 31, ../sass/_tables.scss */
.faux-table .table-head .head-item {
height: 100%;
border-right: 1px solid #e4e9f0;
display: table-cell;
vertical-align: middle;
text-align: left;
padding: 0 10px;
font-weight: bold;
}
/* line 40, ../sass/_tables.scss */
.faux-table .table-head .head-item a {
color: #585858;
text-decoration: none;
cursor: pointer;
}
/* line 48, ../sass/_tables.scss */
.faux-table .panel-body {
background: #ffffff;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
margin-top: 0;
border-top: 0;
overflow: visible;
border-bottom: 1px solid #e4e9f0;
}
/* line 55, ../sass/_tables.scss */
.faux-table .panel-body .panel-heading {
background: none;
}
/* line 59, ../sass/_tables.scss */
.faux-table .panel-body .panel-heading {
padding: 0;
}
/* line 64, ../sass/_tables.scss */
.faux-table .panel-body .panel-collapse button {
line-height: 20px;
min-height: 30px;
}
/* line 69, ../sass/_tables.scss */
.faux-table .panel-body .panel-collapse .link-list-item {
clear: left;
margin-top: 10px;
}
/* line 75, ../sass/_tables.scss */
.faux-table .panel-body .link-list-item {
margin-top: 5px;
}
/* line 80, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-'], .faux-table .panel-body .add-location div[class*='col-md-'] {
padding-left: 5px;
padding-right: 5px;
width: 160px;
}
/* line 85, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-']:first-child, .faux-table .panel-body .location-list-item div[class*='col-md-'].first-child, .faux-table .panel-body .add-location div[class*='col-md-']:first-child, .faux-table .panel-body .add-location div[class*='col-md-'].first-child {
padding-left: 15px;
}
/* line 89, ../sass/_tables.scss */
.faux-table .panel-body .location-list-item div[class*='col-md-']:last-child, .faux-table .panel-body .add-location div[class*='col-md-']:last-child {
margin-right: 10px;
}
/* line 96, ../sass/_tables.scss */
.faux-table .accordion-toggle {
text-decoration: none;
}
/* line 101, ../sass/_tables.scss */
.faux-table .item-header.open {
border: 2px solid #368de8;
}
/* line 106, ../sass/_tables.scss */
.faux-table .faux-row {
display: table;
width: 100%;
padding: 5px 0;
font-size: 1.4rem;
background: #fff;
border-bottom: 1px solid #e4e9f0;
}
/* line 114, ../sass/_tables.scss */
.faux-table .faux-row.dull {
opacity: 0.3;
filter: alpha(opacity=30);
}
/* line 118, ../sass/_tables.scss */
.faux-table .faux-row.highlight {
opacity: 1;
filter: alpha(opacity=100);
background: #f5f5f5;
}
/* line 122, ../sass/_tables.scss */
.faux-table .faux-row.highlight .row-item {
font-weight: bold;
}
/* line 127, ../sass/_tables.scss */
.faux-table .faux-row .row-item {
display: table-cell;
text-align: left;
padding: 0 5px;
color: #585858;
text-decoration: none;
vertical-align: middle;
font-family: 'Lato', sans-serif;
}
/* line 136, ../sass/_tables.scss */
.faux-table .faux-row .row-item.plot-this {
width: 40px;
}
/* line 140, ../sass/_tables.scss */
.faux-table .faux-row .row-item span {
display: block;
float: left;
}
/* line 145, ../sass/_tables.scss */
.faux-table .faux-row .row-item.row-break {
/*temp wrapping fix */
white-space: -moz-pre-wrap !important;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
/* THIS SHOULD BE HERE */
}
/* line 155, ../sass/_tables.scss */
.faux-table .faux-row .row-item.actions {
text-align: center;
padding: 0 10px;
}
/* line 159, ../sass/_tables.scss */
.faux-table .faux-row .row-item.actions .button-dropdown-group {
width: 120px;
margin: 0 auto;
}
/* line 165, ../sass/_tables.scss */
.faux-table .faux-row .row-item ul {
margin-bottom: 0;
}
/* line 172, ../sass/_tables.scss */
.faux-table.three-col .row-item, .faux-table.three-col .head-item {
width: 33.33%;
}
/* line 178, ../sass/_tables.scss */
.faux-table.four-col .row-item, .faux-table.four-col .head-item {
width: 25%;
}
/* line 184, ../sass/_tables.scss */
.faux-table.five-col .row-item, .faux-table.five-col .head-item {
width: 20%;
}
/* line 190, ../sass/_tables.scss */
.faux-table.six-col .row-item, .faux-table.six-col .head-item {
width: 16.66%;
}
/* line 195, ../sass/_tables.scss */
.faux-table.seven-col .row-item, .faux-table.seven-col .head-item {
width: 14.44%;
}
/* line 200, ../sass/_tables.scss */
.faux-table.eight-col .row-item, .faux-table.eight-col .head-item {
width: 12.5%;
}
/* line 206, ../sass/_tables.scss */
.faux-table.nine-col .row-item, .faux-table.nine-col .head-item {
width: 11.1%;
}
/* line 212, ../sass/_tables.scss */
.visible-for-col {
padding-top: 20px;
}
/* line 214, ../sass/_tables.scss */
.visible-for-col h5 {
text-align: left;
float: left;
}
/* line 218, ../sass/_tables.scss */
.visible-for-col input[type="checkbox"] {
height: auto;
float: left;
margin: 7px 0 0 10px;
width: auto;
}
/* line 226, ../sass/_tables.scss */
.date-th {
min-width: 100px;
}
/* line 229, ../sass/_tables.scss */
.button-th {
min-width: 160px;
}
/* line 234, ../sass/_tables.scss */
.result-link a {
/*temp wrapping fix */
white-space: -moz-pre-wrap !important;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
white-space: pre-wrap;
/* css-3 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}
/* line 246, ../sass/_tables.scss */
.cleared-row {
float: left;
clear: left;
margin-top: 5px;
width: 100%;
}
/* line 252, ../sass/_tables.scss */
.log-container {
margin-top: 20px;
}
/* line 256, ../sass/_tables.scss */
.log-container table thead {
background: #f3f6f9;
height: 40px;
border-bottom: 1px solid #e4e9f0;
}
/* line 260, ../sass/_tables.scss */
.log-container table thead th {
height: 100%;
border-right: 1px solid #e4e9f0;
display: table-cell;
vertical-align: middle;
text-align: left;
padding: 10px;
font-weight: bold;
}
/* line 269, ../sass/_tables.scss */
.log-container table thead th a {
color: #585858;
}
@media (max-width: 767px) {
/* line 281, ../sass/_tables.scss */
.details-container table tr td {
width: 50%;
}
}
/** form styles **/
/* line 3, ../sass/_forms.scss */
.form-control {
height: 40px;
}
/* line 8, ../sass/_forms.scss */
.dob-row div[class*='col-md-'] {
padding-left: 5px;
padding-right: 5px;
}
/* line 12, ../sass/_forms.scss */
.dob-row div[class*='col-md-'].day {
padding-left: 0;
}
/* line 16, ../sass/_forms.scss */
.dob-row div[class*='col-md-'].year {
padding-right: 0;
}
/* line 22, ../sass/_forms.scss */
.panel-body {
padding: 15px 15px 10px;
}
/* line 28, ../sass/_forms.scss */
.panel-body .panel-body-footer {
width: 100%;
padding: 0;
}
/* line 34, ../sass/_forms.scss */
.form-section {
margin-top: 50px !important;
}
/* line 38, ../sass/_forms.scss */
.form-save {
margin-top: 10px;
}
/* line 42, ../sass/_forms.scss */
input[type="text"],
input[type="password"],
select,
.group-select {
background: #fff;
border: 1px solid #cccccc;
}
/* line 49, ../sass/_forms.scss */
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
.group-select:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 53, ../sass/_forms.scss */
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
select:-moz-placeholder,
.group-select:-moz-placeholder {
color: #7a7a7a;
}
/* line 56, ../sass/_forms.scss */
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.group-select::-webkit-input-placeholder {
color: #7a7a7a;
}
/* line 61, ../sass/_forms.scss */
label {
color: #585858;
}
/* line 66, ../sass/_forms.scss */
.label a {
color: #ffffff;
}
/* line 71, ../sass/_forms.scss */
.disabled {
cursor: not-allowed;
background: #f8f8f8;
color: #989898;
width: auto;
font-weight: normal;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 1px solid #f3f3f3;
}
/* line 82, ../sass/_forms.scss */
.edit-code {
background: #ffffff;
}
/* line 86, ../sass/_forms.scss */
input.alert-checkbox {
margin-right: 7px;
}
/* line 90, ../sass/_forms.scss */
.btn:active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 94, ../sass/_forms.scss */
.filter-panel {
overflow: visible;
}
/* line 97, ../sass/_forms.scss */
.filter-panel .panel-footer {
padding: 0;
}
/* line 102, ../sass/_forms.scss */
.filter-tags-container {
clear: left;
margin: 15px 0 0;
}
/* line 106, ../sass/_forms.scss */
.filter-tags-container li {
margin-right: 3px;
}
/* line 112, ../sass/_forms.scss */
.add-recipient-button {
margin-top: 27px;
}
/* line 116, ../sass/_forms.scss */
.search-container {
position: relative;
height: 60px;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
/* line 121, ../sass/_forms.scss */
.search-container i {
position: absolute;
left: 10px;
top: 10px;
}
/* line 126, ../sass/_forms.scss */
.search-container input[type="text"] {
border: none;
background: #ffffff;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
height: 100%;
width: 100%;
text-indent: 40px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 137, ../sass/_forms.scss */
.select-container {
margin-right: 15px;
}
/* line 140, ../sass/_forms.scss */
.select-container .btn-group {
background: #ffffff;
border: 1px solid #e4e9f0;
}
/* line 145, ../sass/_forms.scss */
.select-container .btn-group.open .dropdown-toggle {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* line 150, ../sass/_forms.scss */
.select-container .btn-group button {
background: transparent;
color: #7a7a7a;
position: relative;
height: 34px;
padding: 0 50px 0 10px;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
width: 220px;
}
/* line 162, ../sass/_forms.scss */
.select-container .dropdown-menu {
width: 221px;
-webkit-box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
-moz-box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.176);
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
margin-top: 0;
overflow-y: scroll;
max-height: 200px;
}
/* line 171, ../sass/_forms.scss */
.select-container .dropdown-menu li a {
cursor: pointer;
}
/* line 173, ../sass/_forms.scss */
.select-container .dropdown-menu li a span {
cursor: pointer;
}
/* line 181, ../sass/_forms.scss */
.caret-container {
display: block;
height: 100%;
line-height: 100%;
width: 34px;
background: #e0e0e0;
position: absolute;
right: 0;
top: 0;
}
/* line 191, ../sass/_forms.scss */
.caret-container .caret {
border-top: 8px solid #ffffff;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
margin-top: 16px;
}
/* line 200, ../sass/_forms.scss */
.button-dropdown-group > button {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
line-height: 20px;
}
/* line 206, ../sass/_forms.scss */
.button-dropdown-group .dropdown > button {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
/* line 211, ../sass/_forms.scss */
.button-dropdown-group .dropdown-menu {
position: absolute;
min-width: 100px;
left: -75px;
}
/* line 216, ../sass/_forms.scss */
.button-dropdown-group .dropdown-menu > li a {
text-align: left;
padding: 5px;
font-size: 1.5rem;
}
/* line 224, ../sass/_forms.scss */
.capsule-list {
padding-left: 10px;
}
/* line 226, ../sass/_forms.scss */
.capsule-list li {
background: #00aa9e;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-right: 5px;
padding: 5px;
color: #ffffff;
}
/* line 234, ../sass/_forms.scss */
.capsule-list > li:first-child {
padding-left: 5px;
}
/* line 239, ../sass/_forms.scss */
.form-edit-row {
margin-top: 0px;
}
/* line 243, ../sass/_forms.scss */
.set-date-range {
margin-top: 25px;
}
/* line 248, ../sass/_forms.scss */
.group-list-item li {
width: auto;
height: 40px;
border: none;
color: #ffffff;
font-size: 1.25rem;
overflow: hidden;
padding: 5px 0;
text-align: center;
line-height: 30px;
}
/* line 259, ../sass/_forms.scss */
.group-list-item li.group-list-name {
width: 52%;
font-size: 1.3rem;
color: #4a4a4a;
background: #f8f8f8;
border: 1px solid #e4e9f0;
}
/* line 267, ../sass/_forms.scss */
.group-list-item li.group-list-role {
color: #e0e0e0;
font-size: 3rem;
padding: 0 10px;
font-weight: bold;
width: 180px;
}
/* line 274, ../sass/_forms.scss */
.group-list-item li.group-list-role span {
font-size: 1.35rem;
height: 100%;
position: relative;
top: -4px;
font-weight: normal;
color: #585858;
float: left;
display: block;
}
/* line 284, ../sass/_forms.scss */
.group-list-item li.group-list-role span.bracket {
display: block;
float: left;
min-width: 0;
font-size: 3rem;
color: #e0e0e0;
font-weight: bold;
width: 15px;
}
/* line 294, ../sass/_forms.scss */
.group-list-item li.group-list-role span.group-role {
min-width: 80px;
top: 3px;
}
/* line 301, ../sass/_forms.scss */
.group-list-item li.group-list-delete {
font-size: 2rem;
padding: 0;
}
/* line 304, ../sass/_forms.scss */
.group-list-item li.group-list-delete a {
color: #f20d2e;
display: block;
height: 100%;
width: 100%;
}
/* line 314, ../sass/_forms.scss */
.data-range-container {
margin-top: 20px;
width: 100%;
}
/* line 319, ../sass/_forms.scss */
.data-range-container .dropdown-menu .btn {
color: #333333;
}
/* line 325, ../sass/_forms.scss */
.custom-select {
position: relative;
height: 34px;
float: left;
width: 50%;
margin-right: 10px;
cursor: pointer;
}
/* line 333, ../sass/_forms.scss */
.custom-select .caret-container {
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
/* line 339, ../sass/_forms.scss */
.custom-select .caret-container .caret {
margin-left: 12px;
cursor: pointer;
}
/* line 346, ../sass/_forms.scss */
.radio-button-list {
padding-left: 10px;
}
/* line 348, ../sass/_forms.scss */
.radio-button-list .btn {
background: #e0e0e0;
color: #585858;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-left: 1px solid #c3c3c3;
line-height: 15px;
white-space: normal;
word-spacing: 999999px;
width: 58px;
font-size: 1.2rem;
}
/* line 359, ../sass/_forms.scss */
.radio-button-list .btn:first-child {
border-left: 0;
}
/* line 363, ../sass/_forms.scss */
.radio-button-list .btn.active, .radio-button-list .btn:hover {
background: #00adc6;
border-left: 1px solid #039288;
-webkit-box-shadow: 0;
-moz-box-shadow: 0;
box-shadow: 0;
color: #ffffff;
}
/* line 373, ../sass/_forms.scss */
.select-add-group select {
width: 50%;
float: left;
height: 40px;
}
/* line 379, ../sass/_forms.scss */
.select-add-group .group-list-item {
width: auto;
float: left;
clear: left;
}
/* line 384, ../sass/_forms.scss */
.select-add-group .group-list-item .radio-button-list {
padding-left: 0;
margin-top: 10px;
}
/* line 388, ../sass/_forms.scss */
.select-add-group .group-list-item .radio-button-list li.active {
background: #00adc6;
}
/* line 394, ../sass/_forms.scss */
.select-add-group button {
float: left;
margin-top: 2px;
}
/* line 401, ../sass/_forms.scss */
.add-feature select {
float: left;
width: 80%;
}
/* line 407, ../sass/_forms.scss */
.bracket {
font-size: 3rem;
font-weight: bold;
display: block;
width: 20px;
float: left;
text-align: center;
line-height: 38px;
color: #e0e0e0;
}
/* line 417, ../sass/_forms.scss */
.bracket.pre {
margin-left: 5px;
}
/* line 426, ../sass/_forms.scss */
.bracket-input input, .bracket-input select {
width: 120px;
float: left;
height: 30px;
margin-top: 5px;
}
/* line 435, ../sass/_forms.scss */
.clamped {
line-height: 1.5;
overflow: hidden;
position: relative;
}
/* line 441, ../sass/_forms.scss */
.clamped-2 {
/* Clamp to 2 lines, ie line-height x 2: */
max-height: 3em;
}
/* line 446, ../sass/_forms.scss */
.ellipsis {
background: #fff;
bottom: 0;
position: absolute;
right: 10px;
}
/* line 453, ../sass/_forms.scss */
.fill {
background: #fff;
height: 100%;
position: absolute;
width: 100%;
}
/* line 461, ../sass/_forms.scss */
textarea.form-control.article-content {
height: 200px;
}
/* line 465, ../sass/_forms.scss */
textarea.form-control.big {
height: 120px;
}
/* line 469, ../sass/_forms.scss */
.input-comments {
width: 100%;
}
/* line 473, ../sass/_forms.scss */
.row.inline-row {
margin-bottom: 3px;
}
/* line 475, ../sass/_forms.scss */
.row.inline-row .inline-span, .row.inline-row .date-input, .row.inline-row .results-enter {
float: left;
}
/* line 480, ../sass/_forms.scss */
.row.inline-row .form-control.input-value {
margin-right: 5px;
}
/* line 484, ../sass/_forms.scss */
.row.inline-row, .enter-results-row {
margin-bottom: 15px;
}
/* line 488, ../sass/_forms.scss */
.date-input {
margin-right: 5px;
}
/* line 492, ../sass/_forms.scss */
.instructions {
font-weight: normal;
}
/* line 496, ../sass/_forms.scss */
.date-input {
float: left;
}
/* line 501, ../sass/_forms.scss */
.row.inline-row .inline-span {
width: 80px;
}
/* line 504, ../sass/_forms.scss */
.row.inline-row .form-control {
width: 80px;
}
/* line 507, ../sass/_forms.scss */
.row.inline-row .form-control.input-value {
width: 160px;
}
/* line 510, ../sass/_forms.scss */
.row.inline-row .form-control.input-comments {
width: 100%;
}
/* line 515, ../sass/_forms.scss */
.form-control.no-float {
float: none;
}
/* line 519, ../sass/_forms.scss */
.top-offset {
margin-bottom: 0;
}
/* line 522, ../sass/_forms.scss */
.top-offset.twenty {
margin-top: 20px;
}
/** Selectize tweaks **/
/* line 529, ../sass/_forms.scss */
.optgroup-header {
font-weight: bold;
}
/* line 533, ../sass/_forms.scss */
.selectize-input {
height: 40px;
}
/* line 537, ../sass/_forms.scss */
.selectize-control.loading {
text-align: left !important;
}
/* line 542, ../sass/_forms.scss */
.selectize-control.multi .selectize-input > div {
background: #00adc6;
border-radius: 4px;
color: white;
}
/* line 549, ../sass/_forms.scss */
.selectize-dropdown, .selectize-input, .selectize-input input {
font-size: inherit;
}
/* line 553, ../sass/_forms.scss */
input.ng-invalid, textarea.ng-invalid {
border-color: red;
}
/* line 557, ../sass/_forms.scss */
th, td {
zoom: env() !important;
}
/* line 1, ../sass/_lists.scss */
.aside-actions {
height: 140px;
margin-bottom: 0;
}
/* line 7, ../sass/_lists.scss */
.aside-actions li a {
width: 70px;
height: 75px;
display: block;
text-align: center;
color: #909090;
font-size: 1.125rem;
text-decoration: none;
padding: 20px 10px;
background: #f3f6f9;
}
/* line 18, ../sass/_lists.scss */
.aside-actions li a.reply {
line-height: 50px;
}
/* line 22, ../sass/_lists.scss */
.aside-actions li a.active {
background: #368de8;
color: #ffffff;
}
/* line 27, ../sass/_lists.scss */
.aside-actions li a .message-count {
font-weight: bold;
text-align: center;
font-size: 1.25rem;
display: block;
}
/* line 38, ../sass/_lists.scss */
.groups-list li {
color: #585858;
margin: 5px 5px 0 0;
}
/* line 42, ../sass/_lists.scss */
.groups-list li .light-text {
font-size: 1rem;
}
/* line 46, ../sass/_lists.scss */
.groups-list li .group-image {
width: 30px;
}
/* line 49, ../sass/_lists.scss */
.groups-list li .group-description {
margin-left: 5px;
}
/* line 52, ../sass/_lists.scss */
.groups-list li .group-link:hover, .groups-list li .group-link:visited, .groups-list li .group-link:link, .groups-list li .group-link:active {
text-decoration: none;
outline: none;
border: 0px none transparent;
}
/* line 62, ../sass/_lists.scss */
.faux-table .faux-row .row-item .patient-groups li {
width: 100%;
float: left;
}
/* line 66, ../sass/_lists.scss */
.faux-table .faux-row .row-item .patient-groups li span {
float: left;
}
/* line 73, ../sass/_lists.scss */
.locations-list {
margin-top: 20px;
}
/* line 76, ../sass/_lists.scss */
.locations-list:first-child {
margin-top: 0;
}
/* line 81, ../sass/_lists.scss */
.button-list {
margin: 20px 0;
}
/* line 86, ../sass/_lists.scss */
.image-list li > div {
position: relative;
min-height: 200px;
}
/* line 90, ../sass/_lists.scss */
.image-list li > div:first-child {
padding-left: 0;
}
/* line 95, ../sass/_lists.scss */
.image-list .content-panel {
margin-top: 20px;
padding: 15px;
}
/* line 101, ../sass/_lists.scss */
.image-list .one-image img:first-child {
width: 100%;
}
/* line 106, ../sass/_lists.scss */
.image-list .two-images {
position: relative;
}
/* line 108, ../sass/_lists.scss */
.image-list .two-images img:first-child {
position: absolute;
right: 0;
bottom: 0;
}
/* line 116, ../sass/_lists.scss */
.faq-list-header {
text-transform: uppercase;
font-weight: bold;
}
/* line 121, ../sass/_lists.scss */
.faq-list {
margin-top: 30px;
margin-left: 0;
padding-left: 0;
list-style-position: inside;
}
/* line 126, ../sass/_lists.scss */
.faq-list li {
margin-top: 30px;
font-weight: bold;
}
/* line 129, ../sass/_lists.scss */
.faq-list li span {
padding-left: 5px;
}
/* line 132, ../sass/_lists.scss */
.faq-list li p {
font-weight: normal;
margin-top: 5px;
}
/** hero pane **/
/* line 3, ../sass/_hero.scss */
.hero-panel {
background: url("../../../images/hero-bg-low.jpg") 0 0 no-repeat;
background-size: cover;
-ms-behavior: url(/backgroundsize.min.htc);
width: 100%;
height: 430px;
margin-top: 20px;
}
/* line 11, ../sass/_hero.scss */
.hero-panel .ie-hero-image {
display: none;
}
/* line 15, ../sass/_hero.scss */
.hero-panel .hero-pane {
height: 100%;
color: #ffffff;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 23, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine {
background: #00aa9e;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 25, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine:hover {
background: #00aa9e;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 34, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua {
background: #00adc6;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 36, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua:hover {
background: #00adc6;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 45, ../sass/_hero.scss */
.hero-panel .hero-pane.blue {
background: #368de8;
opacity: 0.7;
filter: alpha(opacity=70);
}
/* line 47, ../sass/_hero.scss */
.hero-panel .hero-pane.blue:hover {
background: #368de8;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* line 56, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content {
text-align: center;
margin: 25% 0;
font-weight: 100;
font-size: 2.5rem;
}
/* line 62, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content h2 {
font-size: 7rem;
}
/** todo BELOW SMALL DESKTOP - review potential need for mobile design **/
@media only screen and (max-width: 992px) {
/* line 72, ../sass/_hero.scss */
.hero-panel {
height: auto;
background: none;
margin-top: 0;
}
/* line 78, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content {
margin: 0;
padding: 10px;
}
/* line 82, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content h2 {
font-size: 5rem;
}
/* line 86, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content p {
font-size: 1.8rem;
}
/* line 90, ../sass/_hero.scss */
.hero-panel .hero-pane .pane-content > i {
background-position: 50%;
background-size: 100%;
height: 130px;
width: 60px;
float: left;
}
/* line 99, ../sass/_hero.scss */
.hero-panel .hero-pane.aquamarine {
background: #00aa9e;
opacity: 1;
filter: alpha(opacity=100);
-webkit-border-radius: 8px 8px 0 0;
-moz-border-radius: 8px 8px 0 0;
border-radius: 8px 8px 0 0;
}
/* line 104, ../sass/_hero.scss */
.hero-panel .hero-pane.aqua {
background: #00adc6;
opacity: 1;
filter: alpha(opacity=100);
}
/* line 108, ../sass/_hero.scss */
.hero-panel .hero-pane.blue {
background: #368de8;
opacity: 1;
filter: alpha(opacity=100);
-webkit-border-radius: 0 0 8px 8px;
-moz-border-radius: 0 0 8px 8px;
border-radius: 0 0 8px 8px;
}
}
@media (max-width: 767px) {
/* line 118, ../sass/_hero.scss */
.hero-pane i {
display: none;
}
}
/* line 1, ../sass/_messages.scss */
.message-item, .tab-panel-item {
margin-bottom: 20px;
position: relative;
}
/* line 5, ../sass/_messages.scss */
.message-item span.new-message, .tab-panel-item span.new-message {
font-size: 1.5rem;
font-weight: normal;
margin-right: 20px;
position: absolute;
top: -10px;
left: -10px;
z-index: 2;
}
/* line 15, ../sass/_messages.scss */
.message-item .content-panel, .tab-panel-item .content-panel {
position: relative;
z-index: 1;
}
/* line 20, ../sass/_messages.scss */
.message-item .quick-reply, .tab-panel-item .quick-reply {
width: 96%;
margin: -15px auto 15px;
padding: 30px 20px 20px 20px;
position: relative;
z-index: 0;
}
/* line 27, ../sass/_messages.scss */
.message-item .quick-reply label, .tab-panel-item .quick-reply label {
color: #909090;
}
/* line 31, ../sass/_messages.scss */
.message-item .quick-reply textarea, .tab-panel-item .quick-reply textarea {
width: 100%;
color: #353535;
background: #f8f8f8;
border: 1px solid #e4e9f0;
height: 80px;
}
/* line 39, ../sass/_messages.scss */
.message-item .quick-reply fieldset, .tab-panel-item .quick-reply fieldset {
margin-top: 10px;
}
/* line 43, ../sass/_messages.scss */
.message-item .quick-reply .message-summary, .tab-panel-item .quick-reply .message-summary {
padding-top: 0;
}
/* line 46, ../sass/_messages.scss */
.message-item .quick-reply .message-summary .date-stamp, .tab-panel-item .quick-reply .message-summary .date-stamp {
margin-top: 0;
}
/* line 53, ../sass/_messages.scss */
.message-item .delete-news a, .tab-panel-item .delete-news a {
background: #f20d2e;
color: #ffffff;
height: 72px;
}
/* line 61, ../sass/_messages.scss */
.preview-news-link-labels .label {
font-size: 14px;
line-height: 25px;
}
/* line 66, ../sass/_messages.scss */
.message-summary {
padding: 15px;
font-size: 1rem;
}
/* line 70, ../sass/_messages.scss */
.message-summary .message-title {
color: #353535;
margin: 0;
font-size: 2rem;
font-weight: bold;
max-width: 84%;
}
/* line 77, ../sass/_messages.scss */
.message-summary .message-title .label-archived {
font-size: 11px;
position: relative;
top: -2px;
}
/* line 83, ../sass/_messages.scss */
.message-summary .message-title a {
padding-right: 10px;
width: 94%;
}
/* line 88, ../sass/_messages.scss */
.message-summary .message-title .recipient {
color: #909090;
font-size: 1.5rem;
font-weight: normal;
margin-top: 3px;
clear: left;
margin-bottom: 10px;
}
/* line 98, ../sass/_messages.scss */
.message-summary .view-patient {
margin-left: 10px;
font-weight: bold;
text-decoration: underline;
}
/* line 104, ../sass/_messages.scss */
.message-summary .last-message {
clear: left;
}
/* line 106, ../sass/_messages.scss */
.message-summary .last-message h4 {
color: #368de8;
font-size: 1.5rem;
margin-bottom: 0;
}
/* line 111, ../sass/_messages.scss */
.message-summary .last-message .message-content {
color: #353535;
font-size: 1.5rem;
}
/* line 115, ../sass/_messages.scss */
.message-summary .last-message .date-stamp {
color: #909090;
font-size: 1.5rem;
}
/* line 119, ../sass/_messages.scss */
.message-summary .last-message .date-stamp ul {
margin-bottom: 0;
position: relative;
bottom: -5px;
}
/* line 124, ../sass/_messages.scss */
.message-summary .last-message .date-stamp ul .archive-link {
padding-right: 10px;
padding-left: 10px;
}
/* line 131, ../sass/_messages.scss */
.message-summary .last-message .conversation-user-picture {
margin-right: 10px;
margin-top: 5px;
max-height: 50px;
}
/* line 138, ../sass/_messages.scss */
.message-summary .date-stamp {
margin-top: 10px;
font-size: 14px;
}
/* line 143, ../sass/_messages.scss */
.message-summary .date-stamp ul li {
padding: 0 5px;
}
/* line 150, ../sass/_messages.scss */
.message-content > p {
max-height: 40px;
overflow: hidden;
}
/* line 156, ../sass/_messages.scss */
.news-date {
color: #a8a8a8;
}
/* line 160, ../sass/_messages.scss */
.news-actions {
text-align: left;
margin-bottom: 10px;
}
/* line 165, ../sass/_messages.scss */
.message-type-badge {
clear: left;
background: #00adc6;
color: #ffffff;
font-size: 1.4rem;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
padding: 5px;
float: left;
position: absolute;
top: 10px;
right: 77px;
}
@media (max-width: 767px) {
/* line 180, ../sass/_messages.scss */
.message-summary .message-title {
width: 80%;
}
/* line 183, ../sass/_messages.scss */
.message-type-badge {
position: relative;
top: 0;
right: 0;
}
}
/* line 1, ../sass/_results.scss */
.large-label {
font-size: 20px;
}
/* line 5, ../sass/_results.scss */
.results-header {
height: 120px;
overflow: hidden;
margin-bottom: 20px;
}
/* line 10, ../sass/_results.scss */
.results-header.variable {
height: auto;
}
/* line 13, ../sass/_results.scss */
.results-header .header-icon {
background: #368de8;
padding: 10px;
text-align: center;
width: 120px;
height: 100%;
margin-right: 20px;
}
/* line 20, ../sass/_results.scss */
.results-header .header-icon i {
display: block;
}
/* line 25, ../sass/_results.scss */
.results-header .panel-controls {
clear: right;
}
/* line 29, ../sass/_results.scss */
.results-header .form-row {
width: 400px;
margin-bottom: 10px;
}
/* line 33, ../sass/_results.scss */
.results-header .form-row label, .results-header .form-row select {
width: 50%;
float: left;
}
/* line 38, ../sass/_results.scss */
.results-header .form-row label {
padding-right: 20px;
text-align: right;
padding-top: 7px;
}
/* line 45, ../sass/_results.scss */
.results-header .content-inner {
padding: 10px 0 0;
}
/* line 50, ../sass/_results.scss */
.actions-row {
margin-top: 20px;
}
/* line 54, ../sass/_results.scss */
.results-container {
float: left;
width: 100%;
margin-top: 20px;
}
/* line 59, ../sass/_results.scss */
.results-container .results-list {
margin-left: -5px;
margin-right: -5px;
}
/* line 67, ../sass/_results.scss */
.result-item-container {
height: 256px;
float: left;
padding: 5px;
}
/* line 72, ../sass/_results.scss */
.result-item-container .result-item {
height: 100%;
padding: 15px;
position: relative;
}
/* line 78, ../sass/_results.scss */
.result-item-container .result-header {
width: 100%;
height: 35px;
border-bottom: 1px solid #e4e9f0;
color: #585858;
}
/* line 84, ../sass/_results.scss */
.result-item-container .result-header h4 {
font-weight: bold;
margin: 0;
line-height: 26px;
}
/* line 89, ../sass/_results.scss */
.result-item-container .result-header h4 .info-link {
font-size: 14px;
font-weight: normal;
color: #00adc6;
text-decoration: none;
}
/* line 98, ../sass/_results.scss */
.result-item-container .result-change {
margin: 0;
}
/* line 101, ../sass/_results.scss */
.result-item-container .result-change dt {
font-size: 50px;
float: left;
}
/* line 105, ../sass/_results.scss */
.result-item-container .result-change dt span {
font-size: 14px;
}
/* line 108, ../sass/_results.scss */
.result-item-container .result-change dt span.result-value {
font-size: 50px;
}
/* line 114, ../sass/_results.scss */
.result-item-container .result-change dd {
float: right;
text-align: right;
width: 30%;
padding-top: 39px;
padding-left: 24px;
}
/* line 121, ../sass/_results.scss */
.result-item-container .result-change dd i {
margin-top: 2px;
}
/* line 125, ../sass/_results.scss */
.result-item-container .result-change dd span {
clear: right;
margin-right: 5px;
}
/* line 132, ../sass/_results.scss */
.result-item-container .info-list {
width: 100%;
}
/* line 134, ../sass/_results.scss */
.result-item-container .info-list li {
width: 100%;
color: #8f8f8f;
}
/* line 140, ../sass/_results.scss */
.result-item-container .result-footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background: #f3f6f9;
border-top: 1px solid #e4e9f0;
padding: 4px 10px;
}
/* line 150, ../sass/_results.scss */
.result-item-container .result-footer a {
font-size: 18px;
color: #aebccf;
text-decoration: none;
}
/* line 158, ../sass/_results.scss */
.result-heading-title {
max-width: 190px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* line 167, ../sass/_results.scss */
.specialty-manager .add-container {
padding-top: 0;
border-top: 0;
margin-top: 0;
}
/* line 173, ../sass/_results.scss */
.specialty-manager .no-label {
padding-top: 29px;
}
/* line 180, ../sass/_results.scss */
.td-strong {
font-weight: bold;
}
/* line 183, ../sass/_results.scss */
.row-question {
margin: 10px 0 0 15px;
}
/* line 186, ../sass/_results.scss */
.question-description {
font-weight: normal;
color: #368DE8;
font-size: 14px;
}
/* line 191, ../sass/_results.scss */
.question-group-description {
font-weight: normal;
color: #2a6496;
margin-bottom: 10px;
margin-top: 10px;
font-size: 14px;
}
/* line 198, ../sass/_results.scss */
.rz-model-value {
font-weight: bold;
font-size: 20px;
line-height: 20px;
}
/* line 203, ../sass/_results.scss */
.rz-tick {
height: 1px !important;
}
/* line 206, ../sass/_results.scss */
.capitalize {
text-transform: capitalize;
}
/* line 213, ../sass/_results.scss */
.result-detail-panel .result-item-container {
width: 100%;
height: auto;
padding: 0;
}
/* line 218, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-value {
width: 50%;
float: left;
}
/* line 224, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-change dd {
float: left;
}
/* line 229, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment {
width: 50%;
padding-top: 15px;
clear: left;
}
/* line 234, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment label {
margn-bottom: 0;
}
/* line 240, ../sass/_results.scss */
.result-detail-panel .info-list {
width: 50%;
}
/* line 243, ../sass/_results.scss */
.result-detail-panel .info-list.inline {
margin-top: 20px;
}
/* line 247, ../sass/_results.scss */
.result-detail-panel .info-list li {
width: auto;
margin-right: 20px;
font-size: 18px;
}
/* line 252, ../sass/_results.scss */
.result-detail-panel .info-list li strong {
color: #585858;
}
/* line 260, ../sass/_results.scss */
.result-detail-panel .info-header {
text-align: center;
padding: 10px;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
overflow: hidden;
}
/* line 265, ../sass/_results.scss */
.result-detail-panel .info-header p {
padding: 0;
margin: 0;
color: white;
font-weight: bold;
}
/* line 273, ../sass/_results.scss */
.result-detail-panel .faux-table {
margin-top: 0;
}
/* line 277, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item, .result-detail-panel .faux-table.three-col .head-item {
width: 30.5%;
text-align: center;
}
/* line 281, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item.plot-this, .result-detail-panel .faux-table.three-col .head-item.plot-this {
width: 40px;
padding: 0;
text-align: center;
}
/* line 286, ../sass/_results.scss */
.result-detail-panel .faux-table.three-col .row-item.plot-this i, .result-detail-panel .faux-table.three-col .head-item.plot-this i {
margin: 0 auto;
}
/* line 295, ../sass/_results.scss */
.survey-modal-header {
background-color: #F5F5F5;
}
/* line 297, ../sass/_results.scss */
.survey-modal-header .close {
opacity: 1;
padding: 10px;
}
/* line 303, ../sass/_results.scss */
.reset-button {
margin-top: 1em;
}
/* line 307, ../sass/_results.scss */
.eq-survey {
margin-top: 5em;
}
/* line 309, ../sass/_results.scss */
.eq-survey .span-radio {
display: block;
}
/* line 313, ../sass/_results.scss */
.eq-survey .slider-component ul {
padding-left: 0;
}
/* line 315, ../sass/_results.scss */
.eq-survey .slider-component ul li {
font-weight: bold;
font-size: 1.5rem;
}
/* line 320, ../sass/_results.scss */
.eq-survey .slider-component .slider-text {
margin-top: 15px;
}
/* line 324, ../sass/_results.scss */
.eq-survey__copyright {
width: 50%;
float: left;
text-align: left;
display: inline-block;
}
/* line 329, ../sass/_results.scss */
.eq-survey__copyright p {
font-weight: bolder;
font-size: 12px;
}
/* line 337, ../sass/_results.scss */
.eq-survey-footer .btn-lg, .pos-survey-footer .btn-lg {
font-size: 1.5em;
margin-left: 1em !important;
}
/* line 343, ../sass/_results.scss */
.terms-well {
margin-top: 20px;
text-align: center;
margin-bottom: 0;
}
/* line 350, ../sass/_results.scss */
.pos-survey .symptoms-intro-text {
margin-top: 2em;
}
/* line 353, ../sass/_results.scss */
.pos-survey .symptom-label-text {
margin-top: 10px;
}
/* line 357, ../sass/_results.scss */
.pos-survey .symptom-heading th {
text-align: center;
}
/* line 363, ../sass/_results.scss */
.result-graph {
float: left;
width: 100%;
padding: 5px;
}
/* line 371, ../sass/_results.scss */
.header-select > div {
height: 75px;
}
/* line 374, ../sass/_results.scss */
.header-select select {
margin-top: 20px;
}
/* line 378, ../sass/_results.scss */
.header-select .select-title {
float: right;
}
/* line 383, ../sass/_results.scss */
.historical-data {
position: relative;
}
/* line 386, ../sass/_results.scss */
.historical-data .faux-table {
max-height: 600px;
overflow-y: scroll;
}
/* line 390, ../sass/_results.scss */
.historical-data .faux-table .faux-row {
cursor: pointer;
}
/* line 393, ../sass/_results.scss */
.historical-data .faux-table .faux-row.active div.row-item {
color: #368DE8;
background: #eee;
}
/* line 400, ../sass/_results.scss */
.historical-data .overlay {
position: absolute;
pointer-events: none;
bottom: 0;
left: 15px;
right: 15px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 50px;
background-color: rgba(255, 255, 255, 0.4);
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0)), to(white));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), white);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0)', endColorstr='white', GradientType=0);
}
/* line 411, ../sass/_results.scss */
.historical-data .download-all {
margin: 10px 10px 10px 0;
}
/* line 417, ../sass/_results.scss */
.result-graph .container {
width: auto;
}
/* line 422, ../sass/_results.scss */
.admin-header {
padding-left: 210px;
padding-top: 10px;
}
/* line 426, ../sass/_results.scss */
.label-request {
margin-left: 10px;
position: relative;
top: -2px;
}
/* line 431, ../sass/_results.scss */
.user-header-picture {
max-height: 40px;
padding-right: 10px;
}
@media (max-width: 767px) {
/* line 439, ../sass/_results.scss */
.header-select > div {
height: auto;
}
/* line 443, ../sass/_results.scss */
.header-select h1 {
font-size: 30px;
}
/* line 447, ../sass/_results.scss */
.header-select select {
margin-bottom: 10px;
margin-top: 0;
}
/* line 452, ../sass/_results.scss */
.header-select .select-title {
float: left;
}
/* line 456, ../sass/_results.scss */
.results-header {
height: 185px;
}
/* line 458, ../sass/_results.scss */
.results-header .header-icon {
display: none;
}
/* line 462, ../sass/_results.scss */
.results-header .form-row {
width: 100%;
}
/* line 464, ../sass/_results.scss */
.results-header .form-row label, .results-header .form-row select {
text-align: center;
width: 100%;
}
/* line 473, ../sass/_results.scss */
.result-detail-panel .result-item-container .info-list {
width: auto;
}
/* line 476, ../sass/_results.scss */
.result-detail-panel .result-item-container .info-list.inline {
margin-top: 10px;
}
/* line 481, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-value {
float: none;
width: auto;
}
/* line 486, ../sass/_results.scss */
.result-detail-panel .result-item-container .result-comment {
width: auto;
}
/* line 492, ../sass/_results.scss */
.admin-header {
padding-left: 60px;
padding-top: 0;
margin: 0;
font-size: 12px;
}
/* line 499, ../sass/_results.scss */
.back-to-admin a {
width: auto;
padding: 10px;
}
}
@media (max-width: 767px) {
/* line 506, ../sass/_results.scss */
.result-text {
display: none;
}
}
/* line 512, ../sass/_results.scss */
.select-result-type {
width: 390px;
margin-left: 10px;
}
/* line 518, ../sass/_results.scss */
.results-filter-list .feature-list-item {
float: left;
margin: 0 5px 5px 0;
}
/* line 2, ../sass/_components.scss */
.pagination.results {
display: block;
margin: 0 auto;
width: 200px;
}
/* line 9, ../sass/_components.scss */
.resize-text-buttons {
float: right;
text-align: center;
}
/* line 12, ../sass/_components.scss */
.resize-text-buttons p {
font-size: 2em;
}
/* line 15, ../sass/_components.scss */
.resize-text-buttons .btn-circle {
border: none;
color: white;
background-color: #368de8;
min-height: 30px;
min-width: 30px;
text-align: center;
padding: 6px 0;
line-height: 1.42;
width: 60px;
height: 60px;
font-size: 3em;
border-radius: 30px;
}
/* line 29, ../sass/_components.scss */
.resize-text-buttons .btn-circle__icon {
position: relative;
bottom: 7px;
}
/* line 33, ../sass/_components.scss */
.resize-text-buttons .btn-circle:nth-child(2) {
margin-right: .75em;
}
/* line 39, ../sass/_components.scss */
.step-markers {
margin: 20px 0 5px;
}
/* line 41, ../sass/_components.scss */
.step-markers li {
background: #e7ecf2;
-webkit-box-shadow: inset 0 0 0 #959595;
-moz-box-shadow: inset 0 0 0 #959595;
box-shadow: inset 0 0 0 #959595;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 10px;
width: 10px;
margin: 0 5px;
}
/* line 49, ../sass/_components.scss */
.step-markers li.active {
height: 15px;
width: 15px;
background: #368de8;
}
/* line 57, ../sass/_components.scss */
.step-title {
margin: 0 0 10px;
}
/* line 61, ../sass/_components.scss */
hr.solid {
border-top: 1px solid #eeeeee;
}
/* line 65, ../sass/_components.scss */
.article-content-small {
height: 4em;
}
/* line 70, ../sass/_components.scss */
.tab-panel-item .aside-actions {
height: 180px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
}
/* line 77, ../sass/_components.scss */
.tab-panel-item .aside-actions.dashboard {
height: 190px;
}
/* line 79, ../sass/_components.scss */
.tab-panel-item .aside-actions.dashboard li {
height: 95px;
}
/* line 84, ../sass/_components.scss */
.tab-panel-item .aside-actions li {
height: 75px;
}
/* line 87, ../sass/_components.scss */
.tab-panel-item .aside-actions li a {
height: 100%;
line-height: 15px;
padding-top: 15px;
}
/* line 95, ../sass/_components.scss */
.tab-panel-item .item-detail {
padding: 20px 20px 10px;
}
/* line 98, ../sass/_components.scss */
.tab-panel-item .item-detail .last-login {
width: 40%;
padding: 0;
}
/* line 103, ../sass/_components.scss */
.tab-panel-item .item-detail dl {
margin-bottom: 10px;
}
/* line 108, ../sass/_components.scss */
.tab-panel-item .item-detail dl dd {
color: #768696;
}
/* line 115, ../sass/_components.scss */
.user-details {
padding: 20px 20px 0;
}
/* line 118, ../sass/_components.scss */
.user-details h3 {
margin-top: 0;
}
/* line 122, ../sass/_components.scss */
.user-details h4 {
margin: 0 0 5px;
}
/* line 126, ../sass/_components.scss */
.user-details .news-actions {
margin-bottom: 10px;
}
/* line 130, ../sass/_components.scss */
.user-details .user-picture {
max-width: 50px;
margin-right: 10px;
}
/** MODALS **/
/* line 142, ../sass/_components.scss */
.modal-dialog {
width: 75%;
}
/* line 145, ../sass/_components.scss */
.modal-dialog label {
font-size: 1.5rem;
}
/* line 149, ../sass/_components.scss */
.modal-dialog .added-container {
margin-top: 30px;
}
/** GRAPHS **/
/* line 159, ../sass/_components.scss */
.graph-selector h3 {
margin: 0;
line-height: 35px;
}
/* line 166, ../sass/_components.scss */
.span-download {
margin-left: 10px;
}
/* line 170, ../sass/_components.scss */
.badge.gp {
color: #ffffff;
background: #00adc6;
font-size: 35px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
height: 85px;
line-height: 70px;
width: 85px;
text-align: center;
font-weight: bold;
}
/* line 181, ../sass/_components.scss */
.badge.gp.small {
height: 30px;
width: 30px;
font-size: 16px;
line-height: 23px;
padding: 5px 5px;
}
/* line 192, ../sass/_components.scss */
.slider {
display: block;
position: relative;
height: 30px;
width: 100%;
}
/* line 198, ../sass/_components.scss */
.slider span.bar {
height: 50%;
z-index: 0;
background: #eee;
left: 0;
top: 25%;
cursor: pointer;
}
/* line 208, ../sass/_components.scss */
.slider span.bar.selection {
background: #0a0;
opacity: 0.5;
}
/* line 212, ../sass/_components.scss */
.slider span.bar.unselected {
width: auto;
background: #a00;
opacity: 0.5;
}
/* line 217, ../sass/_components.scss */
.slider span.pointer {
cursor: pointer;
width: 15px;
top: 0;
bottom: 0;
background-color: #368DE8;
}
/* line 228, ../sass/_components.scss */
.slider span.bubble {
font-size: 1em;
line-height: 1.4em;
font-family: sans-serif;
text-align: center;
text-shadow: none;
top: -1.3em;
cursor: pointer;
}
/* line 237, ../sass/_components.scss */
.slider span.bubble.selection, .slider span.bubble.limit {
top: 25%;
}
/* line 247, ../sass/_components.scss */
.message-preview {
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
}
/* line 254, ../sass/_components.scss */
.research-study .textarea {
height: auto;
}
/* line 259, ../sass/_components.scss */
::-ms-tooltip {
display: none;
}
@media only screen and (max-width: 1024px) {
/* line 269, ../sass/_components.scss */
.tab-panel-item .item-detail {
padding: 5px 20px;
}
/* line 273, ../sass/_components.scss */
.modal-dialog {
width: auto;
}
}
@media (max-width: 1199px) {
/* line 281, ../sass/_components.scss */
.tab-panel-item .item-detail .last-login {
padding-left: 15px;
padding-right: 15px;
}
}
@media all and (max-width: 600px) {
/* line 290, ../sass/_components.scss */
g.highcharts-input-group {
display: none;
}
}
/* line 1, ../sass/_media.scss */
.media-message {
padding: 20px;
}
/* line 5, ../sass/_media.scss */
.media-thumbnail {
position: relative;
border: 1px solid #00adc6;
border-radius: 4px;
overflow: hidden;
}
/* line 11, ../sass/_media.scss */
.media-thumbnail .media-body {
position: relative;
}
/* line 13, ../sass/_media.scss */
.media-thumbnail .media-body a {
display: block;
cursor: pointer;
text-align: center;
}
/* line 19, ../sass/_media.scss */
.media-thumbnail .media-body img {
height: 130px;
width: auto;
}
/* line 24, ../sass/_media.scss */
.media-thumbnail .media-meta {
width: 100%;
background: #f3f6f9;
border-top: 1px solid #e4e9f0;
padding: 4px 10px;
color: #aebccf;
}
/* line 31, ../sass/_media.scss */
.media-thumbnail .media-meta p {
margin: 0;
}
/* line 35, ../sass/_media.scss */
.media-thumbnail .media-meta .timestamp {
font-size: 11px;
margin-top: 10px;
}
/* line 42, ../sass/_media.scss */
.image-action {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
height: 40px;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
padding: 10px;
color: white;
}
/* line 53, ../sass/_media.scss */
.image-action i {
color: white;
font-size: 16px;
margin-right: 5px;
} | 0.240418 | 0.111773 |
@-moz-document domain("discordapp.com")
{
body {
background: #202020;
color: #FFFFFF;
}
.pageWrapper-tZrsN5 {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .members-1998pB {
background-color: #202020;
}
.theme-dark .messagesWrapper-3lZDfY {
background-color: #202020;
}
.theme-dark .membersGroup-v9BXpm {
color: #B8B8B8;
}
.theme-dark .title-3qD0b- {
background-color: #202020;
}
.theme-dark .chat-3bRxxu, .theme-dark .chat-3bRxxu form, .theme-dark .content-yTz4x3 {
background-color: #202020;
}
.theme-dark .inner-zqa7da {
background-color: #303030;
color: #FFFFFF;
}
.theme-dark .markup-2BOw-j {
color: #FFFFFF;
}
.container-PNkimc {
background-color: #202020;
border-right: 2px solid #303030;
}
.theme-dark .guildsWrapper-5TJh6A {
background-color: #202020;
border-right: 2px solid #303030;
}
.theme-dark .container-2Thooq, .theme-light .container-2Thooq {
background-color: #202020;
border-right: 3px solid #303030;
}
.theme-dark .typing-2GQL18 {
background-color: #202020;
}
.searchBar-6Kv8R2 {
background-color: #202020;
color: #FFFFFF;
}
.scroller-2FKFPG {
background-color: #202020;
color: #FFFFFF;
border-right: 1px solid #303030;
}
.theme-dark .attachPopout-1n-ZKM {
background-color: #202020;
border: 2px solid #303030
}
.theme-dark .homeIcon-1FoKUJ {
background-color: #404040;
color: #FFFFFF;
}
.theme-dark .homeIcon-1FoKUJ:hover {
background-color: #606060;
color: #FFFFFF;
}
.theme-dark .headerBar-UHpsPw {
background: #202020;
color: #FFFFFF;
}
.theme-dark .body-SKIE6r {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .header-1RC2Wb {
background-color: #303030;
border-right: 2px solid #404040;
border-left: 2px solid #404040;
border-top: 2px solid #404040;
}
.theme-dark .header-39GIC8 {
background-color: #202020;
color: #FFFFFF;
}
.lookFilled-1Gx00P.colorBrand-3pXr91 {
background-color: #505050;
color: #FFFFFF;
}
.lookFilled-1Gx00P.colorBrand-3pXr91:hover {
background-color: #707070;
color: #FFFFFF;
}
.friendsTable-133bsv .friendTableAddWrapper-nHHZtK .friendTableAddHeader-m9bzFr .friendsTableAdd-1w2_qZ {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .container-3gCOGc {
background-color: #202020;
}
.theme-dark .codeRedemptionRedirect-1wVR4b {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .tier1Banner-1B_WXY {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .userSettingsVoice-iwdUCU .previewOverlay-2O7_KC {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .footer-2yfCgX {
background-color: #202020;
color: #FFFFFF;
}
.header-1R_AjF {
background-color: #202020;
}
.theme-dark .menu-Sp6bN1 {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .header-ykumBX {
background-color: #202020;
border-right: 2px solid #303030;
border-top: 2px solid #303030;
}
.container-1UB9sr {
background-color: #202020;
border-top: 2px solid #303030;
border-bottom-color: transparent;
}
.theme-dark .wrapper-35wsBm {
border-radius: 10px;
}
.theme-dark .search-2oPWTC .searchBar-3dMhjb {
border-radius: 10px;
}
.contentSelectedText-3wUhMi, .contentSelectedVoice-1WDIBM {
border-radius: 10px;
}
.content-20Aix8:hover {
border-radius: 10px;
}
#app-mount .payment-info .description-3_Ncsb, #app-mount .paymentSourceRow-3FbcL_ .subText-V8PTt8,
#app-mount .userSettingsAccount-2eMFVR div:nth-child(2) > div:nth-child(2) > .viewBody-2Qz-jg {transition: all .5s cubic-bezier(0.550, 0.085, 0.680, 0.530);filter: blur(8px);opacity:0}
#app-mount .payment-info .description-3_Ncsb:hover, #app-mount .paymentSourceRow-3FbcL_ .subText-V8PTt8:hover,
#app-mount .userSettingsAccount-2eMFVR div:nth-child(2) > div:nth-child(2) > .viewBody-2Qz-jg:hover {transition: all .5s cubic-bezier(0.550, 0.085, 0.680, 0.530);filter: none;opacity:1}
.theme-dark .layer-3QrUeG, .theme-dark .layers-3iHuyZ {
background: #202020;
}
.appMount-3lHmkl {
background-color: #202020;
}
.container-2lgZY8 {
background-color: #202020;
}
.header-2o-2hj {
border-right: 1px solid #303030;
}
.side-8zPYf6 .itemSelected-1qLhcL {
border-radius: 10px;
}
.side-8zPYf6 .item-PXvHYJ {
border-radius: 10px;
}
.theme-dark .searchBar-1MOL6S {
background-color: #202020;
border-radius: 10px;
border: 2px solid #404040;
}
.theme-dark .member-1q7VfX .tag-1YGWN9 {
color: transparent;
}
.theme-dark .cardPrimary-1Hv-to {
background-color: #202020;
border: 2px solid #303030;
}
.connectionDelete-2Odoln {
border-radius: 10px;
}
.accountDetails-3k9g4n .discriminator {
opacity: 0;
}
.accountDetails-3k9g4n .username {
margin-top: 15px;
}
.channel-2QD9_O.selected-1HYmZZ a {
border-radius: 10px;
}
.channel-2QD9_O.selected-1HYmZZ a, .channel-2QD9_O:hover a {
border-radius: 10px;
}
.searchBar-2_Yu-C {
background-color: #202020;
border: 2px solid #303030;
border-radius: 10px;
color: #FFFFFF;
}
.theme-dark .quickswitcher-3JagVE {
background-color: #202020;
color: #FFFFFF;
border-radius: 10px;
}
.theme-dark .input-2VB9rf {
background-color: #303030;
border: 2px solid #303030;
border-radius: 10px;
}
.theme-dark .action-1lSjCi, .theme-light .action-1lSjCi {
background-color: #202020;
border: 2px solid #303030;
border-radius: 10px;
}
.theme-light .input-UJ9Tr3 {
color: #FFFFFF;
}
.theme-light .input-1mgnkM {
color: #FFFFFF;
}
.regionSelectModal-12e-57 {
background-color: #202020;
color: #FFFFFF;
}
.regionSelectModal-12e-57 .regionSelectModalOption-2DSIZ3 {
background-color: #202020;
color: #FFFFFF;
border-color: transparent;
}
.theme-dark .message-2qRu38 {
background-color: #202020;
color: #FFFFFF;
}
#app-mount ::-webkit-scrollbar, #app-mount ::-webkit-scrollbar-track-piece {
visibility: hidden;
width: 8px;
}
#app-mount ::-webkit-scrollbar-thumb {
border: none!important;
background: #505050;
height: 100px;
}
#app-mount .membersWrap-2h-GB4 ::-webkit-scrollbar {
width:6px
}
.fieldWrapClosedBrand-1jWc-T {
border-radius: 10px;
}
.themeDefault-GTaCs3 {
background-color: #7289da;
color: #FFFFFF;
border-radius: 10px;
}
.channelNotices-41mJbj .channelNotice-1-XFjC.quickswitcher-35bYg4 {
background-color: #202020;
color: #FFFFFF;
}
} | data/usercss/169289.user.css | @-moz-document domain("discordapp.com")
{
body {
background: #202020;
color: #FFFFFF;
}
.pageWrapper-tZrsN5 {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .members-1998pB {
background-color: #202020;
}
.theme-dark .messagesWrapper-3lZDfY {
background-color: #202020;
}
.theme-dark .membersGroup-v9BXpm {
color: #B8B8B8;
}
.theme-dark .title-3qD0b- {
background-color: #202020;
}
.theme-dark .chat-3bRxxu, .theme-dark .chat-3bRxxu form, .theme-dark .content-yTz4x3 {
background-color: #202020;
}
.theme-dark .inner-zqa7da {
background-color: #303030;
color: #FFFFFF;
}
.theme-dark .markup-2BOw-j {
color: #FFFFFF;
}
.container-PNkimc {
background-color: #202020;
border-right: 2px solid #303030;
}
.theme-dark .guildsWrapper-5TJh6A {
background-color: #202020;
border-right: 2px solid #303030;
}
.theme-dark .container-2Thooq, .theme-light .container-2Thooq {
background-color: #202020;
border-right: 3px solid #303030;
}
.theme-dark .typing-2GQL18 {
background-color: #202020;
}
.searchBar-6Kv8R2 {
background-color: #202020;
color: #FFFFFF;
}
.scroller-2FKFPG {
background-color: #202020;
color: #FFFFFF;
border-right: 1px solid #303030;
}
.theme-dark .attachPopout-1n-ZKM {
background-color: #202020;
border: 2px solid #303030
}
.theme-dark .homeIcon-1FoKUJ {
background-color: #404040;
color: #FFFFFF;
}
.theme-dark .homeIcon-1FoKUJ:hover {
background-color: #606060;
color: #FFFFFF;
}
.theme-dark .headerBar-UHpsPw {
background: #202020;
color: #FFFFFF;
}
.theme-dark .body-SKIE6r {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .header-1RC2Wb {
background-color: #303030;
border-right: 2px solid #404040;
border-left: 2px solid #404040;
border-top: 2px solid #404040;
}
.theme-dark .header-39GIC8 {
background-color: #202020;
color: #FFFFFF;
}
.lookFilled-1Gx00P.colorBrand-3pXr91 {
background-color: #505050;
color: #FFFFFF;
}
.lookFilled-1Gx00P.colorBrand-3pXr91:hover {
background-color: #707070;
color: #FFFFFF;
}
.friendsTable-133bsv .friendTableAddWrapper-nHHZtK .friendTableAddHeader-m9bzFr .friendsTableAdd-1w2_qZ {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .container-3gCOGc {
background-color: #202020;
}
.theme-dark .codeRedemptionRedirect-1wVR4b {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .tier1Banner-1B_WXY {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .userSettingsVoice-iwdUCU .previewOverlay-2O7_KC {
background-color: #202020;
color: #FFFFFF;
}
.theme-dark .footer-2yfCgX {
background-color: #202020;
color: #FFFFFF;
}
.header-1R_AjF {
background-color: #202020;
}
.theme-dark .menu-Sp6bN1 {
background-color: #202020;
border: 2px solid #303030;
}
.theme-dark .header-ykumBX {
background-color: #202020;
border-right: 2px solid #303030;
border-top: 2px solid #303030;
}
.container-1UB9sr {
background-color: #202020;
border-top: 2px solid #303030;
border-bottom-color: transparent;
}
.theme-dark .wrapper-35wsBm {
border-radius: 10px;
}
.theme-dark .search-2oPWTC .searchBar-3dMhjb {
border-radius: 10px;
}
.contentSelectedText-3wUhMi, .contentSelectedVoice-1WDIBM {
border-radius: 10px;
}
.content-20Aix8:hover {
border-radius: 10px;
}
#app-mount .payment-info .description-3_Ncsb, #app-mount .paymentSourceRow-3FbcL_ .subText-V8PTt8,
#app-mount .userSettingsAccount-2eMFVR div:nth-child(2) > div:nth-child(2) > .viewBody-2Qz-jg {transition: all .5s cubic-bezier(0.550, 0.085, 0.680, 0.530);filter: blur(8px);opacity:0}
#app-mount .payment-info .description-3_Ncsb:hover, #app-mount .paymentSourceRow-3FbcL_ .subText-V8PTt8:hover,
#app-mount .userSettingsAccount-2eMFVR div:nth-child(2) > div:nth-child(2) > .viewBody-2Qz-jg:hover {transition: all .5s cubic-bezier(0.550, 0.085, 0.680, 0.530);filter: none;opacity:1}
.theme-dark .layer-3QrUeG, .theme-dark .layers-3iHuyZ {
background: #202020;
}
.appMount-3lHmkl {
background-color: #202020;
}
.container-2lgZY8 {
background-color: #202020;
}
.header-2o-2hj {
border-right: 1px solid #303030;
}
.side-8zPYf6 .itemSelected-1qLhcL {
border-radius: 10px;
}
.side-8zPYf6 .item-PXvHYJ {
border-radius: 10px;
}
.theme-dark .searchBar-1MOL6S {
background-color: #202020;
border-radius: 10px;
border: 2px solid #404040;
}
.theme-dark .member-1q7VfX .tag-1YGWN9 {
color: transparent;
}
.theme-dark .cardPrimary-1Hv-to {
background-color: #202020;
border: 2px solid #303030;
}
.connectionDelete-2Odoln {
border-radius: 10px;
}
.accountDetails-3k9g4n .discriminator {
opacity: 0;
}
.accountDetails-3k9g4n .username {
margin-top: 15px;
}
.channel-2QD9_O.selected-1HYmZZ a {
border-radius: 10px;
}
.channel-2QD9_O.selected-1HYmZZ a, .channel-2QD9_O:hover a {
border-radius: 10px;
}
.searchBar-2_Yu-C {
background-color: #202020;
border: 2px solid #303030;
border-radius: 10px;
color: #FFFFFF;
}
.theme-dark .quickswitcher-3JagVE {
background-color: #202020;
color: #FFFFFF;
border-radius: 10px;
}
.theme-dark .input-2VB9rf {
background-color: #303030;
border: 2px solid #303030;
border-radius: 10px;
}
.theme-dark .action-1lSjCi, .theme-light .action-1lSjCi {
background-color: #202020;
border: 2px solid #303030;
border-radius: 10px;
}
.theme-light .input-UJ9Tr3 {
color: #FFFFFF;
}
.theme-light .input-1mgnkM {
color: #FFFFFF;
}
.regionSelectModal-12e-57 {
background-color: #202020;
color: #FFFFFF;
}
.regionSelectModal-12e-57 .regionSelectModalOption-2DSIZ3 {
background-color: #202020;
color: #FFFFFF;
border-color: transparent;
}
.theme-dark .message-2qRu38 {
background-color: #202020;
color: #FFFFFF;
}
#app-mount ::-webkit-scrollbar, #app-mount ::-webkit-scrollbar-track-piece {
visibility: hidden;
width: 8px;
}
#app-mount ::-webkit-scrollbar-thumb {
border: none!important;
background: #505050;
height: 100px;
}
#app-mount .membersWrap-2h-GB4 ::-webkit-scrollbar {
width:6px
}
.fieldWrapClosedBrand-1jWc-T {
border-radius: 10px;
}
.themeDefault-GTaCs3 {
background-color: #7289da;
color: #FFFFFF;
border-radius: 10px;
}
.channelNotices-41mJbj .channelNotice-1-XFjC.quickswitcher-35bYg4 {
background-color: #202020;
color: #FFFFFF;
}
} | 0.220175 | 0.049959 |
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
font-family: "Open Sans", sans-serif;
color: #0c0c0c;
background-color: #ffffff;
overflow-x: hidden;
}
.layout_padding {
padding: 90px 0;
}
.layout_padding2 {
padding: 75px 0;
}
.layout_padding2-top {
padding-top: 75px;
}
.layout_padding2-bottom {
padding-bottom: 75px;
}
.layout_padding-top {
padding-top: 90px;
}
.layout_padding-bottom {
padding-bottom: 90px;
}
.heading_container {
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: start;
-ms-flex-align: start;
align-items: flex-start;
}
.heading_container h2 {
position: relative;
font-weight: bold;
margin-bottom: 0;
}
.heading_container h2 span {
color: #40a798;
}
.heading_container p {
margin-top: 10px;
margin-bottom: 0;
}
.heading_container.heading_center {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
a,
a:hover,
a:focus {
text-decoration: none;
}
a:hover,
a:focus {
color: initial;
}
.btn,
.btn:focus {
outline: none !important;
-webkit-box-shadow: none;
box-shadow: none;
}
/*header section*/
.hero_area {
position: relative;
min-height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.sub_page .hero_area {
min-height: auto;
}
.sub_page .header_section {
margin-top: 0;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.header_section .header_top {
padding: 15px 0;
background-color: #476269;
}
.header_section .header_top .contact_nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.header_section .header_top .contact_nav a {
color: #ffffff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 15px;
}
.header_section .header_top .contact_nav a i {
margin-right: 7px;
background-color: #ffffff;
width: 30px;
height: 30px;
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;
color: #40a798;
}
.header_section .header_top .contact_nav a:hover i {
color: #476269;
}
.header_section .header_bottom {
background: linear-gradient(120deg, #ffffff 25%, #40a798 25%);
padding: 15px 0;
}
.header_section .header_bottom .container-fluid {
padding-right: 25px;
padding-left: 25px;
}
.navbar-brand span {
font-weight: bold;
font-size: 24px;
color: #000000;
}
.custom_nav-container {
padding: 0;
}
.custom_nav-container .navbar-nav {
margin-left: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
padding: 5px 20px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .nav_search-btn {
width: 35px;
height: 35px;
padding: 0;
border: none;
color: #ffffff;
}
.custom_nav-container .nav_search-btn:hover {
color: #ffffff;
}
.custom_nav-container .navbar-toggler {
outline: none;
}
.custom_nav-container .navbar-toggler {
padding: 0;
width: 37px;
height: 42px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
display: block;
width: 35px;
height: 4px;
background-color: #ffffff;
margin: 7px 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
position: relative;
border-radius: 5px;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
content: "";
position: absolute;
left: 0;
height: 100%;
width: 100%;
background-color: #ffffff;
top: -10px;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
top: 0;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
margin: 0;
margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
display: none;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
margin: 0;
margin-top: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
-webkit-transform: none;
transform: none;
}
/*end header section*/
/* slider section */
.slider_section {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
padding: 75px 0;
}
.slider_section .slider_bg_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.slider_section .slider_bg_box img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.slider_section .slider_bg_box::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left top, right top, from(rgba(37, 37, 37, 0.8)), to(rgba(37, 37, 37, 0.65)));
background: linear-gradient(to right, rgba(37, 37, 37, 0.8), rgba(37, 37, 37, 0.65));
}
.slider_section .row {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.slider_section #customCarousel1 {
width: 100%;
position: unset;
}
.slider_section .detail-box {
color: #476269;
text-align: center;
}
.slider_section .detail-box h1 {
font-weight: bold;
text-transform: uppercase;
margin-bottom: 15px;
color: #ffffff;
}
.slider_section .detail-box p {
color: #fefefe;
font-size: 14px;
}
.slider_section .detail-box a {
display: inline-block;
padding: 10px 45px;
background-color: #40a798;
color: #ffffff;
border-radius: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 20px;
}
.slider_section .detail-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.slider_section .carousel-indicators {
position: unset;
margin: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 45px;
}
.slider_section .carousel-indicators li {
width: 25px;
height: 25px;
text-align: center;
line-height: 25px;
border-radius: 100%;
opacity: 1;
text-indent: unset;
background-clip: unset;
border: none;
font-weight: 500;
background-color: transparent;
color: #ffffff;
opacity: 0.7;
border-radius: 100%;
border: 2px solid transparent;
font-size: 14px;
}
.slider_section .carousel-indicators li.active {
border: 2px solid #ffffff;
opacity: 1;
}
.service_section {
position: relative;
}
.service_section .box {
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;
margin-top: 55px;
border-radius: 5px;
}
.service_section .box .img-box {
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;
width: 90px;
min-width: 90px;
height: 90px;
padding: 10px;
margin-bottom: -45px;
position: relative;
}
.service_section .box .img-box img {
max-width: 50px;
max-height: 50px;
position: relative;
z-index: 3;
}
.service_section .box .img-box::before, .service_section .box .img-box::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #40a798;
z-index: 2;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.service_section .box .img-box::before {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.service_section .box .img-box::after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.service_section .box .detail-box {
background-color: #f8f8f9;
padding: 75px 20px 20px 20px;
text-align: center;
}
.service_section .box .detail-box h5 {
font-weight: bold;
text-transform: uppercase;
}
.service_section .box .detail-box a {
color: #476269;
font-weight: 600;
}
.service_section .box .detail-box a:hover {
color: #40a798;
}
.service_section .box:hover .img-box::before {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.about_section .row {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.about_section .img-box {
position: relative;
padding: 0 45px 45px 0;
}
.about_section .img-box img {
max-width: 100%;
position: relative;
z-index: 2;
}
.about_section .img-box::before {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: calc(100% - 45px);
height: 450px;
background-color: #476269;
z-index: 1;
opacity: 0.45;
}
.about_section .detail-box p {
color: #1f1f1f;
margin-top: 15px;
}
.about_section .detail-box a {
display: inline-block;
padding: 10px 45px;
background-color: #40a798;
color: #ffffff;
border-radius: 0px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 15px;
}
.about_section .detail-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* why us section */
.why_us_section {
position: relative;
color: #ffffff;
}
.why_us_section .why_bg_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.why_us_section .why_bg_box img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.why_us_section .why_bg_box::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left top, right top, from(rgba(71, 98, 105, 0.6)), to(rgba(71, 98, 105, 0.65)));
background: linear-gradient(to right, rgba(71, 98, 105, 0.6), rgba(71, 98, 105, 0.65));
}
.why_us_section .box {
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;
text-align: center;
margin: 20px 0;
}
.why_us_section .box .num-box {
border-radius: 5px;
color: #ffffff;
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;
font-size: 2.5rem;
font-weight: bold;
}
.why_us_section .box h5 {
margin: 0;
margin-top: 15px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
}
.why_us_section .btn-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 45px;
}
.why_us_section .btn-box a {
display: inline-block;
padding: 10px 45px;
background-color: #476269;
color: #ffffff;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
}
.why_us_section .btn-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* end why us section */
/* client section start */
.client_section .container {
padding: 0;
}
.client_section .heading_container {
margin-bottom: 30px;
padding: 0 15px;
}
.client_section .box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 15px;
background-color: #ffffff;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
padding: 25px;
}
.client_section .box .client_id {
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;
text-align: center;
margin-right: 25px;
min-width: 135px;
}
.client_section .box .client_id h5 {
font-size: 17px;
font-weight: 600;
margin: 0;
margin-top: 10px;
}
.client_section .box .img-box {
position: relative;
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;
width: 100px;
min-width: 100px;
position: relative;
}
.client_section .box .img-box img {
border-radius: 100%;
border: 5px solid #476269;
}
.client_section .box .detail-box p {
margin-bottom: 10px;
}
.client_section .box .detail-box i {
color: #476269;
margin-bottom: 10px;
}
.client_section .owl-carousel .owl-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0 15px;
margin-top: 45px;
}
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
width: 55px;
height: 55px;
background-color: #40a798;
color: #ffffff;
outline: none;
bottom: 0px;
font-size: 24px;
margin: 0 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
background-color: #476269;
}
/* client section end */
.contact_section {
position: relative;
padding-bottom: 90px;
}
.contact_section .heading_container {
margin-bottom: 25px;
}
.contact_section .heading_container h2 {
text-transform: uppercase;
}
.contact_section .form_container {
margin-right: 15px;
}
.contact_section .form_container input {
width: 100%;
border: none;
height: 50px;
margin-bottom: 25px;
padding-left: 15px;
outline: none;
color: #101010;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .form_container input::-webkit-input-placeholder {
color: #476269;
}
.contact_section .form_container input:-ms-input-placeholder {
color: #476269;
}
.contact_section .form_container input::-ms-input-placeholder {
color: #476269;
}
.contact_section .form_container input::placeholder {
color: #476269;
}
.contact_section .form_container input.message-box {
height: 120px;
}
.contact_section .form_container button {
border: none;
text-transform: uppercase;
display: inline-block;
padding: 12px 55px;
background-color: #40a798;
color: #ffffff;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
}
.contact_section .form_container button:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .map_container {
height: 420px;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
padding: 0;
}
.contact_section .map_container .map {
height: 100%;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.contact_section .map_container .map #googleMap {
height: 100%;
}
.info_section {
background-color: #476269;
color: #ffffff;
padding: 45px 0 15px 0;
}
.info_section h4 {
font-weight: 600;
margin-bottom: 20px;
}
.info_section .info_col {
margin-bottom: 30px;
}
.info_section .info_contact .contact_link_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.info_section .info_contact .contact_link_box a {
margin: 5px 0;
color: #ffffff;
}
.info_section .info_contact .contact_link_box a i {
margin-right: 5px;
}
.info_section .info_contact .contact_link_box a:hover {
color: #5ac0b1;
}
.info_section .info_social {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 20px;
margin-bottom: 10px;
}
.info_section .info_social a {
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;
color: #ffffff;
border-radius: 100%;
margin-right: 10px;
font-size: 24px;
}
.info_section .info_social a:hover {
color: #5ac0b1;
}
.info_section .info_links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.info_section .info_links a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 15px;
color: #ffffff;
}
.info_section .info_links a:hover {
color: #5ac0b1;
}
.info_section form input {
border: none;
border-bottom: 1px solid #ffffff;
background-color: transparent;
width: 100%;
height: 45px;
color: #ffffff;
outline: none;
}
.info_section form input::-webkit-input-placeholder {
color: #ffffff;
}
.info_section form input:-ms-input-placeholder {
color: #ffffff;
}
.info_section form input::-ms-input-placeholder {
color: #ffffff;
}
.info_section form input::placeholder {
color: #ffffff;
}
.info_section form button {
width: 100%;
text-align: center;
display: inline-block;
padding: 10px 55px;
background-color: #40a798;
color: #ffffff;
border-radius: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 15px;
}
.info_section form button:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* footer section*/
.footer_section {
position: relative;
background-color: #ffffff;
text-align: center;
}
.footer_section p {
color: #476269;
padding: 25px 0;
margin: 0;
}
.footer_section p a {
color: inherit;
}
/*# sourceMappingURL=style.css.map */ | css/style.css | @import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
font-family: "Open Sans", sans-serif;
color: #0c0c0c;
background-color: #ffffff;
overflow-x: hidden;
}
.layout_padding {
padding: 90px 0;
}
.layout_padding2 {
padding: 75px 0;
}
.layout_padding2-top {
padding-top: 75px;
}
.layout_padding2-bottom {
padding-bottom: 75px;
}
.layout_padding-top {
padding-top: 90px;
}
.layout_padding-bottom {
padding-bottom: 90px;
}
.heading_container {
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: start;
-ms-flex-align: start;
align-items: flex-start;
}
.heading_container h2 {
position: relative;
font-weight: bold;
margin-bottom: 0;
}
.heading_container h2 span {
color: #40a798;
}
.heading_container p {
margin-top: 10px;
margin-bottom: 0;
}
.heading_container.heading_center {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
a,
a:hover,
a:focus {
text-decoration: none;
}
a:hover,
a:focus {
color: initial;
}
.btn,
.btn:focus {
outline: none !important;
-webkit-box-shadow: none;
box-shadow: none;
}
/*header section*/
.hero_area {
position: relative;
min-height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.sub_page .hero_area {
min-height: auto;
}
.sub_page .header_section {
margin-top: 0;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.header_section .header_top {
padding: 15px 0;
background-color: #476269;
}
.header_section .header_top .contact_nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.header_section .header_top .contact_nav a {
color: #ffffff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 15px;
}
.header_section .header_top .contact_nav a i {
margin-right: 7px;
background-color: #ffffff;
width: 30px;
height: 30px;
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;
color: #40a798;
}
.header_section .header_top .contact_nav a:hover i {
color: #476269;
}
.header_section .header_bottom {
background: linear-gradient(120deg, #ffffff 25%, #40a798 25%);
padding: 15px 0;
}
.header_section .header_bottom .container-fluid {
padding-right: 25px;
padding-left: 25px;
}
.navbar-brand span {
font-weight: bold;
font-size: 24px;
color: #000000;
}
.custom_nav-container {
padding: 0;
}
.custom_nav-container .navbar-nav {
margin-left: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
padding: 5px 20px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .nav_search-btn {
width: 35px;
height: 35px;
padding: 0;
border: none;
color: #ffffff;
}
.custom_nav-container .nav_search-btn:hover {
color: #ffffff;
}
.custom_nav-container .navbar-toggler {
outline: none;
}
.custom_nav-container .navbar-toggler {
padding: 0;
width: 37px;
height: 42px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
display: block;
width: 35px;
height: 4px;
background-color: #ffffff;
margin: 7px 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
position: relative;
border-radius: 5px;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
content: "";
position: absolute;
left: 0;
height: 100%;
width: 100%;
background-color: #ffffff;
top: -10px;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
top: 0;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
margin: 0;
margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
display: none;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
margin: 0;
margin-top: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
-webkit-transform: none;
transform: none;
}
/*end header section*/
/* slider section */
.slider_section {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
padding: 75px 0;
}
.slider_section .slider_bg_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.slider_section .slider_bg_box img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.slider_section .slider_bg_box::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left top, right top, from(rgba(37, 37, 37, 0.8)), to(rgba(37, 37, 37, 0.65)));
background: linear-gradient(to right, rgba(37, 37, 37, 0.8), rgba(37, 37, 37, 0.65));
}
.slider_section .row {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.slider_section #customCarousel1 {
width: 100%;
position: unset;
}
.slider_section .detail-box {
color: #476269;
text-align: center;
}
.slider_section .detail-box h1 {
font-weight: bold;
text-transform: uppercase;
margin-bottom: 15px;
color: #ffffff;
}
.slider_section .detail-box p {
color: #fefefe;
font-size: 14px;
}
.slider_section .detail-box a {
display: inline-block;
padding: 10px 45px;
background-color: #40a798;
color: #ffffff;
border-radius: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 20px;
}
.slider_section .detail-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.slider_section .carousel-indicators {
position: unset;
margin: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 45px;
}
.slider_section .carousel-indicators li {
width: 25px;
height: 25px;
text-align: center;
line-height: 25px;
border-radius: 100%;
opacity: 1;
text-indent: unset;
background-clip: unset;
border: none;
font-weight: 500;
background-color: transparent;
color: #ffffff;
opacity: 0.7;
border-radius: 100%;
border: 2px solid transparent;
font-size: 14px;
}
.slider_section .carousel-indicators li.active {
border: 2px solid #ffffff;
opacity: 1;
}
.service_section {
position: relative;
}
.service_section .box {
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;
margin-top: 55px;
border-radius: 5px;
}
.service_section .box .img-box {
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;
width: 90px;
min-width: 90px;
height: 90px;
padding: 10px;
margin-bottom: -45px;
position: relative;
}
.service_section .box .img-box img {
max-width: 50px;
max-height: 50px;
position: relative;
z-index: 3;
}
.service_section .box .img-box::before, .service_section .box .img-box::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #40a798;
z-index: 2;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.service_section .box .img-box::before {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.service_section .box .img-box::after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.service_section .box .detail-box {
background-color: #f8f8f9;
padding: 75px 20px 20px 20px;
text-align: center;
}
.service_section .box .detail-box h5 {
font-weight: bold;
text-transform: uppercase;
}
.service_section .box .detail-box a {
color: #476269;
font-weight: 600;
}
.service_section .box .detail-box a:hover {
color: #40a798;
}
.service_section .box:hover .img-box::before {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.about_section .row {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.about_section .img-box {
position: relative;
padding: 0 45px 45px 0;
}
.about_section .img-box img {
max-width: 100%;
position: relative;
z-index: 2;
}
.about_section .img-box::before {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: calc(100% - 45px);
height: 450px;
background-color: #476269;
z-index: 1;
opacity: 0.45;
}
.about_section .detail-box p {
color: #1f1f1f;
margin-top: 15px;
}
.about_section .detail-box a {
display: inline-block;
padding: 10px 45px;
background-color: #40a798;
color: #ffffff;
border-radius: 0px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 15px;
}
.about_section .detail-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* why us section */
.why_us_section {
position: relative;
color: #ffffff;
}
.why_us_section .why_bg_box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.why_us_section .why_bg_box img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.why_us_section .why_bg_box::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left top, right top, from(rgba(71, 98, 105, 0.6)), to(rgba(71, 98, 105, 0.65)));
background: linear-gradient(to right, rgba(71, 98, 105, 0.6), rgba(71, 98, 105, 0.65));
}
.why_us_section .box {
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;
text-align: center;
margin: 20px 0;
}
.why_us_section .box .num-box {
border-radius: 5px;
color: #ffffff;
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;
font-size: 2.5rem;
font-weight: bold;
}
.why_us_section .box h5 {
margin: 0;
margin-top: 15px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
}
.why_us_section .btn-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 45px;
}
.why_us_section .btn-box a {
display: inline-block;
padding: 10px 45px;
background-color: #476269;
color: #ffffff;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
}
.why_us_section .btn-box a:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* end why us section */
/* client section start */
.client_section .container {
padding: 0;
}
.client_section .heading_container {
margin-bottom: 30px;
padding: 0 15px;
}
.client_section .box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 15px;
background-color: #ffffff;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
padding: 25px;
}
.client_section .box .client_id {
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;
text-align: center;
margin-right: 25px;
min-width: 135px;
}
.client_section .box .client_id h5 {
font-size: 17px;
font-weight: 600;
margin: 0;
margin-top: 10px;
}
.client_section .box .img-box {
position: relative;
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;
width: 100px;
min-width: 100px;
position: relative;
}
.client_section .box .img-box img {
border-radius: 100%;
border: 5px solid #476269;
}
.client_section .box .detail-box p {
margin-bottom: 10px;
}
.client_section .box .detail-box i {
color: #476269;
margin-bottom: 10px;
}
.client_section .owl-carousel .owl-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0 15px;
margin-top: 45px;
}
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
width: 55px;
height: 55px;
background-color: #40a798;
color: #ffffff;
outline: none;
bottom: 0px;
font-size: 24px;
margin: 0 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
background-color: #476269;
}
/* client section end */
.contact_section {
position: relative;
padding-bottom: 90px;
}
.contact_section .heading_container {
margin-bottom: 25px;
}
.contact_section .heading_container h2 {
text-transform: uppercase;
}
.contact_section .form_container {
margin-right: 15px;
}
.contact_section .form_container input {
width: 100%;
border: none;
height: 50px;
margin-bottom: 25px;
padding-left: 15px;
outline: none;
color: #101010;
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .form_container input::-webkit-input-placeholder {
color: #476269;
}
.contact_section .form_container input:-ms-input-placeholder {
color: #476269;
}
.contact_section .form_container input::-ms-input-placeholder {
color: #476269;
}
.contact_section .form_container input::placeholder {
color: #476269;
}
.contact_section .form_container input.message-box {
height: 120px;
}
.contact_section .form_container button {
border: none;
text-transform: uppercase;
display: inline-block;
padding: 12px 55px;
background-color: #40a798;
color: #ffffff;
border-radius: 5px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
}
.contact_section .form_container button:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .map_container {
height: 420px;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
padding: 0;
}
.contact_section .map_container .map {
height: 100%;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.contact_section .map_container .map #googleMap {
height: 100%;
}
.info_section {
background-color: #476269;
color: #ffffff;
padding: 45px 0 15px 0;
}
.info_section h4 {
font-weight: 600;
margin-bottom: 20px;
}
.info_section .info_col {
margin-bottom: 30px;
}
.info_section .info_contact .contact_link_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.info_section .info_contact .contact_link_box a {
margin: 5px 0;
color: #ffffff;
}
.info_section .info_contact .contact_link_box a i {
margin-right: 5px;
}
.info_section .info_contact .contact_link_box a:hover {
color: #5ac0b1;
}
.info_section .info_social {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 20px;
margin-bottom: 10px;
}
.info_section .info_social a {
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;
color: #ffffff;
border-radius: 100%;
margin-right: 10px;
font-size: 24px;
}
.info_section .info_social a:hover {
color: #5ac0b1;
}
.info_section .info_links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.info_section .info_links a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 15px;
color: #ffffff;
}
.info_section .info_links a:hover {
color: #5ac0b1;
}
.info_section form input {
border: none;
border-bottom: 1px solid #ffffff;
background-color: transparent;
width: 100%;
height: 45px;
color: #ffffff;
outline: none;
}
.info_section form input::-webkit-input-placeholder {
color: #ffffff;
}
.info_section form input:-ms-input-placeholder {
color: #ffffff;
}
.info_section form input::-ms-input-placeholder {
color: #ffffff;
}
.info_section form input::placeholder {
color: #ffffff;
}
.info_section form button {
width: 100%;
text-align: center;
display: inline-block;
padding: 10px 55px;
background-color: #40a798;
color: #ffffff;
border-radius: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border: none;
margin-top: 15px;
}
.info_section form button:hover {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}
/* footer section*/
.footer_section {
position: relative;
background-color: #ffffff;
text-align: center;
}
.footer_section p {
color: #476269;
padding: 25px 0;
margin: 0;
}
.footer_section p a {
color: inherit;
}
/*# sourceMappingURL=style.css.map */ | 0.360264 | 0.067179 |
#topdiv {
background : black;
height: 64px;
}
#toptitle {
font-weight: 900;
color:#3399FF;
margin-top:22px;
margin-left:28px;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:28px;
font-stretch:ultra-expanded;
}
#toplink {
color:white;
margin-top:22px;
margin-left:20px;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:16px;
}
#byetext {
color: #808080;
text-align: center;
text-shadow: 1px 1px #ff0000;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:16px;
}
#contentdiv {
background:#FFFFFF;
width: 80%;
border-style: groove;
min-height: 600px;
margin-top: 45px;
margin-left: 45px;
}
#contentheader {
margin-top:20px;
margin-left:20px;
margin-bottom:8px;
color: red;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-stretch: expanded;
font-size:16px;
font-weight: bold;
}
#codediv {
width: 100%;
height: 500px;
background: #f4f4f4;
border: 1px solid #ddd;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 12px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
word-wrap: break-word;
}
#imgtime {
display: block;
margin-left: auto;
margin-right: auto;
height: auto;
}
#imgcenter {
display: block;
margin-left: auto;
margin-right: auto;
width: 742;
height: auto;
}
#code {
display:block;
background: #f4f4f4;
border: 1px solid #ddd;
border-left: 2px solid #f36d33;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 14px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}
#lispc {
line-height: 2.5em;
float: left;
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
li:not(:last-child)
margin: 30px auto;
}
p {
margin-left:20px;
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#hilink {
margin-left:20px;
color: blue;
font-size:16px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
li:not(:last-child) {
margin-bottom: 5px;
}
li {
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
h1 {
color: #5895d2;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-stretch: expanded;
font-size:16px;
}
body:before{
content: '';
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
background: url(watermark.png) 0 0 repeat;
background-position: center;
opacity: 0.1;
} | doc/html/te.css |
#topdiv {
background : black;
height: 64px;
}
#toptitle {
font-weight: 900;
color:#3399FF;
margin-top:22px;
margin-left:28px;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:28px;
font-stretch:ultra-expanded;
}
#toplink {
color:white;
margin-top:22px;
margin-left:20px;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:16px;
}
#byetext {
color: #808080;
text-align: center;
text-shadow: 1px 1px #ff0000;
font-family: "Comic Sans MS", "Comic Sans", cursive; Verdana;
font-size:16px;
}
#contentdiv {
background:#FFFFFF;
width: 80%;
border-style: groove;
min-height: 600px;
margin-top: 45px;
margin-left: 45px;
}
#contentheader {
margin-top:20px;
margin-left:20px;
margin-bottom:8px;
color: red;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-stretch: expanded;
font-size:16px;
font-weight: bold;
}
#codediv {
width: 100%;
height: 500px;
background: #f4f4f4;
border: 1px solid #ddd;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 12px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
word-wrap: break-word;
}
#imgtime {
display: block;
margin-left: auto;
margin-right: auto;
height: auto;
}
#imgcenter {
display: block;
margin-left: auto;
margin-right: auto;
width: 742;
height: auto;
}
#code {
display:block;
background: #f4f4f4;
border: 1px solid #ddd;
border-left: 2px solid #f36d33;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 14px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}
#lispc {
line-height: 2.5em;
float: left;
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
li:not(:last-child)
margin: 30px auto;
}
p {
margin-left:20px;
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#hilink {
margin-left:20px;
color: blue;
font-size:16px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
li:not(:last-child) {
margin-bottom: 5px;
}
li {
color: black;
font-size:14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
h1 {
color: #5895d2;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-stretch: expanded;
font-size:16px;
}
body:before{
content: '';
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
background: url(watermark.png) 0 0 repeat;
background-position: center;
opacity: 0.1;
} | 0.277669 | 0.078536 |
:root {
--arm_light_blue: #00C1DE;
--arm_blue: #11809F;
--arm_blue1: #0091BD;
--arm_dark_blue: #002B49;
--arm_light_gray: #E5ECEB;
--arm_light_gray1: #EFF5F4;
--arm_light_gray2: #EBEBEB;
--arm_light_gray3: #F7F7F7;
--arm_dark_gray: #7D868C;
--arm_black: #333E48;
--arm_orange: #FF6B00;
}
#nav-tree ul {
list-style:none outside none;
margin:0px;
padding:0px;
}
#nav-tree li {
white-space:nowrap;
margin:0px;
padding:0px;
}
#nav-tree .plus {
margin:0px;
}
#nav-tree .selected {
border: 1.5px solid var(--arm_blue);
border-left-width: 5px;
margin-left:-10px; /*correction to place selection border on the edge screen edge */
}
#nav-tree img {
margin:0px;
padding:0px;
border:0px;
vertical-align: middle;
}
#nav-tree a {
text-decoration:none;
padding:0px;
padding-left:0px;
margin:0px;
outline:none;
}
#nav-tree .label {
margin:0px;
padding:0px;
font: 15px Lato, Calibri, sans-serif;
}
#nav-tree .label:hover {
color: var(--arm_orange);
}
#nav-tree .label a {
padding-left:6px;
line-height: 30px;
color: var(--arm_black);
}
#nav-tree .selected a {
font-weight: bold;
}
/*correction for the larger box border on the left (10px-5px) */
#nav-tree .selected .arrow {
margin-left:5px;
}
#nav-tree .children_ul {
margin:0px;
padding:0px;
}
#nav-tree {
padding: 0px 0px;
padding-left: 10px; /*correction to add space before the first arrow in nav-tree */
background-color: #FAFAFF;
overflow:auto;
}
#doc-content {
overflow:auto;
display:block;
padding:0px;
margin:0px;
-webkit-overflow-scrolling : touch; /* iOS 5+ */
}
#side-nav {
padding:0 2px 0 0;
margin: 0px;
display:block;
position: absolute;
left: 0px;
width: 310px;
}
.ui-resizable .ui-resizable-handle {
display:block;
}
.ui-resizable-e {
background-color: var(--arm_light_gray);
background-repeat:repeat-y;
background-attachment: scroll;
cursor:ew-resize;
height:100%;
right:0;
top:0;
width:2px;
}
.ui-resizable-handle {
display:none;
font-size:0.1px;
position:absolute;
z-index:1;
}
#nav-tree-contents {
margin: 6px 0px 0px 0px;
}
#nav-tree {
background-color: white;
-webkit-overflow-scrolling : touch; /* iOS 5+ */
}
#nav-sync {
position:absolute;
top:5px;
right:24px;
z-index:0;
}
#nav-sync img {
opacity:0.0;
}
#nav-sync img:hover {
opacity:0.0;
}
#nav-tree a:hover {
color: var(--arm_orange);
}
@media print
{
#nav-tree { display: none; }
div.ui-resizable-handle { display: none; position: relative; }
} | Doxygen/_DoxyTemplates/navtree.css | :root {
--arm_light_blue: #00C1DE;
--arm_blue: #11809F;
--arm_blue1: #0091BD;
--arm_dark_blue: #002B49;
--arm_light_gray: #E5ECEB;
--arm_light_gray1: #EFF5F4;
--arm_light_gray2: #EBEBEB;
--arm_light_gray3: #F7F7F7;
--arm_dark_gray: #7D868C;
--arm_black: #333E48;
--arm_orange: #FF6B00;
}
#nav-tree ul {
list-style:none outside none;
margin:0px;
padding:0px;
}
#nav-tree li {
white-space:nowrap;
margin:0px;
padding:0px;
}
#nav-tree .plus {
margin:0px;
}
#nav-tree .selected {
border: 1.5px solid var(--arm_blue);
border-left-width: 5px;
margin-left:-10px; /*correction to place selection border on the edge screen edge */
}
#nav-tree img {
margin:0px;
padding:0px;
border:0px;
vertical-align: middle;
}
#nav-tree a {
text-decoration:none;
padding:0px;
padding-left:0px;
margin:0px;
outline:none;
}
#nav-tree .label {
margin:0px;
padding:0px;
font: 15px Lato, Calibri, sans-serif;
}
#nav-tree .label:hover {
color: var(--arm_orange);
}
#nav-tree .label a {
padding-left:6px;
line-height: 30px;
color: var(--arm_black);
}
#nav-tree .selected a {
font-weight: bold;
}
/*correction for the larger box border on the left (10px-5px) */
#nav-tree .selected .arrow {
margin-left:5px;
}
#nav-tree .children_ul {
margin:0px;
padding:0px;
}
#nav-tree {
padding: 0px 0px;
padding-left: 10px; /*correction to add space before the first arrow in nav-tree */
background-color: #FAFAFF;
overflow:auto;
}
#doc-content {
overflow:auto;
display:block;
padding:0px;
margin:0px;
-webkit-overflow-scrolling : touch; /* iOS 5+ */
}
#side-nav {
padding:0 2px 0 0;
margin: 0px;
display:block;
position: absolute;
left: 0px;
width: 310px;
}
.ui-resizable .ui-resizable-handle {
display:block;
}
.ui-resizable-e {
background-color: var(--arm_light_gray);
background-repeat:repeat-y;
background-attachment: scroll;
cursor:ew-resize;
height:100%;
right:0;
top:0;
width:2px;
}
.ui-resizable-handle {
display:none;
font-size:0.1px;
position:absolute;
z-index:1;
}
#nav-tree-contents {
margin: 6px 0px 0px 0px;
}
#nav-tree {
background-color: white;
-webkit-overflow-scrolling : touch; /* iOS 5+ */
}
#nav-sync {
position:absolute;
top:5px;
right:24px;
z-index:0;
}
#nav-sync img {
opacity:0.0;
}
#nav-sync img:hover {
opacity:0.0;
}
#nav-tree a:hover {
color: var(--arm_orange);
}
@media print
{
#nav-tree { display: none; }
div.ui-resizable-handle { display: none; position: relative; }
} | 0.403802 | 0.139983 |
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*****************************************/
/* Variables */
:root {
/* Colors */
--clr-orange: hsl(31, 77%, 52%);
--clr-dark-cyan: hsl(184, 100%, 22%);
--clr-very-dark-cyan: hsl(179, 100%, 13%);
--clr-transparent-white: hsla(0, 0%, 100%, 0.75);
--clr-very-light-gray: hsl(0, 0%, 95%);
--clr-accessibility: hsl(0, 4%, 10%);
/* Fonts */
--font-title-700: 'Big Shoulders Display', cursive;
--font-text-400: 'Lexend Deca', sans-serif;
}
/*****************************************/
/* General Styles */
body {
background-color: var(--clr-very-light-gray);
width: 100%;
min-height: 100vh;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
gap: 2rem;
font-family: var(--font-text-400);
padding-block: 2rem;
}
/*****************************************/
/* Cards Container */
.cards-container {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.hero-card {
padding: clamp(2.3rem, 5%, 2.4rem);
max-width: 300px;
}
/* Sedans Card */
.card-sedans {
background-color: var(--clr-orange);
border-radius: 10px 10px 0 0;
color: var(--clr-orange);
}
.card__title {
font-family: var(--font-title-700);
font-size: 2rem;
text-transform: uppercase;
color: var(--clr-very-light-gray);
margin-block: 1.5rem;
}
.card__description {
color: var(--clr-transparent-white);
line-height: 1.5rem;
font-size: 0.938rem;
margin-bottom: 2rem;
}
.card__btn {
text-decoration: none;
display: inline-block;
background-color: var(--clr-very-light-gray);
border: 2px solid var(--clr-very-light-gray);
border-radius: 30px;
font-family: var(--font-text-400);
font-size: 0.938rem;
color: inherit;
padding: 1rem 2rem;
transition-duration: 0.3s;
}
.card__btn:hover,
.card__btn:focus-within {
background-color: transparent;
color: var(--clr-very-light-gray);
}
/* Suvs Card */
.card-suvs {
background-color: var(--clr-dark-cyan);
color: var(--clr-dark-cyan);
}
/* Luxury Card */
.card-luxury {
background-color: var(--clr-very-dark-cyan);
color: var(--clr-very-dark-cyan);
border-radius: 0 0 10px 10px;
}
/* Cards border-radius adjust for display between 600px and 899px */
@media (min-width: 600px) {
.card-sedans {
border-radius: 10px 0 0 10px;
}
.card-suvs {
border-radius: 0 10px 10px 0;
}
.card__description {
font-size: 1rem;
margin-bottom: 4rem;
}
.card__btn {
font-size: 1rem;
}
}
/* Cards border-radius adjust for display above 900px */
@media (min-width: 900px) {
.card-sedans {
border-radius: 10px 0 0 10px;
}
.card-suvs {
border-radius: 0;
}
.card-luxury {
border-radius: 0 10px 10px 0;
}
}
/*****************************************/
/* Footer */
.attribution {
color: var(--clr-very-dark-cyan);
text-align: center;
line-height: 1.6em;
padding-inline: 1em;
}
.attribution a {
text-decoration: none;
color: var(--clr-dark-cyan);
}
.attribution a:hover,
.attribution a:focus-within {
text-decoration: underline;
} | css/style.css | @import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*****************************************/
/* Variables */
:root {
/* Colors */
--clr-orange: hsl(31, 77%, 52%);
--clr-dark-cyan: hsl(184, 100%, 22%);
--clr-very-dark-cyan: hsl(179, 100%, 13%);
--clr-transparent-white: hsla(0, 0%, 100%, 0.75);
--clr-very-light-gray: hsl(0, 0%, 95%);
--clr-accessibility: hsl(0, 4%, 10%);
/* Fonts */
--font-title-700: 'Big Shoulders Display', cursive;
--font-text-400: 'Lexend Deca', sans-serif;
}
/*****************************************/
/* General Styles */
body {
background-color: var(--clr-very-light-gray);
width: 100%;
min-height: 100vh;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
gap: 2rem;
font-family: var(--font-text-400);
padding-block: 2rem;
}
/*****************************************/
/* Cards Container */
.cards-container {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.hero-card {
padding: clamp(2.3rem, 5%, 2.4rem);
max-width: 300px;
}
/* Sedans Card */
.card-sedans {
background-color: var(--clr-orange);
border-radius: 10px 10px 0 0;
color: var(--clr-orange);
}
.card__title {
font-family: var(--font-title-700);
font-size: 2rem;
text-transform: uppercase;
color: var(--clr-very-light-gray);
margin-block: 1.5rem;
}
.card__description {
color: var(--clr-transparent-white);
line-height: 1.5rem;
font-size: 0.938rem;
margin-bottom: 2rem;
}
.card__btn {
text-decoration: none;
display: inline-block;
background-color: var(--clr-very-light-gray);
border: 2px solid var(--clr-very-light-gray);
border-radius: 30px;
font-family: var(--font-text-400);
font-size: 0.938rem;
color: inherit;
padding: 1rem 2rem;
transition-duration: 0.3s;
}
.card__btn:hover,
.card__btn:focus-within {
background-color: transparent;
color: var(--clr-very-light-gray);
}
/* Suvs Card */
.card-suvs {
background-color: var(--clr-dark-cyan);
color: var(--clr-dark-cyan);
}
/* Luxury Card */
.card-luxury {
background-color: var(--clr-very-dark-cyan);
color: var(--clr-very-dark-cyan);
border-radius: 0 0 10px 10px;
}
/* Cards border-radius adjust for display between 600px and 899px */
@media (min-width: 600px) {
.card-sedans {
border-radius: 10px 0 0 10px;
}
.card-suvs {
border-radius: 0 10px 10px 0;
}
.card__description {
font-size: 1rem;
margin-bottom: 4rem;
}
.card__btn {
font-size: 1rem;
}
}
/* Cards border-radius adjust for display above 900px */
@media (min-width: 900px) {
.card-sedans {
border-radius: 10px 0 0 10px;
}
.card-suvs {
border-radius: 0;
}
.card-luxury {
border-radius: 0 10px 10px 0;
}
}
/*****************************************/
/* Footer */
.attribution {
color: var(--clr-very-dark-cyan);
text-align: center;
line-height: 1.6em;
padding-inline: 1em;
}
.attribution a {
text-decoration: none;
color: var(--clr-dark-cyan);
}
.attribution a:hover,
.attribution a:focus-within {
text-decoration: underline;
} | 0.464416 | 0.100834 |
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap");
.u-strikethrough {
text-decoration: line-through;
color: #333333; }
*,
*::after,
*::before {
padding: 0;
margin: 0; }
html {
font-size: 62.5%;
scroll-behavior: smooth; }
a {
text-decoration: none;
color: unset; }
li {
list-style: none;
display: inline-block; }
body {
background-color: #f7f7f7;
min-width: 280px; }
body,
input,
textarea,
button {
font-family: "Kumbh Sans", sans-serif; }
h2 {
font-size: 3.2rem;
color: #00c666; }
h3 {
font-size: 2.2rem;
margin: 1rem 0; }
.home__text--bottom {
color: #222222 !important; }
.footer {
background-color: #00c666;
height: 25rem;
position: relative; }
.footer__content {
position: absolute;
margin: 2.4rem;
padding: 0 calc((100vw - 1200px) / 2);
color: #222222;
font-size: 2.4rem; }
.footer__icon {
margin-right: 2rem;
transition: all 0.3s ease; }
.footer__icon:hover {
color: #555555; }
.footer__email {
margin-top: 2rem;
position: relative; }
.footer__email-text {
font-size: 1.8rem;
display: inline;
position: absolute;
margin-left: -1.5rem;
top: 0.3rem; }
.footer__phone {
margin-top: 1.5rem;
position: relative; }
.footer__phone-text {
font-size: 1.8rem;
display: inline;
position: absolute;
margin-left: 0.55rem;
top: 0.3rem; }
::-webkit-scrollbar {
width: 1.25rem;
background-color: #e3e2e9;
border-radius: 0.8rem; }
::-webkit-scrollbar-thumb {
background-color: #c8c6d2;
border-radius: 0.8rem; }
::-webkit-scrollbar-thumb:hover {
background-color: #a19fad; }
.nav {
height: 8rem;
padding: 0.5em calc((100vw - 1200px) / 2);
font-size: 2.4rem;
margin-left: 2.4rem;
margin-right: 2.4rem;
display: flex;
justify-content: space-between;
align-items: center;
transition: box-shadow linear 0.3s; }
@media screen and (max-width: 768px) {
.nav__box-shadow {
box-shadow: 0 1rem 2rem #222222; } }
.nav__icon {
visibility: hidden;
display: none; }
.nav__logo {
letter-spacing: 1rem;
text-transform: uppercase;
font-weight: 400;
display: inline-block;
display: flex;
align-items: center;
color: #222222;
transition: all 0.3s ease; }
.nav__link {
padding: 0 1.6rem;
font-size: 1.8rem;
color: #222222;
transition: all 0.3s ease; }
@media screen and (max-width: 768px) {
.nav__link {
font-size: 2.4rem !important; } }
.nav__link:hover, .nav__logo:hover {
color: #00c666; }
@media screen and (max-width: 768px) {
.nav {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 4.8rem;
padding: 0 2.4rem;
margin: 0;
background-color: #fff;
z-index: 9999; }
.nav__menu {
position: absolute;
top: 100%;
left: 0;
height: 100vh;
width: 100vw;
background-color: #00c666;
transition: all 0.5s ease; }
.nav__menu-active {
top: calc(-100vh + 4.8rem); }
.nav__menu ul {
height: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-direction: column; }
.nav__menu ul li:hover {
color: #f7f7f7; }
.nav__logo {
font-size: 2rem; }
.nav__logo-box {
display: flex;
align-items: center; }
.nav__icon {
visibility: visible;
height: 40%;
width: 5rem;
display: flex;
justify-content: space-between;
flex-direction: column;
margin-right: 1.2rem;
position: relative;
cursor: pointer; }
.nav__icon--1, .nav__icon--2, .nav__icon--3 {
height: 2px;
width: 50%;
background-color: #222222;
border-radius: 100px;
transition: all ease 0.3s; }
.nav__icon-active {
margin-top: 22.5px;
transition: all ease 0.3s; }
.nav__icon-active .nav__icon--1 {
transform: rotate(45deg);
position: absolute; }
.nav__icon-active .nav__icon--2 {
transform: rotate(135deg); }
.nav__icon-active .nav__icon--3 {
opacity: 0; } }
.home {
margin: 0 auto;
padding: 0.5em calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
display: flex;
flex-direction: row;
align-items: center; }
.home__left {
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: column;
width: 100%; }
.home__right {
display: flex;
justify-content: center;
width: 100%; }
.home__right img {
max-width: 57.6rem;
max-height: 40rem; }
.home__text {
font-size: 6.4rem; }
.home__text--top {
color: #00c666; }
.home__btn {
background-color: #00c666;
display: inline-block;
padding: 1.5rem 3rem;
margin-left: 0.5rem;
margin-top: 2rem;
font-size: 1.8rem;
color: #fff;
border-radius: 0.5rem;
transition: all ease 0.3s; }
.home__btn:hover {
transform: translateY(4px);
background-color: #00bc61; }
.home__icon {
font-size: 2rem; }
@media screen and (max-width: 768px) {
.home {
flex-direction: column-reverse;
height: 100vh;
max-height: 1024px;
justify-content: center; }
.home__right {
margin-bottom: 5rem; }
.home__text {
font-size: 4rem; }
.home__btn {
padding: 1rem 2rem;
font-size: 1.4rem; } }
@media screen and (max-width: 1024px) {
.home__text {
font-size: 4rem; }
.home__right img {
max-width: 50rem;
max-height: 30rem; } }
@media screen and (max-width: 414px) {
.home__right img {
max-width: 40rem;
max-height: 22.5rem; } }
@media screen and (max-width: 1024px) and (min-height: 1024px) {
.home__text {
font-size: 5rem; }
.home__right {
display: flex;
justify-content: center;
width: 100%; }
.home__right img {
max-width: 50rem;
max-height: 40rem; } }
.about {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem; }
@media screen and (min-width: 768px) {
.about {
margin-top: 100px; } }
.about__main-boxes {
display: flex;
margin-top: 1.5rem; }
.about__main-boxes p {
font-size: 1.8rem;
color: #777;
line-height: 3.5rem; }
@media screen and (max-width: 1024px) {
.about__main-boxes {
flex-direction: column; } }
.about__main-box {
width: 50%; }
@media screen and (max-width: 1024px) {
.about__main-box {
width: 100%; } }
.about__main-box img {
height: 30rem;
transition: all 0.3s ease;
z-index: -1; }
.about__main-box img:hover {
transform: scale(1.05); }
@media screen and (max-width: 1024px) {
.about__main-box img {
margin-top: 2rem; } }
@media screen and (max-width: 768px) {
.about__main-box img {
height: auto;
width: 100%;
max-width: 500px; } }
.about__main-box--img {
display: flex;
justify-content: flex-end;
align-items: center; }
@media screen and (max-width: 1024px) {
.about__main-box {
justify-content: center; } }
.about__boxes {
display: flex;
align-items: center;
justify-content: space-evenly;
margin-top: 2rem;
width: 100%; }
@media screen and (max-width: 768px) {
.about__boxes {
flex-direction: column; } }
.about__box {
width: 500px;
height: 250px;
position: relative;
display: flex;
justify-content: center;
flex-direction: column; }
.about__box i {
font-size: 3rem;
color: #00c666; }
@media screen and (max-width: 768px) {
.about__box {
width: 100%;
height: 200px; } }
.about__box-text h3 {
color: #00c666; }
.about__box-text p {
font-size: 1.4rem;
line-height: 2.5rem;
width: 85%;
color: #222222; }
.pricing {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem;
color: #222222; }
.pricing__cards {
width: 100%;
display: flex;
justify-content: space-between;
margin-top: 15px; }
@media screen and (max-width: 1024px) {
.pricing__cards {
flex-direction: column;
align-items: center; } }
.pricing__card {
width: 27.5rem;
background-color: #00c666;
padding: 2rem 2rem 5rem 2rem;
border-radius: 1rem;
text-align: center; }
.pricing__card ul {
margin-top: 2rem; }
.pricing__card ul li {
display: block;
font-size: 1.8rem;
margin-bottom: 3rem; }
.pricing__card ul li:last-child {
margin-bottom: 4.5rem; }
@media screen and (max-width: 1024px) {
.pricing__card {
width: 75%;
max-width: 450px;
margin-bottom: 1.5rem; } }
.pricing__button {
background-color: #f7f7f7;
font-size: 2.2rem;
padding: 2rem 4rem;
border-radius: 10rem;
transition: all ease 0.3s; }
.pricing__button:hover {
background-color: #dedede; }
.contact {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem; }
.contact__form {
margin: 1.5rem auto 0 auto; }
.contact__form-label {
font-size: 2rem;
color: #222222;
margin-bottom: 100rem; }
.contact__form-group {
margin-bottom: 3rem; }
.contact__form-group:not(:last-child) {
margin-right: 3rem; }
.contact__form-group textarea {
height: 20rem;
width: 40rem; }
@media screen and (max-width: 768px) {
.contact__form-group textarea {
width: 75%;
min-width: 20rem; } }
.contact__form-group--top {
display: flex; }
@media screen and (max-width: 768px) {
.contact__form-group--top {
flex-direction: column;
min-width: 25rem; } }
.contact__form-input {
padding: 1rem;
outline: none;
border: 3px solid transparent;
transition: all ease 0.3s;
background-color: #f0eefc;
font-size: 1.8rem;
width: 30rem;
height: 3rem;
border-radius: 0.5rem;
margin-top: 0.5rem; }
.contact__form-input:focus {
border-bottom: 3px solid #00c666; }
.contact__form-input::placeholder {
font-size: 1.8rem; }
@media screen and (max-width: 768px) {
.contact__form-input {
width: 75%; } }
.contact__btn {
background-color: #00c666;
display: inline-block;
padding: 1.5rem 3rem;
font-size: 1.8rem;
color: #fff;
border-radius: 0.5rem;
transition: all ease 0.3s;
border: none;
cursor: pointer; }
.contact__btn:hover {
transform: translateY(4px);
background-color: #00bc61; } | css/style.css | @import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap");
.u-strikethrough {
text-decoration: line-through;
color: #333333; }
*,
*::after,
*::before {
padding: 0;
margin: 0; }
html {
font-size: 62.5%;
scroll-behavior: smooth; }
a {
text-decoration: none;
color: unset; }
li {
list-style: none;
display: inline-block; }
body {
background-color: #f7f7f7;
min-width: 280px; }
body,
input,
textarea,
button {
font-family: "Kumbh Sans", sans-serif; }
h2 {
font-size: 3.2rem;
color: #00c666; }
h3 {
font-size: 2.2rem;
margin: 1rem 0; }
.home__text--bottom {
color: #222222 !important; }
.footer {
background-color: #00c666;
height: 25rem;
position: relative; }
.footer__content {
position: absolute;
margin: 2.4rem;
padding: 0 calc((100vw - 1200px) / 2);
color: #222222;
font-size: 2.4rem; }
.footer__icon {
margin-right: 2rem;
transition: all 0.3s ease; }
.footer__icon:hover {
color: #555555; }
.footer__email {
margin-top: 2rem;
position: relative; }
.footer__email-text {
font-size: 1.8rem;
display: inline;
position: absolute;
margin-left: -1.5rem;
top: 0.3rem; }
.footer__phone {
margin-top: 1.5rem;
position: relative; }
.footer__phone-text {
font-size: 1.8rem;
display: inline;
position: absolute;
margin-left: 0.55rem;
top: 0.3rem; }
::-webkit-scrollbar {
width: 1.25rem;
background-color: #e3e2e9;
border-radius: 0.8rem; }
::-webkit-scrollbar-thumb {
background-color: #c8c6d2;
border-radius: 0.8rem; }
::-webkit-scrollbar-thumb:hover {
background-color: #a19fad; }
.nav {
height: 8rem;
padding: 0.5em calc((100vw - 1200px) / 2);
font-size: 2.4rem;
margin-left: 2.4rem;
margin-right: 2.4rem;
display: flex;
justify-content: space-between;
align-items: center;
transition: box-shadow linear 0.3s; }
@media screen and (max-width: 768px) {
.nav__box-shadow {
box-shadow: 0 1rem 2rem #222222; } }
.nav__icon {
visibility: hidden;
display: none; }
.nav__logo {
letter-spacing: 1rem;
text-transform: uppercase;
font-weight: 400;
display: inline-block;
display: flex;
align-items: center;
color: #222222;
transition: all 0.3s ease; }
.nav__link {
padding: 0 1.6rem;
font-size: 1.8rem;
color: #222222;
transition: all 0.3s ease; }
@media screen and (max-width: 768px) {
.nav__link {
font-size: 2.4rem !important; } }
.nav__link:hover, .nav__logo:hover {
color: #00c666; }
@media screen and (max-width: 768px) {
.nav {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 4.8rem;
padding: 0 2.4rem;
margin: 0;
background-color: #fff;
z-index: 9999; }
.nav__menu {
position: absolute;
top: 100%;
left: 0;
height: 100vh;
width: 100vw;
background-color: #00c666;
transition: all 0.5s ease; }
.nav__menu-active {
top: calc(-100vh + 4.8rem); }
.nav__menu ul {
height: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-direction: column; }
.nav__menu ul li:hover {
color: #f7f7f7; }
.nav__logo {
font-size: 2rem; }
.nav__logo-box {
display: flex;
align-items: center; }
.nav__icon {
visibility: visible;
height: 40%;
width: 5rem;
display: flex;
justify-content: space-between;
flex-direction: column;
margin-right: 1.2rem;
position: relative;
cursor: pointer; }
.nav__icon--1, .nav__icon--2, .nav__icon--3 {
height: 2px;
width: 50%;
background-color: #222222;
border-radius: 100px;
transition: all ease 0.3s; }
.nav__icon-active {
margin-top: 22.5px;
transition: all ease 0.3s; }
.nav__icon-active .nav__icon--1 {
transform: rotate(45deg);
position: absolute; }
.nav__icon-active .nav__icon--2 {
transform: rotate(135deg); }
.nav__icon-active .nav__icon--3 {
opacity: 0; } }
.home {
margin: 0 auto;
padding: 0.5em calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
display: flex;
flex-direction: row;
align-items: center; }
.home__left {
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: column;
width: 100%; }
.home__right {
display: flex;
justify-content: center;
width: 100%; }
.home__right img {
max-width: 57.6rem;
max-height: 40rem; }
.home__text {
font-size: 6.4rem; }
.home__text--top {
color: #00c666; }
.home__btn {
background-color: #00c666;
display: inline-block;
padding: 1.5rem 3rem;
margin-left: 0.5rem;
margin-top: 2rem;
font-size: 1.8rem;
color: #fff;
border-radius: 0.5rem;
transition: all ease 0.3s; }
.home__btn:hover {
transform: translateY(4px);
background-color: #00bc61; }
.home__icon {
font-size: 2rem; }
@media screen and (max-width: 768px) {
.home {
flex-direction: column-reverse;
height: 100vh;
max-height: 1024px;
justify-content: center; }
.home__right {
margin-bottom: 5rem; }
.home__text {
font-size: 4rem; }
.home__btn {
padding: 1rem 2rem;
font-size: 1.4rem; } }
@media screen and (max-width: 1024px) {
.home__text {
font-size: 4rem; }
.home__right img {
max-width: 50rem;
max-height: 30rem; } }
@media screen and (max-width: 414px) {
.home__right img {
max-width: 40rem;
max-height: 22.5rem; } }
@media screen and (max-width: 1024px) and (min-height: 1024px) {
.home__text {
font-size: 5rem; }
.home__right {
display: flex;
justify-content: center;
width: 100%; }
.home__right img {
max-width: 50rem;
max-height: 40rem; } }
.about {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem; }
@media screen and (min-width: 768px) {
.about {
margin-top: 100px; } }
.about__main-boxes {
display: flex;
margin-top: 1.5rem; }
.about__main-boxes p {
font-size: 1.8rem;
color: #777;
line-height: 3.5rem; }
@media screen and (max-width: 1024px) {
.about__main-boxes {
flex-direction: column; } }
.about__main-box {
width: 50%; }
@media screen and (max-width: 1024px) {
.about__main-box {
width: 100%; } }
.about__main-box img {
height: 30rem;
transition: all 0.3s ease;
z-index: -1; }
.about__main-box img:hover {
transform: scale(1.05); }
@media screen and (max-width: 1024px) {
.about__main-box img {
margin-top: 2rem; } }
@media screen and (max-width: 768px) {
.about__main-box img {
height: auto;
width: 100%;
max-width: 500px; } }
.about__main-box--img {
display: flex;
justify-content: flex-end;
align-items: center; }
@media screen and (max-width: 1024px) {
.about__main-box {
justify-content: center; } }
.about__boxes {
display: flex;
align-items: center;
justify-content: space-evenly;
margin-top: 2rem;
width: 100%; }
@media screen and (max-width: 768px) {
.about__boxes {
flex-direction: column; } }
.about__box {
width: 500px;
height: 250px;
position: relative;
display: flex;
justify-content: center;
flex-direction: column; }
.about__box i {
font-size: 3rem;
color: #00c666; }
@media screen and (max-width: 768px) {
.about__box {
width: 100%;
height: 200px; } }
.about__box-text h3 {
color: #00c666; }
.about__box-text p {
font-size: 1.4rem;
line-height: 2.5rem;
width: 85%;
color: #222222; }
.pricing {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem;
color: #222222; }
.pricing__cards {
width: 100%;
display: flex;
justify-content: space-between;
margin-top: 15px; }
@media screen and (max-width: 1024px) {
.pricing__cards {
flex-direction: column;
align-items: center; } }
.pricing__card {
width: 27.5rem;
background-color: #00c666;
padding: 2rem 2rem 5rem 2rem;
border-radius: 1rem;
text-align: center; }
.pricing__card ul {
margin-top: 2rem; }
.pricing__card ul li {
display: block;
font-size: 1.8rem;
margin-bottom: 3rem; }
.pricing__card ul li:last-child {
margin-bottom: 4.5rem; }
@media screen and (max-width: 1024px) {
.pricing__card {
width: 75%;
max-width: 450px;
margin-bottom: 1.5rem; } }
.pricing__button {
background-color: #f7f7f7;
font-size: 2.2rem;
padding: 2rem 4rem;
border-radius: 10rem;
transition: all ease 0.3s; }
.pricing__button:hover {
background-color: #dedede; }
.contact {
padding: 0 calc((100vw - 1200px) / 2);
margin: 0 2.4rem;
padding-bottom: 10rem; }
.contact__form {
margin: 1.5rem auto 0 auto; }
.contact__form-label {
font-size: 2rem;
color: #222222;
margin-bottom: 100rem; }
.contact__form-group {
margin-bottom: 3rem; }
.contact__form-group:not(:last-child) {
margin-right: 3rem; }
.contact__form-group textarea {
height: 20rem;
width: 40rem; }
@media screen and (max-width: 768px) {
.contact__form-group textarea {
width: 75%;
min-width: 20rem; } }
.contact__form-group--top {
display: flex; }
@media screen and (max-width: 768px) {
.contact__form-group--top {
flex-direction: column;
min-width: 25rem; } }
.contact__form-input {
padding: 1rem;
outline: none;
border: 3px solid transparent;
transition: all ease 0.3s;
background-color: #f0eefc;
font-size: 1.8rem;
width: 30rem;
height: 3rem;
border-radius: 0.5rem;
margin-top: 0.5rem; }
.contact__form-input:focus {
border-bottom: 3px solid #00c666; }
.contact__form-input::placeholder {
font-size: 1.8rem; }
@media screen and (max-width: 768px) {
.contact__form-input {
width: 75%; } }
.contact__btn {
background-color: #00c666;
display: inline-block;
padding: 1.5rem 3rem;
font-size: 1.8rem;
color: #fff;
border-radius: 0.5rem;
transition: all ease 0.3s;
border: none;
cursor: pointer; }
.contact__btn:hover {
transform: translateY(4px);
background-color: #00bc61; } | 0.458349 | 0.065276 |
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Black.woff2') format('woff2');
font-style: normal;
font-weight: 900;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-BlackItalic.woff2') format('woff2');
font-style: italic;
font-weight: 900;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-ExtraBold.woff2') format('woff2');
font-style: normal;
font-weight: 800;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-ExtraBoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 800;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Bold.woff2') format('woff2');
font-style: normal;
font-weight: 700;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-BoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 700;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-SemiBold.woff2') format('woff2');
font-style: normal;
font-weight: 600;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-SemiBoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 600;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Medium.woff2') format('woff2');
font-style: normal;
font-weight: 500;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-MediumItalic.woff2') format('woff2');
font-style: italic;
font-weight: 500;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Regular.woff2') format('woff2');
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Italic.woff2') format('woff2');
font-style: italic;
font-weight: 400;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Light.woff2') format('woff2');
font-style: normal;
font-weight: 300;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-LightItalic.woff2') format('woff2');
font-style: italic;
font-weight: 300;
}
:root {
--hgrid-padding: 25px;
--vgrid-padding: 25px;
--menu-square-length: 70px;
--scroll-square-length: 250px;
--time-box-length: 220px;
--app-height: 800px;
}
html,
body {
width: 100%;
box-sizing: border-box;
font-family: OpenSauceOne, sans-serif;
margin: 0;
padding: 0;
background-color: #20243a;
/* scroll-behavior: smooth; */
}
main {
overflow-x: hidden;
}
#loadwrapper {
height: 100vh;
width: 100vw;
position: fixed;
display: flex;
justify-content: center;
z-index: 50;
top: 0;
left: 0;
align-items: center;
pointer-events: none;
overflow: hidden;
background: #fffff5;
margin: 0;
padding: 0;
}
/*ROTATING LOADER*/
.loaderbadge {
padding: 0;
background: #f892a1;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
z-index: 51;
}
.textcircle {
position: relative;
display: block;
width: 200px;
animation: 6s rotate infinite linear;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes rotateback {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.textcircle text {
font-size: 55px;
font-weight: 300;
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
fill: #20243a;
}
.textcircle textPath {
letter-spacing: 17px;
/* Firefox needs this */
}
#canvas {
/* make the canvas wrapper fits the window */
width: inherit !important;
height: 100vh;
overflow: hidden;
position: relative;
padding: 0px;
min-height: 550px;
}
#canvas::after {
content: "";
position: absolute;
width: 240vw;
height: 240vh;
left: -50%;
top: -50%;
opacity: 0.4;
/* background-image: url(../images/noise2.png); */
}
canvas {
height: 100vh;
width: 100vw;
min-height: 550px;
z-index: 1;
filter: blur(7px);
opacity: 0;
}
.plane {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.plane img {
/* hide the img element */
display: none;
}
/*ROTATING CIRCLE*/
.rotating-badge {
padding: 0;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
height: 100%;
width: 100%;
}
.rotating-badge .rotate-textcircle {
position: relative;
display: block;
width: 100%;
height: 100%;
animation: 20s rotate infinite linear;
}
.rotating-badge .rotate-textcircle .rotate-scroll-text {
font-size: 30px;
font-weight: 200;
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
fill: #fffff5;
}
.rotating-badge .rotate-textcircle textPath {
letter-spacing: 10px;
/* Firefox needs this */
}
.homegrid {
position: absolute;
box-sizing: border-box;
z-index: 1;
left: 0;
top: 0;
width: 100%;
overflow: hidden;
height: 100%;
display: grid;
grid-template-columns: [line1] var(--hgrid-padding) [line2] var(--time-box-length) [line3] 1fr [line4] 1fr [line5] calc(var(--scroll-square-length) - var(--menu-square-length)) [line6] var(--menu-square-length) [line7] var(--hgrid-padding) [end];
grid-template-rows: [row1] var(--vgrid-padding) [row2] var(--menu-square-length) [row3] auto [row4] calc(var(--scroll-square-length) - var(--menu-square-length)) [row5] var(--menu-square-length) [row6] var(--vgrid-padding) [row7] 0vh [end];
}
.home-border {
grid-column-start: line2;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row6;
/*border: 4px solid #fffff5;*/
}
.home-top-row {
grid-column-start: line2;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row3;
/* border-bottom: 1px solid #fffff5;
margin-bottom: -10px; */
}
.home-menu-square {
/* grid-column-start: line6;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row3; */
/*border: 4px solid #fffff5;*/
position: fixed;
background-color: #fffff5;
z-index: 10;
border-radius: 50%;
top: 70px;
margin: 10px;
right: 30px;
height: calc(var(--menu-square-length) - 20px);
width: calc(var(--menu-square-length) - 20px);
color: #20243a;
font-size: 2rem;
font-family: 'Jetbrains Mono', monospace;
display: flex;
justify-content: center;
flex-direction: row;
transition: 0.2s ease all;
}
.home-menu-square p {
display: block;
align-self: center;
font-weight: 200;
user-select: none;
}
#menu-overlay {
/*border: 4px solid #fffff5;*/
background-color: #fffff5;
height: 100vh;
width: 100vw;
position: fixed;
transform: translateX(100vw);
z-index: 2;
overflow: hidden;
display: flex;
flex-direction: column;
text-decoration: none;
justify-content: center;
align-items: center;
}
.nav {
padding: 40px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.nav a {
text-decoration: none !important;
font-family: OpenSauceOne, sans-serif;
color: #20243a;
transition: 0.1s ease all;
}
.nav li {
font-size: 4rem;
font-weight: 700;
border-top: 1px solid currentColor;
width: 100%;
padding: 10px 3px;
list-style: upper-roman;
}
.nav li:nth-last-of-type(1){
border-bottom: 1px solid currentColor;
}
@media screen and (min-width: 800px) {
.nav a:hover {
color: #6fa0b8;
}
.contact:hover{
transform: scale(1.1)
}
.home-menu-square:hover {
background-color: #f892a1 !important;
}
.work-title:hover{
transform: scale(1.05)
}
}
.menu-footer {
padding: 40px;
font-weight: 600;
}
.title-section {
font-weight: 700;
font-size: 5rem;
padding: 40px 10px;
font-family: OpenSauceOne, sans-serif;
}
.gallery-subtitle{
font-size: 1.3rem;
padding: 30px 10px 0px;
}
.work-title-color {
color: #20243a;
}
.gallery-title-color {
color: #e15232;
margin: 10px 50px;
border-bottom: 1px solid #e15232;
}
.menu-inactive {
display: none !important;
}
.home-bottom-row {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
/*border: 4px solid #fffff5;*/
border-right: 0px;
color: #fffff5;
font-family: OpenSauceOne, sans-serif;
padding: 0 20px;
font-weight: 400;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 1.5rem;
letter-spacing: 1px;
}
.home-scroll-square {
grid-column-start: line5;
grid-column-end: line7;
grid-row-start: row4;
grid-row-end: row6;
transform: translateX(15px);
transition: 0.2s ease all;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
/* border: 4px solid #fffff5; */
padding: 17px;
font-size: 18px;
line-height: 24px;
justify-content: center;
display: flex;
flex-direction: column;
font-family: 'JetBrains Mono', monospace;
color: #fffff5;
text-align: left;
font-weight: 400;
transform: translateY(-20px);
}
#typer {
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row2;
grid-row-end: row3;
/* border: 4px solid #fffff5; */
color: #20243a;
font-weight: 500;
margin: auto 10px;
padding: 10px 0px;
white-space: nowrap;
font-size: 1.6rem;
}
#typerline {
display: block;
font-size: 1rem;
}
.main-title {
display: flex;
flex-direction: column;
justify-content: center;
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row3;
grid-row-end: row5;
padding-left: 30px;
}
.main-title svg {
fill: #f892a1;
margin: 20px 20px 0px 20px;
width: 80px;
height: 80px;
/* animation: 30s rotate infinite linear; */
}
#down-arrow-container {
grid-column-start: line5;
grid-column-end: line7;
grid-row-start: row4;
grid-row-end: row6;
width: var(--scroll-square-length);
height: var(--scroll-square-length);
/*border: 4px solid #fffff5;*/
display: flex;
justify-content: center;
align-content: center;
border: 0px solid rgba(0, 0, 0, 0);
transform: translateX(15px);
color: #20243a;
z-index: 2;
}
#down-arrow {
width: 50px;
height: 50px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 30px
}
.homegrid .solid {
font-size: 5.5rem;
font-weight: 700;
color: #f892a1;
padding: 20px;
width: fit-content;
line-height: 5rem;
letter-spacing: 1px;
/* background-color: #d5c3af;
border-radius: 7px;
border: 8px solid #d5c3af */
}
.content-wrapper {
position: relative;
overflow: hidden;
}
.padder {
padding: 10px;
height: 150px;
}
.padder-white {
padding: 0px;
height: 0px;
}
/*SECTION ZERO ABOUT ME*/
.intro {
background: #20243a;
padding: 10px 10px;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
margin-top: 100px;
padding-bottom: 100px;
}
.wrap {
width: 80%;
max-width: 1000px;
margin: 0px auto;
}
.about-me {
background-color: #fffff5;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #5d9f88;
margin: 0px 50px 70px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #20243a;
font-size: 1.3rem;
line-height: 2rem;
}
.about-me .content {
padding: 50px;
}
.rotator-index {
margin: auto 10px;
font-size: 2.5rem;
letter-spacing: 4px;
font-weight: 600;
color: #fffff5;
font-family: 'OpenSauceOne', sans-serif;
white-space: nowrap;
}
.underline-right::after {
display: block;
content: ' ';
border-bottom: 6px solid #e15232;
transform: translate(10px, 5px);
}
.underline-left::after {
display: block;
content: ' ';
border-bottom: 6px solid #e15232;
transform: translate(-10px, 5px);
}
.title-underline::after {
display: block;
content: ' ';
border-bottom: 6px solid currentColor;
transform: translate(15px, 0px);
}
/* .contact-underline::after {
display: block;
content: ' ';
border-bottom: 5px solid currentColor;
transform: translate(15px, 0px);
} */
#rotator-star {
width: 50px;
height: 100%;
margin-right: 10px;
fill: #fffff5;
color: #fffff5;
}
.rotator-index-dark {
margin: auto 10px;
font-size: 2.5rem;
letter-spacing: 4px;
font-weight: 600;
color: #20243a;
font-family: 'OpenSauce', sans-serif;
white-space: nowrap;
}
#rotator-star-dark {
width: 50px;
height: 100%;
margin-right: 10px;
fill: #20243a;
color: #20243a;
}
.hr-dash {
margin: auto 15px;
width: 100%;
height: 1px;
border: none;
background: #fffff5;
/* border-radius: 50%; */
}
.hr-dash-dark {
margin: auto;
width: 100%;
height: 1px;
border: none;
background: #20243a;
/* border-radius: 50%; */
}
.section-rotator {
height: 150px;
overflow: hidden;
margin: 30px;
display: flex;
flex-direction: row;
}
.rotating-badge-section {
padding: 0;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
min-width: 150px;
position: relative;
}
.rotating-badge-section .rotate-textcircle {
position: relative;
display: block;
width: 100%;
height: 100%;
animation: 20s rotateback infinite linear;
}
.rotate-scroll-text {
font-size: 43px;
font-weight: 300;
font-family: 'Jetbrains Mono', sans-serif;
text-transform: uppercase;
fill: #fffff5;
}
.rotating-badge-section .rotate-textcircle textPath {
letter-spacing: 4px;
/* Firefox needs this */
}
.pink-box {
background-color: #f892a1;
}
.red-box {
background-color: #e15232;
}
.blue-box {
background-color: #6fa0b8;
}
.interestbox {}
.box-marquee {
color: #fffff5;
font-family: 'JetBrains Mono', monospace;
font-size: 1.5rem;
letter-spacing: 1px;
/* display: flex;
flex-direction: column;
justify-content: center; */
padding: 0px 15px;
height: 3rem;
line-height: 3.1rem;
font-weight: 300;
overflow: hidden;
}
.content-title {
color: #20243a;
background-color: #f892a1;
}
.home-title {
color: #20243a;
background-color: #f892a1;
position: absolute !important;
z-index: 1;
width: 100%;
}
.gallery-title {
color: #fffff5;
background-color: #e15232;
}
.experiment-title {
color: #fffff5;
background-color: #5d9f88;
}
.contact-title-marquee {
color: #fffff5;
background-color: #20243a;
}
.marquee-title-wrapper {
overflow: hidden;
position: relative;
padding: 10px 0px;
}
.marquee-title {
padding: 10px 0px;
font-family: 'Jetbrains Mono', monospace;
font-size: 1.5rem;
line-height: 1.3rem;
letter-spacing: 1px;
font-weight: 300;
/* border-top: 2px solid #fffff5;
border-bottom: 2px solid #fffff5; */
}
.marquee-title-dark {
padding: 10px 0px;
font-family: 'Jetbrains Mono', monospace;
font-size: 1.5rem;
line-height: 1.3rem;
letter-spacing: 1px;
font-weight: 300;/*
border-top: 2px solid #20243a;
border-bottom: 2px solid #20243a; */
}
.marquee-title-first {
padding: 10px 0px;
font-family: OpenSauceOne, sans-serif;
font-size: 1rem;
line-height: 1rem;
letter-spacing: 0px;
font-weight: 600;
}
.firstmarq{
margin-left: 30px;
}
/* SECTION 2 CARD CONTENT WORK */
.two {
background: #fffff5;
padding: 50px;
}
.two .content {
padding: 100px 10px;
max-width: 1200px;
margin: 0px auto;
}
.work {
border-top: 1px solid #20243a;
padding: 30px 5px 30px 20px;
display: flex;
flex-direction: row;
}
.work-subtitle {
display: block;
margin-right: 20px;
text-align: center;
text-orientation: mixed;
writing-mode: vertical-rl;
font-size: 1.0rem;
letter-spacing: 2px;
font-weight: 400;
font-family: 'Jetbrains Mono', monospace;
}
.work-title {
font-size: 2.6rem;
line-height: 2.8rem;
margin: 10px 0px 20px 0px;
letter-spacing: 2px;
display: block;
font-weight: 700;
height: auto;
text-decoration: none;
width: fit-content;
font-family: OpenSauceOne, sans-serif;
transition: 0.2s ease all;
}
.contact-title {
font-size: 2rem;
line-height: 2.2rem;
margin: 30px 0px 30px 0px;
letter-spacing: 2px;
display: block;
font-weight: 700;
height: auto;
text-decoration: none;
width: fit-content;
font-family: OpenSauceOne, sans-serif;
border: 2px solid currentColor;
border-radius: 50%;
padding: 15px 20px;
}
.work-icon {
width: 150px;
height: 150px;
border-radius: 50%;
margin: auto 20px;
border: 1px solid #20243a
}
.work-icon-small {
display: none;
}
.blue {
color: #6fa0b8;
}
.dark {
color: #20243a;
}
.purple {
color: #9f66d1
}
.ig-purple {
border-color: #6a28df !important;
background-color: #E1306C;
color: #fac343;
}
.spotify-green{
background-color: #1DB954;
color: #191414;
border-color: #fffff5 !important;
}
.red {
color: #e15232
}
.gmail-red {
background-color: #ffffff;
color: #e15232;
}
.linkedin-blue{
color: #fffff5;
background-color: #2d79d1;
}
.resume-yellow{
background-color: #f7bf25;
border-color: #fffff5 !important;
color: #20243a;
}
.github-black{
color: #fffff5;
background-color: #333333;
border-color: #aaaaaa !important;
}
.yellow {
color: #f7bf25
}
.white {
color: #fffff5
}
.pink {
color: #f892a1
}
.green {
color: #5d9f88
}
.work-content {
font-size: 1.3rem;
margin: 20px;
line-height: 2rem;
display: block;
font-weight: 400;
height: auto;
width: auto;
font-family: OpenSauceOne, sans-serif;
}
.work-content .link{
position: relative;
text-decoration: none;
}
.coming-soon {
font-size: 0.8rem;
color: #20243a;
}
.not-yet {
text-decoration: line-through !important;
}
.work:nth-last-of-type(1) {
border-bottom: 1px solid #20243a;
}
/*SECTION THREE*/
.three {
background: #20243a;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
}
.interests {
background-color: #fffff5;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #9f66d1;
margin: 0px 50px 200px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 400;
color: #20243a;
font-size: 1.2rem;
line-height: 1.4rem;
margin-top: 40px;
}
.interests .content {
padding: 25px;
}
.interest-bar {
display: flex;
justify-content: space-between;
position: relative;
user-select: none;
font-size: 1.4rem;
line-height: 1.6rem;
margin: 10px 5px;
font-weight: 500;
}
.section-rotator-reverse {
height: 150px;
overflow: hidden;
margin: 30px;
display: flex;
flex-direction: row-reverse;
}
/* .interest-hide {
display: none !important;
} */
.interest-entry {
padding: 0px;
margin: 0px;
border-top: 1px solid #20243a;
position: relative;
transition: 0.35s all ease;
overflow: hidden;
}
.open-entry {
padding-bottom: 10px !important;
}
.interest-link {
display: block;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
/* .open-entry {
transition: 0.35s all ease;
} */
.interest-entry:nth-last-of-type(1) {
border-bottom: 1px solid #20243a;
}
.interest-inactive::after {
content: "\2192";
font-weight: 300;
width: 1em;
height: 1em;
text-align: center;
transition: all .35s;
}
.interest-active::after {
transform: rotate(90deg);
}
.interest-content {
display: block;
margin: 0px 5px;
padding: 0;
user-select: none;
font-size: 1rem;
line-height: 1.4rem;
height: 0;
}
.rotate-scroll-text2 {
font-size: 43px;
font-weight: 300;
font-family: 'Jetbrains Mono', monospace;
text-transform: uppercase;
fill: #20243a;
}
/*SECTION 4 LETS GOOOOO*/
.four {
background: #fffff5;
padding: 10px 10px;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
padding-top: 100px;
}
.experiments {
background-color: #20243a;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #6fa0b8;
margin: 10px 50px 100px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #fffff5;
font-size: 1.5rem;
line-height: 1.8rem;
}
.experiments .content {
padding: 50px;
padding-left: 10px;
padding-right: 10px;
}
.experiment {
font-size: 1.4rem;
padding: 20px 30px;
margin: 0px 20px;
line-height: 1.6rem;
border-top: 1px solid #fffff5;
font-weight: 700;
}
.experiment-content {
font-size: 1rem;
margin: 15px 0;
line-height: 1.2rem;
font-weight: 400;
color: #fffff5;
}
.experiment-title-content {
text-decoration: underline;
font-size: 1.4rem;
line-height: 1.6rem;
font-weight: 700;
color: #fffff5;
}
.experiment:nth-last-of-type(1) {
border-bottom: 1px solid #fffff5;
}
.contacts {
background-color: #20243a;
display: block;
box-shadow: 10px 10px 0 0px #f7bf25;
margin: 10px 50px 100px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #20243a;
font-size: 1.5rem;
line-height: 1.8rem;
}
.contacts .content {
padding: 40px 40px;
display: flex;
flex-wrap: wrap;
margin: 0px auto;
width: fit-content;
flex-direction: row;
justify-content: center;
}
.contact a{
color: inherit;
}
.contact-title-content{
font-size: 1.4rem;
font-weight: 700;
line-height: 1.6rem;
}
.contact{
margin: 10px;
padding: 8px 5px;
border: 2px solid currentColor;
border-radius: 40px;
transition: 0.2s ease all;
}
.contact-content {
font-size: 1rem;
margin: 15px 15px 0px 15px;
line-height: 1.2rem;
font-weight: 400;
color: #20243a;
}
.contact-title-content {
text-decoration: unset;
font-size: 1.4rem;
padding: 10px;
line-height: 1.6rem;
font-weight: 700;
}
.contact-subtitle{
color: #fffff5;
font-size: 1rem;
padding: 10px 20px
}
.nowrap {
white-space: nowrap;
}
.no-curtains .plane {
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.no-curtains .plane img {
display: block;
max-width: 100%;
object-fit: cover;
}
.cursor {
position: fixed;
top: 0;
left: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #fff;
z-index: 99;
opacity: 0;
border: 3px solid #20243a;
pointer-events: none;
}
.follower {
position: fixed;
top: 0;
left: 0;
width: 40px;
height: 40px;
border-radius: 50%;
z-index: 100;
opacity: 0;
border: 2px solid rgba(255, 255, 255, 1);
mix-blend-mode: exclusion;
pointer-events: none;
}
/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: invert(100%)) or (backdrop-filter: invert(100%))) {
.cursor {
backdrop-filter: invert(100%);
background-color: unset;
border: 0px;
}
}
/*PHOTOGRID*/
.gallery {
display: flex;
flex-wrap: wrap;
padding: 2vmin;
padding-bottom: 50px;
overflow: hidden;
position: relative;
}
.gallery h1 {
font-size: 2.4rem;
line-height: 2.4rem;
}
.gallery-section {
padding-top: 100px;
padding-bottom: 100px;
background-color: #fffff5;
}
.gallery li {
height: 30vh;
flex-grow: 2;
margin: 2vmin;
position: relative;
user-select: none;
}
.gallery li .image-overlay{
opacity: 0;
transition: all ease 0.3s;
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #fffff5;
background-color: rgba(225, 82, 50, 0.7);
border-radius: 10px;
user-select: none;
}
.gallery li .image-overlay h1{
font-size: 1.7rem;
line-height: 1.9rem;
padding: 30px;
text-align: center;
user-select: none;
}
.gallery li .image-overlay:active{
opacity: 1;
}
.gallery img {
max-height: 100%;
min-width: 100%;
object-fit: cover;
vertical-align: bottom;
border-radius: 10px;
user-select: none;
}
@media (max-aspect-ratio: 1/1) {
.gallery li {
height: 17vh;
margin: 1.5vmin
}
}
@media (max-height: 480px) {
.gallery li {
height: 80vh;
}
}
/*
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
gallery {
flex-direction: row;
}
li {
height: auto;
width: 100%;
}
img {
width: 100%;
max-height: 75vh;
min-width: 0;
}
} */
.footer {
padding: 20px;
background-color: #20243a;
color: #fffff5;
font-family: OpenSauceOne, sans-serif;
}
.footer p{
font-size: 0.8rem;
margin: 10px;
}
@media screen and (max-width: 1000px){
.contact-title{
margin: 20px auto;
}
}
@media screen and (max-width: 800px) {
.contacts .content {
padding: 20px 0px;}
.nav li{
list-style: none;
}
.follower,
.cursor {
display: none;
}
.homegrid .solid {
font-size: 4.5rem;
color: #f892a1;
padding: 10px;
width: fit-content;
line-height: 4.2rem;
}
.home-menu-square {
font-size: 1.8rem;
}
.wrap {
width: 90%;
}
.home-bottom-row {
font-size: 1rem;
}
.main-title svg {
fill: #f892a1;
margin: 20px 0px 0px 10px;
width: 80px;
height: 80px;
animation: 30s rotate infinite linear;
}
.interests {
display: block;
min-height: 300px;
font-size: 1.5rem;
line-height: 1.8rem;
}
.interests .content,
.about-me .content {
padding: 25px;
padding-bottom: 50px;
}
.experiments .content {
padding: 25px;
padding-left: 10px;
padding-right: 10px;
}
.contacts .content {
padding: 25px;
padding-left: 10px;
padding-right: 10px;
}
.two {
padding: 30px 10px;
}
.gallery-title-color {
margin-left: 20px;
margin-right: 20px;
}
}
@media screen and (max-width: 600px) {
.interests .content,
.about-me .content {
padding: 20px 20px 30px 20px
}
.experiments .content {
padding: 35px;
padding-left: 5px;
padding-right: 5px;
}
.contacts .content {
padding: 35px;
padding-left: 5px;
padding-right: 5px;
}
.firstmarq{
margin-left: 20px;
}
.gallery li .image-overlay h1{
font-size: 1rem;
line-height: 1.2rem;
padding: 10px;
}
.padder {
padding: 10px;
height: 70px;
}
:root {
--hgrid-padding: 20px;
--vgrid-padding: 20px;
--menu-square-length: 60px;
--scroll-square-length: 190px;
}
.experiment {
font-size: 1.3rem;
padding: 20px 20px;
margin: 0px 10px;
line-height: 1.4rem;
}
.nav {
margin-top: 50px;
font-size: 3rem;
padding: 30px
}
.nav li {
font-size: 3rem;
}
.menu-footer {
padding: 30px;
}
.title-section {
font-size: 3rem;
}
.title-section {
padding: 20px 10px;
}
.work {
padding: 20px 5px 20px 10px;
}
.work-title {
font-size: 2rem;
line-height: 2.5rem;
letter-spacing: 1px;
}
.contact-title {
font-size: 2rem;
line-height: 2.5rem;
letter-spacing: 1px;
}
.work-subtitle {
margin-top: 30px;
font-size: 0.8rem;
text-align: left;
margin-bottom: 20px;
}
.work-icon-small {
display: unset;
width: 100px;
height: 100px;
border-radius: 50%;
margin: 10px 0px 15px 0px;
border: 1px solid #20243a
}
.work-content {
font-size: 1rem;
line-height: 1.5rem;
}
.work-icon {
display: none;
}
.rotating-badge-section {
min-width: 100px;
}
#down-arrow {
width: 30px;
height: 30px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 10px
}
.section-rotator,
.section-rotator-reverse {
margin: 0;
}
.hr-dash,
.hr-dash-dark {
border: none
}
.rotator-index-dark,
.rotator-index {
font-size: 1.2rem;
letter-spacing: 3px;
}
.underline-right::after {
border-bottom: 3px solid #e15232;
transform: translate(7px, 3px);
}
.underline-left::after {
border-bottom: 3px solid #e15232;
transform: translate(-7px, 3px);
}
.title-underline::after {
border-bottom: 3px solid currentColor;
transform: translate(10px, 0px);
}
/* .contact-underline::after {
border-bottom: 3px solid currentColor;
transform: translate(10px, 0px);
} */
.ig-fix {
height: var(--app-height) !important;
}
.homegrid {
grid-template-columns: [line1] var(--hgrid-padding) [line2] 1fr [line3] 1fr [line4] auto [line5] calc(var(--scroll-square-length) - var(--menu-square-length)) [line6] var(--menu-square-length) [line7] var(--hgrid-padding) [end];
grid-template-rows: [row1] var(--vgrid-padding) [row2] var(--menu-square-length) [row3] auto [row4] calc(var(--scroll-square-length) - var(--menu-square-length)) [row5] var(--menu-square-length) [row6] var(--vgrid-padding) [row7] 0vh [end];
}
#typer {
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row2;
grid-row-end: row3;
font-size: 1.2rem;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
border-right: none;
padding: 10px;
font-size: 13px;
line-height: 14px;
justify-content: center;
letter-spacing: 0px;
transform: translateY(-20px);
}
.main-title {
padding-left: 0px;
}
.main-title svg {
fill: #f892a1;
margin: 20px 0px 0px 10px;
width: 70px;
height: 70px;
animation: 30s rotate infinite linear;
}
.homegrid .solid {
font-size: 20vw;
color: #f892a1;
width: fit-content;
line-height: 20vw;
}
.main-title {
display: flex;
flex-direction: column;
justify-content: center;
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row3;
grid-row-end: row4;
padding-left: 10px;
}
.home-bottom-row {
display: none;
}
.three {
padding: 20px 40px 200px;
}
.about-me {
width: 100%;
margin: 0;
margin-top: 30px;
margin-bottom: 30px;
}
.contacts,
.experiments,
.interests {
width: 100%;
margin: 0;
margin-top: 30px;
margin-bottom: 90px;
}
.two {
padding: 30px 0px;
}
.gallery-title-color {
margin-left: 10px;
margin-right: 10px;
}
}
@media screen and (max-width: 455px) {
.contacts .content {
display: block;
position: relative;
padding: 25px 5px;
width: 90%;
}
.contact-title-content{
width: 100%;
text-align: center;
position: relative;
}
.contact{
margin: 25px 10px;
position: relative;
text-align: center;
}
}
@media screen and (max-width: 400px) {
.rotator-index-dark,
.rotator-index {
font-size: 1.1rem;
letter-spacing: 1px;
}
.work-subtitle{
margin-right: 5px;
margin-top: 10px;
}
.nav {
margin-top: 70px;
font-size: 2rem;
font-weight: 700;
padding: 20px
}
.nav li {
font-size: 2rem;
}
.menu-footer {
padding: 20px;
}
#typer {
font-size: 1.1rem;
}
.interest-entry p,
.about-me p {
font-size: 1.1rem;
line-height: 1.5rem;
}
.home-menu-square {
font-size: 1.5rem;
}
}
@media screen and (max-width: 320px) {
.interests .content,
.about-me .content {
padding: 20px 10px 30px;
}
.work-subtitle{
display: none;
}
.firstmarq{
margin-left: 10px;
}
#typerline{
font-size: 0.8rem;
}
.home-menu-square {
margin: 10px;
right: 20px;
}
:root {
--hgrid-padding: 5px;
--vgrid-padding: 20px;
--menu-square-length: 50px;
--scroll-square-length: 170px;
}
#down-arrow {
width: 30px;
height: 30px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 20px
}
.ccode {
display: none;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
border-right: none;
padding: 10px;
padding-left: 20px;
font-size: 13px;
line-height: 14px;
transform: translateY(-20px);
}
.main-title {
padding-left: 10px;
}
.homegrid .solid {
font-size: 3rem;
color: #f892a1;
width: fit-content;
line-height: 2.8rem;
}
} | src/css/index.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;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Black.woff2') format('woff2');
font-style: normal;
font-weight: 900;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-BlackItalic.woff2') format('woff2');
font-style: italic;
font-weight: 900;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-ExtraBold.woff2') format('woff2');
font-style: normal;
font-weight: 800;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-ExtraBoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 800;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Bold.woff2') format('woff2');
font-style: normal;
font-weight: 700;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-BoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 700;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-SemiBold.woff2') format('woff2');
font-style: normal;
font-weight: 600;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-SemiBoldItalic.woff2') format('woff2');
font-style: italic;
font-weight: 600;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Medium.woff2') format('woff2');
font-style: normal;
font-weight: 500;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-MediumItalic.woff2') format('woff2');
font-style: italic;
font-weight: 500;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Regular.woff2') format('woff2');
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Italic.woff2') format('woff2');
font-style: italic;
font-weight: 400;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-Light.woff2') format('woff2');
font-style: normal;
font-weight: 300;
}
@font-face {
font-family: 'OpenSauceOne';
src: url('../fonts/OpenSauceOne-LightItalic.woff2') format('woff2');
font-style: italic;
font-weight: 300;
}
:root {
--hgrid-padding: 25px;
--vgrid-padding: 25px;
--menu-square-length: 70px;
--scroll-square-length: 250px;
--time-box-length: 220px;
--app-height: 800px;
}
html,
body {
width: 100%;
box-sizing: border-box;
font-family: OpenSauceOne, sans-serif;
margin: 0;
padding: 0;
background-color: #20243a;
/* scroll-behavior: smooth; */
}
main {
overflow-x: hidden;
}
#loadwrapper {
height: 100vh;
width: 100vw;
position: fixed;
display: flex;
justify-content: center;
z-index: 50;
top: 0;
left: 0;
align-items: center;
pointer-events: none;
overflow: hidden;
background: #fffff5;
margin: 0;
padding: 0;
}
/*ROTATING LOADER*/
.loaderbadge {
padding: 0;
background: #f892a1;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
z-index: 51;
}
.textcircle {
position: relative;
display: block;
width: 200px;
animation: 6s rotate infinite linear;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes rotateback {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.textcircle text {
font-size: 55px;
font-weight: 300;
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
fill: #20243a;
}
.textcircle textPath {
letter-spacing: 17px;
/* Firefox needs this */
}
#canvas {
/* make the canvas wrapper fits the window */
width: inherit !important;
height: 100vh;
overflow: hidden;
position: relative;
padding: 0px;
min-height: 550px;
}
#canvas::after {
content: "";
position: absolute;
width: 240vw;
height: 240vh;
left: -50%;
top: -50%;
opacity: 0.4;
/* background-image: url(../images/noise2.png); */
}
canvas {
height: 100vh;
width: 100vw;
min-height: 550px;
z-index: 1;
filter: blur(7px);
opacity: 0;
}
.plane {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.plane img {
/* hide the img element */
display: none;
}
/*ROTATING CIRCLE*/
.rotating-badge {
padding: 0;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
height: 100%;
width: 100%;
}
.rotating-badge .rotate-textcircle {
position: relative;
display: block;
width: 100%;
height: 100%;
animation: 20s rotate infinite linear;
}
.rotating-badge .rotate-textcircle .rotate-scroll-text {
font-size: 30px;
font-weight: 200;
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
fill: #fffff5;
}
.rotating-badge .rotate-textcircle textPath {
letter-spacing: 10px;
/* Firefox needs this */
}
.homegrid {
position: absolute;
box-sizing: border-box;
z-index: 1;
left: 0;
top: 0;
width: 100%;
overflow: hidden;
height: 100%;
display: grid;
grid-template-columns: [line1] var(--hgrid-padding) [line2] var(--time-box-length) [line3] 1fr [line4] 1fr [line5] calc(var(--scroll-square-length) - var(--menu-square-length)) [line6] var(--menu-square-length) [line7] var(--hgrid-padding) [end];
grid-template-rows: [row1] var(--vgrid-padding) [row2] var(--menu-square-length) [row3] auto [row4] calc(var(--scroll-square-length) - var(--menu-square-length)) [row5] var(--menu-square-length) [row6] var(--vgrid-padding) [row7] 0vh [end];
}
.home-border {
grid-column-start: line2;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row6;
/*border: 4px solid #fffff5;*/
}
.home-top-row {
grid-column-start: line2;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row3;
/* border-bottom: 1px solid #fffff5;
margin-bottom: -10px; */
}
.home-menu-square {
/* grid-column-start: line6;
grid-column-end: line7;
grid-row-start: row2;
grid-row-end: row3; */
/*border: 4px solid #fffff5;*/
position: fixed;
background-color: #fffff5;
z-index: 10;
border-radius: 50%;
top: 70px;
margin: 10px;
right: 30px;
height: calc(var(--menu-square-length) - 20px);
width: calc(var(--menu-square-length) - 20px);
color: #20243a;
font-size: 2rem;
font-family: 'Jetbrains Mono', monospace;
display: flex;
justify-content: center;
flex-direction: row;
transition: 0.2s ease all;
}
.home-menu-square p {
display: block;
align-self: center;
font-weight: 200;
user-select: none;
}
#menu-overlay {
/*border: 4px solid #fffff5;*/
background-color: #fffff5;
height: 100vh;
width: 100vw;
position: fixed;
transform: translateX(100vw);
z-index: 2;
overflow: hidden;
display: flex;
flex-direction: column;
text-decoration: none;
justify-content: center;
align-items: center;
}
.nav {
padding: 40px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.nav a {
text-decoration: none !important;
font-family: OpenSauceOne, sans-serif;
color: #20243a;
transition: 0.1s ease all;
}
.nav li {
font-size: 4rem;
font-weight: 700;
border-top: 1px solid currentColor;
width: 100%;
padding: 10px 3px;
list-style: upper-roman;
}
.nav li:nth-last-of-type(1){
border-bottom: 1px solid currentColor;
}
@media screen and (min-width: 800px) {
.nav a:hover {
color: #6fa0b8;
}
.contact:hover{
transform: scale(1.1)
}
.home-menu-square:hover {
background-color: #f892a1 !important;
}
.work-title:hover{
transform: scale(1.05)
}
}
.menu-footer {
padding: 40px;
font-weight: 600;
}
.title-section {
font-weight: 700;
font-size: 5rem;
padding: 40px 10px;
font-family: OpenSauceOne, sans-serif;
}
.gallery-subtitle{
font-size: 1.3rem;
padding: 30px 10px 0px;
}
.work-title-color {
color: #20243a;
}
.gallery-title-color {
color: #e15232;
margin: 10px 50px;
border-bottom: 1px solid #e15232;
}
.menu-inactive {
display: none !important;
}
.home-bottom-row {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
/*border: 4px solid #fffff5;*/
border-right: 0px;
color: #fffff5;
font-family: OpenSauceOne, sans-serif;
padding: 0 20px;
font-weight: 400;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 1.5rem;
letter-spacing: 1px;
}
.home-scroll-square {
grid-column-start: line5;
grid-column-end: line7;
grid-row-start: row4;
grid-row-end: row6;
transform: translateX(15px);
transition: 0.2s ease all;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
/* border: 4px solid #fffff5; */
padding: 17px;
font-size: 18px;
line-height: 24px;
justify-content: center;
display: flex;
flex-direction: column;
font-family: 'JetBrains Mono', monospace;
color: #fffff5;
text-align: left;
font-weight: 400;
transform: translateY(-20px);
}
#typer {
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row2;
grid-row-end: row3;
/* border: 4px solid #fffff5; */
color: #20243a;
font-weight: 500;
margin: auto 10px;
padding: 10px 0px;
white-space: nowrap;
font-size: 1.6rem;
}
#typerline {
display: block;
font-size: 1rem;
}
.main-title {
display: flex;
flex-direction: column;
justify-content: center;
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row3;
grid-row-end: row5;
padding-left: 30px;
}
.main-title svg {
fill: #f892a1;
margin: 20px 20px 0px 20px;
width: 80px;
height: 80px;
/* animation: 30s rotate infinite linear; */
}
#down-arrow-container {
grid-column-start: line5;
grid-column-end: line7;
grid-row-start: row4;
grid-row-end: row6;
width: var(--scroll-square-length);
height: var(--scroll-square-length);
/*border: 4px solid #fffff5;*/
display: flex;
justify-content: center;
align-content: center;
border: 0px solid rgba(0, 0, 0, 0);
transform: translateX(15px);
color: #20243a;
z-index: 2;
}
#down-arrow {
width: 50px;
height: 50px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 30px
}
.homegrid .solid {
font-size: 5.5rem;
font-weight: 700;
color: #f892a1;
padding: 20px;
width: fit-content;
line-height: 5rem;
letter-spacing: 1px;
/* background-color: #d5c3af;
border-radius: 7px;
border: 8px solid #d5c3af */
}
.content-wrapper {
position: relative;
overflow: hidden;
}
.padder {
padding: 10px;
height: 150px;
}
.padder-white {
padding: 0px;
height: 0px;
}
/*SECTION ZERO ABOUT ME*/
.intro {
background: #20243a;
padding: 10px 10px;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
margin-top: 100px;
padding-bottom: 100px;
}
.wrap {
width: 80%;
max-width: 1000px;
margin: 0px auto;
}
.about-me {
background-color: #fffff5;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #5d9f88;
margin: 0px 50px 70px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #20243a;
font-size: 1.3rem;
line-height: 2rem;
}
.about-me .content {
padding: 50px;
}
.rotator-index {
margin: auto 10px;
font-size: 2.5rem;
letter-spacing: 4px;
font-weight: 600;
color: #fffff5;
font-family: 'OpenSauceOne', sans-serif;
white-space: nowrap;
}
.underline-right::after {
display: block;
content: ' ';
border-bottom: 6px solid #e15232;
transform: translate(10px, 5px);
}
.underline-left::after {
display: block;
content: ' ';
border-bottom: 6px solid #e15232;
transform: translate(-10px, 5px);
}
.title-underline::after {
display: block;
content: ' ';
border-bottom: 6px solid currentColor;
transform: translate(15px, 0px);
}
/* .contact-underline::after {
display: block;
content: ' ';
border-bottom: 5px solid currentColor;
transform: translate(15px, 0px);
} */
#rotator-star {
width: 50px;
height: 100%;
margin-right: 10px;
fill: #fffff5;
color: #fffff5;
}
.rotator-index-dark {
margin: auto 10px;
font-size: 2.5rem;
letter-spacing: 4px;
font-weight: 600;
color: #20243a;
font-family: 'OpenSauce', sans-serif;
white-space: nowrap;
}
#rotator-star-dark {
width: 50px;
height: 100%;
margin-right: 10px;
fill: #20243a;
color: #20243a;
}
.hr-dash {
margin: auto 15px;
width: 100%;
height: 1px;
border: none;
background: #fffff5;
/* border-radius: 50%; */
}
.hr-dash-dark {
margin: auto;
width: 100%;
height: 1px;
border: none;
background: #20243a;
/* border-radius: 50%; */
}
.section-rotator {
height: 150px;
overflow: hidden;
margin: 30px;
display: flex;
flex-direction: row;
}
.rotating-badge-section {
padding: 0;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
min-width: 150px;
position: relative;
}
.rotating-badge-section .rotate-textcircle {
position: relative;
display: block;
width: 100%;
height: 100%;
animation: 20s rotateback infinite linear;
}
.rotate-scroll-text {
font-size: 43px;
font-weight: 300;
font-family: 'Jetbrains Mono', sans-serif;
text-transform: uppercase;
fill: #fffff5;
}
.rotating-badge-section .rotate-textcircle textPath {
letter-spacing: 4px;
/* Firefox needs this */
}
.pink-box {
background-color: #f892a1;
}
.red-box {
background-color: #e15232;
}
.blue-box {
background-color: #6fa0b8;
}
.interestbox {}
.box-marquee {
color: #fffff5;
font-family: 'JetBrains Mono', monospace;
font-size: 1.5rem;
letter-spacing: 1px;
/* display: flex;
flex-direction: column;
justify-content: center; */
padding: 0px 15px;
height: 3rem;
line-height: 3.1rem;
font-weight: 300;
overflow: hidden;
}
.content-title {
color: #20243a;
background-color: #f892a1;
}
.home-title {
color: #20243a;
background-color: #f892a1;
position: absolute !important;
z-index: 1;
width: 100%;
}
.gallery-title {
color: #fffff5;
background-color: #e15232;
}
.experiment-title {
color: #fffff5;
background-color: #5d9f88;
}
.contact-title-marquee {
color: #fffff5;
background-color: #20243a;
}
.marquee-title-wrapper {
overflow: hidden;
position: relative;
padding: 10px 0px;
}
.marquee-title {
padding: 10px 0px;
font-family: 'Jetbrains Mono', monospace;
font-size: 1.5rem;
line-height: 1.3rem;
letter-spacing: 1px;
font-weight: 300;
/* border-top: 2px solid #fffff5;
border-bottom: 2px solid #fffff5; */
}
.marquee-title-dark {
padding: 10px 0px;
font-family: 'Jetbrains Mono', monospace;
font-size: 1.5rem;
line-height: 1.3rem;
letter-spacing: 1px;
font-weight: 300;/*
border-top: 2px solid #20243a;
border-bottom: 2px solid #20243a; */
}
.marquee-title-first {
padding: 10px 0px;
font-family: OpenSauceOne, sans-serif;
font-size: 1rem;
line-height: 1rem;
letter-spacing: 0px;
font-weight: 600;
}
.firstmarq{
margin-left: 30px;
}
/* SECTION 2 CARD CONTENT WORK */
.two {
background: #fffff5;
padding: 50px;
}
.two .content {
padding: 100px 10px;
max-width: 1200px;
margin: 0px auto;
}
.work {
border-top: 1px solid #20243a;
padding: 30px 5px 30px 20px;
display: flex;
flex-direction: row;
}
.work-subtitle {
display: block;
margin-right: 20px;
text-align: center;
text-orientation: mixed;
writing-mode: vertical-rl;
font-size: 1.0rem;
letter-spacing: 2px;
font-weight: 400;
font-family: 'Jetbrains Mono', monospace;
}
.work-title {
font-size: 2.6rem;
line-height: 2.8rem;
margin: 10px 0px 20px 0px;
letter-spacing: 2px;
display: block;
font-weight: 700;
height: auto;
text-decoration: none;
width: fit-content;
font-family: OpenSauceOne, sans-serif;
transition: 0.2s ease all;
}
.contact-title {
font-size: 2rem;
line-height: 2.2rem;
margin: 30px 0px 30px 0px;
letter-spacing: 2px;
display: block;
font-weight: 700;
height: auto;
text-decoration: none;
width: fit-content;
font-family: OpenSauceOne, sans-serif;
border: 2px solid currentColor;
border-radius: 50%;
padding: 15px 20px;
}
.work-icon {
width: 150px;
height: 150px;
border-radius: 50%;
margin: auto 20px;
border: 1px solid #20243a
}
.work-icon-small {
display: none;
}
.blue {
color: #6fa0b8;
}
.dark {
color: #20243a;
}
.purple {
color: #9f66d1
}
.ig-purple {
border-color: #6a28df !important;
background-color: #E1306C;
color: #fac343;
}
.spotify-green{
background-color: #1DB954;
color: #191414;
border-color: #fffff5 !important;
}
.red {
color: #e15232
}
.gmail-red {
background-color: #ffffff;
color: #e15232;
}
.linkedin-blue{
color: #fffff5;
background-color: #2d79d1;
}
.resume-yellow{
background-color: #f7bf25;
border-color: #fffff5 !important;
color: #20243a;
}
.github-black{
color: #fffff5;
background-color: #333333;
border-color: #aaaaaa !important;
}
.yellow {
color: #f7bf25
}
.white {
color: #fffff5
}
.pink {
color: #f892a1
}
.green {
color: #5d9f88
}
.work-content {
font-size: 1.3rem;
margin: 20px;
line-height: 2rem;
display: block;
font-weight: 400;
height: auto;
width: auto;
font-family: OpenSauceOne, sans-serif;
}
.work-content .link{
position: relative;
text-decoration: none;
}
.coming-soon {
font-size: 0.8rem;
color: #20243a;
}
.not-yet {
text-decoration: line-through !important;
}
.work:nth-last-of-type(1) {
border-bottom: 1px solid #20243a;
}
/*SECTION THREE*/
.three {
background: #20243a;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
}
.interests {
background-color: #fffff5;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #9f66d1;
margin: 0px 50px 200px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 400;
color: #20243a;
font-size: 1.2rem;
line-height: 1.4rem;
margin-top: 40px;
}
.interests .content {
padding: 25px;
}
.interest-bar {
display: flex;
justify-content: space-between;
position: relative;
user-select: none;
font-size: 1.4rem;
line-height: 1.6rem;
margin: 10px 5px;
font-weight: 500;
}
.section-rotator-reverse {
height: 150px;
overflow: hidden;
margin: 30px;
display: flex;
flex-direction: row-reverse;
}
/* .interest-hide {
display: none !important;
} */
.interest-entry {
padding: 0px;
margin: 0px;
border-top: 1px solid #20243a;
position: relative;
transition: 0.35s all ease;
overflow: hidden;
}
.open-entry {
padding-bottom: 10px !important;
}
.interest-link {
display: block;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
/* .open-entry {
transition: 0.35s all ease;
} */
.interest-entry:nth-last-of-type(1) {
border-bottom: 1px solid #20243a;
}
.interest-inactive::after {
content: "\2192";
font-weight: 300;
width: 1em;
height: 1em;
text-align: center;
transition: all .35s;
}
.interest-active::after {
transform: rotate(90deg);
}
.interest-content {
display: block;
margin: 0px 5px;
padding: 0;
user-select: none;
font-size: 1rem;
line-height: 1.4rem;
height: 0;
}
.rotate-scroll-text2 {
font-size: 43px;
font-weight: 300;
font-family: 'Jetbrains Mono', monospace;
text-transform: uppercase;
fill: #20243a;
}
/*SECTION 4 LETS GOOOOO*/
.four {
background: #fffff5;
padding: 10px 10px;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
padding-top: 100px;
}
.experiments {
background-color: #20243a;
display: block;
min-height: 300px;
box-shadow: 10px 10px 0 0px #6fa0b8;
margin: 10px 50px 100px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #fffff5;
font-size: 1.5rem;
line-height: 1.8rem;
}
.experiments .content {
padding: 50px;
padding-left: 10px;
padding-right: 10px;
}
.experiment {
font-size: 1.4rem;
padding: 20px 30px;
margin: 0px 20px;
line-height: 1.6rem;
border-top: 1px solid #fffff5;
font-weight: 700;
}
.experiment-content {
font-size: 1rem;
margin: 15px 0;
line-height: 1.2rem;
font-weight: 400;
color: #fffff5;
}
.experiment-title-content {
text-decoration: underline;
font-size: 1.4rem;
line-height: 1.6rem;
font-weight: 700;
color: #fffff5;
}
.experiment:nth-last-of-type(1) {
border-bottom: 1px solid #fffff5;
}
.contacts {
background-color: #20243a;
display: block;
box-shadow: 10px 10px 0 0px #f7bf25;
margin: 10px 50px 100px 50px;
font-family: OpenSauceOne, sans-serif;
font-weight: 500;
color: #20243a;
font-size: 1.5rem;
line-height: 1.8rem;
}
.contacts .content {
padding: 40px 40px;
display: flex;
flex-wrap: wrap;
margin: 0px auto;
width: fit-content;
flex-direction: row;
justify-content: center;
}
.contact a{
color: inherit;
}
.contact-title-content{
font-size: 1.4rem;
font-weight: 700;
line-height: 1.6rem;
}
.contact{
margin: 10px;
padding: 8px 5px;
border: 2px solid currentColor;
border-radius: 40px;
transition: 0.2s ease all;
}
.contact-content {
font-size: 1rem;
margin: 15px 15px 0px 15px;
line-height: 1.2rem;
font-weight: 400;
color: #20243a;
}
.contact-title-content {
text-decoration: unset;
font-size: 1.4rem;
padding: 10px;
line-height: 1.6rem;
font-weight: 700;
}
.contact-subtitle{
color: #fffff5;
font-size: 1rem;
padding: 10px 20px
}
.nowrap {
white-space: nowrap;
}
.no-curtains .plane {
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.no-curtains .plane img {
display: block;
max-width: 100%;
object-fit: cover;
}
.cursor {
position: fixed;
top: 0;
left: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #fff;
z-index: 99;
opacity: 0;
border: 3px solid #20243a;
pointer-events: none;
}
.follower {
position: fixed;
top: 0;
left: 0;
width: 40px;
height: 40px;
border-radius: 50%;
z-index: 100;
opacity: 0;
border: 2px solid rgba(255, 255, 255, 1);
mix-blend-mode: exclusion;
pointer-events: none;
}
/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: invert(100%)) or (backdrop-filter: invert(100%))) {
.cursor {
backdrop-filter: invert(100%);
background-color: unset;
border: 0px;
}
}
/*PHOTOGRID*/
.gallery {
display: flex;
flex-wrap: wrap;
padding: 2vmin;
padding-bottom: 50px;
overflow: hidden;
position: relative;
}
.gallery h1 {
font-size: 2.4rem;
line-height: 2.4rem;
}
.gallery-section {
padding-top: 100px;
padding-bottom: 100px;
background-color: #fffff5;
}
.gallery li {
height: 30vh;
flex-grow: 2;
margin: 2vmin;
position: relative;
user-select: none;
}
.gallery li .image-overlay{
opacity: 0;
transition: all ease 0.3s;
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #fffff5;
background-color: rgba(225, 82, 50, 0.7);
border-radius: 10px;
user-select: none;
}
.gallery li .image-overlay h1{
font-size: 1.7rem;
line-height: 1.9rem;
padding: 30px;
text-align: center;
user-select: none;
}
.gallery li .image-overlay:active{
opacity: 1;
}
.gallery img {
max-height: 100%;
min-width: 100%;
object-fit: cover;
vertical-align: bottom;
border-radius: 10px;
user-select: none;
}
@media (max-aspect-ratio: 1/1) {
.gallery li {
height: 17vh;
margin: 1.5vmin
}
}
@media (max-height: 480px) {
.gallery li {
height: 80vh;
}
}
/*
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
gallery {
flex-direction: row;
}
li {
height: auto;
width: 100%;
}
img {
width: 100%;
max-height: 75vh;
min-width: 0;
}
} */
.footer {
padding: 20px;
background-color: #20243a;
color: #fffff5;
font-family: OpenSauceOne, sans-serif;
}
.footer p{
font-size: 0.8rem;
margin: 10px;
}
@media screen and (max-width: 1000px){
.contact-title{
margin: 20px auto;
}
}
@media screen and (max-width: 800px) {
.contacts .content {
padding: 20px 0px;}
.nav li{
list-style: none;
}
.follower,
.cursor {
display: none;
}
.homegrid .solid {
font-size: 4.5rem;
color: #f892a1;
padding: 10px;
width: fit-content;
line-height: 4.2rem;
}
.home-menu-square {
font-size: 1.8rem;
}
.wrap {
width: 90%;
}
.home-bottom-row {
font-size: 1rem;
}
.main-title svg {
fill: #f892a1;
margin: 20px 0px 0px 10px;
width: 80px;
height: 80px;
animation: 30s rotate infinite linear;
}
.interests {
display: block;
min-height: 300px;
font-size: 1.5rem;
line-height: 1.8rem;
}
.interests .content,
.about-me .content {
padding: 25px;
padding-bottom: 50px;
}
.experiments .content {
padding: 25px;
padding-left: 10px;
padding-right: 10px;
}
.contacts .content {
padding: 25px;
padding-left: 10px;
padding-right: 10px;
}
.two {
padding: 30px 10px;
}
.gallery-title-color {
margin-left: 20px;
margin-right: 20px;
}
}
@media screen and (max-width: 600px) {
.interests .content,
.about-me .content {
padding: 20px 20px 30px 20px
}
.experiments .content {
padding: 35px;
padding-left: 5px;
padding-right: 5px;
}
.contacts .content {
padding: 35px;
padding-left: 5px;
padding-right: 5px;
}
.firstmarq{
margin-left: 20px;
}
.gallery li .image-overlay h1{
font-size: 1rem;
line-height: 1.2rem;
padding: 10px;
}
.padder {
padding: 10px;
height: 70px;
}
:root {
--hgrid-padding: 20px;
--vgrid-padding: 20px;
--menu-square-length: 60px;
--scroll-square-length: 190px;
}
.experiment {
font-size: 1.3rem;
padding: 20px 20px;
margin: 0px 10px;
line-height: 1.4rem;
}
.nav {
margin-top: 50px;
font-size: 3rem;
padding: 30px
}
.nav li {
font-size: 3rem;
}
.menu-footer {
padding: 30px;
}
.title-section {
font-size: 3rem;
}
.title-section {
padding: 20px 10px;
}
.work {
padding: 20px 5px 20px 10px;
}
.work-title {
font-size: 2rem;
line-height: 2.5rem;
letter-spacing: 1px;
}
.contact-title {
font-size: 2rem;
line-height: 2.5rem;
letter-spacing: 1px;
}
.work-subtitle {
margin-top: 30px;
font-size: 0.8rem;
text-align: left;
margin-bottom: 20px;
}
.work-icon-small {
display: unset;
width: 100px;
height: 100px;
border-radius: 50%;
margin: 10px 0px 15px 0px;
border: 1px solid #20243a
}
.work-content {
font-size: 1rem;
line-height: 1.5rem;
}
.work-icon {
display: none;
}
.rotating-badge-section {
min-width: 100px;
}
#down-arrow {
width: 30px;
height: 30px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 10px
}
.section-rotator,
.section-rotator-reverse {
margin: 0;
}
.hr-dash,
.hr-dash-dark {
border: none
}
.rotator-index-dark,
.rotator-index {
font-size: 1.2rem;
letter-spacing: 3px;
}
.underline-right::after {
border-bottom: 3px solid #e15232;
transform: translate(7px, 3px);
}
.underline-left::after {
border-bottom: 3px solid #e15232;
transform: translate(-7px, 3px);
}
.title-underline::after {
border-bottom: 3px solid currentColor;
transform: translate(10px, 0px);
}
/* .contact-underline::after {
border-bottom: 3px solid currentColor;
transform: translate(10px, 0px);
} */
.ig-fix {
height: var(--app-height) !important;
}
.homegrid {
grid-template-columns: [line1] var(--hgrid-padding) [line2] 1fr [line3] 1fr [line4] auto [line5] calc(var(--scroll-square-length) - var(--menu-square-length)) [line6] var(--menu-square-length) [line7] var(--hgrid-padding) [end];
grid-template-rows: [row1] var(--vgrid-padding) [row2] var(--menu-square-length) [row3] auto [row4] calc(var(--scroll-square-length) - var(--menu-square-length)) [row5] var(--menu-square-length) [row6] var(--vgrid-padding) [row7] 0vh [end];
}
#typer {
grid-column-start: line2;
grid-column-end: line6;
grid-row-start: row2;
grid-row-end: row3;
font-size: 1.2rem;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
border-right: none;
padding: 10px;
font-size: 13px;
line-height: 14px;
justify-content: center;
letter-spacing: 0px;
transform: translateY(-20px);
}
.main-title {
padding-left: 0px;
}
.main-title svg {
fill: #f892a1;
margin: 20px 0px 0px 10px;
width: 70px;
height: 70px;
animation: 30s rotate infinite linear;
}
.homegrid .solid {
font-size: 20vw;
color: #f892a1;
width: fit-content;
line-height: 20vw;
}
.main-title {
display: flex;
flex-direction: column;
justify-content: center;
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row3;
grid-row-end: row4;
padding-left: 10px;
}
.home-bottom-row {
display: none;
}
.three {
padding: 20px 40px 200px;
}
.about-me {
width: 100%;
margin: 0;
margin-top: 30px;
margin-bottom: 30px;
}
.contacts,
.experiments,
.interests {
width: 100%;
margin: 0;
margin-top: 30px;
margin-bottom: 90px;
}
.two {
padding: 30px 0px;
}
.gallery-title-color {
margin-left: 10px;
margin-right: 10px;
}
}
@media screen and (max-width: 455px) {
.contacts .content {
display: block;
position: relative;
padding: 25px 5px;
width: 90%;
}
.contact-title-content{
width: 100%;
text-align: center;
position: relative;
}
.contact{
margin: 25px 10px;
position: relative;
text-align: center;
}
}
@media screen and (max-width: 400px) {
.rotator-index-dark,
.rotator-index {
font-size: 1.1rem;
letter-spacing: 1px;
}
.work-subtitle{
margin-right: 5px;
margin-top: 10px;
}
.nav {
margin-top: 70px;
font-size: 2rem;
font-weight: 700;
padding: 20px
}
.nav li {
font-size: 2rem;
}
.menu-footer {
padding: 20px;
}
#typer {
font-size: 1.1rem;
}
.interest-entry p,
.about-me p {
font-size: 1.1rem;
line-height: 1.5rem;
}
.home-menu-square {
font-size: 1.5rem;
}
}
@media screen and (max-width: 320px) {
.interests .content,
.about-me .content {
padding: 20px 10px 30px;
}
.work-subtitle{
display: none;
}
.firstmarq{
margin-left: 10px;
}
#typerline{
font-size: 0.8rem;
}
.home-menu-square {
margin: 10px;
right: 20px;
}
:root {
--hgrid-padding: 5px;
--vgrid-padding: 20px;
--menu-square-length: 50px;
--scroll-square-length: 170px;
}
#down-arrow {
width: 30px;
height: 30px;
align-self: center;
border-radius: 50%;
background-color: #fffff5;
padding: 20px
}
.ccode {
display: none;
}
.home-date {
grid-column-start: line2;
grid-column-end: line5;
grid-row-start: row5;
grid-row-end: row6;
border-right: none;
padding: 10px;
padding-left: 20px;
font-size: 13px;
line-height: 14px;
transform: translateY(-20px);
}
.main-title {
padding-left: 10px;
}
.homegrid .solid {
font-size: 3rem;
color: #f892a1;
width: fit-content;
line-height: 2.8rem;
}
} | 0.38445 | 0.061452 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800);
@charset "utf-8";
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
body{
font-family: 'Open Sans', Arial, Tahoma;
font-weight: 400;
color: #363636;
background: #234569;
padding-top : 10px;
}
blockquote {
font-size: 1em;
}
.container{
margin-top: 50px;
background: #fff;
margin-bottom: 15px;
border-right: 15px solid #234569;
border-left: 15px solid #234569;
}
#photo-header{
margin-top: -60px;
}
#photo{
width: 220px;
height: 220px;
border-radius: 50%;
overflow: hidden;
margin-left: 25px;
padding: 5px;
background: #234569;
display: inline-block;
}
#photo img{
width: 210px;
height: 210px;
border-radius: 50%;
}
#text-header{
margin-top: 40px;
}
#text-header h1{
padding: 0;
font-size: 2em;
font-weight: 700;
text-transform: uppercase;
text-align: center;
}
#text-header h1::first-line{
font-size: 1.5em;
font-weight: 800;
line-height: 1.5em;
}
#text-header h2{
color: #234569;
opacity: 0.9;
padding: 0;
font-size: 2em;
font-weight: 700;
text-transform: uppercase;
text-align: center;
}
#header:after{
width: 100%;
height: 3px;
border-bottom: 1px solid #ddd;
margin-top: 15px;
content: '';
display: block;
}
.box{
padding-bottom: 5px;
margin-bottom: 5px;
}
.box h2{
color: #227c74;
font-size: 1.2em;
font-weight: 700;
text-transform: uppercase;
}
#about {
text-align: justify;
font-style: italic;
font-size: 1.35em;
}
#education{
margin-top: 2px;
margin-bottom: 0;
position: relative;
padding: 1em 0;
list-style: none;
}
#education:before {
width: 5px;
height: 100%;
position: absolute;
left: 6%;
top: 0;
content: ' ';
display: block;
background: #234569;
background: -moz-linear-gradient(top, #ffffff 0%, #234569 7%, #234569 89%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(7%,#234569), color-stop(89%,#234569), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: -o-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: linear-gradient(to bottom, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}
#education li{
width: 100%;
z-index: 2;
position: relative;
float: left;
}
#education .year{
width: 15%;
background: #fff;
padding: 10px 10px 10px 0px;
font-weight: 700;
display: inline-block;
text-align: center;
}
#education .infos{
width: 85%;
display: inline-block;
text-align: justify;
background: #eee;
margin-bottom: 10px;
position: relative;
padding: 10px;
border-radius: 10px;
}
#education .infos:after {
content: '';
position: absolute;
top: 15px;
right: 0;
left: -16px;
height: 0;
width: 0;
border: solid transparent;
border-right-color: #eee;
border-width: 8px;
pointer-events: none;
}
#education .infos h3{
font-size: 1.2em;
margin: 0;
padding: 0;
font-weight: 700;
}
#education .infos p{
margin-top: 5px;
padding: 0;
}
.job{
padding-bottom: 8px;
margin-bottom: 8px;
}
.job .details {
margin-left: 3%;
margin-right: 0%;
width: 95%;
padding: 10px;
background: #eee;
border-radius: 10px;
}
.job .name{
font-size: 1.1em;
font-weight: bold;
}
.job .profession{
font-size: 1.3em;
font-weight: bold;
}
.job .year{
opacity: 0.7;
font-weight: lighter;
font-style: italic;
}
.job .address{
font-weight: lighter;
}
.job .description{
margin-top: 10px;
font-size: 0.85em;
color: #666;
font-style: italic;
}
.job .infos{
line-height: 1.5em;
}
.job .highlights{
padding: 5px 0px;
font-weight: bold;
}
.job .job-details {
padding-top: 10px;
margin-left: 5%;
margin-right: 5%;
text-align: justify;
background: #f8f8f8;
}
.publication {
margin-bottom: 0;
}
.publication .name{
font-size: 1em;
font-weight: bold;
}
.publication .year{
opacity: 0.7;
}
.publication p{
margin: 0;
padding-top: 10px;
}
.resume_name{
padding-left: 0px;
padding-right: 0px;
}
.contact{
padding-top: 10px;
}
.contact-item{
width: 100%;
float: left;
}
.contact-item .icon{
padding: 12px;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
color: #234569;
background: #eee;
}
.contact-item .title{
width: 84%;
font-weight: 700;
font-size: 1.4em;
line-height: 100%;
}
.contact-item .title.only{
margin-top: 10px;
}
.contact-item .infos{
width: 90%;
width: calc(100% - 55px);
color: #234569;
}
.profiles{
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
.item-interests,
.item-skills{
height: 30px;
color: #234569;
padding: 5px 10px;
margin-bottom: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.1em;
font-weight: 600;
}
.interest,
.skill{
color: #234569;
background: #fff;
border: 0.5px solid #234569;
display: inline-block;
padding: 5px 10px;
position: relative;
font-size: 1em;
}
.list-group-item
{
overflow: auto;
}
.item-name
{
background: #fff;
border: 0.5px solid #fff;
display: inline-block;
margin-right: 5px;
padding: 2px 5px;
position: relative;
font-size: 1em;
}
#language-skills .skill{
margin: 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.address {
font-size: .85em;
} | style.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800);
@charset "utf-8";
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
body{
font-family: 'Open Sans', Arial, Tahoma;
font-weight: 400;
color: #363636;
background: #234569;
padding-top : 10px;
}
blockquote {
font-size: 1em;
}
.container{
margin-top: 50px;
background: #fff;
margin-bottom: 15px;
border-right: 15px solid #234569;
border-left: 15px solid #234569;
}
#photo-header{
margin-top: -60px;
}
#photo{
width: 220px;
height: 220px;
border-radius: 50%;
overflow: hidden;
margin-left: 25px;
padding: 5px;
background: #234569;
display: inline-block;
}
#photo img{
width: 210px;
height: 210px;
border-radius: 50%;
}
#text-header{
margin-top: 40px;
}
#text-header h1{
padding: 0;
font-size: 2em;
font-weight: 700;
text-transform: uppercase;
text-align: center;
}
#text-header h1::first-line{
font-size: 1.5em;
font-weight: 800;
line-height: 1.5em;
}
#text-header h2{
color: #234569;
opacity: 0.9;
padding: 0;
font-size: 2em;
font-weight: 700;
text-transform: uppercase;
text-align: center;
}
#header:after{
width: 100%;
height: 3px;
border-bottom: 1px solid #ddd;
margin-top: 15px;
content: '';
display: block;
}
.box{
padding-bottom: 5px;
margin-bottom: 5px;
}
.box h2{
color: #227c74;
font-size: 1.2em;
font-weight: 700;
text-transform: uppercase;
}
#about {
text-align: justify;
font-style: italic;
font-size: 1.35em;
}
#education{
margin-top: 2px;
margin-bottom: 0;
position: relative;
padding: 1em 0;
list-style: none;
}
#education:before {
width: 5px;
height: 100%;
position: absolute;
left: 6%;
top: 0;
content: ' ';
display: block;
background: #234569;
background: -moz-linear-gradient(top, #ffffff 0%, #234569 7%, #234569 89%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(7%,#234569), color-stop(89%,#234569), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: -o-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
background: linear-gradient(to bottom, #ffffff 0%,#234569 7%,#234569 89%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}
#education li{
width: 100%;
z-index: 2;
position: relative;
float: left;
}
#education .year{
width: 15%;
background: #fff;
padding: 10px 10px 10px 0px;
font-weight: 700;
display: inline-block;
text-align: center;
}
#education .infos{
width: 85%;
display: inline-block;
text-align: justify;
background: #eee;
margin-bottom: 10px;
position: relative;
padding: 10px;
border-radius: 10px;
}
#education .infos:after {
content: '';
position: absolute;
top: 15px;
right: 0;
left: -16px;
height: 0;
width: 0;
border: solid transparent;
border-right-color: #eee;
border-width: 8px;
pointer-events: none;
}
#education .infos h3{
font-size: 1.2em;
margin: 0;
padding: 0;
font-weight: 700;
}
#education .infos p{
margin-top: 5px;
padding: 0;
}
.job{
padding-bottom: 8px;
margin-bottom: 8px;
}
.job .details {
margin-left: 3%;
margin-right: 0%;
width: 95%;
padding: 10px;
background: #eee;
border-radius: 10px;
}
.job .name{
font-size: 1.1em;
font-weight: bold;
}
.job .profession{
font-size: 1.3em;
font-weight: bold;
}
.job .year{
opacity: 0.7;
font-weight: lighter;
font-style: italic;
}
.job .address{
font-weight: lighter;
}
.job .description{
margin-top: 10px;
font-size: 0.85em;
color: #666;
font-style: italic;
}
.job .infos{
line-height: 1.5em;
}
.job .highlights{
padding: 5px 0px;
font-weight: bold;
}
.job .job-details {
padding-top: 10px;
margin-left: 5%;
margin-right: 5%;
text-align: justify;
background: #f8f8f8;
}
.publication {
margin-bottom: 0;
}
.publication .name{
font-size: 1em;
font-weight: bold;
}
.publication .year{
opacity: 0.7;
}
.publication p{
margin: 0;
padding-top: 10px;
}
.resume_name{
padding-left: 0px;
padding-right: 0px;
}
.contact{
padding-top: 10px;
}
.contact-item{
width: 100%;
float: left;
}
.contact-item .icon{
padding: 12px;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
color: #234569;
background: #eee;
}
.contact-item .title{
width: 84%;
font-weight: 700;
font-size: 1.4em;
line-height: 100%;
}
.contact-item .title.only{
margin-top: 10px;
}
.contact-item .infos{
width: 90%;
width: calc(100% - 55px);
color: #234569;
}
.profiles{
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
.item-interests,
.item-skills{
height: 30px;
color: #234569;
padding: 5px 10px;
margin-bottom: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.1em;
font-weight: 600;
}
.interest,
.skill{
color: #234569;
background: #fff;
border: 0.5px solid #234569;
display: inline-block;
padding: 5px 10px;
position: relative;
font-size: 1em;
}
.list-group-item
{
overflow: auto;
}
.item-name
{
background: #fff;
border: 0.5px solid #fff;
display: inline-block;
margin-right: 5px;
padding: 2px 5px;
position: relative;
font-size: 1em;
}
#language-skills .skill{
margin: 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.address {
font-size: .85em;
} | 0.409103 | 0.087291 |
.iframe-content {
height: 478px;
}
.layout-wrapper .layout-footer {padding: 15px 20px 10px 20px;box-shadow: none;background: white;text-align: center;}
.profile-display-name-container {
height: 55px;
width: 280px;
text-align: center;
}
.profile-display-name {
width: 70%;
float: left;
padding: 13px !important;
}
.profile-image-container {
border-radius: 100px;
width: 30%;
float: left;
padding: 4px;
border-radius: 100px;
}
.profile-image {
border-radius: 100px;
width: 45px !important;
height: 45px !important;
}
.layout-wrapper.menu-layout-horizontal .topbar .topbar-right, .layout-wrapper.menu-layout-horizontal .topbar .topbar-left {background: white !important}
.layout-wrapper.menu-layout-horizontal .layout-main {padding-top: 80px}
.botao-padrao {border-radius: 100px; padding:10px 30px;font-size: 14px}
/* .topbar-left {width: 400px !important} */
.topbar-left {width: 100% !important}
.topbar-logo {width:80px !important; float: left;}
.topbar-left ul {float: left;margin: 0;}
.topbar-left ul li {list-style: none; float:left;margin-right: 15px;}
.topbar-left ul li img {width: 25px;}
.topbar-logo-language {min-width: 210px;}
.topbar-profile {margin: -12px -15px 0 0 !important; cursor: pointer !important; float: right !important; min-width: 310px; width: 42% !important;}
.topbar-application {min-width: 230px; float: right !important;}
.topbar-application li {font-size: 25px; width: 100%; text-align: center; font-weight: bold; color: #c43150 !important;}
.menuItem li {width: 100%;}
/* ESCOLHA PERFIL */
.escolha_perfil .svg-inline--fa {color: #c43150;font-size: 60px;}
.escolha_perfil .overview-box-count {margin: 0; color: #414141;}
.escolha_perfil .box-items {background: #fff;box-shadow: 0px 2px 10px #ccc;border: none;border-radius: 8px;}
.escolha_perfil .box-items:hover {background: #f1f1f1 !important;}
/* TÍTULO PAGINA + BREADCUMBS */
.faixacinza a {color: #c43150}
.faixacinza h1 {margin-top: 10px;color: #c43150}
.faixacinza .right {text-align: right;padding-top: 25px;}
.faixacinza strong {background:#414042;padding: 15px 30px;margin-left: 20px;color: #fff;border-radius: 60px;}
/* POS LOGIN */
.poslogin { padding:60px; }
.poslogin .overview-box {padding-bottom:30px; text-align: center}
.poslogin .overview-box-title img {width: 100%}
.poslogin .overview-box-title .svg-inline--fa {vertical-align: 0.2em;}
.poslogin .overview-box-count {margin:-20px 0 10px 0;color: #414141 !important;font-size: 18px !important;}
.poslogin .overview-box .botao-padrao {background: none !important;border: solid 1px #fff !important;;margin: 0 auto;color: #fff;}
.poslogin .overview-box .botao-padrao:hover {background: #fff !important; color:#414042}
.poslogin .box-items {
background: fff;
border: none !important;
height: 100%;
}
.poslogin .box-items:hover {
background: #eee;
height: 100%;
}
.poslogin .box-salas {background: #faa61a}
.poslogin .box-3a {background: #27a5a2}
/* ALOCAR DOCENTE */
.selecionarcursos .overview-box {padding-bottom:25px; text-align: center}
.selecionarcursos .overview-box-title img {width: 100%}
.selecionarcursos .overview-box-count {margin:15px 0 5px 0; color:#414042 !important; font-size:18px !important }
.selecionarcursos .escolher-curso {width: 100%;}
.selecionarcursos .alocacoes-abertas {font-size: 14px; width: 100%;margin-bottom: 20px;color:#414042}
.selecionarcursos .alocacoes-abertas span {color: #c43150; font-weight: 500}
.selecionarcursos .box-cursos {background: #fff;color: #414042; text-align: center;}
/* SEM ACESSO */
.exception-body.access {background-size:100%; background-position: center center}
.ui-button {background: #c43150 !important}
.exception-text {color:#414042 !important}
.exception-body .exception-text .exception-box {color: #ffffff;background-color: #c4314f;margin-left: 10px;}
.layout-main {padding: 0 !important; }
.exception-text {height: 1000px;padding-top: 100px !important;}
.langFlag:hover {cursor: pointer; border-width: 1px; border-color: white; border-style: solid; border-radius: 100px;}
.menu-item-custom {
width: 100%;
height: 30px;
padding: 8px;
}
.menu-item-custom:hover {
background-color: silver;
} | src/styles.css | .iframe-content {
height: 478px;
}
.layout-wrapper .layout-footer {padding: 15px 20px 10px 20px;box-shadow: none;background: white;text-align: center;}
.profile-display-name-container {
height: 55px;
width: 280px;
text-align: center;
}
.profile-display-name {
width: 70%;
float: left;
padding: 13px !important;
}
.profile-image-container {
border-radius: 100px;
width: 30%;
float: left;
padding: 4px;
border-radius: 100px;
}
.profile-image {
border-radius: 100px;
width: 45px !important;
height: 45px !important;
}
.layout-wrapper.menu-layout-horizontal .topbar .topbar-right, .layout-wrapper.menu-layout-horizontal .topbar .topbar-left {background: white !important}
.layout-wrapper.menu-layout-horizontal .layout-main {padding-top: 80px}
.botao-padrao {border-radius: 100px; padding:10px 30px;font-size: 14px}
/* .topbar-left {width: 400px !important} */
.topbar-left {width: 100% !important}
.topbar-logo {width:80px !important; float: left;}
.topbar-left ul {float: left;margin: 0;}
.topbar-left ul li {list-style: none; float:left;margin-right: 15px;}
.topbar-left ul li img {width: 25px;}
.topbar-logo-language {min-width: 210px;}
.topbar-profile {margin: -12px -15px 0 0 !important; cursor: pointer !important; float: right !important; min-width: 310px; width: 42% !important;}
.topbar-application {min-width: 230px; float: right !important;}
.topbar-application li {font-size: 25px; width: 100%; text-align: center; font-weight: bold; color: #c43150 !important;}
.menuItem li {width: 100%;}
/* ESCOLHA PERFIL */
.escolha_perfil .svg-inline--fa {color: #c43150;font-size: 60px;}
.escolha_perfil .overview-box-count {margin: 0; color: #414141;}
.escolha_perfil .box-items {background: #fff;box-shadow: 0px 2px 10px #ccc;border: none;border-radius: 8px;}
.escolha_perfil .box-items:hover {background: #f1f1f1 !important;}
/* TÍTULO PAGINA + BREADCUMBS */
.faixacinza a {color: #c43150}
.faixacinza h1 {margin-top: 10px;color: #c43150}
.faixacinza .right {text-align: right;padding-top: 25px;}
.faixacinza strong {background:#414042;padding: 15px 30px;margin-left: 20px;color: #fff;border-radius: 60px;}
/* POS LOGIN */
.poslogin { padding:60px; }
.poslogin .overview-box {padding-bottom:30px; text-align: center}
.poslogin .overview-box-title img {width: 100%}
.poslogin .overview-box-title .svg-inline--fa {vertical-align: 0.2em;}
.poslogin .overview-box-count {margin:-20px 0 10px 0;color: #414141 !important;font-size: 18px !important;}
.poslogin .overview-box .botao-padrao {background: none !important;border: solid 1px #fff !important;;margin: 0 auto;color: #fff;}
.poslogin .overview-box .botao-padrao:hover {background: #fff !important; color:#414042}
.poslogin .box-items {
background: fff;
border: none !important;
height: 100%;
}
.poslogin .box-items:hover {
background: #eee;
height: 100%;
}
.poslogin .box-salas {background: #faa61a}
.poslogin .box-3a {background: #27a5a2}
/* ALOCAR DOCENTE */
.selecionarcursos .overview-box {padding-bottom:25px; text-align: center}
.selecionarcursos .overview-box-title img {width: 100%}
.selecionarcursos .overview-box-count {margin:15px 0 5px 0; color:#414042 !important; font-size:18px !important }
.selecionarcursos .escolher-curso {width: 100%;}
.selecionarcursos .alocacoes-abertas {font-size: 14px; width: 100%;margin-bottom: 20px;color:#414042}
.selecionarcursos .alocacoes-abertas span {color: #c43150; font-weight: 500}
.selecionarcursos .box-cursos {background: #fff;color: #414042; text-align: center;}
/* SEM ACESSO */
.exception-body.access {background-size:100%; background-position: center center}
.ui-button {background: #c43150 !important}
.exception-text {color:#414042 !important}
.exception-body .exception-text .exception-box {color: #ffffff;background-color: #c4314f;margin-left: 10px;}
.layout-main {padding: 0 !important; }
.exception-text {height: 1000px;padding-top: 100px !important;}
.langFlag:hover {cursor: pointer; border-width: 1px; border-color: white; border-style: solid; border-radius: 100px;}
.menu-item-custom {
width: 100%;
height: 30px;
padding: 8px;
}
.menu-item-custom:hover {
background-color: silver;
} | 0.334698 | 0.098599 |
html {
box-sizing: border-box;
overflow-x: hidden;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
margin: 0;
font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
background-color: #fff;
color: #212121;
}
.timer {
margin-left: auto;
margin-right: auto;
text-align: center;
color: #212121;
border-radius: 2px;
}
.clockface {
margin-bottom: 15px;
font-family: "Roboto Mono", monospace;
font-size: 80px;
margin-top: 0;
margin-bottom: 24px;
}
.timer-btn {
display: inline-flex;
margin-left: 4px;
margin-right: 4px;
text-transform: uppercase;
border: 0;
background-color: #3f51b5;
color: #ffffff;
padding: 10px 20px;
cursor: pointer;
font-size: 24px;
border-radius: 3px;
}
.active {
background-color: #2196f3;
}
.notifiaction {
position: fixed;
bottom: 20px;
right: 20px;
margin: 0;
background-color: #fff;
color: #2a2a2a;
border: 1px solid #2a2a2a;
border-radius: 3px;
padding: 24px;
user-select: none;
cursor: pointer;
transform: translateX(calc(100% + 20px));
visibility: hidden;
opacity: 0;
transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notifiaction.success {
border: 1px solid #388e3c;
background-color: #4caf50;
color: #fff;
}
.notifiaction.is-visible {
transform: translateX(0);
visibility: visible;
opacity: 1;
}
.actions {
margin: 50px;
text-align: center;
}
.button {
width: 250px;
height: 70px;
background: #f3f0f1;
/* position: relative; */
margin-bottom: 25px;
border-radius: 25px;
text-align: center;
cursor: pointer;
transition: all 0.1s ease-in-out;
outline: none;
border: none;
box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.button-text {
font-family: "Montserrat", sans-serif;
font-size: 32px;
font-weight: semibold;
color: #6f6cde;
}
.button:hover {
background: #ffffff;
box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.button:active {
opacity: 1;
box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.5),
inset 8px 8px 16px rgba(0, 0, 0, 0.1);
color: #79e3b6;
}
.button:active .button-text {
color: #79e3b6;
} | module-11/color-switch/css/style.css | html {
box-sizing: border-box;
overflow-x: hidden;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
margin: 0;
font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
background-color: #fff;
color: #212121;
}
.timer {
margin-left: auto;
margin-right: auto;
text-align: center;
color: #212121;
border-radius: 2px;
}
.clockface {
margin-bottom: 15px;
font-family: "Roboto Mono", monospace;
font-size: 80px;
margin-top: 0;
margin-bottom: 24px;
}
.timer-btn {
display: inline-flex;
margin-left: 4px;
margin-right: 4px;
text-transform: uppercase;
border: 0;
background-color: #3f51b5;
color: #ffffff;
padding: 10px 20px;
cursor: pointer;
font-size: 24px;
border-radius: 3px;
}
.active {
background-color: #2196f3;
}
.notifiaction {
position: fixed;
bottom: 20px;
right: 20px;
margin: 0;
background-color: #fff;
color: #2a2a2a;
border: 1px solid #2a2a2a;
border-radius: 3px;
padding: 24px;
user-select: none;
cursor: pointer;
transform: translateX(calc(100% + 20px));
visibility: hidden;
opacity: 0;
transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notifiaction.success {
border: 1px solid #388e3c;
background-color: #4caf50;
color: #fff;
}
.notifiaction.is-visible {
transform: translateX(0);
visibility: visible;
opacity: 1;
}
.actions {
margin: 50px;
text-align: center;
}
.button {
width: 250px;
height: 70px;
background: #f3f0f1;
/* position: relative; */
margin-bottom: 25px;
border-radius: 25px;
text-align: center;
cursor: pointer;
transition: all 0.1s ease-in-out;
outline: none;
border: none;
box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.button-text {
font-family: "Montserrat", sans-serif;
font-size: 32px;
font-weight: semibold;
color: #6f6cde;
}
.button:hover {
background: #ffffff;
box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.button:active {
opacity: 1;
box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.5),
inset 8px 8px 16px rgba(0, 0, 0, 0.1);
color: #79e3b6;
}
.button:active .button-text {
color: #79e3b6;
} | 0.53048 | 0.101367 |
@charset "utf-8";
/* Webkit Scrollbar Customize */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #999;
}
html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select {
margin: 0;
padding: 0;
}
html {
font-family: sans-serif;
}
/* HEADER */
.header {
display: none;
}
@media screen and (max-width: 767px) {
.header {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
text-align: center;
line-height: 46px;
background: #00bdff;
z-index: 3;
}
}
.header #menu {
position: absolute;
left: 12px;
font-size: 18px;
line-height: 46px;
color: #fff;
}
.header .site-title {
font-size: 18px;
text-decoration: none;
color: #fff;
}
.header.slide-up {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(100px);
transform: translateY(-100px);
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
.header.slide-down {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
#wrap {
width: 100%;
height: 100%;
}
#backdrop {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
z-index: 3;
}
#backdrop.hide {
display: none;
}
/* 左侧 */
.sidebar {
position: fixed;
top: 0;
left: 0;
overflow: auto;
width: 250px;
height: 100%;
border-right: solid 1px #e4e4e4;
background: #fff;
z-index: 4;
-webkit-transition: transform .3s ease-in-out;
-moz-transition: transform .3s ease-in-out;
-o-transition: transform .3s ease-in-out;
transition: transform .3s ease-in-out;
}
@media screen and (max-width: 767px) {
.sidebar {
-webkit-transform: translateX(-251px);
-moz-transform: translateX(-251px);
-ms-transform: translateX(-251px);
-o-transform: translateX(-251px);
transform: translateX(-251px);
}
}
.show-sidebar {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.sidebar .sidebar-top {
padding: 1.5em 0;
text-align: center;
background-color: #00bdff;
}
.sidebar .avatar {
width: 6em;
height: 6em;
border-radius: 50%;
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
.sidebar .avatar:hover {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
.sidebar .site-name {
margin-top: 16px;
font-size: 1.5em;
font-weight: 400;
}
.sidebar .site-name > a {
text-decoration: none;
color: #fff;
}
.sidebar-nav {
margin: 50px auto;
text-align: center;
}
.menu-item {
padding: 10px 0;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
-o-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.menu-item:hover {
background: #eee;
}
.menu-item:not(:first-child) {
margin: 8px auto 0 auto;
}
.menu-item a {
display: block;
font-size: 18px;
text-decoration: none;
color: #999;
}
/* 右侧 */
.main {
margin: 0 auto 0 250px;
}
@media screen and (max-width: 767px) {
.main {
width: 100%;
margin: 0 auto;
}
}
.content {
margin: 24px auto;
}
@media screen and (min-width: 768px) {
.content {
max-width: 85%;
}
}
@media screen and (min-width: 992px) {
.content {
max-width: 75%;
}
}
@media screen and (min-width: 1200px) {
.content {
max-width: 65%;
}
}
@media screen and (max-width: 767px) {
.content {
max-width: 90%;
margin: 64px auto 24px auto;
}
}
.category-title {
text-align: center;
}
.article-item {
margin: 0 0 20px 0;
border-bottom: solid 1px #eef2f8;
}
.article-title {
margin: 12px auto;
}
.article-title-link {
text-decoration: none;
color: #000;
transition: color .3s ease-in-out;
}
.article-title-link:hover {
color: #2479cc;
}
.article-meta {
font-size: 13px;
color: #9eabb3;
}
.article-meta a {
text-decoration: none;
color: #9eabb3;
transition: .3s color;
}
.article-meta a:hover {
color: #2479cc;
}
.article-meta i {
margin: 0 5px 0 0;
}
.article-desc {
font-size: 14px;
line-height: 28px;
margin: 8px 0 0 0;
}
.article-more {
margin: 0 0 12px 0;
}
.article-more > a {
font-size: 13px;
text-decoration: none;
color: #349ef3;
}
/* - 换页 */
.page-navigator {
display: flex;
justify-content: center;
margin: 32px auto;
}
.page-navigator span {
margin: 0 8px;
}
.page-navigator a {
padding: 5px 10px;
border: solid 1px #9e9e9e;
border-radius: 3px;
text-decoration: none;
font-size: 13px;
color: #9e9e9e;
transition: border .3s ease-in-out;
}
.page-navigator a:hover,
.page-navigator .current > a {
border: solid 1px #2479cc;
color: #2479cc;
}
/* POST */
.post-title {
font-size: 1.3rem;
text-align: center;
}
.post-meta {
margin: 8px 0;
text-align: center;
font-size: 13px;
color: #9eabb3;
}
.post-meta i {
margin-right: 5px;
}
.post-content {
margin: 18px auto;
line-height: 1.75rem;
word-wrap: break-word;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
margin: 12px auto;
}
.post-content h1 {
font-size: 1.3rem;
}
.post-content h2 {
font-size: 1.2rem;
}
.post-content h3 {
font-size: 1.1rem;
}
.post-content h1:before,
.post-content h2:before,
.post-content h3::before{
content:'# ';
color:#999;
}
.post-content p {
margin: 12px auto;
font-size: 14px;
}
.post-content img {
max-width: 100%;
border-radius: 5px;
}
.post-content ul,
.post-content ol {
margin: 0 auto 0 20px;
font-size: 14px;
}
.post-content hr {
margin: 2em 0;
border: 0;
border-bottom: solid 2px #efefef;
}
.post-content a{
color: rgb(37, 168, 219);
text-decoration: none;
-webkit-transition: .5s color ease-in-out;
-moz-transition: .5s color ease-in-out;
-o-transition: .5s color ease-in-out;
transition: .5s color ease-in-out;
}
.post-content a:hover{
color: #7decff;
}
.post-content blockquote{
margin-top: 10px;
margin-bottom: 10px;
padding-left: 15px;
border-left: 3px solid #ccc;
}
/* 文章代码高亮 */
.post-content pre {
overflow: auto;
margin: 1em 0;
padding: 15px 20px;
border: 1px solid #ddd;
border-radius: 3px;
line-height: 1.2em;
font-family: "Source Code Pro", Monaco, Menlo, Consolas, monospace;
background: #2d2d2d;
color: #ccc;
}
pre::-webkit-scrollbar{
width: 7px;
height: 7px;
}
pre::-webkit-scrollbar-track-piece{
background: #555555;
border-radius: 0 0 5px 5px;
}
pre::-webkit-scrollbar-thumb{
border-radius: 5px;
background: #888;
}
/* #comments */
#comments {
margin-top: 15px;
}
#comments .commentsnum {
margin: 0 0 5px;
font-size: 1.1rem;
color: #555;
}
#comments .text {
margin: 8px auto;
padding: 10px 12px;
width: 100%;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
box-sizing: border-box;
background: #fff;
}
#comments .textarea {
margin: 8px auto;
padding: 6px 12px;
width: 100%;
height: 100px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
resize: none;
font-family: -apple-system,BlinkMacSystemFont,"Pingfang SC",Roboto,"Open Sans","Microsoft Yahei Light","Microsoft YaHei","Helvetica Neue",Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
box-sizing: border-box;
background: #fff;
}
#comments .btn {
display: block;
margin: 5px auto;
padding: 0 25px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #fff;
color: #999;
text-align: center;
line-height: 36px;
cursor: pointer;
-webkit-transition-duration: .4s;
transition-duration: .4s;
}
#comments .btn:hover {
border: 1px solid #2479cc;
color: #2479cc;
}
#comments .comment-list {
padding: 0;
list-style: none;
}
#comments .response{
font-size: 13px;
}
#comments .response a {
text-decoration: none;
color: #aaa;
}
#comments .response a:hover {
color: #2479cc;
}
#comments .avatar {
float: left;
display: block;
margin-right: .5rem;
width: 40px;
height: 40px;
border: 1px solid #ddd;
border-radius: 50%;
}
#comments .comment-reply {
float: right;
}
#comments .comment-reply a {
text-decoration: none;
color: #aaa;
}
#comments .comment-reply a:hover {
color: #2479cc;
}
#comments .comment-author {
padding: .1rem .25rem;
border-radius: .25rem;
background: #eee;
}
#comments .comment-author a {
color: #aaa;
text-decoration: none;
}
#comments .comment-author a:hover {
color: #2479cc;
}
#comments .comment-meta {
margin-top: 5px;
margin-left: 50px;
color: #aaa;
font-size: 12px;
}
#comments .comment-view {
overflow: hidden;
padding: .85rem 0;
border-bottom: 1px dotted #e0e0e0;
}
#comments .comment-content p {
margin: 0 0 0 50px;
font-size: 14px;
}
#comments .comment-parent>.comment-children {
margin-left: 1rem;
padding-left: 40px;
}
/* 底部 */
.footer {
margin: 36px auto 0 auto;
font-size: 13px;
text-align: center;
letter-spacing: 1px;
color: #9eabb3;
}
.footer a {
color: #349ef3;
text-decoration: none;
transition: color .5s;
}
.footer a:hover {
color: #51aded;
-webkit-transition: .5s;
-o-transition: .5s;
transition: .5s;
}
.footer p {
line-height: 24px;
}
.social-menu {
margin: 0;
font-size: 22px;
}
.social-menu li {
display: inline-block;
margin: 0 6px;
}
.social-menu li a {
color: #9eabb3;
}
.social-menu li a:hover {
color: #349ef3;
}
/* LINKS */
.links {
overflow: hidden;
margin: 2em auto;
text-align: center;
}
.links .links-item {
display: inline-block;
width: 96px;
padding: 12px 0;
text-align: center;
}
.links .links-item > a {
width: 100%;
text-decoration: none;
color: #4e687b;
}
.links .links-avatar {
display: inline-block;
width: 4.5em;
height: 4.5em;
border-radius: 50%;
background-color: #eee;
box-shadow: 0 0.5em 2em #f1f4f7;
}
.links .links-name {
overflow: hidden;
width: 100%;
font-size: 14px;
text-overflow: ellipsis;
white-space: nowrap;
opacity: .5;
}
/* 404 */
.error-404 {
padding: 12em 0;
text-align: center;
letter-spacing: 2px;
}
.error-404 p {
line-height: 36px;
color: #999;
} | css/i.css | @charset "utf-8";
/* Webkit Scrollbar Customize */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #999;
}
html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select {
margin: 0;
padding: 0;
}
html {
font-family: sans-serif;
}
/* HEADER */
.header {
display: none;
}
@media screen and (max-width: 767px) {
.header {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
text-align: center;
line-height: 46px;
background: #00bdff;
z-index: 3;
}
}
.header #menu {
position: absolute;
left: 12px;
font-size: 18px;
line-height: 46px;
color: #fff;
}
.header .site-title {
font-size: 18px;
text-decoration: none;
color: #fff;
}
.header.slide-up {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(100px);
transform: translateY(-100px);
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
.header.slide-down {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
#wrap {
width: 100%;
height: 100%;
}
#backdrop {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
z-index: 3;
}
#backdrop.hide {
display: none;
}
/* 左侧 */
.sidebar {
position: fixed;
top: 0;
left: 0;
overflow: auto;
width: 250px;
height: 100%;
border-right: solid 1px #e4e4e4;
background: #fff;
z-index: 4;
-webkit-transition: transform .3s ease-in-out;
-moz-transition: transform .3s ease-in-out;
-o-transition: transform .3s ease-in-out;
transition: transform .3s ease-in-out;
}
@media screen and (max-width: 767px) {
.sidebar {
-webkit-transform: translateX(-251px);
-moz-transform: translateX(-251px);
-ms-transform: translateX(-251px);
-o-transform: translateX(-251px);
transform: translateX(-251px);
}
}
.show-sidebar {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.sidebar .sidebar-top {
padding: 1.5em 0;
text-align: center;
background-color: #00bdff;
}
.sidebar .avatar {
width: 6em;
height: 6em;
border-radius: 50%;
-webkit-transition: transform .5s ease-in-out;
-moz-transition: transform .5s ease-in-out;
-o-transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
.sidebar .avatar:hover {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
.sidebar .site-name {
margin-top: 16px;
font-size: 1.5em;
font-weight: 400;
}
.sidebar .site-name > a {
text-decoration: none;
color: #fff;
}
.sidebar-nav {
margin: 50px auto;
text-align: center;
}
.menu-item {
padding: 10px 0;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
-o-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.menu-item:hover {
background: #eee;
}
.menu-item:not(:first-child) {
margin: 8px auto 0 auto;
}
.menu-item a {
display: block;
font-size: 18px;
text-decoration: none;
color: #999;
}
/* 右侧 */
.main {
margin: 0 auto 0 250px;
}
@media screen and (max-width: 767px) {
.main {
width: 100%;
margin: 0 auto;
}
}
.content {
margin: 24px auto;
}
@media screen and (min-width: 768px) {
.content {
max-width: 85%;
}
}
@media screen and (min-width: 992px) {
.content {
max-width: 75%;
}
}
@media screen and (min-width: 1200px) {
.content {
max-width: 65%;
}
}
@media screen and (max-width: 767px) {
.content {
max-width: 90%;
margin: 64px auto 24px auto;
}
}
.category-title {
text-align: center;
}
.article-item {
margin: 0 0 20px 0;
border-bottom: solid 1px #eef2f8;
}
.article-title {
margin: 12px auto;
}
.article-title-link {
text-decoration: none;
color: #000;
transition: color .3s ease-in-out;
}
.article-title-link:hover {
color: #2479cc;
}
.article-meta {
font-size: 13px;
color: #9eabb3;
}
.article-meta a {
text-decoration: none;
color: #9eabb3;
transition: .3s color;
}
.article-meta a:hover {
color: #2479cc;
}
.article-meta i {
margin: 0 5px 0 0;
}
.article-desc {
font-size: 14px;
line-height: 28px;
margin: 8px 0 0 0;
}
.article-more {
margin: 0 0 12px 0;
}
.article-more > a {
font-size: 13px;
text-decoration: none;
color: #349ef3;
}
/* - 换页 */
.page-navigator {
display: flex;
justify-content: center;
margin: 32px auto;
}
.page-navigator span {
margin: 0 8px;
}
.page-navigator a {
padding: 5px 10px;
border: solid 1px #9e9e9e;
border-radius: 3px;
text-decoration: none;
font-size: 13px;
color: #9e9e9e;
transition: border .3s ease-in-out;
}
.page-navigator a:hover,
.page-navigator .current > a {
border: solid 1px #2479cc;
color: #2479cc;
}
/* POST */
.post-title {
font-size: 1.3rem;
text-align: center;
}
.post-meta {
margin: 8px 0;
text-align: center;
font-size: 13px;
color: #9eabb3;
}
.post-meta i {
margin-right: 5px;
}
.post-content {
margin: 18px auto;
line-height: 1.75rem;
word-wrap: break-word;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
margin: 12px auto;
}
.post-content h1 {
font-size: 1.3rem;
}
.post-content h2 {
font-size: 1.2rem;
}
.post-content h3 {
font-size: 1.1rem;
}
.post-content h1:before,
.post-content h2:before,
.post-content h3::before{
content:'# ';
color:#999;
}
.post-content p {
margin: 12px auto;
font-size: 14px;
}
.post-content img {
max-width: 100%;
border-radius: 5px;
}
.post-content ul,
.post-content ol {
margin: 0 auto 0 20px;
font-size: 14px;
}
.post-content hr {
margin: 2em 0;
border: 0;
border-bottom: solid 2px #efefef;
}
.post-content a{
color: rgb(37, 168, 219);
text-decoration: none;
-webkit-transition: .5s color ease-in-out;
-moz-transition: .5s color ease-in-out;
-o-transition: .5s color ease-in-out;
transition: .5s color ease-in-out;
}
.post-content a:hover{
color: #7decff;
}
.post-content blockquote{
margin-top: 10px;
margin-bottom: 10px;
padding-left: 15px;
border-left: 3px solid #ccc;
}
/* 文章代码高亮 */
.post-content pre {
overflow: auto;
margin: 1em 0;
padding: 15px 20px;
border: 1px solid #ddd;
border-radius: 3px;
line-height: 1.2em;
font-family: "Source Code Pro", Monaco, Menlo, Consolas, monospace;
background: #2d2d2d;
color: #ccc;
}
pre::-webkit-scrollbar{
width: 7px;
height: 7px;
}
pre::-webkit-scrollbar-track-piece{
background: #555555;
border-radius: 0 0 5px 5px;
}
pre::-webkit-scrollbar-thumb{
border-radius: 5px;
background: #888;
}
/* #comments */
#comments {
margin-top: 15px;
}
#comments .commentsnum {
margin: 0 0 5px;
font-size: 1.1rem;
color: #555;
}
#comments .text {
margin: 8px auto;
padding: 10px 12px;
width: 100%;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
box-sizing: border-box;
background: #fff;
}
#comments .textarea {
margin: 8px auto;
padding: 6px 12px;
width: 100%;
height: 100px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
resize: none;
font-family: -apple-system,BlinkMacSystemFont,"Pingfang SC",Roboto,"Open Sans","Microsoft Yahei Light","Microsoft YaHei","Helvetica Neue",Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
box-sizing: border-box;
background: #fff;
}
#comments .btn {
display: block;
margin: 5px auto;
padding: 0 25px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #fff;
color: #999;
text-align: center;
line-height: 36px;
cursor: pointer;
-webkit-transition-duration: .4s;
transition-duration: .4s;
}
#comments .btn:hover {
border: 1px solid #2479cc;
color: #2479cc;
}
#comments .comment-list {
padding: 0;
list-style: none;
}
#comments .response{
font-size: 13px;
}
#comments .response a {
text-decoration: none;
color: #aaa;
}
#comments .response a:hover {
color: #2479cc;
}
#comments .avatar {
float: left;
display: block;
margin-right: .5rem;
width: 40px;
height: 40px;
border: 1px solid #ddd;
border-radius: 50%;
}
#comments .comment-reply {
float: right;
}
#comments .comment-reply a {
text-decoration: none;
color: #aaa;
}
#comments .comment-reply a:hover {
color: #2479cc;
}
#comments .comment-author {
padding: .1rem .25rem;
border-radius: .25rem;
background: #eee;
}
#comments .comment-author a {
color: #aaa;
text-decoration: none;
}
#comments .comment-author a:hover {
color: #2479cc;
}
#comments .comment-meta {
margin-top: 5px;
margin-left: 50px;
color: #aaa;
font-size: 12px;
}
#comments .comment-view {
overflow: hidden;
padding: .85rem 0;
border-bottom: 1px dotted #e0e0e0;
}
#comments .comment-content p {
margin: 0 0 0 50px;
font-size: 14px;
}
#comments .comment-parent>.comment-children {
margin-left: 1rem;
padding-left: 40px;
}
/* 底部 */
.footer {
margin: 36px auto 0 auto;
font-size: 13px;
text-align: center;
letter-spacing: 1px;
color: #9eabb3;
}
.footer a {
color: #349ef3;
text-decoration: none;
transition: color .5s;
}
.footer a:hover {
color: #51aded;
-webkit-transition: .5s;
-o-transition: .5s;
transition: .5s;
}
.footer p {
line-height: 24px;
}
.social-menu {
margin: 0;
font-size: 22px;
}
.social-menu li {
display: inline-block;
margin: 0 6px;
}
.social-menu li a {
color: #9eabb3;
}
.social-menu li a:hover {
color: #349ef3;
}
/* LINKS */
.links {
overflow: hidden;
margin: 2em auto;
text-align: center;
}
.links .links-item {
display: inline-block;
width: 96px;
padding: 12px 0;
text-align: center;
}
.links .links-item > a {
width: 100%;
text-decoration: none;
color: #4e687b;
}
.links .links-avatar {
display: inline-block;
width: 4.5em;
height: 4.5em;
border-radius: 50%;
background-color: #eee;
box-shadow: 0 0.5em 2em #f1f4f7;
}
.links .links-name {
overflow: hidden;
width: 100%;
font-size: 14px;
text-overflow: ellipsis;
white-space: nowrap;
opacity: .5;
}
/* 404 */
.error-404 {
padding: 12em 0;
text-align: center;
letter-spacing: 2px;
}
.error-404 p {
line-height: 36px;
color: #999;
} | 0.328637 | 0.064979 |
body {
background-color: #1B1C31 !important;
}
#navbar-custom {
background-color: #282945 !important;
}
.custom-search {
border: 2px solid #8A8DBA !important;
background-color: transparent !important;
border-radius: 0px !important;
color: #fff !important;
}
.custom-button {
background-color: #5959D8 !important;
border-color: #5959D8;
width: 50%;
border-radius: 0px !important;
border-color: #5959D8 !important;
}
.custom-button:hover {
background-color: #5959D8 !important;
border-color: #5959D8;
}
.nav-tabs {
border-bottom: 1px solid #5959D8 !important;
background-color: #282945;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #fff !important;
background-color: #5959D8 !important;
border-color: #5959D8 #5959D8 #5959D8 !important
}
.nav-tabs .nav-link {
border-top-left-radius: 0px !important;
border-top-right-radius: 0px !important;
color: #8588FF;
font-size: 14pt;
text-transform: uppercase;
/* line-height: 25.78px; */
font-weight: 500;
font-family: Roboto;
font-style: normal;
}
.bg-dark1 {
background: #282945 !important;
}
.no-border {
border: 0px !important;
}
.text-purple {
color: #8588FF !important;
}
.text-light-p {
color: #8A8DBA !important;
}
.token {
background-color: #5959D8 !important;
border-radius: 0px !important;
border-color: #5959D8 !important;
}
.token:hover {
border-color: #6d6de4 !important;
background-color: #6d6de4 !important;
border-radius: 0px !important;
}
.rollup {
background-color: #8537f5 !important;
border-radius: 0px !important;
border-color: #8537f5 !important;
}
.rollup:hover {
background-color: #9249f7 !important;
border-radius: 0px !important;
border-color: #9249f7 !important;
}
#main{
margin-top:8rem;
padding-left: 0px;
padding-right: 0px;
margin-bottom: 2rem;
}
hr{
color: #9249f7;
}
.hash{
font-size: 10pt !important;
}
.dataTables_info,
.dataTables_length,
.dataTables_filter {
color: #636363;
}
footer{
padding-top : 3rem;
padding-bottom: 3rem;
text-align: center;
color: #737373;
}
.card{
background-color: #282945 !important;
}
.card-title{
color: #5959D8;
}
.table-dark{
--bs-table-bg : #1b1c31 !important;
--bs-table-striped-bg : #1b1c31 !important;
--bs-table-striped-color : #8989f1 !important;
--bs-table-active-bg : #5959d8 !important;
color : #fff !important;
}
footer p{
font-size: 11pt;
}
#test-token,
#main-table,
#peg-table,
#bnb-table {
font-size: 10pt;
}
.w-40{
width: 40% !important;
}
.w-10{
width: 10% !important;
}
.w-15{
width: 15% !important;
}
.w-45{
width: 45% !important;
}
.w-8{
width: 8% !important;
}
tbody,
td,
tfoot,
th,
thead,
tr{
width: 5% !important;
}
.bg{
color: #ffffff !important;
} | css/main.css | body {
background-color: #1B1C31 !important;
}
#navbar-custom {
background-color: #282945 !important;
}
.custom-search {
border: 2px solid #8A8DBA !important;
background-color: transparent !important;
border-radius: 0px !important;
color: #fff !important;
}
.custom-button {
background-color: #5959D8 !important;
border-color: #5959D8;
width: 50%;
border-radius: 0px !important;
border-color: #5959D8 !important;
}
.custom-button:hover {
background-color: #5959D8 !important;
border-color: #5959D8;
}
.nav-tabs {
border-bottom: 1px solid #5959D8 !important;
background-color: #282945;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #fff !important;
background-color: #5959D8 !important;
border-color: #5959D8 #5959D8 #5959D8 !important
}
.nav-tabs .nav-link {
border-top-left-radius: 0px !important;
border-top-right-radius: 0px !important;
color: #8588FF;
font-size: 14pt;
text-transform: uppercase;
/* line-height: 25.78px; */
font-weight: 500;
font-family: Roboto;
font-style: normal;
}
.bg-dark1 {
background: #282945 !important;
}
.no-border {
border: 0px !important;
}
.text-purple {
color: #8588FF !important;
}
.text-light-p {
color: #8A8DBA !important;
}
.token {
background-color: #5959D8 !important;
border-radius: 0px !important;
border-color: #5959D8 !important;
}
.token:hover {
border-color: #6d6de4 !important;
background-color: #6d6de4 !important;
border-radius: 0px !important;
}
.rollup {
background-color: #8537f5 !important;
border-radius: 0px !important;
border-color: #8537f5 !important;
}
.rollup:hover {
background-color: #9249f7 !important;
border-radius: 0px !important;
border-color: #9249f7 !important;
}
#main{
margin-top:8rem;
padding-left: 0px;
padding-right: 0px;
margin-bottom: 2rem;
}
hr{
color: #9249f7;
}
.hash{
font-size: 10pt !important;
}
.dataTables_info,
.dataTables_length,
.dataTables_filter {
color: #636363;
}
footer{
padding-top : 3rem;
padding-bottom: 3rem;
text-align: center;
color: #737373;
}
.card{
background-color: #282945 !important;
}
.card-title{
color: #5959D8;
}
.table-dark{
--bs-table-bg : #1b1c31 !important;
--bs-table-striped-bg : #1b1c31 !important;
--bs-table-striped-color : #8989f1 !important;
--bs-table-active-bg : #5959d8 !important;
color : #fff !important;
}
footer p{
font-size: 11pt;
}
#test-token,
#main-table,
#peg-table,
#bnb-table {
font-size: 10pt;
}
.w-40{
width: 40% !important;
}
.w-10{
width: 10% !important;
}
.w-15{
width: 15% !important;
}
.w-45{
width: 45% !important;
}
.w-8{
width: 8% !important;
}
tbody,
td,
tfoot,
th,
thead,
tr{
width: 5% !important;
}
.bg{
color: #ffffff !important;
} | 0.22051 | 0.070624 |
.ad-dropdown {
position: relative;
display: inline-block; }
.ad-dropdown .ad-content {
position: absolute;
min-width: 200px;
top: 50%;
z-index: 100;
display: none;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0; }
.ad-dropdown .ad-content.ad-show {
animation: anim-dropdown 0.3s ease-out 0s 1; }
@keyframes anim-dropdown {
from {
-webkit-transform: scale(0.8);
-moz-transform: scale(0.7);
-o-transform: scale(0.8);
transition: scale(0.8); }
to {
-webkit-transform: scale(1);
-moz-transform: scale(0.9);
-o-transform: scale(1);
transition: scale(1); } }
.ad-modal-trigger[ad-modal] {
position: static; }
.ad-modal {
position: fixed;
display: block;
max-width: 630px;
min-width: 320px;
height: auto;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 300 !important;
visibility: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
margin: 0;
padding: 0; }
.ad-modal.ad-blur ~ .wrapper, .ad-modal.ad-blur ~ .wrapper-fluid {
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
filter: blur(3px);
background-color: red; }
.ad-modal.ad-show {
top: 50%;
animation: anim-modal 0.5s 0s ease 1; }
.ad-modal.ad-show.ad-closemodal {
animation-direction: reverse;
animation: anim-modal 0.5s 0s ease 1; }
.ad-show {
visibility: visible; }
.ad-show + .ad-overlay {
opacity: 1;
visibility: visible; }
.ad-show + .ad-body {
max-height: 500px; }
.ad-overlay {
position: fixed;
width: 100vw;
height: 100vh;
visibility: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100 !important;
opacity: 0;
background-color: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
@keyframes anim-modal {
from {
top: 0;
opacity: 0; }
to {
top: 50%;
opacity: 1; } }
@media screen and (max-width: 32em) {
body {
font-size: 75%; } }
.ad-accordian {
margin: 0;
padding: 0; }
.ad-accordian .ad-head {
display: block;
position: relative;
line-height: 2.4em;
padding: 4px 1.2em;
margin: 0;
cursor: pointer; }
.ad-accordian .ad-head i {
margin-right: 8px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-accordian .ad-head.ad-show {
background-color: white;
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-accordian .ad-head.ad-show:after {
position: absolute;
bottom: -4px;
width: 8px;
height: 8px;
border-radius: 3px;
left: 13px;
content: '';
background-color: white;
transform: rotateZ(45deg);
z-index: 10; }
.ad-accordian .ad-head.ad-show i {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
transition: rotate(180deg); }
.ad-accordian .ad-head.ad-show + .ad-body {
background-color: rgba(0, 0, 0, 0.1);
animation: anim-accordian 0.3s ease-out 0s 1;
max-height: 1000px; }
.ad-accordian .ad-body {
display: block;
margin: 0;
padding: 0;
padding-left: 16px;
max-height: 0;
overflow: hidden;
margin-bottom: 3px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
position: relative;
border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
.ad-accordian .ad-body:after {
display: block;
position: absolute;
left: 16px;
top: 8px;
bottom: 8px;
width: 2px;
background-color: white;
content: ''; }
.ad-accordian .ad-body p {
padding: 16px; }
.ad-accordian.ad-flat .ad-head.ad-show {
box-shadow: none; }
.ad-accordian.bg-dark .ad-head.ad-show {
background-color: #25303c; }
.ad-accordian.bg-dark .ad-head.ad-show:after {
background-color: #25303c; }
.ad-accordian.bg-dark .ad-body:after {
background-color: #25303c; }
.ad-accordian.bg-white .ad-head.ad-show {
background-color: white; }
.ad-accordian.bg-white .ad-head.ad-show:after {
background-color: white; }
.ad-accordian.bg-white .ad-body:after {
background-color: white; }
.ad-accordian.bg-blue .ad-head.ad-show {
background-color: #39a1f4; }
.ad-accordian.bg-blue .ad-head.ad-show:after {
background-color: #39a1f4; }
.ad-accordian.bg-blue .ad-body:after {
background-color: #39a1f4; }
.ad-accordian.bg-prim .ad-head.ad-show {
background-color: #41d5ec; }
.ad-accordian.bg-prim .ad-head.ad-show:after {
background-color: #41d5ec; }
.ad-accordian.bg-prim .ad-body:after {
background-color: #41d5ec; }
.ad-accordian.bg-pink .ad-head.ad-show {
background-color: #ff1a75; }
.ad-accordian.bg-pink .ad-head.ad-show:after {
background-color: #ff1a75; }
.ad-accordian.bg-pink .ad-body:after {
background-color: #ff1a75; }
.ad-accordian.bg-tgreen .ad-head.ad-show {
background-color: #2ee8ba; }
.ad-accordian.bg-tgreen .ad-head.ad-show:after {
background-color: #2ee8ba; }
.ad-accordian.bg-tgreen .ad-body:after {
background-color: #2ee8ba; }
@keyframes anim-accordian {
from {
max-height: 0; }
to {
max-height: 100px; } }
.ad-tab-group {
display: block;
overflow: hidden;
margin: 0;
padding: 0;
position: relative;
z-index: 100; }
.ad-tab-group > * {
display: none;
opacity: 0;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group[_adconstructed] > * {
display: block;
opacity: 1; }
.ad-tab-group > .ad-head {
display: block;
width: 100%;
list-style: none;
margin: 0;
padding: 0;
position: relative; }
.ad-tab-group > .ad-head span.tab-line {
background-color: #2ad0ea;
display: block;
position: absolute;
bottom: 0;
height: 2px;
width: 100px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group > .ad-head ul {
margin: 0;
padding: 0;
padding-top: 2px;
list-style: none;
display: flex; }
.ad-tab-group > .ad-head li {
position: relative;
background-color: rgba(0, 0, 0, 0.3);
border-radius: 3px 3px 0 0;
border-bottom: 2px solid transparent;
opacity: 0.5;
line-height: 2.4em;
padding: 4px 16px;
border-radius: 5px;
margin: 0 2px;
vertical-align: top;
outline: none !important;
cursor: pointer;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.7);
-o-transform: scale(0.8);
transition: scale(0.8); }
.ad-tab-group > .ad-head li.active {
background-color: white;
opacity: 1;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
-webkit-transform: scale(1);
-moz-transform: scale(0.9);
-o-transform: scale(1);
transition: scale(1);
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-tab-group > .ad-head li.active:after {
position: absolute;
display: block;
content: '';
bottom: -5px;
background-color: white;
left: 0;
right: 0;
height: 10px;
box-shadow: none; }
.ad-tab-group > .ad-body {
display: flex;
width: 400%;
margin: 0;
padding: 0;
background-color: white;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-tab-group > .ad-body .ad-tab {
margin: 0;
padding: 0;
margin-top: -1px;
width: 100%;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group > .ad-body .ad-tab.ad-show {
display: flex;
opacity: 1; }
.ad-tab-group.ad-flat .ad-head ul li.active {
box-shadow: none; }
.ad-tab-group.ad-flat .ad-body {
box-shadow: none; }
.ad-tab-group.ad-block .ad-head li {
border-radius: 0; }
.ad-tab-group.ad-block .ad-head li.active {
border-color: transparent; }
.ad-tab-group.ad-round .ad-head li {
border-radius: 20px; }
.ad-tab-group.ad-round .ad-head li.active {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.ad-tab-group.bg-dark .ad-head ul li.active {
background-color: #25303c; }
.ad-tab-group.bg-dark .ad-head ul li.active:after {
background-color: #25303c; }
.ad-tab-group.bg-dark .ad-body {
background-color: #25303c; }
.ad-tab-group.bg-white .ad-head ul li.active {
background-color: white; }
.ad-tab-group.bg-white .ad-head ul li.active:after {
background-color: white; }
.ad-tab-group.bg-white .ad-body {
background-color: white; }
.ad-tab-group.bg-blue .ad-head ul li.active {
background-color: #39a1f4; }
.ad-tab-group.bg-blue .ad-head ul li.active:after {
background-color: #39a1f4; }
.ad-tab-group.bg-blue .ad-body {
background-color: #39a1f4; }
.ad-tab-group.bg-prim .ad-head ul li.active {
background-color: #41d5ec; }
.ad-tab-group.bg-prim .ad-head ul li.active:after {
background-color: #41d5ec; }
.ad-tab-group.bg-prim .ad-body {
background-color: #41d5ec; }
.ad-tab-group.bg-pink .ad-head ul li.active {
background-color: #ff1a75; }
.ad-tab-group.bg-pink .ad-head ul li.active:after {
background-color: #ff1a75; }
.ad-tab-group.bg-pink .ad-body {
background-color: #ff1a75; }
.ad-tab-group.bg-tgreen .ad-head ul li.active {
background-color: #2ee8ba; }
.ad-tab-group.bg-tgreen .ad-head ul li.active:after {
background-color: #2ee8ba; }
.ad-tab-group.bg-tgreen .ad-body {
background-color: #2ee8ba; }
/*# sourceMappingURL=designa-interactive.css.map */ | dist/css/designa-interactive.css | .ad-dropdown {
position: relative;
display: inline-block; }
.ad-dropdown .ad-content {
position: absolute;
min-width: 200px;
top: 50%;
z-index: 100;
display: none;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0; }
.ad-dropdown .ad-content.ad-show {
animation: anim-dropdown 0.3s ease-out 0s 1; }
@keyframes anim-dropdown {
from {
-webkit-transform: scale(0.8);
-moz-transform: scale(0.7);
-o-transform: scale(0.8);
transition: scale(0.8); }
to {
-webkit-transform: scale(1);
-moz-transform: scale(0.9);
-o-transform: scale(1);
transition: scale(1); } }
.ad-modal-trigger[ad-modal] {
position: static; }
.ad-modal {
position: fixed;
display: block;
max-width: 630px;
min-width: 320px;
height: auto;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 300 !important;
visibility: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
margin: 0;
padding: 0; }
.ad-modal.ad-blur ~ .wrapper, .ad-modal.ad-blur ~ .wrapper-fluid {
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
filter: blur(3px);
background-color: red; }
.ad-modal.ad-show {
top: 50%;
animation: anim-modal 0.5s 0s ease 1; }
.ad-modal.ad-show.ad-closemodal {
animation-direction: reverse;
animation: anim-modal 0.5s 0s ease 1; }
.ad-show {
visibility: visible; }
.ad-show + .ad-overlay {
opacity: 1;
visibility: visible; }
.ad-show + .ad-body {
max-height: 500px; }
.ad-overlay {
position: fixed;
width: 100vw;
height: 100vh;
visibility: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100 !important;
opacity: 0;
background-color: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
@keyframes anim-modal {
from {
top: 0;
opacity: 0; }
to {
top: 50%;
opacity: 1; } }
@media screen and (max-width: 32em) {
body {
font-size: 75%; } }
.ad-accordian {
margin: 0;
padding: 0; }
.ad-accordian .ad-head {
display: block;
position: relative;
line-height: 2.4em;
padding: 4px 1.2em;
margin: 0;
cursor: pointer; }
.ad-accordian .ad-head i {
margin-right: 8px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-accordian .ad-head.ad-show {
background-color: white;
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-accordian .ad-head.ad-show:after {
position: absolute;
bottom: -4px;
width: 8px;
height: 8px;
border-radius: 3px;
left: 13px;
content: '';
background-color: white;
transform: rotateZ(45deg);
z-index: 10; }
.ad-accordian .ad-head.ad-show i {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
transition: rotate(180deg); }
.ad-accordian .ad-head.ad-show + .ad-body {
background-color: rgba(0, 0, 0, 0.1);
animation: anim-accordian 0.3s ease-out 0s 1;
max-height: 1000px; }
.ad-accordian .ad-body {
display: block;
margin: 0;
padding: 0;
padding-left: 16px;
max-height: 0;
overflow: hidden;
margin-bottom: 3px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
position: relative;
border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
.ad-accordian .ad-body:after {
display: block;
position: absolute;
left: 16px;
top: 8px;
bottom: 8px;
width: 2px;
background-color: white;
content: ''; }
.ad-accordian .ad-body p {
padding: 16px; }
.ad-accordian.ad-flat .ad-head.ad-show {
box-shadow: none; }
.ad-accordian.bg-dark .ad-head.ad-show {
background-color: #25303c; }
.ad-accordian.bg-dark .ad-head.ad-show:after {
background-color: #25303c; }
.ad-accordian.bg-dark .ad-body:after {
background-color: #25303c; }
.ad-accordian.bg-white .ad-head.ad-show {
background-color: white; }
.ad-accordian.bg-white .ad-head.ad-show:after {
background-color: white; }
.ad-accordian.bg-white .ad-body:after {
background-color: white; }
.ad-accordian.bg-blue .ad-head.ad-show {
background-color: #39a1f4; }
.ad-accordian.bg-blue .ad-head.ad-show:after {
background-color: #39a1f4; }
.ad-accordian.bg-blue .ad-body:after {
background-color: #39a1f4; }
.ad-accordian.bg-prim .ad-head.ad-show {
background-color: #41d5ec; }
.ad-accordian.bg-prim .ad-head.ad-show:after {
background-color: #41d5ec; }
.ad-accordian.bg-prim .ad-body:after {
background-color: #41d5ec; }
.ad-accordian.bg-pink .ad-head.ad-show {
background-color: #ff1a75; }
.ad-accordian.bg-pink .ad-head.ad-show:after {
background-color: #ff1a75; }
.ad-accordian.bg-pink .ad-body:after {
background-color: #ff1a75; }
.ad-accordian.bg-tgreen .ad-head.ad-show {
background-color: #2ee8ba; }
.ad-accordian.bg-tgreen .ad-head.ad-show:after {
background-color: #2ee8ba; }
.ad-accordian.bg-tgreen .ad-body:after {
background-color: #2ee8ba; }
@keyframes anim-accordian {
from {
max-height: 0; }
to {
max-height: 100px; } }
.ad-tab-group {
display: block;
overflow: hidden;
margin: 0;
padding: 0;
position: relative;
z-index: 100; }
.ad-tab-group > * {
display: none;
opacity: 0;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group[_adconstructed] > * {
display: block;
opacity: 1; }
.ad-tab-group > .ad-head {
display: block;
width: 100%;
list-style: none;
margin: 0;
padding: 0;
position: relative; }
.ad-tab-group > .ad-head span.tab-line {
background-color: #2ad0ea;
display: block;
position: absolute;
bottom: 0;
height: 2px;
width: 100px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group > .ad-head ul {
margin: 0;
padding: 0;
padding-top: 2px;
list-style: none;
display: flex; }
.ad-tab-group > .ad-head li {
position: relative;
background-color: rgba(0, 0, 0, 0.3);
border-radius: 3px 3px 0 0;
border-bottom: 2px solid transparent;
opacity: 0.5;
line-height: 2.4em;
padding: 4px 16px;
border-radius: 5px;
margin: 0 2px;
vertical-align: top;
outline: none !important;
cursor: pointer;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.7);
-o-transform: scale(0.8);
transition: scale(0.8); }
.ad-tab-group > .ad-head li.active {
background-color: white;
opacity: 1;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
-webkit-transform: scale(1);
-moz-transform: scale(0.9);
-o-transform: scale(1);
transition: scale(1);
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-tab-group > .ad-head li.active:after {
position: absolute;
display: block;
content: '';
bottom: -5px;
background-color: white;
left: 0;
right: 0;
height: 10px;
box-shadow: none; }
.ad-tab-group > .ad-body {
display: flex;
width: 400%;
margin: 0;
padding: 0;
background-color: white;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
-mz-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1); }
.ad-tab-group > .ad-body .ad-tab {
margin: 0;
padding: 0;
margin-top: -1px;
width: 100%;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s; }
.ad-tab-group > .ad-body .ad-tab.ad-show {
display: flex;
opacity: 1; }
.ad-tab-group.ad-flat .ad-head ul li.active {
box-shadow: none; }
.ad-tab-group.ad-flat .ad-body {
box-shadow: none; }
.ad-tab-group.ad-block .ad-head li {
border-radius: 0; }
.ad-tab-group.ad-block .ad-head li.active {
border-color: transparent; }
.ad-tab-group.ad-round .ad-head li {
border-radius: 20px; }
.ad-tab-group.ad-round .ad-head li.active {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.ad-tab-group.bg-dark .ad-head ul li.active {
background-color: #25303c; }
.ad-tab-group.bg-dark .ad-head ul li.active:after {
background-color: #25303c; }
.ad-tab-group.bg-dark .ad-body {
background-color: #25303c; }
.ad-tab-group.bg-white .ad-head ul li.active {
background-color: white; }
.ad-tab-group.bg-white .ad-head ul li.active:after {
background-color: white; }
.ad-tab-group.bg-white .ad-body {
background-color: white; }
.ad-tab-group.bg-blue .ad-head ul li.active {
background-color: #39a1f4; }
.ad-tab-group.bg-blue .ad-head ul li.active:after {
background-color: #39a1f4; }
.ad-tab-group.bg-blue .ad-body {
background-color: #39a1f4; }
.ad-tab-group.bg-prim .ad-head ul li.active {
background-color: #41d5ec; }
.ad-tab-group.bg-prim .ad-head ul li.active:after {
background-color: #41d5ec; }
.ad-tab-group.bg-prim .ad-body {
background-color: #41d5ec; }
.ad-tab-group.bg-pink .ad-head ul li.active {
background-color: #ff1a75; }
.ad-tab-group.bg-pink .ad-head ul li.active:after {
background-color: #ff1a75; }
.ad-tab-group.bg-pink .ad-body {
background-color: #ff1a75; }
.ad-tab-group.bg-tgreen .ad-head ul li.active {
background-color: #2ee8ba; }
.ad-tab-group.bg-tgreen .ad-head ul li.active:after {
background-color: #2ee8ba; }
.ad-tab-group.bg-tgreen .ad-body {
background-color: #2ee8ba; }
/*# sourceMappingURL=designa-interactive.css.map */ | 0.414543 | 0.052376 |
width: 100%;
height: 100%;
overflow: auto;
display: flex;
flex-flow: row wrap;
}
#search--cardCont.no-scroll {
overflow: hidden;
}
#search--cardCont-placeholder {
width: 0%;
height: 0%;
display: flex;
align-items: center;
justify-content: center;
color: var(--components-secondary-color-contrast);
font-size: 2em;
-webkit-user-select: none;
opacity: 0;
pointer-events: none;
z-index: 40;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-property: opacity, width, height, background-color;
}
#search--cardCont-placeholder.shown {
opacity: 1;
pointer-events: auto;
width: 100%;
height: 100%;
background-color: var(--components-primary-color);
}
#search--top-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1.5em;
padding: 0.25em;
background-color: var(--components-secondary-color-contrast);
opacity: 0;
pointer-events: none;
transition: 0.2s opacity ease-in-out;
box-shadow: 0 0 10px var(--components-primary-color-contrast);
z-index: 60;
}
#search--top-bar.shown {
opacity: 1;
pointer-events: auto;
}
#search--cardCont .component.card {
flex-grow: 1;
max-width: calc(50% - 1em);
height: auto;
}
#search--inputCont {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 2em;
display: flex;
align-items: center;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-property: top, left, right, bottom, width, height, font-size;
z-index: 50;
background-color: var(--components-primary-color);
}
#search--inputCont[data-size="large"] {
width: 100%;
height: 100%;
font-size: 3em;
}
#search--top-bar.shown + #search--inputCont {
top: 1.5em;
}
#search--inputBox {
width: 100%;
}
#pageCont {
padding-top: 2.5em;
transition-property: opacity, padding-top;
}
#pageCont.barShown {
padding-top: 4em;
}
#search--shadow {
position: absolute;
left: 0;
top: 1.5em;
height: 1em;
width: 100%;
box-shadow: 0 0 15px #000;
z-index: 10;
transition: 0.2s top ease-in-out;
}
#search--top-bar.shown + #search--inputCont + #search--shadow {
top: 3em;
} | src/web/views/search/main.css | width: 100%;
height: 100%;
overflow: auto;
display: flex;
flex-flow: row wrap;
}
#search--cardCont.no-scroll {
overflow: hidden;
}
#search--cardCont-placeholder {
width: 0%;
height: 0%;
display: flex;
align-items: center;
justify-content: center;
color: var(--components-secondary-color-contrast);
font-size: 2em;
-webkit-user-select: none;
opacity: 0;
pointer-events: none;
z-index: 40;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-property: opacity, width, height, background-color;
}
#search--cardCont-placeholder.shown {
opacity: 1;
pointer-events: auto;
width: 100%;
height: 100%;
background-color: var(--components-primary-color);
}
#search--top-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1.5em;
padding: 0.25em;
background-color: var(--components-secondary-color-contrast);
opacity: 0;
pointer-events: none;
transition: 0.2s opacity ease-in-out;
box-shadow: 0 0 10px var(--components-primary-color-contrast);
z-index: 60;
}
#search--top-bar.shown {
opacity: 1;
pointer-events: auto;
}
#search--cardCont .component.card {
flex-grow: 1;
max-width: calc(50% - 1em);
height: auto;
}
#search--inputCont {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 2em;
display: flex;
align-items: center;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-property: top, left, right, bottom, width, height, font-size;
z-index: 50;
background-color: var(--components-primary-color);
}
#search--inputCont[data-size="large"] {
width: 100%;
height: 100%;
font-size: 3em;
}
#search--top-bar.shown + #search--inputCont {
top: 1.5em;
}
#search--inputBox {
width: 100%;
}
#pageCont {
padding-top: 2.5em;
transition-property: opacity, padding-top;
}
#pageCont.barShown {
padding-top: 4em;
}
#search--shadow {
position: absolute;
left: 0;
top: 1.5em;
height: 1em;
width: 100%;
box-shadow: 0 0 15px #000;
z-index: 10;
transition: 0.2s top ease-in-out;
}
#search--top-bar.shown + #search--inputCont + #search--shadow {
top: 3em;
} | 0.536313 | 0.063308 |
.delegate {
position: absolute;
opacity: 0;
}
.themeColorPicker {
display: inline-block;
margin: 8px 8px 0 0;
}
.themeColorPicker + .themeColorPicker {
margin: 8px 8px 0 0;
}
.labelContainer {
display: inline-block;
}
.radio {
display: inline-block;
height: 12px;
width: 12px;
position: relative;
top: -3px; /* because the pseudo-radio is a bit smaller, let's shift it up a couple pixels */
border: 2px solid var(--grey-4);
border-radius: 50%;
&::after {
height: 3px;
width: 3px;
position: absolute;
top: 50%;
left: 50%;
border-radius: 50%;
background-color: var(--primary);
content: '';
transform: translate(-50%, -50%);
transition: opacity 30ms ease-in;
opacity: 0;
}
}
.delegate:focus + .radio {
box-shadow: 0 0 3px 1px var(--primary);
}
.main.stateIsChecked .radio {
border-color: var(--primary);
&::after {
opacity: 1;
}
}
.themeColorPicker.stateIsChecked .radio {
border-color: var(--primary);
}
.themeColorPicker .radio {
margin-right: 5px;
height: 18px;
width: 18px;
border: 1px solid transparent;
cursor: pointer;
}
.themeColorPicker .radio::after {
height: 16px;
width: 16px;
border: 2px solid var(--grey-1);
background-color: transparent;
}
.themeFakeCheckbox .radio {
display: inline-block;
flex: 0 0 auto;
margin-right: 5px;
height: 18px;
width: 18px;
position: relative;
border: 1px solid var(--primary);
border-radius: 2px;
background-color: var(--temp-grey-2);
}
.themeFakeCheckbox .radio::after {
opacity: 0;
}
/*
* We copied over the checkmark styles here, as we can't compose in children
* This is something we might want to solve using some sort of mixins eventually
*/
.themeFakeCheckbox .checkmark {
display: inline-block;
height: 80%;
width: 80%;
position: absolute;
top: -20%;
transform: rotate(45deg);
}
.themeFakeCheckbox.stateIsChecked .checkmark::before {
height: 80%;
width: 2px;
position: absolute;
right: 0;
bottom: 0;
background-color: var(--primary);
content: '';
}
.themeFakeCheckbox.stateIsChecked .checkmark::after {
height: 2px;
width: 40%;
position: absolute;
right: 0;
bottom: 0;
background-color: var(--primary);
content: '';
}
.themeButtonGroup {
display: inline-block;
padding: 6px 15px 0px 15px;
border: 1px solid var(--grey-blue-1);
background-color: var(--colony-white);
white-space: nowrap;
cursor: pointer;
}
.themeButtonGroup:first-of-type {
border-top-left-radius: var(--radius-small);
border-bottom-left-radius: var(--radius-small);
}
.themeButtonGroup + .themeButtonGroup:last-of-type {
border-top-right-radius: var(--radius-small);
border-bottom-right-radius: var(--radius-small);
}
.themeButtonGroup.stateIsChecked {
border-color: var(--primary);
background-color: var(--primary);
color: var(--colony-white);
}
.themeButtonGroup + .themeButtonGroup {
border-left: none;
}
.themeButtonGroup .radio {
display: none;
}
.themeButtonGroup .labelContainer label {
margin: 0;
cursor: pointer;
}
/* Direction */
.directionHorizontal {
display: inline-block;
margin-right: 10px;
& .radio {
margin-right: 5px;
}
}
.directionVertical {
display: block;
padding: 5px 0;
& .radio {
margin-right: 10px;
}
}
/* State */
.stateIsDisabled {
color: var(--grey-5);
cursor: not-allowed;
& .labelContainer label {
cursor: not-allowed;
}
} | src/modules/core/components/Fields/Radio/Radio.css | .delegate {
position: absolute;
opacity: 0;
}
.themeColorPicker {
display: inline-block;
margin: 8px 8px 0 0;
}
.themeColorPicker + .themeColorPicker {
margin: 8px 8px 0 0;
}
.labelContainer {
display: inline-block;
}
.radio {
display: inline-block;
height: 12px;
width: 12px;
position: relative;
top: -3px; /* because the pseudo-radio is a bit smaller, let's shift it up a couple pixels */
border: 2px solid var(--grey-4);
border-radius: 50%;
&::after {
height: 3px;
width: 3px;
position: absolute;
top: 50%;
left: 50%;
border-radius: 50%;
background-color: var(--primary);
content: '';
transform: translate(-50%, -50%);
transition: opacity 30ms ease-in;
opacity: 0;
}
}
.delegate:focus + .radio {
box-shadow: 0 0 3px 1px var(--primary);
}
.main.stateIsChecked .radio {
border-color: var(--primary);
&::after {
opacity: 1;
}
}
.themeColorPicker.stateIsChecked .radio {
border-color: var(--primary);
}
.themeColorPicker .radio {
margin-right: 5px;
height: 18px;
width: 18px;
border: 1px solid transparent;
cursor: pointer;
}
.themeColorPicker .radio::after {
height: 16px;
width: 16px;
border: 2px solid var(--grey-1);
background-color: transparent;
}
.themeFakeCheckbox .radio {
display: inline-block;
flex: 0 0 auto;
margin-right: 5px;
height: 18px;
width: 18px;
position: relative;
border: 1px solid var(--primary);
border-radius: 2px;
background-color: var(--temp-grey-2);
}
.themeFakeCheckbox .radio::after {
opacity: 0;
}
/*
* We copied over the checkmark styles here, as we can't compose in children
* This is something we might want to solve using some sort of mixins eventually
*/
.themeFakeCheckbox .checkmark {
display: inline-block;
height: 80%;
width: 80%;
position: absolute;
top: -20%;
transform: rotate(45deg);
}
.themeFakeCheckbox.stateIsChecked .checkmark::before {
height: 80%;
width: 2px;
position: absolute;
right: 0;
bottom: 0;
background-color: var(--primary);
content: '';
}
.themeFakeCheckbox.stateIsChecked .checkmark::after {
height: 2px;
width: 40%;
position: absolute;
right: 0;
bottom: 0;
background-color: var(--primary);
content: '';
}
.themeButtonGroup {
display: inline-block;
padding: 6px 15px 0px 15px;
border: 1px solid var(--grey-blue-1);
background-color: var(--colony-white);
white-space: nowrap;
cursor: pointer;
}
.themeButtonGroup:first-of-type {
border-top-left-radius: var(--radius-small);
border-bottom-left-radius: var(--radius-small);
}
.themeButtonGroup + .themeButtonGroup:last-of-type {
border-top-right-radius: var(--radius-small);
border-bottom-right-radius: var(--radius-small);
}
.themeButtonGroup.stateIsChecked {
border-color: var(--primary);
background-color: var(--primary);
color: var(--colony-white);
}
.themeButtonGroup + .themeButtonGroup {
border-left: none;
}
.themeButtonGroup .radio {
display: none;
}
.themeButtonGroup .labelContainer label {
margin: 0;
cursor: pointer;
}
/* Direction */
.directionHorizontal {
display: inline-block;
margin-right: 10px;
& .radio {
margin-right: 5px;
}
}
.directionVertical {
display: block;
padding: 5px 0;
& .radio {
margin-right: 10px;
}
}
/* State */
.stateIsDisabled {
color: var(--grey-5);
cursor: not-allowed;
& .labelContainer label {
cursor: not-allowed;
}
} | 0.595963 | 0.097648 |
position: relative;
min-height: 100%;
margin:60px 0 0 0;
padding:0;
/*background: #eeeeee;*/
}
#main:before {
content: "";
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin:0;
padding:0;
/*background: #eeeeee;*/
}
#content_wrapper {
/*float:left;*/
position: relative;
left: 0px;
margin-left: 230px;
top:-10px;
}
body.onload-check .navbar, body.onload-check .navbar-branding, body.onload-check #sidebar_left, body.onload-check #sidebar_right, body.onload-check #content_wrapper, body.onload-check #topbar {
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.navbar.navbar-fixed-top+#sidebar_left+#content_wrapper {
padding-top: 60px;
}
body.sidebar-collapsed #sidebar:before {
width: 40px;
}
@media (max-width: 1150px) {
body.boxed-layout #main, body.boxed-layout .navbar {
width: 100%;
}
}
header{background:#ad2127 !important; border:solid 0px #ccc !important; height:60px;}
.navbar .nav>li.dropdown.open .dropdown-menu:after {
content: "";
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
right: 8px;
bottom: 100%;
border-width: 0 10px 10px;
border-bottom-color: #4a89dc;
}
.navbar-branding {
position: relative;
overflow: hidden;
float: left;
width: auto; /*230px*/
height: 60px;
background-color: #1f70a8;
margin-right: 10px;
}
.navbar-branding a.navbar-brand {
height: 60px;
line-height: 60px;
padding: 0;
padding-left: 18px;
color: #777;
font-size: 17px;
font-weight: 400;
letter-spacing: 0.5px;
}
#toggle_sidemenu_l {
float: right;
cursor: pointer;
font-size: 0px;
color: #fff;
line-height: 58px;
max-height: 60px;
width: 60px;
height: 50px;
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background:url(../images/icons-top-menu.png) no-repeat 16px 17px;
}
#toggle_sidemenu_l:hover {
color: #DDD;
}
.navbar-nav.navbar-left {
float: left;
position: relative;
max-height: 60px;
}
.navbar-nav.navbar-left>li>a {
padding-right: 12px;
padding-left: 12px;
}
.navbar-nav.navbar-right, .navbar-nav.navbar-right:last-child {
float: right;
margin: 0 15px 0 0;
}
.navbar.bg-light {
color: #666;
background-color: #FFF ;
border-bottom: 1px solid #E2E2E2;
margin:0;
}
.navbar.bg-light .navbar-branding {
background-color:#75070c;
border-bottom: 0px solid #E6E6E6;
}
.navbar.bg-light .navbar-brand, .navbar.bg-light .nav>li>a, .navbar.bg-light .nav>li.open>a {
color: #666;
}
.navbar.bg-light #toggle_sidemenu_l, .navbar.bg-light #toggle_sidemenu_l:hover, .navbar.bg-light #toggle_sidemenu_l:focus {
color: #666;
}
#sidebar_left {
color: #000;
position: fixed; /*absolute*/
top: 60px;
left: 0;
width: 230px;
min-height: 100%;
padding-bottom: 40px;
background-color: #f5f5f5;
border-right: 1px solid #ccc;
z-index: 100;
}
.sidebar-menu {
padding-bottom: 20px;
}
.sidebar-menu>li {
margin: 0;
border-bottom:solid 1px #ccc;
}
.sidebar-menu>li:first-child {
padding-top: 4px;
}
.sidebar-menu>li>a {
padding: 0;
line-height: 45px;
height: 45px;
overflow: hidden;
color: #000;
}
.sidebar-menu > li > a:hover {background-color:#e8e8e8 !important;}
.sidebar-menu>li>a>span:nth-child(1) {
float: left;
top: 0;
line-height: 45px;
width: 38px;
height: 38px;
font-size: 0px;
text-align: center;
padding-left: 13px;
background-image:url(../images/icons-sidebar.png);
background-repeat:no-repeat;
background-position:9px 7px;
}
.sidebar-menu>li>a>span:nth-child(2) {
padding-left: 6px;
}
.sidebar-menu>li>a>span.TipsManagement{background-position:9px 7px;}
.sidebar-menu>li>a>span.UserManagement{background-position:9px -42px;}
.sidebar-menu>li>a>span.ExpertManagement{background-position:9px -91px;}
.sidebar-menu>li>a>span.Account{background-position:9px -142px;}
.sidebar-menu>li>a>span.SystemManagement{background-position:9px -192px;}
.sidebar-menu>li>a>span.Transactions{background-position:9px -245px;}
.sidebar-menu li>a>.sidebar-title-tray {
position: absolute;
right: 10px;
top: -2px;
}
.sidebar-menu li>a>.sidebar-title-tray .label {
padding: .0em .4em .2em;
font-size: 11px;
}
.sidebar-menu>li>ul {
clear: both;
display: none;
width: 230px;
height: auto;
background-color: #282d33;
}
.sidebar-menu li>a.menu-open+ul {
display: block;
}
.sidebar-menu>li>ul>li>a {
color: #5b5b5b;
padding: 11px 20px 11px 30px;
}
.sidebar-menu>li>ul>li>a.active {
color: #b4b4b4;
}
.sidebar-menu>li>ul>li:first-child>a {
padding-top: 14px;
padding-left: 43px;
border-top: 1px solid #e0e0e0;
}
.sidebar-menu>li>ul>li:last-child>a {
padding-bottom: 17px;
padding-left: 43px;
border-top: 1px solid #e0e0e0;
}
.sidebar-menu>li>ul>li>a>span:nth-child(1) {
margin-right: 10px;
font-size: 11px;
}
.sidebar-menu>li>ul>li>a>span.label {
float: right;
line-height: 17px;
}
.sidebar-menu>li>ul>li ul {
clear: both;
display: none;
width: 230px;
height: auto;
background-color: red;
}
.sidebar-menu>li>ul>li>ul li a {
padding: 9px 20px 9px 50px;
}
.sidebar-menu>li>ul>li>ul li:last-child a {
padding-bottom: 13px;
}
.sidebar-menu>li>ul>li>ul li a .label.label-xs {
float: right;
line-height: 17px;
}
.sidebar-menu>li>a.menu-open:after, .sidebar-menu>li.active>a:after, .sidebar-menu>li:hover>a:after, .sidebar-menu>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: #AAA;
}
.sidebar-menu>li>ul>li>a.menu-open:after, .sidebar-menu>li>ul>li.active>a:after, .sidebar-menu>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: #AAA;
}
.sidebar-menu>li>ul>li>ul>li.active>a:after, .sidebar-menu>li>ul>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li>ul>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 5%;
height: 90%;
width: 3px;
background: #999;
}
.sidebar-menu .sidebar-label {
text-transform: uppercase;
color: #70829a;
font-weight: 600;
padding-left: 18px;
padding-bottom: 3px;
font-size: 12px;
}
.sidebar-menu .sidebar-stat .progress {
clear: both;
background-color: #26292e;
}
.sidebar-menu .sidebar-stat>a {
height: auto;
overflow: visible;
}
.sidebar-toggle-mini {
width: 35px;
height: 32px;
padding: 7px 0;
}
.sidebar-toggle-mini a {
position: absolute;
right: 0;
display: block;
text-align: center;
padding: 6px 6px 5px;
border: 1px solid #444;
border-radius: 2px 0 0 2px;
background-color: #26292e;
}
.sidebar-toggle-mini:hover span {
color: #DDD;
transition: all ease-in-out 0.3s;
}
.sidebar-toggle-mini span {
position: relative;
color: #888;
font-size: 16px;
transform: rotate(180deg);
}
body.sb-l-m #sidebar_left {
z-index: 1028;
overflow: visible;
width: 60px;
height: 100%;
top: 0;
left: 0;
}
body.sb-l-m #sidebar_left:before {
width: 60px;
}
body.sb-l-m .sidebar-header {
display: none;
}
body.sb-l-m #sidebar_left .sidebar-label, body.sb-l-m #sidebar_left .sidebar-title-tray, body.sb-l-m #sidebar_left .sidebar-title, body.sb-l-m #sidebar_left .caret {
display: none;
}
body.sb-l-m #sidebar_left .sidebar-proj, body.sb-l-m #sidebar_left .sidebar-stat {
display: none;
}
body.sb-l-m .sidebar-menu>li {
padding: 0px 0;
}
body.sb-l-m .sidebar-menu>li>a {
overflow: visible;
}
body.sb-l-m .sidebar-menu>li>a>span:nth-child(1) {
color: #ccc;
left: 0px;
width: 60px;
font-size: 0px;
padding-left: 0;
}
body.sb-l-m .sidebar-menu>li.active>a>span:nth-child(1) {
color: #2f87c1;
}
body.sb-l-m .sidebar-menu>li>a>.sidebar-title {
position: absolute;
left: 60px;
top: -4px;
width: 180px;
height: 44px;
line-height: 44px;
font-size: 14px;
padding-left: 15px;
border-left: 1px solid #222;
background-color: #282d33;
}
body.sb-l-m .sidebar-menu>li>a.menu-open+ul {
display: none;
}
body.sb-l-m .sidebar-menu>li:hover>a+ul, body.sb-l-m .sidebar-menu>li:hover>a>.sidebar-title {
display: block;
}
body.sb-l-m .sidebar-menu>li>ul li a>.caret {
display: block;
}
body.sb-l-m .sidebar-menu>li>ul {
position: absolute;
left: 60px;
top: 0px;
width: 180px;
height: auto;
border-left: 1px solid #222;
padding-bottom: 7px;
overflow: hidden;
}
body.sb-l-m .sidebar-menu>li>ul>li ul {
width: 180px;
}
body.sb-l-m .sidebar-menu>li>ul>li {
overflow: hidden;
}
body.sb-l-m .sidebar-menu li>ul>li>a {
padding: 8px 20px 8px 20px;
}
body.sb-l-m .sidebar-menu li>ul>li>ul>li a {
padding: 8px 20px 8px 35px;
}
body.sb-l-m #content_wrapper {
margin-left: 60px;
}
body.sb-l-c.sb-l-m #content_wrapper {
margin-left: 0;
}
body.sb-l-m .navbar-branding {
width: 60px;
}
body.sb-l-m .navbar-brand {
display: none;
}
body.sb-l-m #sidebar_left.nano {
position: fixed; /*absolute*/
top: 60px;
}
body.sb-l-m #sidebar_left.nano>.nano-content {
overflow: visible;
right: 0;
}
.sidebar-menu>li>a:hover, .sidebar-menu>li>a:focus, .sidebar-menu>li>a:active {
background-color: transparent;
}
.sidebar-menu>li:hover>a:after, .sidebar-menu>li:focus>a:after {
background: transparent;
}
.sidebar-menu>li.active>a {
background-color: transparent;
}
.sidebar-menu>li.active>a>span:nth-child(1) {
color: #4a89dc;
}
.sidebar-menu>li.active>a:after, .sidebar-menu>li>a.menu-open:after {
background: transparent;
}
.sidebar-menu>li>ul {
background-color: #f5f5f5;
}
.sidebar-menu>li>ul>li>a:hover, .sidebar-menu>li>ul>li>a:focus {
background-color: #e8e8e8;
}
.sidebar-menu>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li:focus>a:after {
background: #4a89dc;
}
.sidebar-menu>li>ul>li.active>a {
background-color: transparent;
}
.sidebar-menu>li>ul>li.active>a>span:nth-child(1), .sidebar-menu>li>ul>li>a.menu-open>span:nth-child(1) {
color: #4a89dc;
}
.sidebar-menu>li>ul>li.active>a:after, .sidebar-menu>li>ul>li>a.menu-open:after {
background: #4a89dc;
}
.sidebar-menu>li>ul>li ul {
background-color: red;
}
.sidebar-menu>li>ul>li>ul>li>a:hover, .sidebar-menu>li>ul>li>ul>li>a:focus {
background-color: transparent;
}
.sidebar-menu>li>ul>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li>ul>li:focus>a:after {
background: #967adc;
}
.sidebar-menu>li>ul>li>ul>li.active>a {
background: transparent;
}
.sidebar-menu>li>ul>li>ul>li.active>a>span:nth-child(1), .sidebar-menu>li>ul>li>ul>li>a.menu-open>span:nth-child(1) {
color: #000;
}
.sidebar-menu>li>ul>li>ul>li.active>a:after {
background: #967adc;
}
.sidebar-menu .sidebar-label {
color: #70829a;
}
.sidebar-menu li>a>span.caret {
color: #000;
}
.sidebar-menu li>a.menu-open>span.caret {
color: #4a89dc;
background:url(../images/icons-plus-minus.png) no-repeat center -57px;
padding:8px;
}
#topbar {
z-index: 2;
position: relative;
width: 100%;
min-height: 51px;
padding: 10px 21px;
background: #fafafa;
border-bottom: 1px solid #e0e0e0;
}
.topbar-right {
float: right;
}
#toggle_sidemenu_r i.fa, #toggle_sidemenu_r span.glyphicon, #toggle_sidemenu_r span.glyphicons {
margin-top: 2px;
}
*:before, *:after {
box-sizing: border-box;
}
*:before, *:after {
box-sizing: border-box;
}
.sidebar-menu li > a > span.caret {
/*border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid;*/
background:url(../images/icons-plus-minus.png) no-repeat center 3px;
padding:8px;
position: absolute;
right: 13px;
top: 26%;
color: #000;
}
.caret {
border-left: 0px solid transparent;
border-right: 0px solid transparent;
border-top: 0px solid;
display: inline-block;
height: 0;
margin-left: 2px;
vertical-align: middle;
width: 0;
}
#sidebar_left.nano>.nano-content {
margin-top: 0px;
}
.nano {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.nano>.nano-content {
position: absolute;
overflow-x: hidden;
overflow-y: hidden;
right: 0;
left: 0;
top: 0;
bottom: 0;
} | portfolio/app/desktop-sportech/css/ie_split3.css | position: relative;
min-height: 100%;
margin:60px 0 0 0;
padding:0;
/*background: #eeeeee;*/
}
#main:before {
content: "";
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin:0;
padding:0;
/*background: #eeeeee;*/
}
#content_wrapper {
/*float:left;*/
position: relative;
left: 0px;
margin-left: 230px;
top:-10px;
}
body.onload-check .navbar, body.onload-check .navbar-branding, body.onload-check #sidebar_left, body.onload-check #sidebar_right, body.onload-check #content_wrapper, body.onload-check #topbar {
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.navbar.navbar-fixed-top+#sidebar_left+#content_wrapper {
padding-top: 60px;
}
body.sidebar-collapsed #sidebar:before {
width: 40px;
}
@media (max-width: 1150px) {
body.boxed-layout #main, body.boxed-layout .navbar {
width: 100%;
}
}
header{background:#ad2127 !important; border:solid 0px #ccc !important; height:60px;}
.navbar .nav>li.dropdown.open .dropdown-menu:after {
content: "";
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
right: 8px;
bottom: 100%;
border-width: 0 10px 10px;
border-bottom-color: #4a89dc;
}
.navbar-branding {
position: relative;
overflow: hidden;
float: left;
width: auto; /*230px*/
height: 60px;
background-color: #1f70a8;
margin-right: 10px;
}
.navbar-branding a.navbar-brand {
height: 60px;
line-height: 60px;
padding: 0;
padding-left: 18px;
color: #777;
font-size: 17px;
font-weight: 400;
letter-spacing: 0.5px;
}
#toggle_sidemenu_l {
float: right;
cursor: pointer;
font-size: 0px;
color: #fff;
line-height: 58px;
max-height: 60px;
width: 60px;
height: 50px;
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background:url(../images/icons-top-menu.png) no-repeat 16px 17px;
}
#toggle_sidemenu_l:hover {
color: #DDD;
}
.navbar-nav.navbar-left {
float: left;
position: relative;
max-height: 60px;
}
.navbar-nav.navbar-left>li>a {
padding-right: 12px;
padding-left: 12px;
}
.navbar-nav.navbar-right, .navbar-nav.navbar-right:last-child {
float: right;
margin: 0 15px 0 0;
}
.navbar.bg-light {
color: #666;
background-color: #FFF ;
border-bottom: 1px solid #E2E2E2;
margin:0;
}
.navbar.bg-light .navbar-branding {
background-color:#75070c;
border-bottom: 0px solid #E6E6E6;
}
.navbar.bg-light .navbar-brand, .navbar.bg-light .nav>li>a, .navbar.bg-light .nav>li.open>a {
color: #666;
}
.navbar.bg-light #toggle_sidemenu_l, .navbar.bg-light #toggle_sidemenu_l:hover, .navbar.bg-light #toggle_sidemenu_l:focus {
color: #666;
}
#sidebar_left {
color: #000;
position: fixed; /*absolute*/
top: 60px;
left: 0;
width: 230px;
min-height: 100%;
padding-bottom: 40px;
background-color: #f5f5f5;
border-right: 1px solid #ccc;
z-index: 100;
}
.sidebar-menu {
padding-bottom: 20px;
}
.sidebar-menu>li {
margin: 0;
border-bottom:solid 1px #ccc;
}
.sidebar-menu>li:first-child {
padding-top: 4px;
}
.sidebar-menu>li>a {
padding: 0;
line-height: 45px;
height: 45px;
overflow: hidden;
color: #000;
}
.sidebar-menu > li > a:hover {background-color:#e8e8e8 !important;}
.sidebar-menu>li>a>span:nth-child(1) {
float: left;
top: 0;
line-height: 45px;
width: 38px;
height: 38px;
font-size: 0px;
text-align: center;
padding-left: 13px;
background-image:url(../images/icons-sidebar.png);
background-repeat:no-repeat;
background-position:9px 7px;
}
.sidebar-menu>li>a>span:nth-child(2) {
padding-left: 6px;
}
.sidebar-menu>li>a>span.TipsManagement{background-position:9px 7px;}
.sidebar-menu>li>a>span.UserManagement{background-position:9px -42px;}
.sidebar-menu>li>a>span.ExpertManagement{background-position:9px -91px;}
.sidebar-menu>li>a>span.Account{background-position:9px -142px;}
.sidebar-menu>li>a>span.SystemManagement{background-position:9px -192px;}
.sidebar-menu>li>a>span.Transactions{background-position:9px -245px;}
.sidebar-menu li>a>.sidebar-title-tray {
position: absolute;
right: 10px;
top: -2px;
}
.sidebar-menu li>a>.sidebar-title-tray .label {
padding: .0em .4em .2em;
font-size: 11px;
}
.sidebar-menu>li>ul {
clear: both;
display: none;
width: 230px;
height: auto;
background-color: #282d33;
}
.sidebar-menu li>a.menu-open+ul {
display: block;
}
.sidebar-menu>li>ul>li>a {
color: #5b5b5b;
padding: 11px 20px 11px 30px;
}
.sidebar-menu>li>ul>li>a.active {
color: #b4b4b4;
}
.sidebar-menu>li>ul>li:first-child>a {
padding-top: 14px;
padding-left: 43px;
border-top: 1px solid #e0e0e0;
}
.sidebar-menu>li>ul>li:last-child>a {
padding-bottom: 17px;
padding-left: 43px;
border-top: 1px solid #e0e0e0;
}
.sidebar-menu>li>ul>li>a>span:nth-child(1) {
margin-right: 10px;
font-size: 11px;
}
.sidebar-menu>li>ul>li>a>span.label {
float: right;
line-height: 17px;
}
.sidebar-menu>li>ul>li ul {
clear: both;
display: none;
width: 230px;
height: auto;
background-color: red;
}
.sidebar-menu>li>ul>li>ul li a {
padding: 9px 20px 9px 50px;
}
.sidebar-menu>li>ul>li>ul li:last-child a {
padding-bottom: 13px;
}
.sidebar-menu>li>ul>li>ul li a .label.label-xs {
float: right;
line-height: 17px;
}
.sidebar-menu>li>a.menu-open:after, .sidebar-menu>li.active>a:after, .sidebar-menu>li:hover>a:after, .sidebar-menu>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: #AAA;
}
.sidebar-menu>li>ul>li>a.menu-open:after, .sidebar-menu>li>ul>li.active>a:after, .sidebar-menu>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: #AAA;
}
.sidebar-menu>li>ul>li>ul>li.active>a:after, .sidebar-menu>li>ul>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li>ul>li:focus>a:after {
content: "";
position: absolute;
left: 0;
top: 5%;
height: 90%;
width: 3px;
background: #999;
}
.sidebar-menu .sidebar-label {
text-transform: uppercase;
color: #70829a;
font-weight: 600;
padding-left: 18px;
padding-bottom: 3px;
font-size: 12px;
}
.sidebar-menu .sidebar-stat .progress {
clear: both;
background-color: #26292e;
}
.sidebar-menu .sidebar-stat>a {
height: auto;
overflow: visible;
}
.sidebar-toggle-mini {
width: 35px;
height: 32px;
padding: 7px 0;
}
.sidebar-toggle-mini a {
position: absolute;
right: 0;
display: block;
text-align: center;
padding: 6px 6px 5px;
border: 1px solid #444;
border-radius: 2px 0 0 2px;
background-color: #26292e;
}
.sidebar-toggle-mini:hover span {
color: #DDD;
transition: all ease-in-out 0.3s;
}
.sidebar-toggle-mini span {
position: relative;
color: #888;
font-size: 16px;
transform: rotate(180deg);
}
body.sb-l-m #sidebar_left {
z-index: 1028;
overflow: visible;
width: 60px;
height: 100%;
top: 0;
left: 0;
}
body.sb-l-m #sidebar_left:before {
width: 60px;
}
body.sb-l-m .sidebar-header {
display: none;
}
body.sb-l-m #sidebar_left .sidebar-label, body.sb-l-m #sidebar_left .sidebar-title-tray, body.sb-l-m #sidebar_left .sidebar-title, body.sb-l-m #sidebar_left .caret {
display: none;
}
body.sb-l-m #sidebar_left .sidebar-proj, body.sb-l-m #sidebar_left .sidebar-stat {
display: none;
}
body.sb-l-m .sidebar-menu>li {
padding: 0px 0;
}
body.sb-l-m .sidebar-menu>li>a {
overflow: visible;
}
body.sb-l-m .sidebar-menu>li>a>span:nth-child(1) {
color: #ccc;
left: 0px;
width: 60px;
font-size: 0px;
padding-left: 0;
}
body.sb-l-m .sidebar-menu>li.active>a>span:nth-child(1) {
color: #2f87c1;
}
body.sb-l-m .sidebar-menu>li>a>.sidebar-title {
position: absolute;
left: 60px;
top: -4px;
width: 180px;
height: 44px;
line-height: 44px;
font-size: 14px;
padding-left: 15px;
border-left: 1px solid #222;
background-color: #282d33;
}
body.sb-l-m .sidebar-menu>li>a.menu-open+ul {
display: none;
}
body.sb-l-m .sidebar-menu>li:hover>a+ul, body.sb-l-m .sidebar-menu>li:hover>a>.sidebar-title {
display: block;
}
body.sb-l-m .sidebar-menu>li>ul li a>.caret {
display: block;
}
body.sb-l-m .sidebar-menu>li>ul {
position: absolute;
left: 60px;
top: 0px;
width: 180px;
height: auto;
border-left: 1px solid #222;
padding-bottom: 7px;
overflow: hidden;
}
body.sb-l-m .sidebar-menu>li>ul>li ul {
width: 180px;
}
body.sb-l-m .sidebar-menu>li>ul>li {
overflow: hidden;
}
body.sb-l-m .sidebar-menu li>ul>li>a {
padding: 8px 20px 8px 20px;
}
body.sb-l-m .sidebar-menu li>ul>li>ul>li a {
padding: 8px 20px 8px 35px;
}
body.sb-l-m #content_wrapper {
margin-left: 60px;
}
body.sb-l-c.sb-l-m #content_wrapper {
margin-left: 0;
}
body.sb-l-m .navbar-branding {
width: 60px;
}
body.sb-l-m .navbar-brand {
display: none;
}
body.sb-l-m #sidebar_left.nano {
position: fixed; /*absolute*/
top: 60px;
}
body.sb-l-m #sidebar_left.nano>.nano-content {
overflow: visible;
right: 0;
}
.sidebar-menu>li>a:hover, .sidebar-menu>li>a:focus, .sidebar-menu>li>a:active {
background-color: transparent;
}
.sidebar-menu>li:hover>a:after, .sidebar-menu>li:focus>a:after {
background: transparent;
}
.sidebar-menu>li.active>a {
background-color: transparent;
}
.sidebar-menu>li.active>a>span:nth-child(1) {
color: #4a89dc;
}
.sidebar-menu>li.active>a:after, .sidebar-menu>li>a.menu-open:after {
background: transparent;
}
.sidebar-menu>li>ul {
background-color: #f5f5f5;
}
.sidebar-menu>li>ul>li>a:hover, .sidebar-menu>li>ul>li>a:focus {
background-color: #e8e8e8;
}
.sidebar-menu>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li:focus>a:after {
background: #4a89dc;
}
.sidebar-menu>li>ul>li.active>a {
background-color: transparent;
}
.sidebar-menu>li>ul>li.active>a>span:nth-child(1), .sidebar-menu>li>ul>li>a.menu-open>span:nth-child(1) {
color: #4a89dc;
}
.sidebar-menu>li>ul>li.active>a:after, .sidebar-menu>li>ul>li>a.menu-open:after {
background: #4a89dc;
}
.sidebar-menu>li>ul>li ul {
background-color: red;
}
.sidebar-menu>li>ul>li>ul>li>a:hover, .sidebar-menu>li>ul>li>ul>li>a:focus {
background-color: transparent;
}
.sidebar-menu>li>ul>li>ul>li:hover>a:after, .sidebar-menu>li>ul>li>ul>li:focus>a:after {
background: #967adc;
}
.sidebar-menu>li>ul>li>ul>li.active>a {
background: transparent;
}
.sidebar-menu>li>ul>li>ul>li.active>a>span:nth-child(1), .sidebar-menu>li>ul>li>ul>li>a.menu-open>span:nth-child(1) {
color: #000;
}
.sidebar-menu>li>ul>li>ul>li.active>a:after {
background: #967adc;
}
.sidebar-menu .sidebar-label {
color: #70829a;
}
.sidebar-menu li>a>span.caret {
color: #000;
}
.sidebar-menu li>a.menu-open>span.caret {
color: #4a89dc;
background:url(../images/icons-plus-minus.png) no-repeat center -57px;
padding:8px;
}
#topbar {
z-index: 2;
position: relative;
width: 100%;
min-height: 51px;
padding: 10px 21px;
background: #fafafa;
border-bottom: 1px solid #e0e0e0;
}
.topbar-right {
float: right;
}
#toggle_sidemenu_r i.fa, #toggle_sidemenu_r span.glyphicon, #toggle_sidemenu_r span.glyphicons {
margin-top: 2px;
}
*:before, *:after {
box-sizing: border-box;
}
*:before, *:after {
box-sizing: border-box;
}
.sidebar-menu li > a > span.caret {
/*border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid;*/
background:url(../images/icons-plus-minus.png) no-repeat center 3px;
padding:8px;
position: absolute;
right: 13px;
top: 26%;
color: #000;
}
.caret {
border-left: 0px solid transparent;
border-right: 0px solid transparent;
border-top: 0px solid;
display: inline-block;
height: 0;
margin-left: 2px;
vertical-align: middle;
width: 0;
}
#sidebar_left.nano>.nano-content {
margin-top: 0px;
}
.nano {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.nano>.nano-content {
position: absolute;
overflow-x: hidden;
overflow-y: hidden;
right: 0;
left: 0;
top: 0;
bottom: 0;
} | 0.166134 | 0.037573 |
body {
font-family: Verdana, Tahoma, Geneva, 'DejaVu Sans', sans-serif;
font-size: 9pt;
}
body.dark {
background: #090a13;
color: #ababab;
}
body.dark a {
color: #e0e0e0;
}
label {
white-space: nowrap;
}
.main-panel {
min-width: 600px /* 765px */;
}
h1 {
margin: 0;
font-size: 24px;
height: 35px;
padding: 10px 5px;
}
h2 {
font-size: 14px;
}
h3 {
font-size: 14px;
margin: 0;
padding: 4px 5px;
height: 20px;
}
h4 {
font-size: 20px;
margin: 0;
padding: 5px 5px 5px;
height: 30px;
}
.block-title {
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #43566E), color-stop(85%, #272727));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43566E', endColorstr='#272727', GradientType=0);
background: -moz-linear-gradient(top, #43566E 15%, #272727 85%);
background: -webkit-linear-gradient(top, #43566E 15%, #272727 85%);
background: -o-linear-gradient(top, #43566E 15%, #272727 85%);
background: -ms-linear-gradient(top, #43566E 15%, #272727 85%);
background: linear-gradient(to bottom, #43566E 15%, #272727 85%);
font-weight: normal;
margin-bottom: 5px;
font-family: Motiva Sans Light, Arial, Helvetica, sans-serif;
color: #eaecd5;
}
.left,
.right {
float: left;
}
.left {
line-height: 15px;
width: 175px;
}
.right {
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 175px;
margin-left: -175px;
}
.tabs {
display: block;
height: 36px;
background: transparent;
border-bottom: 4px solid #50719A;
}
.tabs .tab {
background: rgba(197, 222, 236, 0.1);
border-radius: 2px 2px 0 0;
color: #ffffff;
display: block;
float: left;
height: 29px;
line-height: 29px;
margin-top: 7px;
margin-right: 4px;
padding: 0 12px;
text-decoration: none;
}
.tab:hover {
background: rgba(102, 192, 244, 0.8);
}
.tabs .active {
background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #5098C1), color-stop(95%, #50719A));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5098C1', endColorstr='#50719A', GradientType=0);
background: -moz-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -webkit-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -o-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -ms-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: linear-gradient(to bottom, #5098C1 5%, #50719A 95%);
border: none;
border-radius: 4px 4px 0 0;
color: #ebebeb;
font-weight: bold;
height: 36px;
line-height: 35px;
margin-top: 0;
padding: 0 10px;
text-decoration: none;
}
.content a.email {
text-decoration: none;
color: #777;
}
.content a.email:hover {
color: #333;
}
.content a.link {
display: block;
margin: 10px 0;
}
.content .row,
.content-block .row {
padding: 7px;
}
.content-block {
background: #272727;
border: 1px solid #4a4a4a;
margin: 10px 0;
min-height: 66px;
}
.block-content input[type='text'],
.content-block input[type='text'],
.content-block input[type='url'],
.content-block input[type='number'],
.content-block input[type='color'] {
background: #121212;
border: 1px solid #000;
border-radius: 3px;
}
.content-block input[type='text'],
.content-block input[type='url'],
.content-block input[type='number'] {
color: #ababab;
height: 22px;
padding: 1px 3px;
text-align: left;
}
.content-block input[type='range'] {
-webkit-appearance: none;
}
.content-block input[type='range']::-webkit-slider-runnable-track {
width: 300px;
height: 8px;
background: #121212;
border: 1px solid #000000;
}
.content-block input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #000000;
height: 16px;
width: 16px;
border-radius: 50%;
background: #4a4a4a;
margin-top: -4px;
}
.content-block select {
border-color: #000;
background: #000;
height: 22px;
color: #9c9c9c;
}
.content-block a.link {
margin: 0;
}
.row:after {
display: block;
height: 1px;
clear: both;
content: '';
}
.align-right {
text-align: right;
}
.email {
color: #808080;
}
.email a {
text-decoration: none;
font-weight: bold;
color: #808080;
}
.email a:hover {
color: #000;
}
.hd1 {
background: #697983;
color: #FFF;
line-height: 34px;
padding-left: 20px;
margin: 3px 0;
}
.table {
background-color: #16202D;
border-collapse: collapse;
margin: 10px auto auto;
width: 60%;
}
.table thead th {
border: 1px solid #16202D;
border-right-color: #404040;
border-bottom: none;
padding: 5px 20px;
}
.table thead th:last-child {
border-right-color: #16202D;
}
.table tbody tr {
border: 1px solid #16202D;
}
.table tbody td {
border: none;
padding: 5px 10px;
}
#spanGraphData {
text-align: center;
margin-top: 15px;
}
.info {
background: #16202D;
text-align: left;
color: #8F98A0;
font-size: 14px;
padding: 12px;
}
.info h1 {
color: #66C0F4;
font-size: 20px;
font-weight: normal;
margin: 0;
padding: 0;
} | css/popup.css | body {
font-family: Verdana, Tahoma, Geneva, 'DejaVu Sans', sans-serif;
font-size: 9pt;
}
body.dark {
background: #090a13;
color: #ababab;
}
body.dark a {
color: #e0e0e0;
}
label {
white-space: nowrap;
}
.main-panel {
min-width: 600px /* 765px */;
}
h1 {
margin: 0;
font-size: 24px;
height: 35px;
padding: 10px 5px;
}
h2 {
font-size: 14px;
}
h3 {
font-size: 14px;
margin: 0;
padding: 4px 5px;
height: 20px;
}
h4 {
font-size: 20px;
margin: 0;
padding: 5px 5px 5px;
height: 30px;
}
.block-title {
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #43566E), color-stop(85%, #272727));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43566E', endColorstr='#272727', GradientType=0);
background: -moz-linear-gradient(top, #43566E 15%, #272727 85%);
background: -webkit-linear-gradient(top, #43566E 15%, #272727 85%);
background: -o-linear-gradient(top, #43566E 15%, #272727 85%);
background: -ms-linear-gradient(top, #43566E 15%, #272727 85%);
background: linear-gradient(to bottom, #43566E 15%, #272727 85%);
font-weight: normal;
margin-bottom: 5px;
font-family: Motiva Sans Light, Arial, Helvetica, sans-serif;
color: #eaecd5;
}
.left,
.right {
float: left;
}
.left {
line-height: 15px;
width: 175px;
}
.right {
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 175px;
margin-left: -175px;
}
.tabs {
display: block;
height: 36px;
background: transparent;
border-bottom: 4px solid #50719A;
}
.tabs .tab {
background: rgba(197, 222, 236, 0.1);
border-radius: 2px 2px 0 0;
color: #ffffff;
display: block;
float: left;
height: 29px;
line-height: 29px;
margin-top: 7px;
margin-right: 4px;
padding: 0 12px;
text-decoration: none;
}
.tab:hover {
background: rgba(102, 192, 244, 0.8);
}
.tabs .active {
background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #5098C1), color-stop(95%, #50719A));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5098C1', endColorstr='#50719A', GradientType=0);
background: -moz-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -webkit-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -o-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: -ms-linear-gradient(top, #5098C1 5%, #50719A 95%);
background: linear-gradient(to bottom, #5098C1 5%, #50719A 95%);
border: none;
border-radius: 4px 4px 0 0;
color: #ebebeb;
font-weight: bold;
height: 36px;
line-height: 35px;
margin-top: 0;
padding: 0 10px;
text-decoration: none;
}
.content a.email {
text-decoration: none;
color: #777;
}
.content a.email:hover {
color: #333;
}
.content a.link {
display: block;
margin: 10px 0;
}
.content .row,
.content-block .row {
padding: 7px;
}
.content-block {
background: #272727;
border: 1px solid #4a4a4a;
margin: 10px 0;
min-height: 66px;
}
.block-content input[type='text'],
.content-block input[type='text'],
.content-block input[type='url'],
.content-block input[type='number'],
.content-block input[type='color'] {
background: #121212;
border: 1px solid #000;
border-radius: 3px;
}
.content-block input[type='text'],
.content-block input[type='url'],
.content-block input[type='number'] {
color: #ababab;
height: 22px;
padding: 1px 3px;
text-align: left;
}
.content-block input[type='range'] {
-webkit-appearance: none;
}
.content-block input[type='range']::-webkit-slider-runnable-track {
width: 300px;
height: 8px;
background: #121212;
border: 1px solid #000000;
}
.content-block input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #000000;
height: 16px;
width: 16px;
border-radius: 50%;
background: #4a4a4a;
margin-top: -4px;
}
.content-block select {
border-color: #000;
background: #000;
height: 22px;
color: #9c9c9c;
}
.content-block a.link {
margin: 0;
}
.row:after {
display: block;
height: 1px;
clear: both;
content: '';
}
.align-right {
text-align: right;
}
.email {
color: #808080;
}
.email a {
text-decoration: none;
font-weight: bold;
color: #808080;
}
.email a:hover {
color: #000;
}
.hd1 {
background: #697983;
color: #FFF;
line-height: 34px;
padding-left: 20px;
margin: 3px 0;
}
.table {
background-color: #16202D;
border-collapse: collapse;
margin: 10px auto auto;
width: 60%;
}
.table thead th {
border: 1px solid #16202D;
border-right-color: #404040;
border-bottom: none;
padding: 5px 20px;
}
.table thead th:last-child {
border-right-color: #16202D;
}
.table tbody tr {
border: 1px solid #16202D;
}
.table tbody td {
border: none;
padding: 5px 10px;
}
#spanGraphData {
text-align: center;
margin-top: 15px;
}
.info {
background: #16202D;
text-align: left;
color: #8F98A0;
font-size: 14px;
padding: 12px;
}
.info h1 {
color: #66C0F4;
font-size: 20px;
font-weight: normal;
margin: 0;
padding: 0;
} | 0.363308 | 0.088741 |
body{
font-family: 'Playfair Display', serif;
max-width: 960px;
background-color: white;
margin: 0 auto;
padding: 0;
}
/*menubar*/
.menu{
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-content: center;
background-color:rgba(228, 184, 184, 0.8);
}
.menu li {
font-size: 1.5em;
padding: 10px 5px;
white-space: nowrap;
}
.menu a{
color: white;
text-decoration: none;
}
.logo{
margin: auto;
}
.logo img{
width: 50px;
}
.item {
width: 100%;
text-align: center;
order: 3;
/* display: none; */
}
.menu a:hover{
color: #bb943f;
text-decoration: none;
}
#logo{
width: 50px;
}
@media all and (min-width: 900px) {
.item {
/* display: block; */
width: auto;
}
.logo {
position: static;
margin: 0;
order: 0;
}
.item {
justify-content: center;
align-self:center;
order: 1;
}
.menu{
justify-content: space-around;
margin: 0 auto;
height: 50px;
flex-wrap: nowrap;
}
.menu li{
font-size: 1.2em;
padding: 0;
}
#logo{
margin-top: 0;
}
}
/*footer*/
footer{
display: flex;
}
.footer{
justify-content: space-evenly;
margin-top: 25px;
}
footer .list{
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: left;
}
footer .list li{
font-weight: normal;
list-style: none;
text-align: left;
}
footer .list a{
color: grey;
text-decoration: none;
}
footer .list a:hover{
text-decoration: underline;
}
.brand{
flex-wrap: wrap;
width: 25%;
}
.brand ul li img{
max-width: 100px;
width: 100%;
}
@media screen and (max-width: 960px){
body{
margin:0 auto;
}
.row{
grid-template-columns: repeat(1, 1fr);
}
footer{
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
}
/*Grid configuration*/
.grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
column-gap: 5%;
row-gap: 2%;
}
.grid-right{
grid-column: 3/5;
justify-content: center;
}
.grid-left{
grid-column: 1/3;
}
.grid-center{
grid-column: 1/5;
justify-content: center;
}
/*header*/
.header{
width: 100%;
border-top: 1px solid #bb943f;
border-bottom: 1px solid #bb943f;
text-align: center;
}
/* Right column*/
.price{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
justify-items: center;
margin-left: 10%;
}
.crossout{
color: grey;
text-decoration:line-through;
float: left;
margin-top: 0px;
margin-bottom: 0px;
margin-right: 10px;
}
.text-red{
color: #bb1e1e;
}
.send{
font-size: 14px;
font-weight: bold;
margin-left: 50px;
}
.btn-shop{
background-color: #e4b8b8;
border-radius: 50px;
border: none;
height: 50px;
width: 100%;
color: white;
font-weight: bold;
box-shadow: 1px 5px 10px #8f8f8f;
}
.handmade{
text-align: center;
filter: grayscale(100%);
margin-top: 5%;
margin-bottom: 5%;
}
.handmade img{
width: 50px;
height: 50px;
}
.detail{
text-align: center;
border-bottom: 1px solid #bb943f;
}
.detail summary{
margin-bottom: 2%;
list-style:none ;
margin: 0;
padding: 2% 0 2% 7%;
list-style: none;
background-image: url(https://cdn-icons-png.flaticon.com/512/1417/1417434.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 3%;
}
.detail p{
text-transform: none;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.miniature{
width: 100px;
height: 100px;
object-fit: cover;
margin-left: 2%;
padding: 1%;
}
.miniature:hover{
opacity: 0.8;
background-color:#e4b8b8;
}
.margin{
padding-left: 5%;
padding-top: 1%;
}
.uppercase{
text-transform: uppercase;
}
.recomended{
font-weight: bold;
text-align: center;
}
/*Left column*/
/*Carousel*/
@keyframes tonext {
75% {
left: 0;
}
95% {
left: 100%;
}
98% {
left: 100%;
}
99% {
left: 0;
}
}
@keyframes tostart {
75% {
left: 0;
}
95% {
left: -300%;
}
98% {
left: -300%;
}
99% {
left: 0;
}
}
@keyframes snap {
96% {
scroll-snap-align: center;
}
97% {
scroll-snap-align: none;
}
99% {
scroll-snap-align: none;
}
100% {
scroll-snap-align: center;
}
}
* {
box-sizing: border-box;
scrollbar-color: transparent transparent; /* thumb and track color */
scrollbar-width: 0px;
}
*::-webkit-scrollbar {
width: 0;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: transparent;
border: none;
}
* {
-ms-overflow-style: none;
}
.carousel ul, li {
list-style: none;
margin: 0;
padding: 0;
}
.carousel {
position: relative;
padding-top: 100%;
}
.carousel__viewport {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
overflow-x: scroll;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
}
.carousel__slide {
position: relative;
flex: 0 0 100%;
width: 100%;
background-color: white;
counter-increment: item;
}
.img-principal{
width: 100%;
height:100%;
object-fit: cover;
}
.carousel__navigation {
position: absolute;
right: 0;
bottom: -120px;
left: 0;
text-align: center;
}
.carousel__navigation-list,
.carousel__navigation-item {
display: inline-block;
}
.carousel::before,
.carousel::after {
content: '';
z-index: 1;
background-color: #333;
background-size: 1.5rem 1.5rem;
background-repeat: no-repeat;
background-position: center center;
color: #fff;
font-size: 2.5rem;
line-height: 4rem;
text-align: center;
pointer-events: none;
}
/*Bottom Grid*/
.item-menu{
display: inline-block;
margin-left: 5%;
margin-right: 5%;
margin-bottom: 10%;
}
#fixed-margin{
margin-top: 2.33em;
} | Web-Flex-grid/css/product.css | body{
font-family: 'Playfair Display', serif;
max-width: 960px;
background-color: white;
margin: 0 auto;
padding: 0;
}
/*menubar*/
.menu{
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-content: center;
background-color:rgba(228, 184, 184, 0.8);
}
.menu li {
font-size: 1.5em;
padding: 10px 5px;
white-space: nowrap;
}
.menu a{
color: white;
text-decoration: none;
}
.logo{
margin: auto;
}
.logo img{
width: 50px;
}
.item {
width: 100%;
text-align: center;
order: 3;
/* display: none; */
}
.menu a:hover{
color: #bb943f;
text-decoration: none;
}
#logo{
width: 50px;
}
@media all and (min-width: 900px) {
.item {
/* display: block; */
width: auto;
}
.logo {
position: static;
margin: 0;
order: 0;
}
.item {
justify-content: center;
align-self:center;
order: 1;
}
.menu{
justify-content: space-around;
margin: 0 auto;
height: 50px;
flex-wrap: nowrap;
}
.menu li{
font-size: 1.2em;
padding: 0;
}
#logo{
margin-top: 0;
}
}
/*footer*/
footer{
display: flex;
}
.footer{
justify-content: space-evenly;
margin-top: 25px;
}
footer .list{
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-align: left;
}
footer .list li{
font-weight: normal;
list-style: none;
text-align: left;
}
footer .list a{
color: grey;
text-decoration: none;
}
footer .list a:hover{
text-decoration: underline;
}
.brand{
flex-wrap: wrap;
width: 25%;
}
.brand ul li img{
max-width: 100px;
width: 100%;
}
@media screen and (max-width: 960px){
body{
margin:0 auto;
}
.row{
grid-template-columns: repeat(1, 1fr);
}
footer{
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
}
/*Grid configuration*/
.grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
column-gap: 5%;
row-gap: 2%;
}
.grid-right{
grid-column: 3/5;
justify-content: center;
}
.grid-left{
grid-column: 1/3;
}
.grid-center{
grid-column: 1/5;
justify-content: center;
}
/*header*/
.header{
width: 100%;
border-top: 1px solid #bb943f;
border-bottom: 1px solid #bb943f;
text-align: center;
}
/* Right column*/
.price{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
justify-items: center;
margin-left: 10%;
}
.crossout{
color: grey;
text-decoration:line-through;
float: left;
margin-top: 0px;
margin-bottom: 0px;
margin-right: 10px;
}
.text-red{
color: #bb1e1e;
}
.send{
font-size: 14px;
font-weight: bold;
margin-left: 50px;
}
.btn-shop{
background-color: #e4b8b8;
border-radius: 50px;
border: none;
height: 50px;
width: 100%;
color: white;
font-weight: bold;
box-shadow: 1px 5px 10px #8f8f8f;
}
.handmade{
text-align: center;
filter: grayscale(100%);
margin-top: 5%;
margin-bottom: 5%;
}
.handmade img{
width: 50px;
height: 50px;
}
.detail{
text-align: center;
border-bottom: 1px solid #bb943f;
}
.detail summary{
margin-bottom: 2%;
list-style:none ;
margin: 0;
padding: 2% 0 2% 7%;
list-style: none;
background-image: url(https://cdn-icons-png.flaticon.com/512/1417/1417434.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 3%;
}
.detail p{
text-transform: none;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.miniature{
width: 100px;
height: 100px;
object-fit: cover;
margin-left: 2%;
padding: 1%;
}
.miniature:hover{
opacity: 0.8;
background-color:#e4b8b8;
}
.margin{
padding-left: 5%;
padding-top: 1%;
}
.uppercase{
text-transform: uppercase;
}
.recomended{
font-weight: bold;
text-align: center;
}
/*Left column*/
/*Carousel*/
@keyframes tonext {
75% {
left: 0;
}
95% {
left: 100%;
}
98% {
left: 100%;
}
99% {
left: 0;
}
}
@keyframes tostart {
75% {
left: 0;
}
95% {
left: -300%;
}
98% {
left: -300%;
}
99% {
left: 0;
}
}
@keyframes snap {
96% {
scroll-snap-align: center;
}
97% {
scroll-snap-align: none;
}
99% {
scroll-snap-align: none;
}
100% {
scroll-snap-align: center;
}
}
* {
box-sizing: border-box;
scrollbar-color: transparent transparent; /* thumb and track color */
scrollbar-width: 0px;
}
*::-webkit-scrollbar {
width: 0;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: transparent;
border: none;
}
* {
-ms-overflow-style: none;
}
.carousel ul, li {
list-style: none;
margin: 0;
padding: 0;
}
.carousel {
position: relative;
padding-top: 100%;
}
.carousel__viewport {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
overflow-x: scroll;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
}
.carousel__slide {
position: relative;
flex: 0 0 100%;
width: 100%;
background-color: white;
counter-increment: item;
}
.img-principal{
width: 100%;
height:100%;
object-fit: cover;
}
.carousel__navigation {
position: absolute;
right: 0;
bottom: -120px;
left: 0;
text-align: center;
}
.carousel__navigation-list,
.carousel__navigation-item {
display: inline-block;
}
.carousel::before,
.carousel::after {
content: '';
z-index: 1;
background-color: #333;
background-size: 1.5rem 1.5rem;
background-repeat: no-repeat;
background-position: center center;
color: #fff;
font-size: 2.5rem;
line-height: 4rem;
text-align: center;
pointer-events: none;
}
/*Bottom Grid*/
.item-menu{
display: inline-block;
margin-left: 5%;
margin-right: 5%;
margin-bottom: 10%;
}
#fixed-margin{
margin-top: 2.33em;
} | 0.472197 | 0.070336 |
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;800&family=Sen:wght@400;700;800&family=Fira+Mono:wght@500&display=swap');
*,
*:before,
*:after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-family: 'Sen', sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
box-sizing: border-box;
overflow-y: scroll;
}
body {
font-family: 'Sen', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: var(--text-dark);
font-weight: normal;
word-wrap: break-word;
font-kerning: normal;
-moz-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
-ms-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
-webkit-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
font-feature-settings: 'kern', 'liga', 'clig', 'calt';
background-color: var(--white);
-webkit-tap-highlight-color: transparent;
}
::selection {
background-color: #3d5afe26;
}
::-webkit-scrollbar {
width: 12px;
background-color: var(--white);
}
::-webkit-scrollbar-track {
border-radius: 3px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: var(--black);
border: 2px solid var(--white);
}
::-webkit-scrollbar-thumb:hover {
background-color: #2b333b;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Jost, sans-serif;
line-height: 1.3;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
progress {
vertical-align: baseline;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
color: var(--text-dark);
text-decoration: none;
-webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
outline-width: 0;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: inherit;
font-weight: bolder;
}
dfn {
font-style: italic;
}
mark {
background-color: #ff0;
color: #000;
}
sub,
sup {
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
svg:not(:root) {
overflow: hidden;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
font: inherit;
}
optgroup {
font-weight: 700;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
[type='reset'],
[type='submit'],
button,
html [type='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;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
border: 1px solid silver;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
white-space: normal;
}
textarea {
overflow: auto;
}
[type='checkbox'],
[type='radio'] {
box-sizing: border-box;
}
[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-cancel-button,
[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-input-placeholder {
color: inherit;
opacity: 0.54;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
img {
max-width: 100%;
}
:root {
--orange: #ff8b64;
--purple: #9980fa;
--blue: #5855e0;
--grey: #7b7b7b;
--black: #1c1c1c;
--green: #82f9a1;
--one: #ff8b64;
--two: #5855e0;
--three: #9980fa;
--white: #fff;
--text-dark: #0a0c10;
--text-muted: #6c7693;
--text-light: #afafaf;
--blur-bg: #ffffffd9;
--highlight: #ff8b646b;
--highlight-shadow: c;
}
html[data-theme='dark'] {
--orange: #fd413c;
--purple: #9980fa;
--blue: #5855e0;
--grey: #7b7b7b;
--black: #1c1c1c;
--green: #82f9a1;
--one: #ff8b64;
--two: #5855e0;
--three: #9980fa;
--white: #212529;
--text-dark: #fff;
--text-muted: #6c7693;
--text-light: #afafaf;
--blur-bg: #212529d9;
--highlight: #fd413cbf;
--highlight-shadow: #fd413c40;
}
html.theme-tansition,
html.theme-tansition *,
html.theme-tansition *:before,
html.theme-tansition *:after {
transition: background-color 750ms ease 0s !important;
}
#gatsby-focus-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#gatsby-focus-wrapper footer {
margin-top: auto;
}
.ham {
cursor: pointer;
-webkit-tap-highlight-color: transparent;
transition: transform 400ms;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.hamRotate180.active {
transform: rotate(180deg);
}
.line {
fill: none;
transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
stroke: var(--text-dark);
stroke-width: 5.5;
stroke-linecap: round;
}
.ham5 .top {
stroke-dasharray: 40 82;
}
.ham5 .bottom {
stroke-dasharray: 40 82;
}
.ham5.active .top {
stroke-dasharray: 14 82;
stroke-dashoffset: -72px;
}
.ham5.active .bottom {
stroke-dasharray: 14 82;
stroke-dashoffset: -72px;
}
/* * {
border: 1px solid red;
} */ | src/components/layout/layout.css | @import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;800&family=Sen:wght@400;700;800&family=Fira+Mono:wght@500&display=swap');
*,
*:before,
*:after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-family: 'Sen', sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
box-sizing: border-box;
overflow-y: scroll;
}
body {
font-family: 'Sen', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: var(--text-dark);
font-weight: normal;
word-wrap: break-word;
font-kerning: normal;
-moz-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
-ms-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
-webkit-font-feature-settings: 'kern', 'liga', 'clig', 'calt';
font-feature-settings: 'kern', 'liga', 'clig', 'calt';
background-color: var(--white);
-webkit-tap-highlight-color: transparent;
}
::selection {
background-color: #3d5afe26;
}
::-webkit-scrollbar {
width: 12px;
background-color: var(--white);
}
::-webkit-scrollbar-track {
border-radius: 3px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: var(--black);
border: 2px solid var(--white);
}
::-webkit-scrollbar-thumb:hover {
background-color: #2b333b;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Jost, sans-serif;
line-height: 1.3;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
progress {
vertical-align: baseline;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
color: var(--text-dark);
text-decoration: none;
-webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
outline-width: 0;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: inherit;
font-weight: bolder;
}
dfn {
font-style: italic;
}
mark {
background-color: #ff0;
color: #000;
}
sub,
sup {
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
svg:not(:root) {
overflow: hidden;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
font: inherit;
}
optgroup {
font-weight: 700;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
[type='reset'],
[type='submit'],
button,
html [type='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;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
border: 1px solid silver;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
white-space: normal;
}
textarea {
overflow: auto;
}
[type='checkbox'],
[type='radio'] {
box-sizing: border-box;
}
[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-cancel-button,
[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-input-placeholder {
color: inherit;
opacity: 0.54;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
img {
max-width: 100%;
}
:root {
--orange: #ff8b64;
--purple: #9980fa;
--blue: #5855e0;
--grey: #7b7b7b;
--black: #1c1c1c;
--green: #82f9a1;
--one: #ff8b64;
--two: #5855e0;
--three: #9980fa;
--white: #fff;
--text-dark: #0a0c10;
--text-muted: #6c7693;
--text-light: #afafaf;
--blur-bg: #ffffffd9;
--highlight: #ff8b646b;
--highlight-shadow: c;
}
html[data-theme='dark'] {
--orange: #fd413c;
--purple: #9980fa;
--blue: #5855e0;
--grey: #7b7b7b;
--black: #1c1c1c;
--green: #82f9a1;
--one: #ff8b64;
--two: #5855e0;
--three: #9980fa;
--white: #212529;
--text-dark: #fff;
--text-muted: #6c7693;
--text-light: #afafaf;
--blur-bg: #212529d9;
--highlight: #fd413cbf;
--highlight-shadow: #fd413c40;
}
html.theme-tansition,
html.theme-tansition *,
html.theme-tansition *:before,
html.theme-tansition *:after {
transition: background-color 750ms ease 0s !important;
}
#gatsby-focus-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#gatsby-focus-wrapper footer {
margin-top: auto;
}
.ham {
cursor: pointer;
-webkit-tap-highlight-color: transparent;
transition: transform 400ms;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.hamRotate180.active {
transform: rotate(180deg);
}
.line {
fill: none;
transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
stroke: var(--text-dark);
stroke-width: 5.5;
stroke-linecap: round;
}
.ham5 .top {
stroke-dasharray: 40 82;
}
.ham5 .bottom {
stroke-dasharray: 40 82;
}
.ham5.active .top {
stroke-dasharray: 14 82;
stroke-dashoffset: -72px;
}
.ham5.active .bottom {
stroke-dasharray: 14 82;
stroke-dashoffset: -72px;
}
/* * {
border: 1px solid red;
} */ | 0.357231 | 0.083703 |
* {
box-sizing: border-box; }
/**
* Helpers
* =======
*/
.naked-list {
list-style: none;
margin: 0;
padding: 0; }
/**
* Header
* ======
*/
.global-header {
background: #222;
padding: 50px;
text-align: center;
color: #fff; }
.global-header h1 {
margin: 0;
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 100;
text-rendering: optimizeLegibility; }
.global-header p {
margin: 20px 0 0;
font-weight: 300;
font-size: 14px;
font-style: italic;
color: #ccc;
text-rendering: optimizeLegibility; }
.global-header a,
.global-header a:hover,
.global-header a:focus {
color: #fff;
text-decoration: none; }
/**
* Confessions
* ===========
*/
.confession {
display: table;
width: 100%;
margin-bottom: 100px; }
.confession__list {
margin: 100px auto 0;
max-width: 66.666%; }
@media screen and (max-width: 667px) {
.confession__list {
max-width: 90%; } }
.confession audio {
width: 100%;
padding-left: 20px; }
.confession-audio {
display: table-cell;
vertical-align: middle; }
.confession-controls {
display: table-cell;
vertical-align: middle;
width: 100px;
text-align: center;
border-right: 1px solid #eee;
padding-right: 20px; }
.confession-controls__count {
padding: 10px 0;
font-weight: 500;
border-left: 1px solid #eee;
border-right: 1px solid #eee; }
.confession-controls__button {
border: none;
background: #eee;
color: #333;
width: 100%;
padding: 10px 5px;
text-transform: uppercase;
font-size: 10px;
font-weight: 500;
transition: ease 100ms; }
.confession-controls__button--forgive:hover, .confession-controls__button--forgive:focus {
color: green; }
.confession-controls__button--condemn:hover, .confession-controls__button--condemn:focus {
color: red; }
.confession-controls__button:disabled, .confession-controls__button:disabled:hover, .confession-controls__button:disabled:focus {
color: #ccc; }
body {
font-family: 'Lato';
font-weight: 100; } | public/styles/style.css | * {
box-sizing: border-box; }
/**
* Helpers
* =======
*/
.naked-list {
list-style: none;
margin: 0;
padding: 0; }
/**
* Header
* ======
*/
.global-header {
background: #222;
padding: 50px;
text-align: center;
color: #fff; }
.global-header h1 {
margin: 0;
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 100;
text-rendering: optimizeLegibility; }
.global-header p {
margin: 20px 0 0;
font-weight: 300;
font-size: 14px;
font-style: italic;
color: #ccc;
text-rendering: optimizeLegibility; }
.global-header a,
.global-header a:hover,
.global-header a:focus {
color: #fff;
text-decoration: none; }
/**
* Confessions
* ===========
*/
.confession {
display: table;
width: 100%;
margin-bottom: 100px; }
.confession__list {
margin: 100px auto 0;
max-width: 66.666%; }
@media screen and (max-width: 667px) {
.confession__list {
max-width: 90%; } }
.confession audio {
width: 100%;
padding-left: 20px; }
.confession-audio {
display: table-cell;
vertical-align: middle; }
.confession-controls {
display: table-cell;
vertical-align: middle;
width: 100px;
text-align: center;
border-right: 1px solid #eee;
padding-right: 20px; }
.confession-controls__count {
padding: 10px 0;
font-weight: 500;
border-left: 1px solid #eee;
border-right: 1px solid #eee; }
.confession-controls__button {
border: none;
background: #eee;
color: #333;
width: 100%;
padding: 10px 5px;
text-transform: uppercase;
font-size: 10px;
font-weight: 500;
transition: ease 100ms; }
.confession-controls__button--forgive:hover, .confession-controls__button--forgive:focus {
color: green; }
.confession-controls__button--condemn:hover, .confession-controls__button--condemn:focus {
color: red; }
.confession-controls__button:disabled, .confession-controls__button:disabled:hover, .confession-controls__button:disabled:focus {
color: #ccc; }
body {
font-family: 'Lato';
font-weight: 100; } | 0.559049 | 0.091423 |
.card-box {
padding: 16px;
border: 1px solid rgba(54, 64, 74, 0.19);
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-border-radius: 3px;
background-clip: padding-box;
margin-bottom: 20px;
background-color: #ffffff;
}
/*========= second widget code ===============*/
.widget-bg-color-icon .bg-icon-info {
background-color: rgba(185, 209, 287, 1);
border: 1px solid #6699cc;
}
.widget-bg-color-icon .bg-icon {
height: 80px;
width: 80px;
text-align: center;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-border-radius: 50%;
background-clip: padding-box;
}
.widget-bg-color-icon .bg-icon i {
font-size: 32px;
line-height: 80px;
}
.image_back {
background-image: url(/static/img/gallery/full/35.jpg);
padding: 65px;
color: #fff;
}
.circle_back_img {
background-image: url("/static/img/gallery/full/39.jpg");
padding: 70px;
}
.bowman_img {
background-image: url("/static/img/gallery/full/32.jpg");
}
.p-56 {
padding: 56px;
}
.weather_img {
background-image: url("/static/img/gallery/full/40.jpg");
padding: 80px;
}
.demo {
background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1200px) {
.p-56 {
padding: 65px 56px;
}
}
/*main widgets*/
.main-widgets h4 {
margin-bottom: 15px;
margin-top: 13px;
color: #777;
position: relative;
}
.main-widgets .status-data {
background-color: rgba(251, 134, 120, .2);
border: 1.5px solid #FF8787;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .sales-data {
background-color: rgba(255, 182, 95, .3);
border: 1.5px solid #ffcc66;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .server-load {
background-color: rgba(79, 193, 233, .3);
border: 1.5px solid #66ccff;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .status-data:before,
.main-widgets .sales-data:before,
.main-widgets .server-load:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0.9;
z-index: 0;
background: #fff;
}
.main-widgets hr {
border: 0;
height: 1px;
margin: 10px 0;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
}
.main-widgets .daily-data,
.main-widgets .monthly-data {
border-right: 1px solid #ccc;
color: #555;
}
.main-widgets .actual {
color: #555;
} | resources/assets/assets/css/custom_css/widgets1.css | .card-box {
padding: 16px;
border: 1px solid rgba(54, 64, 74, 0.19);
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-border-radius: 3px;
background-clip: padding-box;
margin-bottom: 20px;
background-color: #ffffff;
}
/*========= second widget code ===============*/
.widget-bg-color-icon .bg-icon-info {
background-color: rgba(185, 209, 287, 1);
border: 1px solid #6699cc;
}
.widget-bg-color-icon .bg-icon {
height: 80px;
width: 80px;
text-align: center;
-webkit-border-radius: 50%;
border-radius: 50%;
-moz-border-radius: 50%;
background-clip: padding-box;
}
.widget-bg-color-icon .bg-icon i {
font-size: 32px;
line-height: 80px;
}
.image_back {
background-image: url(/static/img/gallery/full/35.jpg);
padding: 65px;
color: #fff;
}
.circle_back_img {
background-image: url("/static/img/gallery/full/39.jpg");
padding: 70px;
}
.bowman_img {
background-image: url("/static/img/gallery/full/32.jpg");
}
.p-56 {
padding: 56px;
}
.weather_img {
background-image: url("/static/img/gallery/full/40.jpg");
padding: 80px;
}
.demo {
background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1200px) {
.p-56 {
padding: 65px 56px;
}
}
/*main widgets*/
.main-widgets h4 {
margin-bottom: 15px;
margin-top: 13px;
color: #777;
position: relative;
}
.main-widgets .status-data {
background-color: rgba(251, 134, 120, .2);
border: 1.5px solid #FF8787;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .sales-data {
background-color: rgba(255, 182, 95, .3);
border: 1.5px solid #ffcc66;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .server-load {
background-color: rgba(79, 193, 233, .3);
border: 1.5px solid #66ccff;
border-radius: 2px;
margin-bottom: 13px;
position: relative;
}
.main-widgets .status-data:before,
.main-widgets .sales-data:before,
.main-widgets .server-load:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0.9;
z-index: 0;
background: #fff;
}
.main-widgets hr {
border: 0;
height: 1px;
margin: 10px 0;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
}
.main-widgets .daily-data,
.main-widgets .monthly-data {
border-right: 1px solid #ccc;
color: #555;
}
.main-widgets .actual {
color: #555;
} | 0.401805 | 0.106784 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@keyframes comer {
0%, 10% {width: 0vmin;
height: 0vmin;
border-radius: 45%;
top: 70vmin;}
20% {width: 15vmin;
height: 13vmin;
border-radius: 45%;
top: 60vmin;}
30% {width: 23vmin;
height:16vmin;
border-radius: 45%;
top: 55vmin;}
50% {width: 23vmin;
height: 22vmin;
border-radius: 45%;
top: 50vmin;}
75% {width: 23vmin;
height: 29vmin;
border-radius: 45%;
top: 45vmin;}
90% {
width: 23vmin;
height: 32.2vmin;
border-radius: 35%;
top: 42vmin;
}
100% {width: 23vmin;
height: 36vmin;
border-radius: 10%;
top: 37vmin;
}
}
body {
display: flex;
overflow: hidden;
width: 100%;
height: 100vh;
background-color: cornflowerblue;
}
body::before {
content: "";
position: absolute;
width: 23vmin;
height: 36vmin;
border-radius: 45%;
top: 60vmin;
left: 50vw;
transform: rotate(5deg) translateX(-50%);;;
background: rgb(255, 255, 255);
animation-name: comer;
animation-duration: 10s;
animation-timing-function: steps(1, jump-start);
animation-iteration-count: infinite;
z-index: 100;
}
body::after {
content: "";
position: absolute;
width: 50vmin;
height: 50vmin;
border-radius: 50%;
background: radial-gradient(white 60%, rgb(184, 181, 181) 60.5%, 62%, white 63%);
top: 54vmin;
left: 50vw;
transform: translate(-50%, -50%);
z-index: 10;
}
.pizza {
position: relative;
top: 54vmin;
left: 50vw;
width: 20vmin;
height: 32vmin;
transform: rotate(180deg) translate(50%, 50%);
clip-path:polygon(50% 0%, 0% 100%, 100% 100%);
background: linear-gradient(to bottom,yellow 95%, rgb(173, 142, 41) 95%);
z-index: 20;
}
.pizza::after {
content: "";
position: absolute;
width: 3vmin;
height: 3vmin;
border-radius: 50% 50% 40% 30%;
bottom: 0vmin;
right: 0vmin;
transform: translateX(-150%) translateY(-120%);
box-shadow:-8vmin -2vmin red,
1vmin -7vmin red,
-5vmin -9vmin 0 0.3vmin red,
-5vmin -18vmin 0 0.3vmin red,
-1vmin 2.5vmin 0 -1vmin green,
-8vmin 1vmin 0 -1vmin green,
-4vmin -2vmin 0 -1vmin green,
-2vmin -6vmin 0 -1vmin green,
-7vmin -6.5vmin 0 -1vmin green,
-1.2vmin -10vmin 0 -1.1vmin green,
-5.2vmin -13vmin 0 -1.01vmin green,
-2.2vmin -14.5vmin 0 -1.01vmin green,
-4.2vmin -21vmin 0 -1.01vmin green,
-4vmin -2vmin 0 -1vmin green;
background: red;
} | pizza/style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@keyframes comer {
0%, 10% {width: 0vmin;
height: 0vmin;
border-radius: 45%;
top: 70vmin;}
20% {width: 15vmin;
height: 13vmin;
border-radius: 45%;
top: 60vmin;}
30% {width: 23vmin;
height:16vmin;
border-radius: 45%;
top: 55vmin;}
50% {width: 23vmin;
height: 22vmin;
border-radius: 45%;
top: 50vmin;}
75% {width: 23vmin;
height: 29vmin;
border-radius: 45%;
top: 45vmin;}
90% {
width: 23vmin;
height: 32.2vmin;
border-radius: 35%;
top: 42vmin;
}
100% {width: 23vmin;
height: 36vmin;
border-radius: 10%;
top: 37vmin;
}
}
body {
display: flex;
overflow: hidden;
width: 100%;
height: 100vh;
background-color: cornflowerblue;
}
body::before {
content: "";
position: absolute;
width: 23vmin;
height: 36vmin;
border-radius: 45%;
top: 60vmin;
left: 50vw;
transform: rotate(5deg) translateX(-50%);;;
background: rgb(255, 255, 255);
animation-name: comer;
animation-duration: 10s;
animation-timing-function: steps(1, jump-start);
animation-iteration-count: infinite;
z-index: 100;
}
body::after {
content: "";
position: absolute;
width: 50vmin;
height: 50vmin;
border-radius: 50%;
background: radial-gradient(white 60%, rgb(184, 181, 181) 60.5%, 62%, white 63%);
top: 54vmin;
left: 50vw;
transform: translate(-50%, -50%);
z-index: 10;
}
.pizza {
position: relative;
top: 54vmin;
left: 50vw;
width: 20vmin;
height: 32vmin;
transform: rotate(180deg) translate(50%, 50%);
clip-path:polygon(50% 0%, 0% 100%, 100% 100%);
background: linear-gradient(to bottom,yellow 95%, rgb(173, 142, 41) 95%);
z-index: 20;
}
.pizza::after {
content: "";
position: absolute;
width: 3vmin;
height: 3vmin;
border-radius: 50% 50% 40% 30%;
bottom: 0vmin;
right: 0vmin;
transform: translateX(-150%) translateY(-120%);
box-shadow:-8vmin -2vmin red,
1vmin -7vmin red,
-5vmin -9vmin 0 0.3vmin red,
-5vmin -18vmin 0 0.3vmin red,
-1vmin 2.5vmin 0 -1vmin green,
-8vmin 1vmin 0 -1vmin green,
-4vmin -2vmin 0 -1vmin green,
-2vmin -6vmin 0 -1vmin green,
-7vmin -6.5vmin 0 -1vmin green,
-1.2vmin -10vmin 0 -1.1vmin green,
-5.2vmin -13vmin 0 -1.01vmin green,
-2.2vmin -14.5vmin 0 -1.01vmin green,
-4.2vmin -21vmin 0 -1.01vmin green,
-4vmin -2vmin 0 -1vmin green;
background: red;
} | 0.7237 | 0.11282 |
.container {
max-width: 1200px;
margin: 0 auto;
overflow: auto;
}
.header, .footer {
max-width: 700px;
margin: 0 auto;
overflow: auto;
}
input {
background-color: rgba(255, 153, 51, .7);
padding: 5px 10px;
max-width: 500px;
min-width: 230px;
border-bottom: 0 !important;
border-radius: 5px;
}
.clear {
font-size: .65em;
}
h3 {
padding-top: 18px;
}
h1 {
font-size: 36px;
}
table {
border-spacing: 0;
}
tbody tr:nth-child(odd) {
background-color: #cbcbcb;
}
thead {
text-align: left;
font-family: 'Open Sans', Arial, sans-serif;
}
td {
min-width: 140px;
vertical-align: top;
padding: 8px;
}
td a {
line-height: 24px;
}
tr {
height: 50px;
}
ul, ol {
text-indent: 0;
margin: 0;
padding-left: 20px;
}
ul li {
padding-bottom: 6px;
line-height: 22px;
}
.half {
max-width: 50%;
display: inline-block;
vertical-align: top;
}
.half:nth-child(odd) {
padding-left: 20px;
}
img[alt=sheetseeimg] {
width: 400px;
}
.index p:first-of-type {
text-align: center;
}
/* older css */
body {
font-family: 'Open Sans';
background: #f3f3f3;
color: #535353;
margin: 0px;
padding: 20px 20px 100px 20px;
overflow: auto;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', Arial, sans-serif;
}
h2 {
margin-top: 40px;
}
img {
width: 100%;
}
hr {
border: 1px solid #ff9933;
}
p {
font-size: 18px;
}
p a, a {
color: #ff9933;
padding-bottom: 0px;
text-decoration: none;
}
a:hover {
color: #000;
}
a:active {
color: #000;
}
small {
padding: 10px 0px;
}
p, ol {
line-height: 1.4;
}
text {
font-size: 12px;
}
body.index p:nth-of-type(2) {
font-size: 30px;
}
body.index table {
border: 4px solid #ff9933;
padding: 18px;
}
.home-link {
color: #47CCFC;
}
pre {
word-wrap: break-word;
padding: 10px;
background: #F8F8F8;
}
pre code {
padding: 0;
}
code {
font-family: "Source Code Pro", monospace;
line-height: 1;
font-size: 14px;
background: #F8F8F8;
color: #636363;
font-weight: 400;
padding: 2px 6px;
border-radius: 2px;
}
h3 code {
font-weight: bold;
background: #ff9933;
font-size: 19px;
}
.hljs {
background: #F8F8F8;
color: #494949;
line-height: 1.4em;
}
.new-news {
color: #47CCFC;
font-size: 30px;
font-weight: bold;
border: 8px solid #47CCFC;
/*border-radius: 3px;*/
display: inline-block;
padding: 6px 16px;
margin-top: 40px;
}
.footer{
font-size: .8em;
}
/* funsies */
::selection {
background: #cbcbcb;
}
::-moz-selection {
background: #cbcbcb;
}
/* Table */
.ssExample table {
min-width: 600px;
}
.tHeader::after {
font-size: .9em;
padding-left: 3px;
cursor: pointer;
}
/* Map Popup Style */
.leaflet-popup-content h2 {
margin-bottom: 4px;
margin-top: auto;
} | estilos.css | .container {
max-width: 1200px;
margin: 0 auto;
overflow: auto;
}
.header, .footer {
max-width: 700px;
margin: 0 auto;
overflow: auto;
}
input {
background-color: rgba(255, 153, 51, .7);
padding: 5px 10px;
max-width: 500px;
min-width: 230px;
border-bottom: 0 !important;
border-radius: 5px;
}
.clear {
font-size: .65em;
}
h3 {
padding-top: 18px;
}
h1 {
font-size: 36px;
}
table {
border-spacing: 0;
}
tbody tr:nth-child(odd) {
background-color: #cbcbcb;
}
thead {
text-align: left;
font-family: 'Open Sans', Arial, sans-serif;
}
td {
min-width: 140px;
vertical-align: top;
padding: 8px;
}
td a {
line-height: 24px;
}
tr {
height: 50px;
}
ul, ol {
text-indent: 0;
margin: 0;
padding-left: 20px;
}
ul li {
padding-bottom: 6px;
line-height: 22px;
}
.half {
max-width: 50%;
display: inline-block;
vertical-align: top;
}
.half:nth-child(odd) {
padding-left: 20px;
}
img[alt=sheetseeimg] {
width: 400px;
}
.index p:first-of-type {
text-align: center;
}
/* older css */
body {
font-family: 'Open Sans';
background: #f3f3f3;
color: #535353;
margin: 0px;
padding: 20px 20px 100px 20px;
overflow: auto;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', Arial, sans-serif;
}
h2 {
margin-top: 40px;
}
img {
width: 100%;
}
hr {
border: 1px solid #ff9933;
}
p {
font-size: 18px;
}
p a, a {
color: #ff9933;
padding-bottom: 0px;
text-decoration: none;
}
a:hover {
color: #000;
}
a:active {
color: #000;
}
small {
padding: 10px 0px;
}
p, ol {
line-height: 1.4;
}
text {
font-size: 12px;
}
body.index p:nth-of-type(2) {
font-size: 30px;
}
body.index table {
border: 4px solid #ff9933;
padding: 18px;
}
.home-link {
color: #47CCFC;
}
pre {
word-wrap: break-word;
padding: 10px;
background: #F8F8F8;
}
pre code {
padding: 0;
}
code {
font-family: "Source Code Pro", monospace;
line-height: 1;
font-size: 14px;
background: #F8F8F8;
color: #636363;
font-weight: 400;
padding: 2px 6px;
border-radius: 2px;
}
h3 code {
font-weight: bold;
background: #ff9933;
font-size: 19px;
}
.hljs {
background: #F8F8F8;
color: #494949;
line-height: 1.4em;
}
.new-news {
color: #47CCFC;
font-size: 30px;
font-weight: bold;
border: 8px solid #47CCFC;
/*border-radius: 3px;*/
display: inline-block;
padding: 6px 16px;
margin-top: 40px;
}
.footer{
font-size: .8em;
}
/* funsies */
::selection {
background: #cbcbcb;
}
::-moz-selection {
background: #cbcbcb;
}
/* Table */
.ssExample table {
min-width: 600px;
}
.tHeader::after {
font-size: .9em;
padding-left: 3px;
cursor: pointer;
}
/* Map Popup Style */
.leaflet-popup-content h2 {
margin-bottom: 4px;
margin-top: auto;
} | 0.36376 | 0.102709 |
html,
body {
width: 100%;
height: 100%;
font-size: .2rem;
color: #313131;
background: #fff;
overflow: hidden;
}
html,
body,
div,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
button,
input,
select table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: normal;
vertical-align: baseline;
background: transparent;
}
ul,
li {
list-style: none;
}
i {
font-style: normal;
}
a,
a:hover {
color: inherit;
text-decoration: none;
}
.mui-backdrop {
background-color: rgba(0, 0, 0, 0.6) !important;
}
.mui-popover.mui-popover-action .mui-table-view {
font-size: .36rem;
color: #00a2ff;
}
.mui-popover-action .cannel {
color: #d8d7d9 !important;
}
.labels-wrapper span {
margin-right: .1rem;
padding: 0 .1rem;
color: #00a2ff;
background: #cdecff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.labels-add span,
.labels-add .btn-add {
display: inline-block;
min-width: 1.4rem;
height: .4rem;
line-height: .4rem;
font-size: .2rem;
text-align: center;
border: 1px solid #adadad !important;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.labels-add .btn-add {
padding: 0;
width: 1.6rem;
border: 1px solid #adadad;
vertical-align: text-bottom;
text-decoration: underline;
vertical-align: baseline;
}
.iconfont {
color: #00a2ff;
font-size: .36rem;
vertical-align: middle;
}
.icon-nan {
color: #00a2ff;
}
.icon-dianhua {
color: #ffae00;
}
.icon-brithday {
color: #fc97ab;
}
.icon-businesscard_fill {
color: #8fcc40;
}
.icon-addressbook_fill {
color: #40ccb4;
}
.icon-group_fill {
color: #cc3e82;
}
.zicon {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/icons_agent.png) no-repeat;
background-size: auto 100%;
vertical-align: middle;
}
.zicon-jihuashu {
background-position: 0 0;
}
.zicon-dingdan {
background-position: -0.5rem 0;
}
.zicon-kehu {
background-position: -1rem 0;
}
.zicon-chanpin {
background-position: -1.5rem 0;
}
.zicon-yeji {
background-position: -2rem 0;
}
.zicon-huodong {
background-position: -2.5rem 0;
}
.zicon-jilu {
background-position: -2.9rem 0;
}
.zicon-xianxiadan {
background-position: -3.4rem 0;
}
.zicon-xuqiu {
background-position: -3.9rem 0;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:after {
content: " ";
display: block;
clear: both;
height: 0;
}
.clearfix {
zoom: 1;
}
::-webkit-input-placeholder {
color: #999;
}
:-moz-placeholder {
color: #999;
}
::-moz-placeholder {
color: #999;
}
:-ms-input-placeholder {
color: #999;
}
img {
display: block;
width: 100%;
height: 100%;
}
p {
color: inherit;
font-size: inherit;
}
.vtop {
vertical-align: top;
}
input,
input[type=text],
input[type=number],
input[type=email] {
margin: 0;
padding: 0 10px;
height: 50px;
border: none!important;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.search {
position: relative;
display: inline-block;
width: 5.6rem;
height: .6rem;
}
.search input {
padding-left: .6rem;
width: 100%;
height: 100%;
}
.search .iconfont {
position: absolute;
top: .1rem;
left: .1rem;
font-size: .38rem;
color: #313131;
}
textarea {
padding: 10px;
height: 1.6rem;
border: 1px solid #d8d7d9;
resize: none;
}
.icon-duoxuanxuanzhong01 {
color: #00a2ff;
}
table {
width: 100%;
border-collapse: collapse;
}
table tbody tr:hover {
background: #fff0d1;
}
table th {
font-weight: normal;
text-align: center;
}
table td {
text-align: center;
vertical-align: middle;
}
.color-primary {
color: #00a2ff;
}
.color-positive {
color: #ffae00;
}
.red {
color: #f00;
}
.crumbs {
margin-bottom: 40px;
font-size: 0;
}
.crumbs li {
display: inline-block;
font-size: 14px;
color: #00a2ff;
}
.crumbs li .iconfont {
margin: 0 10px;
}
.tab {
font-size: 0;
background: #f4f4f4;
}
.tab li {
display: inline-block;
padding: 12px;
font-size: 16px;
}
.tab li.active {
border-bottom: 2px solid #00a2ff;
color: #00a2ff;
font-weight: bold;
}
.content-wrapper {
background: #fff;
}
.content-wrapper .content {
padding: 40px 20px;
}
.mui-bar-nav {
box-shadow: none;
}
.division {
width: 100%;
height: .2rem;
background: #f4f4f4;
}
.radius {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn.center {
display: block;
margin: 0 auto;
}
.tag-item {
display: inline-block;
margin-right: .2rem;
padding: 0 .1rem;
height: .33rem;
line-height: .3rem;
font-size: .2rem;
color: #00a2ff;
border: 1px solid #00a2ff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn,
.zbtn-hollow {
display: inline-block;
width: 1.6rem;
height: .6rem;
line-height: .6rem;
font-size: .24rem;
text-align: center;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn,
.zbtn:hover {
color: #fff;
}
.zbtn-hollow,
.zbtn-hollow:hover {
color: #ffae00;
border: 1px solid #ffae00;
}
.zbtn-default {
background: #00a2ff;
}
.zbtn-positive {
background: #ffae00;
}
.zbtn-select {
position: relative;
display: inline-block;
padding: 0 .14rem;
margin-right: .18rem;
height: .56rem;
line-height: .56rem;
border: 1px solid #d8d7d9;
font-size: .28rem;
text-align: center;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn-select.active {
color: #00a2ff;
border: 1px solid #00a2ff;
}
.zbtn-select.active:after {
content: '';
position: absolute;
right: -1px;
bottom: -3px;
width: 0;
height: 0;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 4px solid #00a2ff;
transform: rotate(45deg);
}
.zbtn-select-num {
width: .9rem;
margin-right: 0;
}
.icon-manyi,
.icon-icon-manyidu {
font-size: 20px;
color: #ffae00;
cursor: pointer;
}
/*弹出提示框*/
.mask {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 100;
}
.mask-bg {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: transparent;
z-index: 999;
}
.mask-container {
min-width: 400px;
position: absolute;
left: 50%;
top: 50%;
padding: 20px 50px;
text-align: center;
background: #fff;
z-index: 1000;
box-shadow: 0px 2px 30px 1px rgba(0, 0, 0, 0.06);
}
.mask-loding .mask-container {
background: transparent;
}
.mask-loding .text {
font-size: 18px;
color: #fff;
}
.bottom-nav {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 200;
height: 1rem;
font-size: 0;
border-top: 1px solid #e5e5e5;
background: #fff;
}
.bottom-nav li {
position: relative;
display: inline-block;
width: 25%;
height: 1rem;
top: -3px;
font-size: .24rem;
text-align: center;
}
.bottom-nav li .icon-wrapper {
display: inline-block;
}
.bottom-nav li .myicon {
display: none;
}
.bottom-nav li.active .icon-wrapper {
display: none;
}
.bottom-nav li.active .myicon {
display: inline-block;
}
.bottom-nav li .iconfont {
margin-top: .16rem;
font-size: .5rem;
}
.bottom-nav .myicon {
display: none;
}
.bottom-nav .icon-wrapper {
display: inline-block;
width: .4rem;
height: .4rem;
}
.bottom-nav .shouye3 {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/home@2x.png) no-repeat;
background-size: 100% 100%;
}
.bottom-nav .shouye {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/my@2x.png) no-repeat;
background-size: 100% 100%;
}
.bottom-nav .text {
display: block;
}
/*头部标题*/
#header {
height: .88rem;
background: #025a8d;
color: #fff;
}
#header .mui-title {
height: .88rem;
line-height: .88rem;
font-size: .36rem;
color: rgba(255, 255, 255, 0.8);
}
#header .iconfont {
height: .88rem;
line-height: .88rem;
font-size: .4rem;
color: rgba(255, 255, 255, 0.8);
}
.mui-content .mui-scroll-wrapper {
top: 1.2rem;
bottom: 1rem;
}
/*mui选择器*/
.mui-poppicker-header,
.mui-dtpicker-header {
padding: 0;
}
.mui-dtpicker-title {
position: relative;
bottom: .8rem;
}
.mui-poppicker-header,
.mui-dtpicker-header {
position: fixed;
bottom: 0;
z-index: 200;
width: 100%;
background: #fff;
}
.mui-poppicker-header .mui-btn,
.mui-dtpicker-header .mui-btn {
width: 50%;
height: .9rem;
font-size: .32rem;
border: none;
border-radius: 0;
}
.mui-poppicker-body,
.mui-dtpicker-body {
bottom: .88rem;
}
.mui-picker {
background: #fff;
}
.mui-poppicker-btn-cancel {
color: #fff;
background: #adadad;
}
.mui-bar-nav ~ .mui-content {
padding-top: 0.88rem;
background: #fff;
}
/*弹出层*/
.popover-wrapper .title {
padding: 0 .2rem;
width: 100%;
height: .6rem;
line-height: .6rem;
font-size: .28rem;
color: #fff;
background: #00a2ff;
}
.popover-wrapper .title .iconfont {
float: right;
}
.mui-popover {
top: 50%;
left: 50%;
box-shadow: none;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.popover-content {
background: #fff;
}
.mui-popover-arrow {
display: none;
}
.popover-send {
top: initial;
left: initial;
transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
bottom: 1rem;
right: .7rem;
width: 1.4rem;
background: transparent;
}
.popover-send .qq {
background: url(../img/qq.png);
margin-bottom: .4rem;
}
.popover-send .weixin {
background: url(../img/weixin.png);
}
.popover-send .qq,
.popover-send .weixin {
position: relative;
width: 1.4rem;
height: 1.4rem;
background-size: 100% 100%;
}
.popover-send input {
position: absolute;
top: .3rem;
left: -4.2rem;
width: 4rem;
}
.zbtn:disabled {
background: #d8d7d9;
}
.buttons-box,
.button-box,
.two-button-box {
position: fixed;
bottom: 0;
width: 100%;
height: 1rem;
line-height: 1rem;
z-index: 100;
box-shadow: 0px 1px 18px 2px rgba(2, 90, 141, 0.1);
overflow: hidden;
}
.buttons-box .zbtn,
.button-box .zbtn,
.two-button-box .zbtn {
height: 1rem;
line-height: 1rem;
font-size: .36rem;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
}
.two-button-box .zbtn {
float: left;
width: 50%;
}
.two-button-box .zbtn-white {
background: #fff;
color: #00a2ff;
border: 1px solid #00a2ff;
}
.buttons-box .zbtn {
float: left;
}
.buttons-box .zbtn-price {
width: 30%;
color: #ffae00;
background: #fff;
}
.buttons-box .zbtn-positive {
width: 40%;
}
.buttons-box .zbtn-default {
width: 30%;
}
.button-box .zbtn {
width: 100%;
height: 1rem;
line-height: 1rem;
}
.main {
width: 100%;
height: 100%;
}
.icon-add {
color: #00a2ff;
}
.icon-QQ {
color: #68bef8;
}
.icon-weixin {
color: #62b900;
}
/*表单*/
.form-wrapper textarea {
width: 74%;
}
.form-wrapper {
font-size: .28rem;
}
.form-wrapper .title {
padding: 0 .2rem;
height: .6rem;
line-height: .6rem;
font-weight: bold;
background: #f4f4f4;
}
.form-wrapper ul {
padding: 0 .2rem;
}
.form-wrapper li {
height: 1rem;
line-height: 1rem;
position: relative;
border-bottom: 1px solid #d8d7d9;
overflow: hidden;
}
.form-wrapper li:last-child {
border-bottom: none;
}
.form-wrapper li .name {
float: left;
width: 26%;
}
.form-wrapper li input {
width: 74%;
font-size: .28rem;
border: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.form-wrapper li .iconfont {
color: #00a2ff;
}
.form-wrapper li .icon-gengduo,
.form-wrapper li .icon-xiugai {
position: absolute;
top: 0;
right: 0;
}
/*开关*/
.mui-switch {
float: right;
margin-top: .2rem;
height: .6rem;
line-height: .6rem;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
border: 2px solid #00a2ff;
background-color: #00a2ff;
}
.mui-switch:before {
top: 0;
}
.mui-switch .mui-switch-handle {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.mui-switch.mui-active {
border: 2px solid #ddd;
background-color: #ddd;
}
/*星星样式*/
.block {
width: 100%;
padding-top: 10px;
padding-left: 50px;
line-height: 21px;
}
.block .star_score {
float: left;
}
.star_list {
height: 21px;
margin: 50px;
line-height: 21px;
}
.block p,
.block .attitude {
padding-left: 20px;
line-height: 21px;
display: inline-block;
}
.block p {
color: #ffae00;
}
.block p span {
font-family: Georgia, "Times New Roman", Times, serif;
}
.star_score {
background: url(../img/stark2.png);
width: 160px;
height: 21px;
position: relative;
}
.star_score a {
height: 21px;
display: block;
text-indent: -999em;
position: absolute;
left: 0;
}
.star_score a:hover {
background: url(../img/stars2.png);
left: 0;
}
.star_score a.clibg {
background: url(../img/stars2.png);
left: 0;
}
/*星星样式*/
.show_number {
padding-left: 50px;
padding-top: 20px;
}
.show_number li {
width: 240px;
border: 1px solid #ccc;
padding: 10px;
margin-right: 5px;
margin-bottom: 20px;
}
.atar_Show {
background: url(../img/stark2.png);
width: 160px;
height: 21px;
position: relative;
float: left;
}
.atar_Show p {
background: url(../img/stars2.png);
left: 0;
height: 21px;
width: 134px;
}
.show_number li span {
display: inline-block;
line-height: 21px;
}
/*列表*/
.spread-list > li {
line-height: .9rem;
font-size: .28rem;
border-bottom: 1px solid #d8d7d9;
}
.spread-list > li a {
display: block;
}
.spread-list .icon-gengduo {
float: right;
}
.spread-level1 {
padding: 0 .28rem;
color: #00a2ff;
}
.spread-level2 {
display: none;
padding: 0 .28rem;
background: #f4f4f4;
}
.spread-level2 > li {
position: relative;
height: .8rem;
line-height: .8rem;
border-bottom: 1px solid #d8d7d9;
}
.spread-level2 > li .iconfont {
float: right;
color: #ffae00;
}
.spread-level2 > li:last-child {
border-bottom: none;
}
.spread-list > li.active .icon-gengduo {
transform: rotate(90deg);
-ms-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-o-transform: rotate(90deg);
}
.spread-list > li.active .spread-level2 {
display: block;
}
/*产品列表*/
.product-wrapper {
padding: 0 .2rem;
}
.product-wrapper li {
width: 100%;
position: relative;
padding: .2rem 0;
border-bottom: 1px solid #adadad;
overflow: hidden;
}
.product-wrapper li:last-child {
border-bottom: none;
}
.product-wrapper li .product-img {
float: left;
margin-right: .2rem;
width: 1.6rem;
height: 1.6rem;
}
.product-wrapper li .name {
font-size: .28rem;
}
.product-wrapper li .info {
margin: .3rem 0 .1rem;
color: #adadad;
}
.product-wrapper li .num {
font-size: .2rem;
}
.product-wrapper li .num span {
margin-right: .1rem;
}
.product-wrapper li .product-right {
position: absolute;
top: .6rem;
right: 0;
text-align: center;
}
/*选项卡*/
.mui-segmented-control {
width: 100%;
background: #fff;
border: none;
overflow: initial;
}
.mui-segmented-control .mui-control-item {
position: relative;
color: #adadad;
border: none;
overflow: initial;
}
.mui-segmented-control .mui-control-item.mui-active {
background: none;
border-bottom: 2px solid #00a2ff;
color: #00a2ff;
}
/*用户*/
.header-wrapper {
width: 100%;
background: url(../img/user-bg.png) no-repeat;
background-size: 100% 100%;
color: #fff;
}
.header-wrapper .header-img {
float: left;
margin-right: .3rem;
width: 1.18rem;
height: 1.18rem;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
-o-border-radius: 50%;
box-shadow: 0 0 0px 6px rgba(255, 255, 255, 0.2);
}
.header-wrapper .header-top {
position: relative;
margin: 0 .28rem;
padding-top: .9rem;
padding-bottom: .6rem;
border-bottom: 1px solid #fff;
}
.header-wrapper .header-top .msg {
position: absolute;
top: .2rem;
right: 0;
font-size: .48rem;
}
.header-wrapper .header-top .status {
display: inline-block;
margin-top: .3rem;
width: 1.2rem;
line-height: .32rem;
text-align: center;
border: 1px solid #fff;
font-size: .2rem;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-o-border-radius: 20px;
}
.header-wrapper .header-bottom {
padding: .32rem 0;
margin-right: -1px;
overflow: hidden;
}
.header-wrapper .header-bottom li {
float: left;
width: 25%;
border-right: 1px solid #fff;
text-align: center;
}
.header-wrapper .header-bottom li .color-positive {
font-size: .32rem;
}
.icon-rank {
position: absolute;
top: 0;
left: -0.44rem;
display: inline-block;
padding-top: .3rem;
width: .7rem;
height: .7rem;
background: url(../img/crown4.png) no-repeat;
background-size: 100% 100%;
color: #fff;
text-align: center;
transform: rotate(-40deg);
-ms-transform: rotate(-40deg);
-moz-transform: rotate(-40deg);
-webkit-transform: rotate(-40deg);
-o-transform: rotate(-40deg);
}
.icon-rank1 {
background-image: url(../img/crown1.png);
}
.icon-rank2 {
background-image: url(../img/crown2.png);
}
.icon-rank3 {
background-image: url(../img/crown3.png);
}
/*登录及修改密码弹出层*/
.login-popover {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
border-radius: 0;
}
.login-popover .error-tips {
margin-bottom: .4rem;
color: #f00;
text-align: left;
}
.login-popover .icon-guanbi {
position: fixed;
top: .6rem;
right: .6rem;
font-size: .4rem;
color: #dcdcdc;
}
.login-popover input {
margin-bottom: 0;
height: .8rem;
border-radius: 12px;
background: rgba(244, 244, 244, 0.3);
color: #f3eaea;
font-size: .32rem;
}
.login-popover input.password {
font-size: .6rem;
}
.login-popover .content {
margin-top: 3.4rem;
padding: 0 .6rem;
text-align: center;
}
.login-popover .content li {
position: relative;
margin-bottom: .3rem;
}
.login-popover .btn-login {
margin: 0 auto;
width: 80%;
height: .8rem;
background: #00a2ff;
color: #fff;
border-radius: 12px;
}
.content-login .btn-code {
position: absolute;
top: .1rem;
right: 8px;
width: 1.9rem;
height: .63rem;
background: #f4f4f4;
border: 1px solid #DCDCDC;
border-radius: .31rem;
color: #FFAE00;
font-size: .28rem;
}
.content-login .btn-forget {
margin-bottom: .4rem;
display: block;
text-align: right;
color: #00a2ff;
}
.forget-content ul .zbtn,
.change-content ul .zbtn {
position: absolute;
top: .1rem;
right: .1rem;
color: #ffae00;
background: #fff;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-o-border-radius: 20px;
}
.forget-content ul .zbtn.disabled,
.change-content ul .zbtn.disabled {
color: #fff;
background: #ffae00;
}
.forget-content .btn-login.disabled,
.change-content .btn-login.disabled {
color: #fff;
background: #d8d7d9;
}
.change-content .explain {
color: #f00;
text-align: right;
}
.change-content .success-tips {
display: none;
position: absolute;
top: 45%;
left: 50%;
z-index: 10;
width: 1.5rem;
height: .7rem;
line-height: .7rem;
background: #fff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
}
/*滑动解锁*/
.stage {
margin-top: .4rem;
position: relative;
height: .6rem;
border-radius: 5px;
overflow: hidden;
}
.slider {
position: absolute;
width: 100%;
height: .6rem;
box-shadow: 0 0 3px #999;
background-color: #ffae00;
left: 0;
}
.label {
background: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(0.4, #fff), color-stop(0.5, #a4a4ad), color-stop(0.6, #fff), color-stop(1, #fff));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: slidetounlock 3s infinite;
-webkit-text-size-adjust: none;
line-height: .6rem;
height: .6rem;
text-align: center;
font-size: .28rem;
width: 100%;
color: #999;
}
@keyframes slidetounlock {
0% {
background-position: -200px 0;
}
100% {
background-position: 200px 0;
}
}
@-webkit-keyframes slidetounlock {
0% {
background-position: -200px 0;
}
100% {
background-position: 200px 0;
}
}
.button {
position: absolute;
left: 0;
top: 0;
width: 1.2rem;
height: .6rem;
background-color: #fff;
transition: left 0s;
-webkit-transition: left 0s;
text-align: center;
}
.button-on {
position: absolute;
left: 0;
top: 0;
width: .6rem;
height: .6rem;
background-color: #fff;
transition: left 1s;
-webkit-transition: left .5s;
}
.track {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0;
overflow: hidden;
transition: width 0s;
-webkit-transition: width 0s;
}
.button .icon-jiantouzuoshuang- {
display: inline-block;
margin-top: .12rem;
font-size: .5rem;
color: #ffae00;
}
.track-on {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0;
overflow: hidden;
transition: width 1s;
-webkit-transition: width .5s;
}
.spinner {
width: .4rem;
height: .4rem;
position: relative;
top: .1rem;
left: 0.4rem;
display: none;
}
@-webkit-keyframes bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes bouncedelay {
0%,
80%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
40% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
.bg-green {
height: .6rem;
line-height: .6rem;
text-align: center;
font-size: 16px;
color: #fff;
background-color: #ffae00;
}
/*短信或呼叫*/
.popover-call {
width: 4.8rem;
}
.popover-call .popover-content {
padding: .3rem;
text-align: center;
}
.popover-call .tel {
font-size: .36rem;
}
.popover-call .zbtn-hollow {
color: #00a2ff;
}
.popover-call .zbtn {
float: left;
width: 50%;
height: .8rem;
line-height: .8rem;
border: 1px solid #00a2ff;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
}
.list-search-wrapper {
padding: .2rem;
background: #fff;
}
.list-search-wrapper .filtrate {
float: right;
width: 20%;
height: .7rem;
text-align: center;
line-height: .7rem;
color: #00a2ff;
}
.list-search-wrapper .mui-indexed-list-search {
margin: 0;
height: .6rem;
line-height: .6rem;
text-align: center;
}
.popover-search {
width: 80%;
height: 76%;
background: #fff;
}
.popover-search-top {
padding: .3rem;
padding-right: 0;
}
.popover-search-top .search {
width: 85%;
}
.popover-search-top input {
font-size: .2rem;
background: #f4f4f4;
border: none;
text-align: left;
}
.popover-search-top .zbtn {
width: 13%;
color: #adadad;
}
.popover-search-wrapper {
padding: 0 .2rem;
}
.popover-search-wrapper .title {
padding: .1rem;
font-size: .22rem;
color: #adadad;
}
.popover-search-wrapper .zbtn {
background: #d8d7d9;
color: #313131;
width: auto;
padding: 0 .2rem;
}
.popover-search-wrapper img {
width: 100%;
}
.popover-search-wrapper .mui-scroll-wrapper {
top: 1.3rem;
}
.hide {
display: none;
} | public/view_2/mobile/prospectus/css/common_agent.css | html,
body {
width: 100%;
height: 100%;
font-size: .2rem;
color: #313131;
background: #fff;
overflow: hidden;
}
html,
body,
div,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
button,
input,
select table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: normal;
vertical-align: baseline;
background: transparent;
}
ul,
li {
list-style: none;
}
i {
font-style: normal;
}
a,
a:hover {
color: inherit;
text-decoration: none;
}
.mui-backdrop {
background-color: rgba(0, 0, 0, 0.6) !important;
}
.mui-popover.mui-popover-action .mui-table-view {
font-size: .36rem;
color: #00a2ff;
}
.mui-popover-action .cannel {
color: #d8d7d9 !important;
}
.labels-wrapper span {
margin-right: .1rem;
padding: 0 .1rem;
color: #00a2ff;
background: #cdecff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.labels-add span,
.labels-add .btn-add {
display: inline-block;
min-width: 1.4rem;
height: .4rem;
line-height: .4rem;
font-size: .2rem;
text-align: center;
border: 1px solid #adadad !important;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.labels-add .btn-add {
padding: 0;
width: 1.6rem;
border: 1px solid #adadad;
vertical-align: text-bottom;
text-decoration: underline;
vertical-align: baseline;
}
.iconfont {
color: #00a2ff;
font-size: .36rem;
vertical-align: middle;
}
.icon-nan {
color: #00a2ff;
}
.icon-dianhua {
color: #ffae00;
}
.icon-brithday {
color: #fc97ab;
}
.icon-businesscard_fill {
color: #8fcc40;
}
.icon-addressbook_fill {
color: #40ccb4;
}
.icon-group_fill {
color: #cc3e82;
}
.zicon {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/icons_agent.png) no-repeat;
background-size: auto 100%;
vertical-align: middle;
}
.zicon-jihuashu {
background-position: 0 0;
}
.zicon-dingdan {
background-position: -0.5rem 0;
}
.zicon-kehu {
background-position: -1rem 0;
}
.zicon-chanpin {
background-position: -1.5rem 0;
}
.zicon-yeji {
background-position: -2rem 0;
}
.zicon-huodong {
background-position: -2.5rem 0;
}
.zicon-jilu {
background-position: -2.9rem 0;
}
.zicon-xianxiadan {
background-position: -3.4rem 0;
}
.zicon-xuqiu {
background-position: -3.9rem 0;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:after {
content: " ";
display: block;
clear: both;
height: 0;
}
.clearfix {
zoom: 1;
}
::-webkit-input-placeholder {
color: #999;
}
:-moz-placeholder {
color: #999;
}
::-moz-placeholder {
color: #999;
}
:-ms-input-placeholder {
color: #999;
}
img {
display: block;
width: 100%;
height: 100%;
}
p {
color: inherit;
font-size: inherit;
}
.vtop {
vertical-align: top;
}
input,
input[type=text],
input[type=number],
input[type=email] {
margin: 0;
padding: 0 10px;
height: 50px;
border: none!important;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.search {
position: relative;
display: inline-block;
width: 5.6rem;
height: .6rem;
}
.search input {
padding-left: .6rem;
width: 100%;
height: 100%;
}
.search .iconfont {
position: absolute;
top: .1rem;
left: .1rem;
font-size: .38rem;
color: #313131;
}
textarea {
padding: 10px;
height: 1.6rem;
border: 1px solid #d8d7d9;
resize: none;
}
.icon-duoxuanxuanzhong01 {
color: #00a2ff;
}
table {
width: 100%;
border-collapse: collapse;
}
table tbody tr:hover {
background: #fff0d1;
}
table th {
font-weight: normal;
text-align: center;
}
table td {
text-align: center;
vertical-align: middle;
}
.color-primary {
color: #00a2ff;
}
.color-positive {
color: #ffae00;
}
.red {
color: #f00;
}
.crumbs {
margin-bottom: 40px;
font-size: 0;
}
.crumbs li {
display: inline-block;
font-size: 14px;
color: #00a2ff;
}
.crumbs li .iconfont {
margin: 0 10px;
}
.tab {
font-size: 0;
background: #f4f4f4;
}
.tab li {
display: inline-block;
padding: 12px;
font-size: 16px;
}
.tab li.active {
border-bottom: 2px solid #00a2ff;
color: #00a2ff;
font-weight: bold;
}
.content-wrapper {
background: #fff;
}
.content-wrapper .content {
padding: 40px 20px;
}
.mui-bar-nav {
box-shadow: none;
}
.division {
width: 100%;
height: .2rem;
background: #f4f4f4;
}
.radius {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn.center {
display: block;
margin: 0 auto;
}
.tag-item {
display: inline-block;
margin-right: .2rem;
padding: 0 .1rem;
height: .33rem;
line-height: .3rem;
font-size: .2rem;
color: #00a2ff;
border: 1px solid #00a2ff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn,
.zbtn-hollow {
display: inline-block;
width: 1.6rem;
height: .6rem;
line-height: .6rem;
font-size: .24rem;
text-align: center;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn,
.zbtn:hover {
color: #fff;
}
.zbtn-hollow,
.zbtn-hollow:hover {
color: #ffae00;
border: 1px solid #ffae00;
}
.zbtn-default {
background: #00a2ff;
}
.zbtn-positive {
background: #ffae00;
}
.zbtn-select {
position: relative;
display: inline-block;
padding: 0 .14rem;
margin-right: .18rem;
height: .56rem;
line-height: .56rem;
border: 1px solid #d8d7d9;
font-size: .28rem;
text-align: center;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.zbtn-select.active {
color: #00a2ff;
border: 1px solid #00a2ff;
}
.zbtn-select.active:after {
content: '';
position: absolute;
right: -1px;
bottom: -3px;
width: 0;
height: 0;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 4px solid #00a2ff;
transform: rotate(45deg);
}
.zbtn-select-num {
width: .9rem;
margin-right: 0;
}
.icon-manyi,
.icon-icon-manyidu {
font-size: 20px;
color: #ffae00;
cursor: pointer;
}
/*弹出提示框*/
.mask {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 100;
}
.mask-bg {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: transparent;
z-index: 999;
}
.mask-container {
min-width: 400px;
position: absolute;
left: 50%;
top: 50%;
padding: 20px 50px;
text-align: center;
background: #fff;
z-index: 1000;
box-shadow: 0px 2px 30px 1px rgba(0, 0, 0, 0.06);
}
.mask-loding .mask-container {
background: transparent;
}
.mask-loding .text {
font-size: 18px;
color: #fff;
}
.bottom-nav {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 200;
height: 1rem;
font-size: 0;
border-top: 1px solid #e5e5e5;
background: #fff;
}
.bottom-nav li {
position: relative;
display: inline-block;
width: 25%;
height: 1rem;
top: -3px;
font-size: .24rem;
text-align: center;
}
.bottom-nav li .icon-wrapper {
display: inline-block;
}
.bottom-nav li .myicon {
display: none;
}
.bottom-nav li.active .icon-wrapper {
display: none;
}
.bottom-nav li.active .myicon {
display: inline-block;
}
.bottom-nav li .iconfont {
margin-top: .16rem;
font-size: .5rem;
}
.bottom-nav .myicon {
display: none;
}
.bottom-nav .icon-wrapper {
display: inline-block;
width: .4rem;
height: .4rem;
}
.bottom-nav .shouye3 {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/home@2x.png) no-repeat;
background-size: 100% 100%;
}
.bottom-nav .shouye {
display: inline-block;
width: .4rem;
height: .4rem;
background: url(../img/my@2x.png) no-repeat;
background-size: 100% 100%;
}
.bottom-nav .text {
display: block;
}
/*头部标题*/
#header {
height: .88rem;
background: #025a8d;
color: #fff;
}
#header .mui-title {
height: .88rem;
line-height: .88rem;
font-size: .36rem;
color: rgba(255, 255, 255, 0.8);
}
#header .iconfont {
height: .88rem;
line-height: .88rem;
font-size: .4rem;
color: rgba(255, 255, 255, 0.8);
}
.mui-content .mui-scroll-wrapper {
top: 1.2rem;
bottom: 1rem;
}
/*mui选择器*/
.mui-poppicker-header,
.mui-dtpicker-header {
padding: 0;
}
.mui-dtpicker-title {
position: relative;
bottom: .8rem;
}
.mui-poppicker-header,
.mui-dtpicker-header {
position: fixed;
bottom: 0;
z-index: 200;
width: 100%;
background: #fff;
}
.mui-poppicker-header .mui-btn,
.mui-dtpicker-header .mui-btn {
width: 50%;
height: .9rem;
font-size: .32rem;
border: none;
border-radius: 0;
}
.mui-poppicker-body,
.mui-dtpicker-body {
bottom: .88rem;
}
.mui-picker {
background: #fff;
}
.mui-poppicker-btn-cancel {
color: #fff;
background: #adadad;
}
.mui-bar-nav ~ .mui-content {
padding-top: 0.88rem;
background: #fff;
}
/*弹出层*/
.popover-wrapper .title {
padding: 0 .2rem;
width: 100%;
height: .6rem;
line-height: .6rem;
font-size: .28rem;
color: #fff;
background: #00a2ff;
}
.popover-wrapper .title .iconfont {
float: right;
}
.mui-popover {
top: 50%;
left: 50%;
box-shadow: none;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.popover-content {
background: #fff;
}
.mui-popover-arrow {
display: none;
}
.popover-send {
top: initial;
left: initial;
transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
bottom: 1rem;
right: .7rem;
width: 1.4rem;
background: transparent;
}
.popover-send .qq {
background: url(../img/qq.png);
margin-bottom: .4rem;
}
.popover-send .weixin {
background: url(../img/weixin.png);
}
.popover-send .qq,
.popover-send .weixin {
position: relative;
width: 1.4rem;
height: 1.4rem;
background-size: 100% 100%;
}
.popover-send input {
position: absolute;
top: .3rem;
left: -4.2rem;
width: 4rem;
}
.zbtn:disabled {
background: #d8d7d9;
}
.buttons-box,
.button-box,
.two-button-box {
position: fixed;
bottom: 0;
width: 100%;
height: 1rem;
line-height: 1rem;
z-index: 100;
box-shadow: 0px 1px 18px 2px rgba(2, 90, 141, 0.1);
overflow: hidden;
}
.buttons-box .zbtn,
.button-box .zbtn,
.two-button-box .zbtn {
height: 1rem;
line-height: 1rem;
font-size: .36rem;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
}
.two-button-box .zbtn {
float: left;
width: 50%;
}
.two-button-box .zbtn-white {
background: #fff;
color: #00a2ff;
border: 1px solid #00a2ff;
}
.buttons-box .zbtn {
float: left;
}
.buttons-box .zbtn-price {
width: 30%;
color: #ffae00;
background: #fff;
}
.buttons-box .zbtn-positive {
width: 40%;
}
.buttons-box .zbtn-default {
width: 30%;
}
.button-box .zbtn {
width: 100%;
height: 1rem;
line-height: 1rem;
}
.main {
width: 100%;
height: 100%;
}
.icon-add {
color: #00a2ff;
}
.icon-QQ {
color: #68bef8;
}
.icon-weixin {
color: #62b900;
}
/*表单*/
.form-wrapper textarea {
width: 74%;
}
.form-wrapper {
font-size: .28rem;
}
.form-wrapper .title {
padding: 0 .2rem;
height: .6rem;
line-height: .6rem;
font-weight: bold;
background: #f4f4f4;
}
.form-wrapper ul {
padding: 0 .2rem;
}
.form-wrapper li {
height: 1rem;
line-height: 1rem;
position: relative;
border-bottom: 1px solid #d8d7d9;
overflow: hidden;
}
.form-wrapper li:last-child {
border-bottom: none;
}
.form-wrapper li .name {
float: left;
width: 26%;
}
.form-wrapper li input {
width: 74%;
font-size: .28rem;
border: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.form-wrapper li .iconfont {
color: #00a2ff;
}
.form-wrapper li .icon-gengduo,
.form-wrapper li .icon-xiugai {
position: absolute;
top: 0;
right: 0;
}
/*开关*/
.mui-switch {
float: right;
margin-top: .2rem;
height: .6rem;
line-height: .6rem;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
border: 2px solid #00a2ff;
background-color: #00a2ff;
}
.mui-switch:before {
top: 0;
}
.mui-switch .mui-switch-handle {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.mui-switch.mui-active {
border: 2px solid #ddd;
background-color: #ddd;
}
/*星星样式*/
.block {
width: 100%;
padding-top: 10px;
padding-left: 50px;
line-height: 21px;
}
.block .star_score {
float: left;
}
.star_list {
height: 21px;
margin: 50px;
line-height: 21px;
}
.block p,
.block .attitude {
padding-left: 20px;
line-height: 21px;
display: inline-block;
}
.block p {
color: #ffae00;
}
.block p span {
font-family: Georgia, "Times New Roman", Times, serif;
}
.star_score {
background: url(../img/stark2.png);
width: 160px;
height: 21px;
position: relative;
}
.star_score a {
height: 21px;
display: block;
text-indent: -999em;
position: absolute;
left: 0;
}
.star_score a:hover {
background: url(../img/stars2.png);
left: 0;
}
.star_score a.clibg {
background: url(../img/stars2.png);
left: 0;
}
/*星星样式*/
.show_number {
padding-left: 50px;
padding-top: 20px;
}
.show_number li {
width: 240px;
border: 1px solid #ccc;
padding: 10px;
margin-right: 5px;
margin-bottom: 20px;
}
.atar_Show {
background: url(../img/stark2.png);
width: 160px;
height: 21px;
position: relative;
float: left;
}
.atar_Show p {
background: url(../img/stars2.png);
left: 0;
height: 21px;
width: 134px;
}
.show_number li span {
display: inline-block;
line-height: 21px;
}
/*列表*/
.spread-list > li {
line-height: .9rem;
font-size: .28rem;
border-bottom: 1px solid #d8d7d9;
}
.spread-list > li a {
display: block;
}
.spread-list .icon-gengduo {
float: right;
}
.spread-level1 {
padding: 0 .28rem;
color: #00a2ff;
}
.spread-level2 {
display: none;
padding: 0 .28rem;
background: #f4f4f4;
}
.spread-level2 > li {
position: relative;
height: .8rem;
line-height: .8rem;
border-bottom: 1px solid #d8d7d9;
}
.spread-level2 > li .iconfont {
float: right;
color: #ffae00;
}
.spread-level2 > li:last-child {
border-bottom: none;
}
.spread-list > li.active .icon-gengduo {
transform: rotate(90deg);
-ms-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-o-transform: rotate(90deg);
}
.spread-list > li.active .spread-level2 {
display: block;
}
/*产品列表*/
.product-wrapper {
padding: 0 .2rem;
}
.product-wrapper li {
width: 100%;
position: relative;
padding: .2rem 0;
border-bottom: 1px solid #adadad;
overflow: hidden;
}
.product-wrapper li:last-child {
border-bottom: none;
}
.product-wrapper li .product-img {
float: left;
margin-right: .2rem;
width: 1.6rem;
height: 1.6rem;
}
.product-wrapper li .name {
font-size: .28rem;
}
.product-wrapper li .info {
margin: .3rem 0 .1rem;
color: #adadad;
}
.product-wrapper li .num {
font-size: .2rem;
}
.product-wrapper li .num span {
margin-right: .1rem;
}
.product-wrapper li .product-right {
position: absolute;
top: .6rem;
right: 0;
text-align: center;
}
/*选项卡*/
.mui-segmented-control {
width: 100%;
background: #fff;
border: none;
overflow: initial;
}
.mui-segmented-control .mui-control-item {
position: relative;
color: #adadad;
border: none;
overflow: initial;
}
.mui-segmented-control .mui-control-item.mui-active {
background: none;
border-bottom: 2px solid #00a2ff;
color: #00a2ff;
}
/*用户*/
.header-wrapper {
width: 100%;
background: url(../img/user-bg.png) no-repeat;
background-size: 100% 100%;
color: #fff;
}
.header-wrapper .header-img {
float: left;
margin-right: .3rem;
width: 1.18rem;
height: 1.18rem;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
-o-border-radius: 50%;
box-shadow: 0 0 0px 6px rgba(255, 255, 255, 0.2);
}
.header-wrapper .header-top {
position: relative;
margin: 0 .28rem;
padding-top: .9rem;
padding-bottom: .6rem;
border-bottom: 1px solid #fff;
}
.header-wrapper .header-top .msg {
position: absolute;
top: .2rem;
right: 0;
font-size: .48rem;
}
.header-wrapper .header-top .status {
display: inline-block;
margin-top: .3rem;
width: 1.2rem;
line-height: .32rem;
text-align: center;
border: 1px solid #fff;
font-size: .2rem;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-o-border-radius: 20px;
}
.header-wrapper .header-bottom {
padding: .32rem 0;
margin-right: -1px;
overflow: hidden;
}
.header-wrapper .header-bottom li {
float: left;
width: 25%;
border-right: 1px solid #fff;
text-align: center;
}
.header-wrapper .header-bottom li .color-positive {
font-size: .32rem;
}
.icon-rank {
position: absolute;
top: 0;
left: -0.44rem;
display: inline-block;
padding-top: .3rem;
width: .7rem;
height: .7rem;
background: url(../img/crown4.png) no-repeat;
background-size: 100% 100%;
color: #fff;
text-align: center;
transform: rotate(-40deg);
-ms-transform: rotate(-40deg);
-moz-transform: rotate(-40deg);
-webkit-transform: rotate(-40deg);
-o-transform: rotate(-40deg);
}
.icon-rank1 {
background-image: url(../img/crown1.png);
}
.icon-rank2 {
background-image: url(../img/crown2.png);
}
.icon-rank3 {
background-image: url(../img/crown3.png);
}
/*登录及修改密码弹出层*/
.login-popover {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
border-radius: 0;
}
.login-popover .error-tips {
margin-bottom: .4rem;
color: #f00;
text-align: left;
}
.login-popover .icon-guanbi {
position: fixed;
top: .6rem;
right: .6rem;
font-size: .4rem;
color: #dcdcdc;
}
.login-popover input {
margin-bottom: 0;
height: .8rem;
border-radius: 12px;
background: rgba(244, 244, 244, 0.3);
color: #f3eaea;
font-size: .32rem;
}
.login-popover input.password {
font-size: .6rem;
}
.login-popover .content {
margin-top: 3.4rem;
padding: 0 .6rem;
text-align: center;
}
.login-popover .content li {
position: relative;
margin-bottom: .3rem;
}
.login-popover .btn-login {
margin: 0 auto;
width: 80%;
height: .8rem;
background: #00a2ff;
color: #fff;
border-radius: 12px;
}
.content-login .btn-code {
position: absolute;
top: .1rem;
right: 8px;
width: 1.9rem;
height: .63rem;
background: #f4f4f4;
border: 1px solid #DCDCDC;
border-radius: .31rem;
color: #FFAE00;
font-size: .28rem;
}
.content-login .btn-forget {
margin-bottom: .4rem;
display: block;
text-align: right;
color: #00a2ff;
}
.forget-content ul .zbtn,
.change-content ul .zbtn {
position: absolute;
top: .1rem;
right: .1rem;
color: #ffae00;
background: #fff;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-o-border-radius: 20px;
}
.forget-content ul .zbtn.disabled,
.change-content ul .zbtn.disabled {
color: #fff;
background: #ffae00;
}
.forget-content .btn-login.disabled,
.change-content .btn-login.disabled {
color: #fff;
background: #d8d7d9;
}
.change-content .explain {
color: #f00;
text-align: right;
}
.change-content .success-tips {
display: none;
position: absolute;
top: 45%;
left: 50%;
z-index: 10;
width: 1.5rem;
height: .7rem;
line-height: .7rem;
background: #fff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
}
/*滑动解锁*/
.stage {
margin-top: .4rem;
position: relative;
height: .6rem;
border-radius: 5px;
overflow: hidden;
}
.slider {
position: absolute;
width: 100%;
height: .6rem;
box-shadow: 0 0 3px #999;
background-color: #ffae00;
left: 0;
}
.label {
background: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(0.4, #fff), color-stop(0.5, #a4a4ad), color-stop(0.6, #fff), color-stop(1, #fff));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: slidetounlock 3s infinite;
-webkit-text-size-adjust: none;
line-height: .6rem;
height: .6rem;
text-align: center;
font-size: .28rem;
width: 100%;
color: #999;
}
@keyframes slidetounlock {
0% {
background-position: -200px 0;
}
100% {
background-position: 200px 0;
}
}
@-webkit-keyframes slidetounlock {
0% {
background-position: -200px 0;
}
100% {
background-position: 200px 0;
}
}
.button {
position: absolute;
left: 0;
top: 0;
width: 1.2rem;
height: .6rem;
background-color: #fff;
transition: left 0s;
-webkit-transition: left 0s;
text-align: center;
}
.button-on {
position: absolute;
left: 0;
top: 0;
width: .6rem;
height: .6rem;
background-color: #fff;
transition: left 1s;
-webkit-transition: left .5s;
}
.track {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0;
overflow: hidden;
transition: width 0s;
-webkit-transition: width 0s;
}
.button .icon-jiantouzuoshuang- {
display: inline-block;
margin-top: .12rem;
font-size: .5rem;
color: #ffae00;
}
.track-on {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0;
overflow: hidden;
transition: width 1s;
-webkit-transition: width .5s;
}
.spinner {
width: .4rem;
height: .4rem;
position: relative;
top: .1rem;
left: 0.4rem;
display: none;
}
@-webkit-keyframes bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes bouncedelay {
0%,
80%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
40% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
.bg-green {
height: .6rem;
line-height: .6rem;
text-align: center;
font-size: 16px;
color: #fff;
background-color: #ffae00;
}
/*短信或呼叫*/
.popover-call {
width: 4.8rem;
}
.popover-call .popover-content {
padding: .3rem;
text-align: center;
}
.popover-call .tel {
font-size: .36rem;
}
.popover-call .zbtn-hollow {
color: #00a2ff;
}
.popover-call .zbtn {
float: left;
width: 50%;
height: .8rem;
line-height: .8rem;
border: 1px solid #00a2ff;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
}
.list-search-wrapper {
padding: .2rem;
background: #fff;
}
.list-search-wrapper .filtrate {
float: right;
width: 20%;
height: .7rem;
text-align: center;
line-height: .7rem;
color: #00a2ff;
}
.list-search-wrapper .mui-indexed-list-search {
margin: 0;
height: .6rem;
line-height: .6rem;
text-align: center;
}
.popover-search {
width: 80%;
height: 76%;
background: #fff;
}
.popover-search-top {
padding: .3rem;
padding-right: 0;
}
.popover-search-top .search {
width: 85%;
}
.popover-search-top input {
font-size: .2rem;
background: #f4f4f4;
border: none;
text-align: left;
}
.popover-search-top .zbtn {
width: 13%;
color: #adadad;
}
.popover-search-wrapper {
padding: 0 .2rem;
}
.popover-search-wrapper .title {
padding: .1rem;
font-size: .22rem;
color: #adadad;
}
.popover-search-wrapper .zbtn {
background: #d8d7d9;
color: #313131;
width: auto;
padding: 0 .2rem;
}
.popover-search-wrapper img {
width: 100%;
}
.popover-search-wrapper .mui-scroll-wrapper {
top: 1.3rem;
}
.hide {
display: none;
} | 0.385953 | 0.066418 |
html {
overflow-y: scroll;
}
body {
padding-top: 50px;
font-family: 'Source Sans Pro', 'Helvetica', sans-serif;
font-size: 16px;
background-color: white;
}
section {
overflow: auto;
}
textarea {
resize: vertical;
}
td {
padding-right: 30px;
}
textarea.form-control {
height: 200px !important;
}
.alert {
margin-top: 10px;
}
.form-checkbox {
margin-top: 10px !important;
box-shadow: none;
-webkit-box-shadow: none;
}
.form-register .form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*intro styles section*/
header.intro {
background-color: salmon;
background-image: url('images/landbg.jpg');
max-width: 100%;
}
/* list row */
.title {
//color: DimGray;
font-size: 17px;
margin-bottom: 0;
margin-top: 0;
}
.contact {
color: DarkGray;
}
#contact-btn {
font-size: 15px;
background-color: limegreen;
border-color: limegreen;
opacity: 0.75;
margin-bottom: 15px;
}
.farm-image {
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
width: 90% ;
margin-top: 25px;
}
ul.info {
list-style-type: none;
padding-left: 0px;
color: #aaa;
margin-bottom: 0;
font-size: 15px;
}
ul.info > li {
}
.parcel-listing:hover {
background-color: #f3f8fd;
//max-width: 457px;
//margin-left: 15px;
}
ul.info-icons{
padding: 0;
margin-top: 15px;
list-style: none;
}
ul.info-icons > li {
display: inline;
}
ul.info-icons > li > img {
margin: 0px 5px;
}
/* Add land form style */
.parcel-submit {
height: 65px;
padding-top: 10px;
}
.parcel-submit .btn {
margin-right: 10px;
}
.parcel-submit .btn-submit {
background-color: limegreen;
border: 1px solid limegreen;
color: white;
}
.parcel-submit .btn-cancel {
border: 1px solid #69579c;
color: #69579c;
}
.form-control::-webkit-input-placeholder, .form-control:-moz-placeholder, .form-control::-moz-placeholder, .form-control:-ms-input-placeholder {
color: #ccc;
}
#draw-tool-img {
max-width: 18px;
}
.text-green {
color: green;
}
.nowrap {
white-space: nowrap;
}
.highlighted {
background-color: #ffffc6;
}
/* Farmland Details */
#farmland-details-back-btn {
margin-left: -40px;
margin-top: 19px;
font-size: 24px;
background-color: white;
color: limegreen;
}
#farm-details-address {
margin-top: -62px;
font-size: 18px;
}
#farm-details-acreage {
font-size: 24px;
}
#farm-details-cost {
font-size: 18px;
}
#farmland-details-links {
margin-bottom: 10px;
}
.farmland-details.container {
margin-top: 30px;
}
.gray {
color: #aaa;
}
.green {
color: green;
}
/* Natasha added these clunky styles. */
h2 {
font-size: 24px;
font-weight: bold;
margin-top: 3px;
margin-bottom: 4px;
}
.parcel-listing {
padding: 30px 25px;
border-bottom: 1px solid #eee;
}
.page-header {
font-size: 24px;
font-weight: bold;
border-bottom: 1px solid #eee;
margin-top: 30px;}
.required {
color: #d6373d;}
.form-horizontal .control-label {
text-align: left;}
label {
font-weight: normal;}
.help-block {
font-size: 14px;
color: #aaa;}
h3 {
font-size: 20px;
font-weight: bold;}
.btn-primary {
background-color: limegreen;
border: 1px solid limegreen;}
.btn-home {
width: 300px;
}
h1, .h1 {
font-size: 24px;
font-weight: bold;}
a {
color: limegreen;
text-decoration: none;
}
.has-water label {
margin-top: 5px;
margin-bottom: 20px;}
.control-label .help-block {
margin-top:-5px;}
.form-group.water-meter { margin-top: -25px;
margin-left: 26px;}
.btn-danger {
border: 1px solid tomato;
background-color: white;
color: tomato;
}
.btn-danger:hover, .btn-danger:focus {
border: 1px solid tomato;
outline: 0px none;
color: white;
background-color: tomato;
}
.value-props {margin-top: 40px;}
.value-props img {margin-bottom: 25px;}
.value-props p {font-size: 16px;}
.value-props h4 {margin-bottom: 15px;}
footer .logos{
list-style-type: none;
margin: 0px auto;
}
footer .logos li {
display: inline;
padding: 0px 15px;
}
.leaflet-angular-map {
height: 565px;
width: 100%;
margin-top: 20px;} | farmsList/static/css/style.css |
html {
overflow-y: scroll;
}
body {
padding-top: 50px;
font-family: 'Source Sans Pro', 'Helvetica', sans-serif;
font-size: 16px;
background-color: white;
}
section {
overflow: auto;
}
textarea {
resize: vertical;
}
td {
padding-right: 30px;
}
textarea.form-control {
height: 200px !important;
}
.alert {
margin-top: 10px;
}
.form-checkbox {
margin-top: 10px !important;
box-shadow: none;
-webkit-box-shadow: none;
}
.form-register .form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*intro styles section*/
header.intro {
background-color: salmon;
background-image: url('images/landbg.jpg');
max-width: 100%;
}
/* list row */
.title {
//color: DimGray;
font-size: 17px;
margin-bottom: 0;
margin-top: 0;
}
.contact {
color: DarkGray;
}
#contact-btn {
font-size: 15px;
background-color: limegreen;
border-color: limegreen;
opacity: 0.75;
margin-bottom: 15px;
}
.farm-image {
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
width: 90% ;
margin-top: 25px;
}
ul.info {
list-style-type: none;
padding-left: 0px;
color: #aaa;
margin-bottom: 0;
font-size: 15px;
}
ul.info > li {
}
.parcel-listing:hover {
background-color: #f3f8fd;
//max-width: 457px;
//margin-left: 15px;
}
ul.info-icons{
padding: 0;
margin-top: 15px;
list-style: none;
}
ul.info-icons > li {
display: inline;
}
ul.info-icons > li > img {
margin: 0px 5px;
}
/* Add land form style */
.parcel-submit {
height: 65px;
padding-top: 10px;
}
.parcel-submit .btn {
margin-right: 10px;
}
.parcel-submit .btn-submit {
background-color: limegreen;
border: 1px solid limegreen;
color: white;
}
.parcel-submit .btn-cancel {
border: 1px solid #69579c;
color: #69579c;
}
.form-control::-webkit-input-placeholder, .form-control:-moz-placeholder, .form-control::-moz-placeholder, .form-control:-ms-input-placeholder {
color: #ccc;
}
#draw-tool-img {
max-width: 18px;
}
.text-green {
color: green;
}
.nowrap {
white-space: nowrap;
}
.highlighted {
background-color: #ffffc6;
}
/* Farmland Details */
#farmland-details-back-btn {
margin-left: -40px;
margin-top: 19px;
font-size: 24px;
background-color: white;
color: limegreen;
}
#farm-details-address {
margin-top: -62px;
font-size: 18px;
}
#farm-details-acreage {
font-size: 24px;
}
#farm-details-cost {
font-size: 18px;
}
#farmland-details-links {
margin-bottom: 10px;
}
.farmland-details.container {
margin-top: 30px;
}
.gray {
color: #aaa;
}
.green {
color: green;
}
/* Natasha added these clunky styles. */
h2 {
font-size: 24px;
font-weight: bold;
margin-top: 3px;
margin-bottom: 4px;
}
.parcel-listing {
padding: 30px 25px;
border-bottom: 1px solid #eee;
}
.page-header {
font-size: 24px;
font-weight: bold;
border-bottom: 1px solid #eee;
margin-top: 30px;}
.required {
color: #d6373d;}
.form-horizontal .control-label {
text-align: left;}
label {
font-weight: normal;}
.help-block {
font-size: 14px;
color: #aaa;}
h3 {
font-size: 20px;
font-weight: bold;}
.btn-primary {
background-color: limegreen;
border: 1px solid limegreen;}
.btn-home {
width: 300px;
}
h1, .h1 {
font-size: 24px;
font-weight: bold;}
a {
color: limegreen;
text-decoration: none;
}
.has-water label {
margin-top: 5px;
margin-bottom: 20px;}
.control-label .help-block {
margin-top:-5px;}
.form-group.water-meter { margin-top: -25px;
margin-left: 26px;}
.btn-danger {
border: 1px solid tomato;
background-color: white;
color: tomato;
}
.btn-danger:hover, .btn-danger:focus {
border: 1px solid tomato;
outline: 0px none;
color: white;
background-color: tomato;
}
.value-props {margin-top: 40px;}
.value-props img {margin-bottom: 25px;}
.value-props p {font-size: 16px;}
.value-props h4 {margin-bottom: 15px;}
footer .logos{
list-style-type: none;
margin: 0px auto;
}
footer .logos li {
display: inline;
padding: 0px 15px;
}
.leaflet-angular-map {
height: 565px;
width: 100%;
margin-top: 20px;} | 0.330903 | 0.057573 |
.content{
position: relative;
width: 100%;
}
.mainImg{
position: relative;
width: 100%;
height: 522px;
background-image: url('../image/yuanquyewu.jpg');
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
}
.littleIcon{
position: absolute;
text-align: center;
margin-left: -15px;
left: 50%;
top: 115px;
width: 30px;
height: 30px;
line-height: 30px;
font-weight: 700;
font-style: italic;
color: #fff;
background-image: url('http://d2v8ggac1o0f6z.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务主页/u458.png?token=813ba<PASSWORD>');
background-repeat: no-repeat;
}
.MainTitle{
margin-top: 218px;
font-weight: 700;
font-style: normal;
font-size: 36px;
color: #FFFFFF;
text-align: center;
}
.subtitle{
text-align: center;
margin-top: 20px;
font-size:14px ;
}
.button {
position: absolute;
margin-left: -120px;
width: 240px;
height: 68px;
line-height: 68px;
left: 50%;
top: -36px;
font-size: 13px;
color: #fff;
background-color: #8BABD1;
text-align: center;
cursor: pointer;
border-radius: 5px;
}
.button:hover {
background-color: #7096C5;
}
.more{
position: relative;
width: 100%;
height: 646px;
background-color: #EFF1F0;
}
.more h3{
padding-top: 10px;
margin: 0 auto;
height: 100px;
line-height: 100px;
font-size: 20px;
text-align: center;
}
.more p{
margin: 0 auto;
width: 750px;
text-align: center;
}
.more ul{
margin: 0 auto;
width: 900px;
overflow: hidden;
}
.more ul li{
position: relative;
float: left;
width: 300px;
height: 100%;
overflow: hidden;
}
.tip{
margin-top: 30px;
font-size: 16px;
text-align: center;
}
.icon{
margin: 10px auto 0;
width: 80px;
height:80px;
line-height: 80px;
background: url('http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1800.png?token=79b37c1ef5daeb1a2c0699022ec5637c') no-repeat;
overflow: hidden;
}
.more ul li:nth-child(1) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1802.png?token=<PASSWORD>") no-repeat;
background-size: contain ;
}
.more ul li:nth-child(2) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468<PASSWORD>d.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1802.png?token=<PASSWORD>") no-repeat;
background-size: contain ;
}
.more ul li:nth-child(2):before,.more ul li:nth-child(3):before{
position: absolute;
content: "";
top: 0;
left: 0;
width: 1px;
height: 287px;
background-color: #E5E6E5;
}
.more ul li:nth-child(3) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1806.png?token=<PASSWORD>") no-repeat;
background-size: contain;
}
.description{
margin: 0 auto;
width: 204px;
text-align: center;
}
.description p{
font-size: 13px;
width: 160px;
text-align: center;
}
.price{
height:30px;
line-height: 30px;
font-weight: bold;
font-size: 12px;
}
.littleButton{
margin: 15px auto;
width: 155px;
height: 46px;
line-height: 46px;
color:#00CCFF ;
border: 1px solid #00CCFF;
border-radius: 23px;
background-color: #fff;
cursor: pointer;
}
.select{
color: #fff;
background-color:#00CCFF;
} | files/css/enterpriseDiagnosis.css | .content{
position: relative;
width: 100%;
}
.mainImg{
position: relative;
width: 100%;
height: 522px;
background-image: url('../image/yuanquyewu.jpg');
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
}
.littleIcon{
position: absolute;
text-align: center;
margin-left: -15px;
left: 50%;
top: 115px;
width: 30px;
height: 30px;
line-height: 30px;
font-weight: 700;
font-style: italic;
color: #fff;
background-image: url('http://d2v8ggac1o0f6z.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务主页/u458.png?token=813ba<PASSWORD>');
background-repeat: no-repeat;
}
.MainTitle{
margin-top: 218px;
font-weight: 700;
font-style: normal;
font-size: 36px;
color: #FFFFFF;
text-align: center;
}
.subtitle{
text-align: center;
margin-top: 20px;
font-size:14px ;
}
.button {
position: absolute;
margin-left: -120px;
width: 240px;
height: 68px;
line-height: 68px;
left: 50%;
top: -36px;
font-size: 13px;
color: #fff;
background-color: #8BABD1;
text-align: center;
cursor: pointer;
border-radius: 5px;
}
.button:hover {
background-color: #7096C5;
}
.more{
position: relative;
width: 100%;
height: 646px;
background-color: #EFF1F0;
}
.more h3{
padding-top: 10px;
margin: 0 auto;
height: 100px;
line-height: 100px;
font-size: 20px;
text-align: center;
}
.more p{
margin: 0 auto;
width: 750px;
text-align: center;
}
.more ul{
margin: 0 auto;
width: 900px;
overflow: hidden;
}
.more ul li{
position: relative;
float: left;
width: 300px;
height: 100%;
overflow: hidden;
}
.tip{
margin-top: 30px;
font-size: 16px;
text-align: center;
}
.icon{
margin: 10px auto 0;
width: 80px;
height:80px;
line-height: 80px;
background: url('http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1800.png?token=79b37c1ef5daeb1a2c0699022ec5637c') no-repeat;
overflow: hidden;
}
.more ul li:nth-child(1) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1802.png?token=<PASSWORD>") no-repeat;
background-size: contain ;
}
.more ul li:nth-child(2) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468<PASSWORD>d.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1802.png?token=<PASSWORD>") no-repeat;
background-size: contain ;
}
.more ul li:nth-child(2):before,.more ul li:nth-child(3):before{
position: absolute;
content: "";
top: 0;
left: 0;
width: 1px;
height: 287px;
background-color: #E5E6E5;
}
.more ul li:nth-child(3) .icon div{
margin: 31px auto;
width:21px;
height: 21px;
background: url("http://dxlfb468n8ekd.cloudfront.net/gsc/ZLPBY6/5e/11/87/5e11877aed7d472081074fcd1b25807a/images/业务二级分类页/u1806.png?token=<PASSWORD>") no-repeat;
background-size: contain;
}
.description{
margin: 0 auto;
width: 204px;
text-align: center;
}
.description p{
font-size: 13px;
width: 160px;
text-align: center;
}
.price{
height:30px;
line-height: 30px;
font-weight: bold;
font-size: 12px;
}
.littleButton{
margin: 15px auto;
width: 155px;
height: 46px;
line-height: 46px;
color:#00CCFF ;
border: 1px solid #00CCFF;
border-radius: 23px;
background-color: #fff;
cursor: pointer;
}
.select{
color: #fff;
background-color:#00CCFF;
} | 0.403567 | 0.078678 |
@import url('https://fonts.googleapis.com/css?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Mali&display=swap');
@import url('https://fonts.googleapis.com/css?family=DM+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
font-family: 'Inconsolata', monospace;
}
a {
text-decoration: none;
color: #fafafa;
}
body {
background: #FAFAFA;
overflow-x: hidden;
}
/* NAV STYLING */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 1;
}
nav ul li {
position: relative;
color: #ffffff;
text-decoration: none;
padding: 20px 20px;
display: inline-block;
font-size: 1.6em;
margin-top: 7px;
}
nav #outer-nav-ul .logo span {
position: relative;
color: #000000;
text-decoration: none;
padding: 15px 20px;
display: inline-block;
font-size: 2.5em;
font-weight: 900;
font-family: 'Mali', cursive;
-webkit-user-select: none;
/* Chrome all / Safari all */
-moz-user-select: none;
/* Firefox all */
-ms-user-select: none;
/* IE 10+ */
user-select: none;
/* Likely future */
}
nav ul li a {
text-decoration: none;
list-style: none;
color: #272727;
font-weight: 600;
}
nav ul li a:hover {
color: #7a7a7a;
transition: 0.2s ease;
}
#outer-nav-ul {
display: flex;
flex-direction: row;
justify-content: space-around;
height: 90px;
}
.black {
background: rgba(19, 19, 19, 0.8);
}
.first a:hover {
color: #8d8d8d;
}
/* NAV STYLING ENDS */
/* RESPONSIVE NAVBAR */
.nav {
z-index: 5;
display: flex;
justify-content: center;
}
.nav-tgl {
display: inline-block;
cursor: pointer;
position: fixed;
z-index: 100;
right: 5px;
top: 5px;
width: 70px;
height: 70px;
border: none;
border-radius: 25%;
padding: 0;
line-height: 0.6;
text-align: center;
}
.nav-tgl>span {
display: inline-block;
position: relative;
height: 2px;
width: 34px;
border-radius: 1px;
background: #293335;
vertical-align: middle;
}
.nav-tgl>span:before,
.nav-tgl>span:after {
display: inline-block;
position: absolute;
content: "";
height: 2px;
border-radius: 1px;
background: #293335;
transition: all 200ms;
}
.nav-tgl>span:before {
top: -11px;
left: 3px;
width: 28px;
}
.nav-tgl>span:after {
top: 11px;
left: 6px;
width: 22px;
}
.nav-tgl:focus {
outline: none;
}
.nav-tgl:hover>span:after,
.nav-tgl:hover>span:before {
width: 34px;
left: 0;
}
.nav:before {
display: block;
position: fixed;
top: 0;
left: 0;
content: '';
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.9);
transition: all 500ms ease-in-out;
clip-path: circle(30px at calc(100% - 75px) 40px);
visibility: hidden;
}
.menu.active .nav:before {
visibility: visible;
clip-path: circle(100%);
}
.menu.active .nav-tgl>span {
height: 0;
}
.menu.active .nav-tgl>span:after,
.menu.active .nav-tgl>span:before {
top: 0px;
left: 0;
width: 34px;
}
.menu.active .nav-tgl>span:after {
transform: rotate(-45deg);
}
.menu.active .nav-tgl>span:before {
transform: rotate(45deg);
}
.menu {
display: none;
}
.responsive-li-none {
display: none;
}
.list {
position: relative;
color: rgb(212, 212, 212);
text-decoration: none;
padding: 20px 20px;
font-size: 1.6em;
margin-top: 7px;
visibility: hidden;
list-style: none;
}
.list:hover {
color: #7a7a7a;
}
.visible {
visibility: visible;
}
@media only screen and (max-width: 1120px) {
#menu-stuff ul li {
display: none;
}
#outer-nav-ul {
justify-content: center;
}
.menu {
display: block;
}
}
.responsive-ul {
position: fixed;
margin-top: 20%;
}
.white {
color: #fafafa !important;
}
@media only screen and (max-width: 500px) {
nav #outer-nav-ul .logo span {
font-size: 2em;
}
#outer-nav-ul {
justify-content: left;
}
}
@media only screen and (max-width: 350px) {
nav #outer-nav-ul .logo span {
font-size: 1.6em;
margin-top: 10px;
}
}
.nav > *{
z-index: 6000;
}
/* RESPOSNSIVE NAVBAR ENDS */
/* FIRST PAGE CSS */
#first-page {
width: 100%;
min-height: 100vh;
background: #C9D6FF;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #E2E2E2, #C9D6FF);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
.placeholder-for-nav {
height: 200px;
}
.first-page-left-section p {
font-size: 2em;
text-align: center;
font-family: 'DM Sans', sans-serif;
padding: 20px;
}
.sections {
min-height: 350px;
display: flex;
justify-content: center;
}
.section {
width: 400px;
height: 350px;
margin: 15px;
text-align: center;
}
.section h3 {
margin-top: 20px;
font-size: 2em;
display: block;
}
.section p {
margin-top: 40px;
font-family: 'Nunito', sans-serif;
font-size: 1.2em;
}
#first-page h2 {
text-align: center;
margin-top: 5%;
padding: 20px;
font-family: 'Poppins', sans-serif;
}
@media only screen and (max-width: 1210px) {
.sections {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 465px) {
.section h3 {
font-size: 1.5em;
}
.section p {
margin-top: 40px;
font-family: 'Nunito', sans-serif;
font-size: 0.8em;
display: inline-block;
width: 250px;
}
}
/* SECOND PAGE CSS */
#second-page {
width: 100%;
min-height: 100vh;
background: #8e9eab;
/* fallback for old browsers */
background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #eef2f3, #8e9eab);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
#second-page h2{
text-align: center;
margin-bottom: 40px;
font-size: 4em;
}
.two-founders {
position: relative;
display: flex;
width: 100%;
min-height: 400px;
justify-content: space-around;
overflow: visible;
}
.founder {
width: 600px;
text-align: center;
}
.founder h3 {
padding: 20px;
font-size: 2em;
}
.founder p {
margin-top: 20px;
padding: 20px;
font-family: 'Libre Baskerville', serif;
}
.veli p{
font-family: 'Libre Baskerville', serif;
font-size: 18px;
}
@media only screen and (max-width: 1000px) {
.two-founders{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
.veli{
text-align: center;
}
.veli h3{
font-size: 2em;
}
.veli p{
padding: 40px;
}
@media only screen and (max-width: 630px) {
.founder p{
width: 450px;
}
.founder{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 510px) {
.founder p{
width: 350px;
}
#second-page h2{
font-size: 3em;
}
}
@media only screen and (max-width: 390px) {
.founder p{
width: 250px;
}
#second-page h2{
font-size: 2.5em;
}
.veli h3{
font-size: 1.5em;
}
}
/* THIRD PAGE CSS */
#third-page {
width: 100%;
min-height: 100vh;
background: #abbaab; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #ffffff, #abbaab); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #ffffff, #abbaab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
.services{
display: flex;
justify-content: space-around;
width: 100%;
margin-top: 20px;
}
.service{
text-align: center;
}
.service h2{
font-size: 2em;
color: rgb(0, 0, 0);
padding: 20px;
}
.service p{
font-family: 'Libre Baskerville', serif;
padding: 40px;
}
.all-services{
display: flex;
justify-content: space-around;
width: 50%;
height: 100%;
}
#third-page h1{
text-align: center;
font-size: 3em;
padding: 40px;
}
@media only screen and (max-width: 850px){
.all-services{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 410px) {
#third-page h1{
font-size: 2em;
}
}
/* FORTH PAGE CSS */
#forth-page {
width: 100%;
min-height: 100vh;
background: #757F9A; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #D7DDE8, #757F9A); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #D7DDE8, #757F9A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
#forth-page .placeholder-for-nav{
height: 120px;
}
.kayit{
width: 100%;
height: 60%;
text-align: center;
}
.kayit h2{
font-size: 3em;
}
.kayit ul{
margin-top: 60px;
}
.kayit ul li{
margin-top: 20px;
padding: 10px;
font-size: 1.2em;
font-weight: 600;
font-family: 'Libre Baskerville', serif;
}
.reminder p{
font-family: 'Libre Baskerville', serif;
padding: 20px;
font-size: 1.2em;
}
.reminder h2{
font-size: 2em;
margin-top: 80px;
}
/* FIFTH PAGE CSS */
#fifth-page {
width: 100%;
background-color: rgb(240, 170, 170);
background-repeat: no-repeat;
background-attachment: fixed;
}
#fifth-page .placeholder-for-nav{
display: none;
}
.footer-distributed{
background: #666;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 16px sans-serif;
padding: 55px 50px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
.footer-distributed .footer-left{
width: 40%;
}
.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Open Sans', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: lightseagreen;
}
.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
}
.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
font-weight:400;
text-decoration: none;
color: inherit;
}
.footer-distributed .footer-company-name{
color: #222;
font-size: 16px;
font-weight: 900;
margin: 0;
}
.footer-distributed .footer-center{
width: 35%;
}
.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
font-weight:400;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a{
color: lightseagreen;
text-decoration: none;;
}
.footer-distributed .footer-links a:before {
content: "|";
font-weight:300;
font-size: 20px;
left: 0;
color: #fff;
display: inline-block;
padding-right: 5px;
}
.footer-distributed .footer-links .link-1:before {
content: none;
}
.footer-distributed .footer-right{
width: 20%;
}
.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 13px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons{
margin-top: 25px;
}
.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
background-color: #33383b;
border-radius: 2px;
font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;
margin-right: 3px;
margin-bottom: 5px;
}
@media (max-width: 880px) {
.footer-distributed{
font: bold 14px sans-serif;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
margin-bottom: 40px;
text-align: center;
}
.footer-distributed .footer-center i{
margin-left: 0;
}
}
#fifth-page > *{
font-family: Open Sans;
}
#made-by{
background: #666666;
width: 100%;
text-align: center;
color: #fafafa;
} | stylesheet.css | @import url('https://fonts.googleapis.com/css?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Mali&display=swap');
@import url('https://fonts.googleapis.com/css?family=DM+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
font-family: 'Inconsolata', monospace;
}
a {
text-decoration: none;
color: #fafafa;
}
body {
background: #FAFAFA;
overflow-x: hidden;
}
/* NAV STYLING */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 1;
}
nav ul li {
position: relative;
color: #ffffff;
text-decoration: none;
padding: 20px 20px;
display: inline-block;
font-size: 1.6em;
margin-top: 7px;
}
nav #outer-nav-ul .logo span {
position: relative;
color: #000000;
text-decoration: none;
padding: 15px 20px;
display: inline-block;
font-size: 2.5em;
font-weight: 900;
font-family: 'Mali', cursive;
-webkit-user-select: none;
/* Chrome all / Safari all */
-moz-user-select: none;
/* Firefox all */
-ms-user-select: none;
/* IE 10+ */
user-select: none;
/* Likely future */
}
nav ul li a {
text-decoration: none;
list-style: none;
color: #272727;
font-weight: 600;
}
nav ul li a:hover {
color: #7a7a7a;
transition: 0.2s ease;
}
#outer-nav-ul {
display: flex;
flex-direction: row;
justify-content: space-around;
height: 90px;
}
.black {
background: rgba(19, 19, 19, 0.8);
}
.first a:hover {
color: #8d8d8d;
}
/* NAV STYLING ENDS */
/* RESPONSIVE NAVBAR */
.nav {
z-index: 5;
display: flex;
justify-content: center;
}
.nav-tgl {
display: inline-block;
cursor: pointer;
position: fixed;
z-index: 100;
right: 5px;
top: 5px;
width: 70px;
height: 70px;
border: none;
border-radius: 25%;
padding: 0;
line-height: 0.6;
text-align: center;
}
.nav-tgl>span {
display: inline-block;
position: relative;
height: 2px;
width: 34px;
border-radius: 1px;
background: #293335;
vertical-align: middle;
}
.nav-tgl>span:before,
.nav-tgl>span:after {
display: inline-block;
position: absolute;
content: "";
height: 2px;
border-radius: 1px;
background: #293335;
transition: all 200ms;
}
.nav-tgl>span:before {
top: -11px;
left: 3px;
width: 28px;
}
.nav-tgl>span:after {
top: 11px;
left: 6px;
width: 22px;
}
.nav-tgl:focus {
outline: none;
}
.nav-tgl:hover>span:after,
.nav-tgl:hover>span:before {
width: 34px;
left: 0;
}
.nav:before {
display: block;
position: fixed;
top: 0;
left: 0;
content: '';
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.9);
transition: all 500ms ease-in-out;
clip-path: circle(30px at calc(100% - 75px) 40px);
visibility: hidden;
}
.menu.active .nav:before {
visibility: visible;
clip-path: circle(100%);
}
.menu.active .nav-tgl>span {
height: 0;
}
.menu.active .nav-tgl>span:after,
.menu.active .nav-tgl>span:before {
top: 0px;
left: 0;
width: 34px;
}
.menu.active .nav-tgl>span:after {
transform: rotate(-45deg);
}
.menu.active .nav-tgl>span:before {
transform: rotate(45deg);
}
.menu {
display: none;
}
.responsive-li-none {
display: none;
}
.list {
position: relative;
color: rgb(212, 212, 212);
text-decoration: none;
padding: 20px 20px;
font-size: 1.6em;
margin-top: 7px;
visibility: hidden;
list-style: none;
}
.list:hover {
color: #7a7a7a;
}
.visible {
visibility: visible;
}
@media only screen and (max-width: 1120px) {
#menu-stuff ul li {
display: none;
}
#outer-nav-ul {
justify-content: center;
}
.menu {
display: block;
}
}
.responsive-ul {
position: fixed;
margin-top: 20%;
}
.white {
color: #fafafa !important;
}
@media only screen and (max-width: 500px) {
nav #outer-nav-ul .logo span {
font-size: 2em;
}
#outer-nav-ul {
justify-content: left;
}
}
@media only screen and (max-width: 350px) {
nav #outer-nav-ul .logo span {
font-size: 1.6em;
margin-top: 10px;
}
}
.nav > *{
z-index: 6000;
}
/* RESPOSNSIVE NAVBAR ENDS */
/* FIRST PAGE CSS */
#first-page {
width: 100%;
min-height: 100vh;
background: #C9D6FF;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #E2E2E2, #C9D6FF);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
.placeholder-for-nav {
height: 200px;
}
.first-page-left-section p {
font-size: 2em;
text-align: center;
font-family: 'DM Sans', sans-serif;
padding: 20px;
}
.sections {
min-height: 350px;
display: flex;
justify-content: center;
}
.section {
width: 400px;
height: 350px;
margin: 15px;
text-align: center;
}
.section h3 {
margin-top: 20px;
font-size: 2em;
display: block;
}
.section p {
margin-top: 40px;
font-family: 'Nunito', sans-serif;
font-size: 1.2em;
}
#first-page h2 {
text-align: center;
margin-top: 5%;
padding: 20px;
font-family: 'Poppins', sans-serif;
}
@media only screen and (max-width: 1210px) {
.sections {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 465px) {
.section h3 {
font-size: 1.5em;
}
.section p {
margin-top: 40px;
font-family: 'Nunito', sans-serif;
font-size: 0.8em;
display: inline-block;
width: 250px;
}
}
/* SECOND PAGE CSS */
#second-page {
width: 100%;
min-height: 100vh;
background: #8e9eab;
/* fallback for old browsers */
background: -webkit-linear-gradient(to top, #eef2f3, #8e9eab);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #eef2f3, #8e9eab);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
#second-page h2{
text-align: center;
margin-bottom: 40px;
font-size: 4em;
}
.two-founders {
position: relative;
display: flex;
width: 100%;
min-height: 400px;
justify-content: space-around;
overflow: visible;
}
.founder {
width: 600px;
text-align: center;
}
.founder h3 {
padding: 20px;
font-size: 2em;
}
.founder p {
margin-top: 20px;
padding: 20px;
font-family: 'Libre Baskerville', serif;
}
.veli p{
font-family: 'Libre Baskerville', serif;
font-size: 18px;
}
@media only screen and (max-width: 1000px) {
.two-founders{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
.veli{
text-align: center;
}
.veli h3{
font-size: 2em;
}
.veli p{
padding: 40px;
}
@media only screen and (max-width: 630px) {
.founder p{
width: 450px;
}
.founder{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 510px) {
.founder p{
width: 350px;
}
#second-page h2{
font-size: 3em;
}
}
@media only screen and (max-width: 390px) {
.founder p{
width: 250px;
}
#second-page h2{
font-size: 2.5em;
}
.veli h3{
font-size: 1.5em;
}
}
/* THIRD PAGE CSS */
#third-page {
width: 100%;
min-height: 100vh;
background: #abbaab; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #ffffff, #abbaab); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #ffffff, #abbaab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
.services{
display: flex;
justify-content: space-around;
width: 100%;
margin-top: 20px;
}
.service{
text-align: center;
}
.service h2{
font-size: 2em;
color: rgb(0, 0, 0);
padding: 20px;
}
.service p{
font-family: 'Libre Baskerville', serif;
padding: 40px;
}
.all-services{
display: flex;
justify-content: space-around;
width: 50%;
height: 100%;
}
#third-page h1{
text-align: center;
font-size: 3em;
padding: 40px;
}
@media only screen and (max-width: 850px){
.all-services{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
@media only screen and (max-width: 410px) {
#third-page h1{
font-size: 2em;
}
}
/* FORTH PAGE CSS */
#forth-page {
width: 100%;
min-height: 100vh;
background: #757F9A; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #D7DDE8, #757F9A); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #D7DDE8, #757F9A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: no-repeat;
background-attachment: fixed;
}
#forth-page .placeholder-for-nav{
height: 120px;
}
.kayit{
width: 100%;
height: 60%;
text-align: center;
}
.kayit h2{
font-size: 3em;
}
.kayit ul{
margin-top: 60px;
}
.kayit ul li{
margin-top: 20px;
padding: 10px;
font-size: 1.2em;
font-weight: 600;
font-family: 'Libre Baskerville', serif;
}
.reminder p{
font-family: 'Libre Baskerville', serif;
padding: 20px;
font-size: 1.2em;
}
.reminder h2{
font-size: 2em;
margin-top: 80px;
}
/* FIFTH PAGE CSS */
#fifth-page {
width: 100%;
background-color: rgb(240, 170, 170);
background-repeat: no-repeat;
background-attachment: fixed;
}
#fifth-page .placeholder-for-nav{
display: none;
}
.footer-distributed{
background: #666;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 16px sans-serif;
padding: 55px 50px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
.footer-distributed .footer-left{
width: 40%;
}
.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Open Sans', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: lightseagreen;
}
.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
}
.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
font-weight:400;
text-decoration: none;
color: inherit;
}
.footer-distributed .footer-company-name{
color: #222;
font-size: 16px;
font-weight: 900;
margin: 0;
}
.footer-distributed .footer-center{
width: 35%;
}
.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
font-weight:400;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a{
color: lightseagreen;
text-decoration: none;;
}
.footer-distributed .footer-links a:before {
content: "|";
font-weight:300;
font-size: 20px;
left: 0;
color: #fff;
display: inline-block;
padding-right: 5px;
}
.footer-distributed .footer-links .link-1:before {
content: none;
}
.footer-distributed .footer-right{
width: 20%;
}
.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 13px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons{
margin-top: 25px;
}
.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
background-color: #33383b;
border-radius: 2px;
font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;
margin-right: 3px;
margin-bottom: 5px;
}
@media (max-width: 880px) {
.footer-distributed{
font: bold 14px sans-serif;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
margin-bottom: 40px;
text-align: center;
}
.footer-distributed .footer-center i{
margin-left: 0;
}
}
#fifth-page > *{
font-family: Open Sans;
}
#made-by{
background: #666666;
width: 100%;
text-align: center;
color: #fafafa;
} | 0.272121 | 0.05848 |
body {
margin: 0;
padding: 0;
background:#b71c1c /* #ef9a9a */;
}
.main-nav {
display: flex;
width: 100%;
background: #e53935;
position: fixed;
justify-content: space-between;
z-index: 1;
}
.logo {
color: white;
margin-left: 30px;
cursor: pointer;
}
.nav-menu {
display: flex;
color: white;
}
.menu-icon{
margin: 15px 50px 0 0;
cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
width: 30px;
height: 4px;
background-color: white;
margin: 6px 0;
transition: 0.4s;
}
.overlay {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color:#d50000;
overflow-x: hidden;
transition: 0.5s;
opacity: .95;
}
.overlay-content {
display: flex;
text-align: center;
flex-direction: column;
height: inherit;
justify-content: center;
align-items: center;
}
.overlay a {
text-decoration: none;
font-size: 18px;
color:rgb(230, 222, 236);
display: block;
transition: 0.3s;
border-bottom: rgb(255, 255, 255, .2) 1px solid;padding-bottom: 10px;
margin-bottom: 20px;
width: 250px;
text-transform: uppercase;
font-weight: bold;
}
.overlay a:hover, .overlay a:focus {
color: #927eb3;
}
.overlay .closebtn {
position: absolute;
top: 0px;
right: 45px;
font-size: 60px;
color: #53e3fb;
cursor: pointer;
}
@media screen and (max-height: 450px) {
.overlay a {font-size: 20px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
.feature-container {
display: flex;
flex-wrap: wrap;
}
.hero-image {
padding-top: 90px;
height: 300px;
width: 100%;
background-color: #e57373;
}
.column-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.column-1 {
width: 40%;
height: 430px;
}
.column-2 {
width: 60%;
height: 430px;
}
.feature-container:nth-child(2n + 2) {
flex-direction: row-reverse;
background: #b71c1c;
}
.feature-container:nth-child(2n + 1) {
background: #d50000;
}
.feature-content {
display: flex;
color: white;
text-align: left;
align-items: center;
justify-content: center;
height: inherit;
flex-direction: column;
}
.feature-content h1 {
width: 80%;
font-size: 2.4rem;
}
.feature-content p {
width: 80%;
font-size: 1.7rem;
margin-top: 0;
padding-top: 0;
}
@media screen and (max-width: 750px) {
.column-1 {
width: 50%;
height: 430px;
}
.column-2 {
width: 50%;
height: 430px;
}
}
@media screen and (max-width: 500px) {
.feature-container {
flex-direction: column;
}
.feature-container:nth-child(2n + 2) {
background: #b71c1c;
flex-direction: column;
}
.column-1 {
width: 100%;
height: 430px;
}
.column-2 {
width: 100%;
height: 430px;
}
}
/* */
.entries-container {
display: flex;
flex-wrap: wrap;
}
.entries-container:nth-child(2n + 2) {
height: 430px;
position: relative;
display: inline-block;
}
.entry {
height: 430px;
position: relative;
display: inline-block;
width: 50%;
}
.entry:nth-child(6n + 1):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ff1744;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 2):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef5350;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 3):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ff5252;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 4):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef9a9a;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 5):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef9a9a;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 6):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #d50000;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 1):hover:before,
.entry:nth-child(6n + 2):hover:before,
.entry:nth-child(6n + 3):hover:before,
.entry:nth-child(6n + 4):hover:before,
.entry:nth-child(6n + 5):hover:before,
.entry:nth-child(6n + 6):hover:before {
opacity: 0.3;
transition: all 1s;
}
.entry-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
cursor: pointer;
}
.entry-title {
position: absolute;
text-align: left;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.5rem;
color: #ffffff;
cursor: pointer;
width: 90%;
}
@media screen and (max-width: 750px) {
.entry-title {
font-size: 1.1rem;
}
.entries-container {
flex-direction: column;
}
.entry {
width: 100%;
}
}
/* */
.profile-banner {
height: 350px;
width: 100%;
background-color: #e57373;
}
.profile-container {
width: 85%;
margin: auto auto;
display: flex;
}
.profile-image-container {
width: 200px;
margin-left: auto;
margin-right: auto;
}
.profile-image img {
margin-top: -120px;
vertical-align: top;
width: 80%;
border-radius: 50%;
border: 7px solid #b71c1c;
}
.info-section {
width: 30%;
color: white
}
.tab-section {
display: flex;
width: 70%;
flex-direction: column;
}
.tab-nav {
display: flex;
justify-content: space-around;
width: 100%;
height: 40px;
margin: 15px 0 25px 0px;
color: white
}
.tab-nav p {
margin: 0;
font-size: 20px;
cursor: pointer;
padding-left: 10px;
padding-right: 10px;
}
.tab-nav p:after {
content: "";
display: block;
width: 0;
border-bottom: 2px solid white;
transition: 0.2s;
padding-top: 15px;
}
.tab-nav-active {
border-bottom: 2px solid white;
transition: 0.2s;
padding-bottom: 0px;
}
.tab-nav p:hover:after {
width: 110%;
}
.entries-container_profile {
display: flex;
flex-wrap: wrap;
}
table,
th,
td {
border: 1px solid white;
border-collapse: collapse;
}
table {
width: 90%;
}
.user-info {
line-height: 10px;
margin: auto;
width: 50%;
}
.entry-details-container {
width: 70%;
margin: 0 auto;
padding-top: 150px;
margin-bottom: 150px;
color:white
}
.entry-details-container h1 {
font-size: 3rem;
}
.entry-details-container p {
font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
.profile-container {
flex-direction: column;
align-items: center;
}
.info-section {
width: 50%;
margin-bottom: 80px;
}
.tab-section:before {
content: "";
display: block;
width: 100%;
border-bottom: 1px solid rgb(255, 255, 255, 0.3);
transition: 0.2s;
margin-bottom: 50px;
}
.tab-section {
width: 100%;
}
}
@media screen and (max-width: 600px) {
.profile-container {
flex-direction: column;
align-items: center;
width: 86%;
}
.info-section {
width: 100%;
margin-bottom: 80px;
}
.tab-section:before {
content: "";
display: block;
width: 100%;
border-bottom: 1px solid rgb(255, 255, 255, 0.3);
transition: 0.2s;
margin-bottom: 50px;
}
.tab-section {
width: 100%;
}
.tab-nav p{
font-size: .84rem;
font-weight: bold;
}
.tab-nav p:after {
padding-top: 22px;
}
}
/* */
.form-section {
padding-top:150px;
background: #b71c1c;
margin-bottom: 150px;
}
.form-container{
width: 20%;
background-color: #c62828;
margin: 0 auto;
padding: 50px 80px 50px 50px;
}
.form-container > *{
margin: 20px 0;
}
.form-container h1 {
text-align: center;
color: white;
font-size: 2.2rem;
margin:0;
}
.register-form{
width:30%;
}
@media screen and (max-width: 750px) {
.register-form{
width: 70%;
}
.form-container{
width: 70%;
padding: 30px 80px 30px 30px;
}
}
.form-button{
display: flex;
align-content: center;
justify-content: center;
}
/* input */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
background: #d32f2f;
border: none;
border-radius: 0;
color: #ffebee;
display: block;
outline: 0;
padding: 0 1em;
text-decoration: none;
width: 100%;
font-size:1.5rem ;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select {
height: 2.0em;
}input::placeholder,
textarea::placeholder {
color: rgb(255, 255, 255, 0.4)
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
border-color: #ffebee;
box-shadow: 0 0 0 2px #ffebee;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
-moz-transition: background-color 0.2s ease-in-out,
box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
-webkit-transition: background-color 0.2s ease-in-out,
box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
color 0.2s ease-in-out;
background-color: transparent;
border: 0;
border-radius: 0;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff;
cursor: pointer;
display: inline-block;
font-size: 0.8em;
font-weight: 600;
height: 3.5em;
letter-spacing: 0.25em;
line-height: 3.5em;
padding: 0 1.75em;
text-align: center;
text-decoration: none;
text-transform: uppercase;
white-space: nowrap;
}
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="button"]:hover,
input[type="button"]:active,
button:hover,
button:active,
.button:hover,
.button:active {
box-shadow: inset 0 0 0 2px #9bf1ff;
color: #9bf1ff;
}
input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
width: 100%;
}
input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
font-size: 0.6em;
}
input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
font-size: 1.25em;
height: 3em;
line-height: 3em;
}
input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
background-color: #ffcdd2;
box-shadow: none;
color: #b71c1c;
}
input[type="submit"].primary:hover,
input[type="submit"].primary:active,
input[type="reset"].primary:hover,
input[type="reset"].primary:active,
input[type="button"].primary:hover,
input[type="button"].primary:active,
button.primary:hover,
button.primary:active,
.button.primary:hover,
.button.primary:active {
background-color: #9bf1ff;
color: #242943 !important;
}
input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
background-color: #53e3fb;
}
.footer {
background-color: #c62828;
height: 300px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
color:white
}
.footer p {
font-size: 1.2rem;
} | css/style.css | body {
margin: 0;
padding: 0;
background:#b71c1c /* #ef9a9a */;
}
.main-nav {
display: flex;
width: 100%;
background: #e53935;
position: fixed;
justify-content: space-between;
z-index: 1;
}
.logo {
color: white;
margin-left: 30px;
cursor: pointer;
}
.nav-menu {
display: flex;
color: white;
}
.menu-icon{
margin: 15px 50px 0 0;
cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
width: 30px;
height: 4px;
background-color: white;
margin: 6px 0;
transition: 0.4s;
}
.overlay {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color:#d50000;
overflow-x: hidden;
transition: 0.5s;
opacity: .95;
}
.overlay-content {
display: flex;
text-align: center;
flex-direction: column;
height: inherit;
justify-content: center;
align-items: center;
}
.overlay a {
text-decoration: none;
font-size: 18px;
color:rgb(230, 222, 236);
display: block;
transition: 0.3s;
border-bottom: rgb(255, 255, 255, .2) 1px solid;padding-bottom: 10px;
margin-bottom: 20px;
width: 250px;
text-transform: uppercase;
font-weight: bold;
}
.overlay a:hover, .overlay a:focus {
color: #927eb3;
}
.overlay .closebtn {
position: absolute;
top: 0px;
right: 45px;
font-size: 60px;
color: #53e3fb;
cursor: pointer;
}
@media screen and (max-height: 450px) {
.overlay a {font-size: 20px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
.feature-container {
display: flex;
flex-wrap: wrap;
}
.hero-image {
padding-top: 90px;
height: 300px;
width: 100%;
background-color: #e57373;
}
.column-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.column-1 {
width: 40%;
height: 430px;
}
.column-2 {
width: 60%;
height: 430px;
}
.feature-container:nth-child(2n + 2) {
flex-direction: row-reverse;
background: #b71c1c;
}
.feature-container:nth-child(2n + 1) {
background: #d50000;
}
.feature-content {
display: flex;
color: white;
text-align: left;
align-items: center;
justify-content: center;
height: inherit;
flex-direction: column;
}
.feature-content h1 {
width: 80%;
font-size: 2.4rem;
}
.feature-content p {
width: 80%;
font-size: 1.7rem;
margin-top: 0;
padding-top: 0;
}
@media screen and (max-width: 750px) {
.column-1 {
width: 50%;
height: 430px;
}
.column-2 {
width: 50%;
height: 430px;
}
}
@media screen and (max-width: 500px) {
.feature-container {
flex-direction: column;
}
.feature-container:nth-child(2n + 2) {
background: #b71c1c;
flex-direction: column;
}
.column-1 {
width: 100%;
height: 430px;
}
.column-2 {
width: 100%;
height: 430px;
}
}
/* */
.entries-container {
display: flex;
flex-wrap: wrap;
}
.entries-container:nth-child(2n + 2) {
height: 430px;
position: relative;
display: inline-block;
}
.entry {
height: 430px;
position: relative;
display: inline-block;
width: 50%;
}
.entry:nth-child(6n + 1):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ff1744;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 2):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef5350;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 3):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ff5252;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 4):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef9a9a;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 5):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ef9a9a;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 6):before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #d50000;
z-index: 0;
opacity: 0.9;
transition: all 0.8s;
cursor: pointer;
}
.entry:nth-child(6n + 1):hover:before,
.entry:nth-child(6n + 2):hover:before,
.entry:nth-child(6n + 3):hover:before,
.entry:nth-child(6n + 4):hover:before,
.entry:nth-child(6n + 5):hover:before,
.entry:nth-child(6n + 6):hover:before {
opacity: 0.3;
transition: all 1s;
}
.entry-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
cursor: pointer;
}
.entry-title {
position: absolute;
text-align: left;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.5rem;
color: #ffffff;
cursor: pointer;
width: 90%;
}
@media screen and (max-width: 750px) {
.entry-title {
font-size: 1.1rem;
}
.entries-container {
flex-direction: column;
}
.entry {
width: 100%;
}
}
/* */
.profile-banner {
height: 350px;
width: 100%;
background-color: #e57373;
}
.profile-container {
width: 85%;
margin: auto auto;
display: flex;
}
.profile-image-container {
width: 200px;
margin-left: auto;
margin-right: auto;
}
.profile-image img {
margin-top: -120px;
vertical-align: top;
width: 80%;
border-radius: 50%;
border: 7px solid #b71c1c;
}
.info-section {
width: 30%;
color: white
}
.tab-section {
display: flex;
width: 70%;
flex-direction: column;
}
.tab-nav {
display: flex;
justify-content: space-around;
width: 100%;
height: 40px;
margin: 15px 0 25px 0px;
color: white
}
.tab-nav p {
margin: 0;
font-size: 20px;
cursor: pointer;
padding-left: 10px;
padding-right: 10px;
}
.tab-nav p:after {
content: "";
display: block;
width: 0;
border-bottom: 2px solid white;
transition: 0.2s;
padding-top: 15px;
}
.tab-nav-active {
border-bottom: 2px solid white;
transition: 0.2s;
padding-bottom: 0px;
}
.tab-nav p:hover:after {
width: 110%;
}
.entries-container_profile {
display: flex;
flex-wrap: wrap;
}
table,
th,
td {
border: 1px solid white;
border-collapse: collapse;
}
table {
width: 90%;
}
.user-info {
line-height: 10px;
margin: auto;
width: 50%;
}
.entry-details-container {
width: 70%;
margin: 0 auto;
padding-top: 150px;
margin-bottom: 150px;
color:white
}
.entry-details-container h1 {
font-size: 3rem;
}
.entry-details-container p {
font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
.profile-container {
flex-direction: column;
align-items: center;
}
.info-section {
width: 50%;
margin-bottom: 80px;
}
.tab-section:before {
content: "";
display: block;
width: 100%;
border-bottom: 1px solid rgb(255, 255, 255, 0.3);
transition: 0.2s;
margin-bottom: 50px;
}
.tab-section {
width: 100%;
}
}
@media screen and (max-width: 600px) {
.profile-container {
flex-direction: column;
align-items: center;
width: 86%;
}
.info-section {
width: 100%;
margin-bottom: 80px;
}
.tab-section:before {
content: "";
display: block;
width: 100%;
border-bottom: 1px solid rgb(255, 255, 255, 0.3);
transition: 0.2s;
margin-bottom: 50px;
}
.tab-section {
width: 100%;
}
.tab-nav p{
font-size: .84rem;
font-weight: bold;
}
.tab-nav p:after {
padding-top: 22px;
}
}
/* */
.form-section {
padding-top:150px;
background: #b71c1c;
margin-bottom: 150px;
}
.form-container{
width: 20%;
background-color: #c62828;
margin: 0 auto;
padding: 50px 80px 50px 50px;
}
.form-container > *{
margin: 20px 0;
}
.form-container h1 {
text-align: center;
color: white;
font-size: 2.2rem;
margin:0;
}
.register-form{
width:30%;
}
@media screen and (max-width: 750px) {
.register-form{
width: 70%;
}
.form-container{
width: 70%;
padding: 30px 80px 30px 30px;
}
}
.form-button{
display: flex;
align-content: center;
justify-content: center;
}
/* input */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
background: #d32f2f;
border: none;
border-radius: 0;
color: #ffebee;
display: block;
outline: 0;
padding: 0 1em;
text-decoration: none;
width: 100%;
font-size:1.5rem ;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select {
height: 2.0em;
}input::placeholder,
textarea::placeholder {
color: rgb(255, 255, 255, 0.4)
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
border-color: #ffebee;
box-shadow: 0 0 0 2px #ffebee;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
-moz-transition: background-color 0.2s ease-in-out,
box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
-webkit-transition: background-color 0.2s ease-in-out,
box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
color 0.2s ease-in-out;
background-color: transparent;
border: 0;
border-radius: 0;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff;
cursor: pointer;
display: inline-block;
font-size: 0.8em;
font-weight: 600;
height: 3.5em;
letter-spacing: 0.25em;
line-height: 3.5em;
padding: 0 1.75em;
text-align: center;
text-decoration: none;
text-transform: uppercase;
white-space: nowrap;
}
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="button"]:hover,
input[type="button"]:active,
button:hover,
button:active,
.button:hover,
.button:active {
box-shadow: inset 0 0 0 2px #9bf1ff;
color: #9bf1ff;
}
input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
width: 100%;
}
input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
font-size: 0.6em;
}
input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
font-size: 1.25em;
height: 3em;
line-height: 3em;
}
input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
background-color: #ffcdd2;
box-shadow: none;
color: #b71c1c;
}
input[type="submit"].primary:hover,
input[type="submit"].primary:active,
input[type="reset"].primary:hover,
input[type="reset"].primary:active,
input[type="button"].primary:hover,
input[type="button"].primary:active,
button.primary:hover,
button.primary:active,
.button.primary:hover,
.button.primary:active {
background-color: #9bf1ff;
color: #242943 !important;
}
input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
background-color: #53e3fb;
}
.footer {
background-color: #c62828;
height: 300px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
color:white
}
.footer p {
font-size: 1.2rem;
} | 0.378 | 0.080105 |
/*==========for live chat===================*/
.top_function{ position:absolute; top:4px; right:8px; width:320px; overflow:hidden; font-size:12px;}
.top_function a:link,
.top_function a:visited{ color:#ccc; text-decoration:none; padding-right:8px;
background:url(/images/top_function.gif) right 5px no-repeat;}
.top_function a:hover{ color:#e5e5e5;}
.top_function .function_lang{ float:right; height:16px; padding-left:20px; margin-left:15px;
background:url(/images/top_function.gif) -850px -90px no-repeat;}
.top_function .function_tel{ float:right; margin-left:15px; padding-left:16px; font-family:Verdana, Arial, Helvetica, sans-serif;
background:url(/images/top_function.gif) -850px -27px no-repeat;}
.top_function .function_chat{ float:right; padding-left:13px; height:16px;
background:url(/images/top_function.gif) -850px -57px no-repeat;}
.top_function .function_chat a:link,
.top_function .function_chat a:visited{ padding-right:1px; background:none;}
/*pop up box*/
.popup_box{ position:absolute; right:30px; top:30px; z-index:1000; font-family:Verdana, Arial; display:none; background:#eeeeee; border:1px #bfbfbf solid;}
.popup_box_inside{ width:100%; overflow:hidden;}
.popup_box .btn_close{ float:right; display:inline; margin:5px 5px 0 0; width:11px; height:11px; text-indent:-999px; overflow:hidden; background:url(/images/ico_close.gif) no-repeat;}
.popup_lang{ width:128px;}
.popup_lang .popup_box_inside{ }
.popup_lang ul{ padding:10px 10px 20px 10px;}
.popup_lang ul li{ padding-left:10px; background:url(/images/top_function.gif) -850px -112px no-repeat;}
.popup_lang ul li a:link,
.popup_lang ul li a:visited{ text-decoration:none; line-height:160%;}
.popup_tel{ width:235px;}
.popup_tel .popup_box_inside{ }
.popup_tel ul{ padding:10px 10px 35px 10px;}
.popup_tel ul li{ padding-left:10px; background:url(/images/top_function.gif) -850px -112px no-repeat; color:#666; line-height:160%; font-size:11px; width:96%; overflow:hidden;}
.popup_tel ul li strong{ float:left; font-size:12px;}
.popup_tel ul li span{ float:left; margin-left:6px; white-space:nowrap;}
.popup_tel ul li span.more_tel{ clear:both; margin-left:34px;}
.popup_kefu{ width:155px;}
.popup_kefu .popup_box_inside{}
.popup_kefu { background:#eee; }
.popup_kefu ul { padding:18px 15px 5px 10px; }
.popup_kefu li { padding:4px 0 3px; margin-bottom:4px; text-indent:15px; font-size:12px; background:url(/kefu/images/icon/kefu_icon.gif) no-repeat 0 3px; }
.popup_kefu li a { text-decoration:none; color:#f60; }
.popup_kefu li a:hover { text-decoration:underline;}
.popup_kefu .online a:hover { color:#c00; }
.popup_kefu li span { color:#f60; }
.popup_kefu li.offline { background-position:0 -27px; }
.popup_kefu li.offline a { color:#666; }
.popup_kefu li.offline span { color:#999; }
/*************modify begin******************/
.login_holder{ width:481px; font-size:12px; color:#666; position:absolute; left:30%; top:20%;}
/*************modify end******************/
.login_shaodow_top,
.login_shaodow_bottom{ width:100%; height:15px; overflow:hidden;}
.login_shaodow_top{ background:url(/images/login_shadow_top.png) no-repeat;}
.login_shaodow_bottom{ background:url(/images/login_shadow_bottom.png) no-repeat;}
.login_shaodow_middle{ width:100%; overflow:hidden; background:url(/images/login_shadow_middle.png);}
.login_holder h2{ width:450px; margin:0 auto; background:#eee; text-indent:26px; font-size:14px; line-height:175%; color:#333;}
.login_holder h2.h2_login{ background:#eee url(/images/h2_login.gif) 5px 3px no-repeat;}
.login_holder h2 span{ position:relative; top:2px;}
.login_content{ width:450px; margin:20px auto 10px auto; overflow:hidden; position:relative;}
.login_form{ float:left; width:227px; background:url(/images/login_dotted.gif) top right repeat-y;}
.login_form p{ width:100%; overflow:hidden; font-family:"宋体"; margin-bottom:8px;}
.login_form p label{ float:left; width:51px; margin-right:6px; text-align:right; position:relative; top:5px; }
.login_form p input{ float:left; display:inline; width:150px; background:#fff; border:1px #abadb3 solid; padding:2px;}
.login_form p .btn_submit{ width:78px; height:22px; cursor:hand;cursor:pointer; background:url(/images/btn_sure.gif); border:0; margin-left:59px;}
.login_intro{ float:left; width:195px; margin-left:15px;text-align:left;}
.login_intro p{ line-height:170%; color:#999; text-indent:26px;}
.login_intro a:link,
.login_intro a:visited{ font-weight:bold; padding:0 4px; text-decoration:none; color:#999;}
.pop_close1{ position:absolute; width:11px; height:11px; right:20px; top:20px; text-indent:-9999px;
overflow:hidden; background:url(/images/ico_close.gif); z-index:1000}
/*==============common over================*/
/*pop login panel*/
.login_info p label.label_for_checkbox{ _top:-1px;}
.login_info p select{ _position:relative; _left:-3px;}
.login_shaodow_top{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_top.png");}
.login_shaodow_bottom{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_bottom.png");}
.login_shaodow_middle{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_middle.png");}
.SuggestFramework_List
{
border: 1px solid #CCCCCC;
border-top: 0px;
background:#fff;
top:60px !important;
transition: all 0.5s ease-out;
}
.SuggestFramework_Heading
{
padding: 0px 1px 0px 1px;
background-color: #CCCCCC;
color: #FFFFFF;
font-weight: bold;
}
.SuggestFramework_Highlighted
{
line-height:160%;
text-indent:3px;
background-color: Highlight;
color:#fff;
font-size:13px;
padding-left: 20px;
}
.SuggestFramework_Normal
{
line-height:160%;
text-indent:3px;
background-color: #FFFFFF;
color: #000000;
font-size:13px;
padding-left: 20px;
} | WWW/PocketFIlm/Album/src/main/resources/static/css/float.css | /*==========for live chat===================*/
.top_function{ position:absolute; top:4px; right:8px; width:320px; overflow:hidden; font-size:12px;}
.top_function a:link,
.top_function a:visited{ color:#ccc; text-decoration:none; padding-right:8px;
background:url(/images/top_function.gif) right 5px no-repeat;}
.top_function a:hover{ color:#e5e5e5;}
.top_function .function_lang{ float:right; height:16px; padding-left:20px; margin-left:15px;
background:url(/images/top_function.gif) -850px -90px no-repeat;}
.top_function .function_tel{ float:right; margin-left:15px; padding-left:16px; font-family:Verdana, Arial, Helvetica, sans-serif;
background:url(/images/top_function.gif) -850px -27px no-repeat;}
.top_function .function_chat{ float:right; padding-left:13px; height:16px;
background:url(/images/top_function.gif) -850px -57px no-repeat;}
.top_function .function_chat a:link,
.top_function .function_chat a:visited{ padding-right:1px; background:none;}
/*pop up box*/
.popup_box{ position:absolute; right:30px; top:30px; z-index:1000; font-family:Verdana, Arial; display:none; background:#eeeeee; border:1px #bfbfbf solid;}
.popup_box_inside{ width:100%; overflow:hidden;}
.popup_box .btn_close{ float:right; display:inline; margin:5px 5px 0 0; width:11px; height:11px; text-indent:-999px; overflow:hidden; background:url(/images/ico_close.gif) no-repeat;}
.popup_lang{ width:128px;}
.popup_lang .popup_box_inside{ }
.popup_lang ul{ padding:10px 10px 20px 10px;}
.popup_lang ul li{ padding-left:10px; background:url(/images/top_function.gif) -850px -112px no-repeat;}
.popup_lang ul li a:link,
.popup_lang ul li a:visited{ text-decoration:none; line-height:160%;}
.popup_tel{ width:235px;}
.popup_tel .popup_box_inside{ }
.popup_tel ul{ padding:10px 10px 35px 10px;}
.popup_tel ul li{ padding-left:10px; background:url(/images/top_function.gif) -850px -112px no-repeat; color:#666; line-height:160%; font-size:11px; width:96%; overflow:hidden;}
.popup_tel ul li strong{ float:left; font-size:12px;}
.popup_tel ul li span{ float:left; margin-left:6px; white-space:nowrap;}
.popup_tel ul li span.more_tel{ clear:both; margin-left:34px;}
.popup_kefu{ width:155px;}
.popup_kefu .popup_box_inside{}
.popup_kefu { background:#eee; }
.popup_kefu ul { padding:18px 15px 5px 10px; }
.popup_kefu li { padding:4px 0 3px; margin-bottom:4px; text-indent:15px; font-size:12px; background:url(/kefu/images/icon/kefu_icon.gif) no-repeat 0 3px; }
.popup_kefu li a { text-decoration:none; color:#f60; }
.popup_kefu li a:hover { text-decoration:underline;}
.popup_kefu .online a:hover { color:#c00; }
.popup_kefu li span { color:#f60; }
.popup_kefu li.offline { background-position:0 -27px; }
.popup_kefu li.offline a { color:#666; }
.popup_kefu li.offline span { color:#999; }
/*************modify begin******************/
.login_holder{ width:481px; font-size:12px; color:#666; position:absolute; left:30%; top:20%;}
/*************modify end******************/
.login_shaodow_top,
.login_shaodow_bottom{ width:100%; height:15px; overflow:hidden;}
.login_shaodow_top{ background:url(/images/login_shadow_top.png) no-repeat;}
.login_shaodow_bottom{ background:url(/images/login_shadow_bottom.png) no-repeat;}
.login_shaodow_middle{ width:100%; overflow:hidden; background:url(/images/login_shadow_middle.png);}
.login_holder h2{ width:450px; margin:0 auto; background:#eee; text-indent:26px; font-size:14px; line-height:175%; color:#333;}
.login_holder h2.h2_login{ background:#eee url(/images/h2_login.gif) 5px 3px no-repeat;}
.login_holder h2 span{ position:relative; top:2px;}
.login_content{ width:450px; margin:20px auto 10px auto; overflow:hidden; position:relative;}
.login_form{ float:left; width:227px; background:url(/images/login_dotted.gif) top right repeat-y;}
.login_form p{ width:100%; overflow:hidden; font-family:"宋体"; margin-bottom:8px;}
.login_form p label{ float:left; width:51px; margin-right:6px; text-align:right; position:relative; top:5px; }
.login_form p input{ float:left; display:inline; width:150px; background:#fff; border:1px #abadb3 solid; padding:2px;}
.login_form p .btn_submit{ width:78px; height:22px; cursor:hand;cursor:pointer; background:url(/images/btn_sure.gif); border:0; margin-left:59px;}
.login_intro{ float:left; width:195px; margin-left:15px;text-align:left;}
.login_intro p{ line-height:170%; color:#999; text-indent:26px;}
.login_intro a:link,
.login_intro a:visited{ font-weight:bold; padding:0 4px; text-decoration:none; color:#999;}
.pop_close1{ position:absolute; width:11px; height:11px; right:20px; top:20px; text-indent:-9999px;
overflow:hidden; background:url(/images/ico_close.gif); z-index:1000}
/*==============common over================*/
/*pop login panel*/
.login_info p label.label_for_checkbox{ _top:-1px;}
.login_info p select{ _position:relative; _left:-3px;}
.login_shaodow_top{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_top.png");}
.login_shaodow_bottom{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_bottom.png");}
.login_shaodow_middle{ _background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src="/images/login_shadow_middle.png");}
.SuggestFramework_List
{
border: 1px solid #CCCCCC;
border-top: 0px;
background:#fff;
top:60px !important;
transition: all 0.5s ease-out;
}
.SuggestFramework_Heading
{
padding: 0px 1px 0px 1px;
background-color: #CCCCCC;
color: #FFFFFF;
font-weight: bold;
}
.SuggestFramework_Highlighted
{
line-height:160%;
text-indent:3px;
background-color: Highlight;
color:#fff;
font-size:13px;
padding-left: 20px;
}
.SuggestFramework_Normal
{
line-height:160%;
text-indent:3px;
background-color: #FFFFFF;
color: #000000;
font-size:13px;
padding-left: 20px;
} | 0.249082 | 0.114121 |
@keyframes move {
from {
transform: translateY(0);
opacity: 0;
}
to {
opacity: 1;
transform: translateY(100px);
}
}
#js--sc--container {
position: relative;
margin: 0 auto;
width: 300px;
height: 300px;
border: 1px solid black;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transform: translateY(100px);
opacity: 1;
animation: move 2s;
}
#js--sc--container:before {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("./images/loader.gif");
background-repeat: no-repeat;
background-position: center center;
}
#js--sc--container canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#js--sc--container img {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#js-debug-cursor {
position: absolute;
top: 0;
left: 0;
background-color: yellow;
width: 50px;
height: 50px;
z-index: 99;
will-change: transform;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.sc__wrapper {
display: block;
width: 100%;
height: 300px;
max-width: 300px;
margin: 0 auto;
border: 5px solid rgba(#FFF, 0.5);
}
/* Where the scratchcard will be generate. */
.sc__container {
position: relative;
overflow: hidden;
max-height: 300px;
max-width: 300px;
}
.sc__inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Background image, the result... */
.sc__container > img {
position: relative;
top: 0;
left: 0;
width: 100%;
height: auto;
}
/* The scratchcard generate with scratchcard-js */
.sc__container canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
}
/* Scratchcard informations */
.sc__infos {
text-align: center;
height: 40px;
line-height: 40px;
margin-top: 5px;
font-weight: bold;
font-size: 16px;
}
.test {
color: lightsalmon;
font-size: 20px;
text-align: center;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: white;
}
/* .bg-scratch{
background-image: url(images/)
} */
.centered-element {
height: 495px;
width: 650px;
position: absolute;
left: 50%;
/* margin-left: -325px; */
/* top: 50%;
margin-top: -150px; */
z-index:100;
} | styles/scratch.css | @keyframes move {
from {
transform: translateY(0);
opacity: 0;
}
to {
opacity: 1;
transform: translateY(100px);
}
}
#js--sc--container {
position: relative;
margin: 0 auto;
width: 300px;
height: 300px;
border: 1px solid black;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transform: translateY(100px);
opacity: 1;
animation: move 2s;
}
#js--sc--container:before {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("./images/loader.gif");
background-repeat: no-repeat;
background-position: center center;
}
#js--sc--container canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#js--sc--container img {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#js-debug-cursor {
position: absolute;
top: 0;
left: 0;
background-color: yellow;
width: 50px;
height: 50px;
z-index: 99;
will-change: transform;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.sc__wrapper {
display: block;
width: 100%;
height: 300px;
max-width: 300px;
margin: 0 auto;
border: 5px solid rgba(#FFF, 0.5);
}
/* Where the scratchcard will be generate. */
.sc__container {
position: relative;
overflow: hidden;
max-height: 300px;
max-width: 300px;
}
.sc__inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Background image, the result... */
.sc__container > img {
position: relative;
top: 0;
left: 0;
width: 100%;
height: auto;
}
/* The scratchcard generate with scratchcard-js */
.sc__container canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
}
/* Scratchcard informations */
.sc__infos {
text-align: center;
height: 40px;
line-height: 40px;
margin-top: 5px;
font-weight: bold;
font-size: 16px;
}
.test {
color: lightsalmon;
font-size: 20px;
text-align: center;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: white;
}
/* .bg-scratch{
background-image: url(images/)
} */
.centered-element {
height: 495px;
width: 650px;
position: absolute;
left: 50%;
/* margin-left: -325px; */
/* top: 50%;
margin-top: -150px; */
z-index:100;
} | 0.468304 | 0.061763 |
html {
background-color: #efefef;
padding: 40px;
}
body {
width: 500px;
padding: 20px;
margin: auto;
font-family: "SF UI Text", "Lucida Grande", "Lucida Sans Unicode", Ubuntu, "DejaVu Sans", Verdana, "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
}
#content {
border: 1px solid #ddd;
border-radius: 5px;
text-align: center;
background-color: #fff;
padding: 20px;
}
#achievement {
height: 80px;
width: 80px;
position: absolute;
top: 30px;
opacity: 0;
cursor: pointer;
}
#achievement.rotate {
-webkit-animation-name: rotate;
-webkit-animation-duration: 0.3s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: scale(1) rotate(0deg);
}
100% {
-webkit-transform: scale(1) rotate(360deg);
}
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
a {
text-decoration: none;
}
button {
font-size: 20px;
line-height: 23px;
border: 1px solid #ccc;
background-image: -webkit-linear-gradient(top, #e8e8e8, #d1d1d1);
border-top: 1px solid #b0b0b0;
border-right: 1px solid #a3a3a3;
border-bottom: 1px solid #999999;
border-left: 1px solid #a3a3a3;
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.25), 0 1px 1px 0 rgba(0, 0, 0, 0.4);
/*#b3b3b3*/
text-shadow: 0 0px 1px rgba(0, 0, 0, 0.7);
color: #fff;
padding: 7px 15px;
margin: 0 3px;
border-radius: 4px;
position: relative;
cursor: pointer;
font-family: "SF UI Text", "Lucida Grande", "Lucida Sans Unicode", Ubuntu, "DejaVu Sans", Verdana, "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
outline: none;
}
button:active {
top: 1px;
}
button.blue {
background-image: -webkit-linear-gradient(top, #52a8e8, #377ad0);
border-top: 1px solid #4081af;
border-right: 1px solid #2e69a3;
border-bottom: 1px solid #20559a;
border-left: 1px solid #2e69a3;
}
button.green {
background-image: -webkit-linear-gradient(top, #b6e53e, #85cc21);
border-top: 1px solid #92b041;
border-right: 1px solid #7aa32e;
border-bottom: 1px solid #679920;
border-left: 1px solid #7aa32e;
}
button.red {
background-image: -webkit-linear-gradient(top, #e85151, #d14b36);
border-top: 1px solid #b04143;
border-right: 1px solid #a3362e;
border-bottom: 1px solid #993020;
border-left: 1px solid #a3362e;
}
button.blue:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #3e9ee5, #206bcb);
}
button.green:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #acd93b, #7cbf1f);
}
button.red:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #e53e3e, #cc3721);
}
.control {
margin: 0;
padding: 3px 12px;
font-size: 13px;
line-height: 15px;
position: static;
float: left;
}
.control-mid {
border-radius: 0;
border-left: 0 !important;
}
.control-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.control-right {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-left: 0 !important;
margin-right: 10px;
}
.control.active {
font-weight: bold;
}
.control.not-active {
color: rgba(255, 255, 255, 0.85);
}
.control.not-active:hover {
color: #fff;
}
#select button {
min-width: 70px;
}
#nav {
margin-top: 0;
}
#nav a {
color: #666;
padding: 3px 12px;
border-radius: 13px;
}
#nav a:not(.current):hover {
background-color: #fafafa;
}
#nav a.current {
background-color: #888;
color: #fff;
margin-right: 5px;
}
#nav a.current:not(:first-child) {
margin-left: 5px;
}
#pref p {
margin: 0;
}
#pref-range button {
padding: 3px 6px;
}
#pref-range button.control-mid {
padding: 3px 9px;
cursor: auto !important;
}
#page-index h1 .sub {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
color: #888;
font-size: 20px;
margin: 36px auto 5px auto;
}
#page-index h1 .main {
font-family: "Myriad Pro", "Segoe UI", AvenirNext-Medium, "Gill Sans", Ubuntu, sans-serif;
font-weight: normal;
color: #222;
font-size: 44px;
margin: 5px auto 42px auto;
}
#page-index h2 {
font-family: "Myriad Pro", "Segoe UI", AvenirNext-Medium, "Gill Sans", Ubuntu, sans-serif;
border-bottom: 1px solid #ccc;
padding-bottom: 3px;
text-align: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 100;
font-size: 16px;
color: #aaa;
letter-spacing: 0.2em;
text-transform: uppercase;
}
#page-index #content {
box-shadow: 2px 2px 0 #ddd;
}
#page-index .hero {
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
font-size: 220px;
line-height: 220px;
height: 160px;
overflow: hidden;
margin: -20px auto -23px 0;
text-shadow: -2px -2px 0 #ddd;
color: #eee;
font-weight: bold;
text-align: center;
}
#page-index #achievement-hall {
display: none;
padding: 0;
}
#page-index #achievement-hall li {
float: left;
width: 100px;
height: 115px;
margin: 5px 0 0 11px;
list-style: none;
}
#page-index #achievement-hall li .icon {
width: 80px;
height: 80px;
margin: auto;
}
#page-index #achievement-hall li p {
margin: 0;
}
#page-index #achievement-hall li p.info {
display: none;
color: #777;
font-size: 9px;
line-height: 13px;
}
#page-index #achievement-hall li p.title {
font-size: 11px;
color: #aaa;
}
#page-index #achievement-hall li:hover p.info {
display: block;
}
#page-index #achievement-hall li:hover p.title {
display: none;
}
#page-chart .kana-row {
border-top: 1px solid #ccc;
margin: 10px 0;
padding: 20px 10px;
}
#page-chart .kana-row:first-child {
padding-top: 0;
border: 0;
}
#page-chart .kana-row-head {
float: left;
padding-top: 20px;
margin: 10px 24px 0 16px;
}
#page-chart .kana-row-head .kana-char {
font-size: 32px;
line-height: 32px;
padding: 10px;
font-weight: bold;
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
border-radius: 10px;
background-color: #aaa;
color: #fff;
float: left;
}
#page-chart .kana-row-head .kana-alpha {
font-size: 22px;
line-height: 42px;
color: #777;
}
#page-chart .kana-item {
float: left;
width: 68px;
}
#page-chart .youon .kana-item {
width: 100px;
}
#page-chart .dup {
color: #aaa;
}
#page-chart .kana-item .kana-char {
font-size: 36px;
line-height: 60px;
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
}
#page-chart #content p {
margin: 0;
}
#page-test {
width: 523px;
}
#page-test #counter {
display: none;
color: #666;
padding-top: 4px;
float: right;
font-size: 15px;
line-height: 15px;
}
#page-test #counter-ac {
color: #679920;
}
#page-test #kana[lang=ja] {
font-size: 180px;
line-height: 180px;
color: #333;
margin: 120px 0 90px 0;
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
}
#page-test #kana[lang=en] {
font-size: 190px;
line-height: 190px;
color: #333;
margin: 100px 0 100px 0;
font-family: "Gill Sans", Ubuntu, "Segoe UI", "Lucida Sans Unicode", Verdana, sans-serif;
}
#page-vocabulary {
width: 540px;
}
#page-vocabulary #link {
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
font-size: 18px;
margin: 16px 0 0 0;
text-align: center;
}
#page-vocabulary #link a {
margin: 0 8px;
color: #666;
}
#page-vocabulary #link a:hover {
color: #000;
}
#page-vocabulary .vocabulary-row {
border-top: 1px solid #ccc;
margin: 10px 0;
padding: 20px 10px;
text-align: left;
}
#page-vocabulary .title {
float: left;
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
padding: 0;
font-weight: bold;
font-size: 36px;
line-height: 36px;
margin: 0 28px 0 0;
color: #999;
}
#page-vocabulary .title p {
padding: 10px;
margin: 0;
}
#page-vocabulary .title p:first-child {
border-radius: 10px;
background-color: #aaa;
color: #fff;
margin-bottom: 5px;
}
#page-vocabulary .vocabulary {
float: left;
}
#page-vocabulary .vocabulary p {
margin: 0;
}
#page-vocabulary .vocabulary .kana {
font-family: Georgia, "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
color: #444;
font-size: 32px;
line-height: 64px;
margin-right: 5px;
border-bottom: 1px dashed #bbb;
cursor: pointer;
}
#page-vocabulary .vocabulary .kana:not(.active):hover {
color: #222;
border: 0;
}
#page-vocabulary .vocabulary .kana.active {
color: #000;
border: 0;
cursor: auto;
}
#page-vocabulary .vocabulary .meaning {
font-size: 20px;
color: #ccc;
margin-right: 7px;
}
#page-vocabulary .vocabulary .latin {
cursor: pointer;
color: #666;
border-bottom: 1px dashed #bbb;
}
#page-vocabulary .vocabulary .latin:not(.active):hover {
color: #444;
border: 0;
}
#page-vocabulary .vocabulary .latin.active {
font-size: 20px;
color: #666;
border: 0;
cursor: auto;
}
#page-vocabulary .more {
border-radius: 12px;
font-size: 14px;
line-height: 14px;
background-color: #ccc;
color: #fff;
padding: 5px 15px;
float: left;
cursor: pointer;
}
#page-vocabulary .more:hover {
background-color: #bbb;
} | css/style.css | html {
background-color: #efefef;
padding: 40px;
}
body {
width: 500px;
padding: 20px;
margin: auto;
font-family: "SF UI Text", "Lucida Grande", "Lucida Sans Unicode", Ubuntu, "DejaVu Sans", Verdana, "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
}
#content {
border: 1px solid #ddd;
border-radius: 5px;
text-align: center;
background-color: #fff;
padding: 20px;
}
#achievement {
height: 80px;
width: 80px;
position: absolute;
top: 30px;
opacity: 0;
cursor: pointer;
}
#achievement.rotate {
-webkit-animation-name: rotate;
-webkit-animation-duration: 0.3s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: scale(1) rotate(0deg);
}
100% {
-webkit-transform: scale(1) rotate(360deg);
}
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
a {
text-decoration: none;
}
button {
font-size: 20px;
line-height: 23px;
border: 1px solid #ccc;
background-image: -webkit-linear-gradient(top, #e8e8e8, #d1d1d1);
border-top: 1px solid #b0b0b0;
border-right: 1px solid #a3a3a3;
border-bottom: 1px solid #999999;
border-left: 1px solid #a3a3a3;
box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.25), 0 1px 1px 0 rgba(0, 0, 0, 0.4);
/*#b3b3b3*/
text-shadow: 0 0px 1px rgba(0, 0, 0, 0.7);
color: #fff;
padding: 7px 15px;
margin: 0 3px;
border-radius: 4px;
position: relative;
cursor: pointer;
font-family: "SF UI Text", "Lucida Grande", "Lucida Sans Unicode", Ubuntu, "DejaVu Sans", Verdana, "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
outline: none;
}
button:active {
top: 1px;
}
button.blue {
background-image: -webkit-linear-gradient(top, #52a8e8, #377ad0);
border-top: 1px solid #4081af;
border-right: 1px solid #2e69a3;
border-bottom: 1px solid #20559a;
border-left: 1px solid #2e69a3;
}
button.green {
background-image: -webkit-linear-gradient(top, #b6e53e, #85cc21);
border-top: 1px solid #92b041;
border-right: 1px solid #7aa32e;
border-bottom: 1px solid #679920;
border-left: 1px solid #7aa32e;
}
button.red {
background-image: -webkit-linear-gradient(top, #e85151, #d14b36);
border-top: 1px solid #b04143;
border-right: 1px solid #a3362e;
border-bottom: 1px solid #993020;
border-left: 1px solid #a3362e;
}
button.blue:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #3e9ee5, #206bcb);
}
button.green:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #acd93b, #7cbf1f);
}
button.red:not(.active):not(.not-active):not(.text):hover {
background-image: -webkit-linear-gradient(top, #e53e3e, #cc3721);
}
.control {
margin: 0;
padding: 3px 12px;
font-size: 13px;
line-height: 15px;
position: static;
float: left;
}
.control-mid {
border-radius: 0;
border-left: 0 !important;
}
.control-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.control-right {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-left: 0 !important;
margin-right: 10px;
}
.control.active {
font-weight: bold;
}
.control.not-active {
color: rgba(255, 255, 255, 0.85);
}
.control.not-active:hover {
color: #fff;
}
#select button {
min-width: 70px;
}
#nav {
margin-top: 0;
}
#nav a {
color: #666;
padding: 3px 12px;
border-radius: 13px;
}
#nav a:not(.current):hover {
background-color: #fafafa;
}
#nav a.current {
background-color: #888;
color: #fff;
margin-right: 5px;
}
#nav a.current:not(:first-child) {
margin-left: 5px;
}
#pref p {
margin: 0;
}
#pref-range button {
padding: 3px 6px;
}
#pref-range button.control-mid {
padding: 3px 9px;
cursor: auto !important;
}
#page-index h1 .sub {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
color: #888;
font-size: 20px;
margin: 36px auto 5px auto;
}
#page-index h1 .main {
font-family: "Myriad Pro", "Segoe UI", AvenirNext-Medium, "Gill Sans", Ubuntu, sans-serif;
font-weight: normal;
color: #222;
font-size: 44px;
margin: 5px auto 42px auto;
}
#page-index h2 {
font-family: "Myriad Pro", "Segoe UI", AvenirNext-Medium, "Gill Sans", Ubuntu, sans-serif;
border-bottom: 1px solid #ccc;
padding-bottom: 3px;
text-align: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 100;
font-size: 16px;
color: #aaa;
letter-spacing: 0.2em;
text-transform: uppercase;
}
#page-index #content {
box-shadow: 2px 2px 0 #ddd;
}
#page-index .hero {
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
font-size: 220px;
line-height: 220px;
height: 160px;
overflow: hidden;
margin: -20px auto -23px 0;
text-shadow: -2px -2px 0 #ddd;
color: #eee;
font-weight: bold;
text-align: center;
}
#page-index #achievement-hall {
display: none;
padding: 0;
}
#page-index #achievement-hall li {
float: left;
width: 100px;
height: 115px;
margin: 5px 0 0 11px;
list-style: none;
}
#page-index #achievement-hall li .icon {
width: 80px;
height: 80px;
margin: auto;
}
#page-index #achievement-hall li p {
margin: 0;
}
#page-index #achievement-hall li p.info {
display: none;
color: #777;
font-size: 9px;
line-height: 13px;
}
#page-index #achievement-hall li p.title {
font-size: 11px;
color: #aaa;
}
#page-index #achievement-hall li:hover p.info {
display: block;
}
#page-index #achievement-hall li:hover p.title {
display: none;
}
#page-chart .kana-row {
border-top: 1px solid #ccc;
margin: 10px 0;
padding: 20px 10px;
}
#page-chart .kana-row:first-child {
padding-top: 0;
border: 0;
}
#page-chart .kana-row-head {
float: left;
padding-top: 20px;
margin: 10px 24px 0 16px;
}
#page-chart .kana-row-head .kana-char {
font-size: 32px;
line-height: 32px;
padding: 10px;
font-weight: bold;
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
border-radius: 10px;
background-color: #aaa;
color: #fff;
float: left;
}
#page-chart .kana-row-head .kana-alpha {
font-size: 22px;
line-height: 42px;
color: #777;
}
#page-chart .kana-item {
float: left;
width: 68px;
}
#page-chart .youon .kana-item {
width: 100px;
}
#page-chart .dup {
color: #aaa;
}
#page-chart .kana-item .kana-char {
font-size: 36px;
line-height: 60px;
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
}
#page-chart #content p {
margin: 0;
}
#page-test {
width: 523px;
}
#page-test #counter {
display: none;
color: #666;
padding-top: 4px;
float: right;
font-size: 15px;
line-height: 15px;
}
#page-test #counter-ac {
color: #679920;
}
#page-test #kana[lang=ja] {
font-size: 180px;
line-height: 180px;
color: #333;
margin: 120px 0 90px 0;
font-family: "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
}
#page-test #kana[lang=en] {
font-size: 190px;
line-height: 190px;
color: #333;
margin: 100px 0 100px 0;
font-family: "Gill Sans", Ubuntu, "Segoe UI", "Lucida Sans Unicode", Verdana, sans-serif;
}
#page-vocabulary {
width: 540px;
}
#page-vocabulary #link {
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
font-size: 18px;
margin: 16px 0 0 0;
text-align: center;
}
#page-vocabulary #link a {
margin: 0 8px;
color: #666;
}
#page-vocabulary #link a:hover {
color: #000;
}
#page-vocabulary .vocabulary-row {
border-top: 1px solid #ccc;
margin: 10px 0;
padding: 20px 10px;
text-align: left;
}
#page-vocabulary .title {
float: left;
font-family: "Hiragino Kaku Gothic ProN", "Kochi Gothic", Meiryo, "MS Gothic", sans-serif;
padding: 0;
font-weight: bold;
font-size: 36px;
line-height: 36px;
margin: 0 28px 0 0;
color: #999;
}
#page-vocabulary .title p {
padding: 10px;
margin: 0;
}
#page-vocabulary .title p:first-child {
border-radius: 10px;
background-color: #aaa;
color: #fff;
margin-bottom: 5px;
}
#page-vocabulary .vocabulary {
float: left;
}
#page-vocabulary .vocabulary p {
margin: 0;
}
#page-vocabulary .vocabulary .kana {
font-family: Georgia, "Hiragino Mincho ProN", "Kochi Mincho", "MS Mincho", serif;
color: #444;
font-size: 32px;
line-height: 64px;
margin-right: 5px;
border-bottom: 1px dashed #bbb;
cursor: pointer;
}
#page-vocabulary .vocabulary .kana:not(.active):hover {
color: #222;
border: 0;
}
#page-vocabulary .vocabulary .kana.active {
color: #000;
border: 0;
cursor: auto;
}
#page-vocabulary .vocabulary .meaning {
font-size: 20px;
color: #ccc;
margin-right: 7px;
}
#page-vocabulary .vocabulary .latin {
cursor: pointer;
color: #666;
border-bottom: 1px dashed #bbb;
}
#page-vocabulary .vocabulary .latin:not(.active):hover {
color: #444;
border: 0;
}
#page-vocabulary .vocabulary .latin.active {
font-size: 20px;
color: #666;
border: 0;
cursor: auto;
}
#page-vocabulary .more {
border-radius: 12px;
font-size: 14px;
line-height: 14px;
background-color: #ccc;
color: #fff;
padding: 5px 15px;
float: left;
cursor: pointer;
}
#page-vocabulary .more:hover {
background-color: #bbb;
} | 0.349644 | 0.098425 |
body{
font-family: 'Ubuntu', sans-serif;
overflow-x: hidden;
}
/*styles for landing page here */
.landing-page{
background-image: url('../assets/backgrounds/h_img.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height:130vh;
text-align: center;
}
#logo{
padding-top: 250px;
}
.landing-page >h1{
text-align: center;
color: white;
text-transform: uppercase;
line-height: 4rem;
padding-top: 47px;
font-weight: bold;
}
#lp{
color: white;
text-transform: uppercase;
text-align: center;
width: 100%;
}
#mouseClick {
animation: bounce 2s infinite;
padding-top: 160px;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-55px);
}
60% {
transform: translateY(-45px);
}
}
/* media queries */
@media only screen and (max-width:600px){
.landing-page{
margin-right: auto;
margin-left: auto;
}
}
/* styles for about section */
.about{
padding: 40px;
text-align:center;
}
.about >h2{
font-weight: bold;
}
.about >p{
line-height: 2em;
}
/* styling services section */
.services{
background-image: url('../assets/backgrounds/s_image.jpg'), linear-gradient(#525052, #413f3f);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 100px 0 100px 0;
opacity: 0.9;
text-align: center;
color: white;
line-height: 2em;
}
.services>h2{
font-weight: bold;
}
/* styling what section */
.what{
text-align: center;
padding: 25px 0 25px 0;
padding-left: 9px;
padding-right: 40px;
}
.what >h2{
font-weight: bold;
}
.design-p,.dev-p,.product-p{
display: none;
}
/* styling for portfolio */
.portfolio{
padding-top: 20px;
padding-bottom: 30px;
padding-left: 9%;
padding-right: 9%;
}
.portfolio >h2{
font-weight: bold;
text-align: center;
text-transform: uppercase;
}
#pro{
margin-top: 30%;
text-align: center;
font-size: 25px;
}
.project{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.2;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project2{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.6;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project3{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.4;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project4{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project5{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project6{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project7{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project8{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
/* styling for contact form */
.contact{
background-image: url('../assets/backgrounds/c_image.jpg');
background-size: cover;
background-repeat: no-repeat;
height: 500px;
}
.contact >h2{
text-align: center;
color: white;
font-weight: bold;
padding: 25px;
}
#form1 {
background-color: transparent;
}
textarea {
width: 100%;
height: 200px;
color: white;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical ;
}
#sayhi ::placeholder {
color: white;
}
#sayhi input{
color: white;
background-color: transparent;
}
/* styling for social media icons */
.social-icons{
width: 100%;
text-align: center;
padding: 30px 0 8px 0;
justify-content: space-around;
}
.social-icons>#hv:hover{
transform: scale(1.4);
}
/* styling for footer */
.footer{
text-align: center;
padding: 15px 0 15px 0;
line-height: 1em;
font-weight: bold;
} | css/styles.css | body{
font-family: 'Ubuntu', sans-serif;
overflow-x: hidden;
}
/*styles for landing page here */
.landing-page{
background-image: url('../assets/backgrounds/h_img.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height:130vh;
text-align: center;
}
#logo{
padding-top: 250px;
}
.landing-page >h1{
text-align: center;
color: white;
text-transform: uppercase;
line-height: 4rem;
padding-top: 47px;
font-weight: bold;
}
#lp{
color: white;
text-transform: uppercase;
text-align: center;
width: 100%;
}
#mouseClick {
animation: bounce 2s infinite;
padding-top: 160px;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-55px);
}
60% {
transform: translateY(-45px);
}
}
/* media queries */
@media only screen and (max-width:600px){
.landing-page{
margin-right: auto;
margin-left: auto;
}
}
/* styles for about section */
.about{
padding: 40px;
text-align:center;
}
.about >h2{
font-weight: bold;
}
.about >p{
line-height: 2em;
}
/* styling services section */
.services{
background-image: url('../assets/backgrounds/s_image.jpg'), linear-gradient(#525052, #413f3f);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 100px 0 100px 0;
opacity: 0.9;
text-align: center;
color: white;
line-height: 2em;
}
.services>h2{
font-weight: bold;
}
/* styling what section */
.what{
text-align: center;
padding: 25px 0 25px 0;
padding-left: 9px;
padding-right: 40px;
}
.what >h2{
font-weight: bold;
}
.design-p,.dev-p,.product-p{
display: none;
}
/* styling for portfolio */
.portfolio{
padding-top: 20px;
padding-bottom: 30px;
padding-left: 9%;
padding-right: 9%;
}
.portfolio >h2{
font-weight: bold;
text-align: center;
text-transform: uppercase;
}
#pro{
margin-top: 30%;
text-align: center;
font-size: 25px;
}
.project{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.2;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project2{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.6;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project3{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.4;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project4{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project5{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project6{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project7{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
.project8{
width: 100%;
height: 100%;
background-color:white;
opacity: 0.5;
position: absolute;
top: 0.0em;
display:none;
color:black;
font-size: 20px;
}
/* styling for contact form */
.contact{
background-image: url('../assets/backgrounds/c_image.jpg');
background-size: cover;
background-repeat: no-repeat;
height: 500px;
}
.contact >h2{
text-align: center;
color: white;
font-weight: bold;
padding: 25px;
}
#form1 {
background-color: transparent;
}
textarea {
width: 100%;
height: 200px;
color: white;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical ;
}
#sayhi ::placeholder {
color: white;
}
#sayhi input{
color: white;
background-color: transparent;
}
/* styling for social media icons */
.social-icons{
width: 100%;
text-align: center;
padding: 30px 0 8px 0;
justify-content: space-around;
}
.social-icons>#hv:hover{
transform: scale(1.4);
}
/* styling for footer */
.footer{
text-align: center;
padding: 15px 0 15px 0;
line-height: 1em;
font-weight: bold;
} | 0.347316 | 0.065815 |
html {
height: 100%;
background: linear-gradient(145deg, #151821, #2f3d42, #46535a);
animation: background 3s infinite alternate ease-in-out;
background-size: 200% 200%;
}
body {
text-align: center;
font-family: monospace;
font-weight: lighter;
color: white;
position: fixed;
width: 100%;
}
.button {
cursor: pointer;
border: 1px;
border-color: rgba(255, 255, 255, 0.45);
border-style: solid;
border-radius: 4px;
display: inline-block;
font-weight: 600;
width: 85px;
padding: 15px 0;
box-shadow: 0 0 0px rgba(253, 238, 255, 0.2);
transition: 0.4s;
}
.button:hover {
color: white;
box-shadow: 0 0 20px rgba(253, 238, 255, 0.2);
background-color: #849ead;
}
.loading-message {
text-align: center;
margin-top: 30px;
}
.main {
max-width: 800px;
width: 70%;
margin-left: auto;
margin-right: auto;
}
.main .header {
margin-top: 10vh;
}
.main .description {
text-align: left;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.main #username {
width: 80%;
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
box-sizing: border-box;
font-family: montserrat, sans-serif;
color: #2C3E50;
font-size: 13px;
}
.image-container {
position: absolute;
}
#suggestion-table {
height: 60vh;
text-align: left;
}
#canvas {
position: fixed;
height: 100%;
width: 100%;
z-index: -1;
}
@keyframes background {
0%{background-position:0% 75%}
50%{background-position:100% 25%}
100%{background-position:25% 100%}
}
table{
width:100%;
table-layout: fixed;
}
.tbl-header{
background-color: rgba(255,255,255,0.1);
}
.tbl-content{
height:50vh;
overflow-x:auto;
margin-top: 0px;
border: 1px solid rgba(255,255,255,0.3);
}
th{
pointer-events: none;
text-align: left;
font-weight: 500;
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
tr:hover {
background-color: rgba(255, 255, 255, 0.06);
cursor: pointer;
}
td{
padding: 15px;
text-align: left;
vertical-align:middle;
font-weight: 300;
font-size: 12px;
color: #fff;
border-bottom: solid 1px rgba(255,255,255,0.1);
}
/* for custom scrollbar for webkit browser*/
td {
width: 10px;
}
th {
width: 54px;
padding: 0px;
}
td+td {
width: auto;
}
th+th {
width: auto;
padding: 20px 0px 20px 6px;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
} | src/static/css/main.css | html {
height: 100%;
background: linear-gradient(145deg, #151821, #2f3d42, #46535a);
animation: background 3s infinite alternate ease-in-out;
background-size: 200% 200%;
}
body {
text-align: center;
font-family: monospace;
font-weight: lighter;
color: white;
position: fixed;
width: 100%;
}
.button {
cursor: pointer;
border: 1px;
border-color: rgba(255, 255, 255, 0.45);
border-style: solid;
border-radius: 4px;
display: inline-block;
font-weight: 600;
width: 85px;
padding: 15px 0;
box-shadow: 0 0 0px rgba(253, 238, 255, 0.2);
transition: 0.4s;
}
.button:hover {
color: white;
box-shadow: 0 0 20px rgba(253, 238, 255, 0.2);
background-color: #849ead;
}
.loading-message {
text-align: center;
margin-top: 30px;
}
.main {
max-width: 800px;
width: 70%;
margin-left: auto;
margin-right: auto;
}
.main .header {
margin-top: 10vh;
}
.main .description {
text-align: left;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.main #username {
width: 80%;
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
box-sizing: border-box;
font-family: montserrat, sans-serif;
color: #2C3E50;
font-size: 13px;
}
.image-container {
position: absolute;
}
#suggestion-table {
height: 60vh;
text-align: left;
}
#canvas {
position: fixed;
height: 100%;
width: 100%;
z-index: -1;
}
@keyframes background {
0%{background-position:0% 75%}
50%{background-position:100% 25%}
100%{background-position:25% 100%}
}
table{
width:100%;
table-layout: fixed;
}
.tbl-header{
background-color: rgba(255,255,255,0.1);
}
.tbl-content{
height:50vh;
overflow-x:auto;
margin-top: 0px;
border: 1px solid rgba(255,255,255,0.3);
}
th{
pointer-events: none;
text-align: left;
font-weight: 500;
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
tr:hover {
background-color: rgba(255, 255, 255, 0.06);
cursor: pointer;
}
td{
padding: 15px;
text-align: left;
vertical-align:middle;
font-weight: 300;
font-size: 12px;
color: #fff;
border-bottom: solid 1px rgba(255,255,255,0.1);
}
/* for custom scrollbar for webkit browser*/
td {
width: 10px;
}
th {
width: 54px;
padding: 0px;
}
td+td {
width: auto;
}
th+th {
width: auto;
padding: 20px 0px 20px 6px;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
} | 0.658527 | 0.086054 |
@charset 'utf-8';
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%
}
body {
font-family: "Pingfang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei UI", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
font-size: 14px;
line-height: 1.5;
color: #515151;
white-space: normal;
background-color: #f0f0f0;
user-select: none;
}
.link-tab {
display: inline-block;
vertical-align: middle;
position: relative;
font-size: 0;
user-select: none;
}
.link-tab a {
display: inline-block;
vertical-align: middle;
font-size: 14px;
border: .0625rem solid #d3d3d3;
white-space: nowrap;
text-align: center;
vertical-align: middle;
cursor: pointer;
outline: 0;
font-size: .875rem;
line-height: 1.4286;
padding: .375rem 1rem;
background-color: #fff;
color: #515151;
text-decoration: none;
}
.link-tab a.active {
border-color: #5cb85c;
background-color: #5cb85c;
color: #fff;
}
.project-name {
padding: 2rem 2rem 1rem 2rem;
text-align: center;
font-size: 3rem;
font-weight: bold;
color: #111;
}
.link-group {
text-align: center;
padding-bottom: 2rem
}
.modal, .modal > .overlap {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.modal {
z-index: 100;
user-select: none;
text-align: center;
}
.modal > .overlap {
background-color: rgba(0, 0, 0, .5);
}
.modal .modal-content {
display: inline-block;
margin-top: 5%;
padding: 1rem;
background-color: #fff;
position: relative;
z-index: 2;
width: 580px;
overflow-y: auto;
}
.modal-content .canvas-wrap {
overflow: hidden;
position: relative;
transition: max-height .05s ease;
min-height: 220px;
background-color: #f6f7f9;
border: 1px solid #ddd;
}
.modal-content .canvas-wrap canvas {
display: block;
max-width: 100%;
}
.modal-content .canvas-toolbar {
position: relative;
z-index: 10;
margin-bottom: 10px;
}
.modal-content .modal-close {
margin: 1rem 0 0 0;
display: inline-block;
padding: .5rem 1rem;
border: 1px solid #ccc;
cursor: pointer;
background-color: #fff
} | example/demo.css | @charset 'utf-8';
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%
}
body {
font-family: "Pingfang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei UI", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
font-size: 14px;
line-height: 1.5;
color: #515151;
white-space: normal;
background-color: #f0f0f0;
user-select: none;
}
.link-tab {
display: inline-block;
vertical-align: middle;
position: relative;
font-size: 0;
user-select: none;
}
.link-tab a {
display: inline-block;
vertical-align: middle;
font-size: 14px;
border: .0625rem solid #d3d3d3;
white-space: nowrap;
text-align: center;
vertical-align: middle;
cursor: pointer;
outline: 0;
font-size: .875rem;
line-height: 1.4286;
padding: .375rem 1rem;
background-color: #fff;
color: #515151;
text-decoration: none;
}
.link-tab a.active {
border-color: #5cb85c;
background-color: #5cb85c;
color: #fff;
}
.project-name {
padding: 2rem 2rem 1rem 2rem;
text-align: center;
font-size: 3rem;
font-weight: bold;
color: #111;
}
.link-group {
text-align: center;
padding-bottom: 2rem
}
.modal, .modal > .overlap {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.modal {
z-index: 100;
user-select: none;
text-align: center;
}
.modal > .overlap {
background-color: rgba(0, 0, 0, .5);
}
.modal .modal-content {
display: inline-block;
margin-top: 5%;
padding: 1rem;
background-color: #fff;
position: relative;
z-index: 2;
width: 580px;
overflow-y: auto;
}
.modal-content .canvas-wrap {
overflow: hidden;
position: relative;
transition: max-height .05s ease;
min-height: 220px;
background-color: #f6f7f9;
border: 1px solid #ddd;
}
.modal-content .canvas-wrap canvas {
display: block;
max-width: 100%;
}
.modal-content .canvas-toolbar {
position: relative;
z-index: 10;
margin-bottom: 10px;
}
.modal-content .modal-close {
margin: 1rem 0 0 0;
display: inline-block;
padding: .5rem 1rem;
border: 1px solid #ccc;
cursor: pointer;
background-color: #fff
} | 0.338186 | 0.065575 |
.testimonial {
padding: 121px 0px 115px;
background: #142314;
}
.auth .sign-form .reg-text a:hover{
color: #0f9831 !important;
}
.auth .sign-form button:hover{
color: #fff !important;
}
.testimonial h2, .testimonial p{
color: #333 !important;
}
.fotter-logo h3{
margin: 0;
color: #fff;
font-weight: 900;
}
.navbar-brand h3{
margin: 0;
color: #fff;
font-weight: 900;
}
.text-center{
outline: none;
text-align: center;
}
/*////////////////////////*/
.referral-icon p{
color: #f8f8f8;
}
.mainmenu-area{
background: linear-gradient(to bottom, rgb(22 29 20), rgb(3 120 34));
}
.navbar-brand h3{
color: #fff;
}
.fotter-logo h3{
color: #fff;
}
.fotter-logo img{
width: 100%;
max-height: 120px;
height: auto;
max-width: 120px;
}
.left-content .box{
display: inline-block;
position: relative;
overflow: hidden;
width: 100%;
height: auto;
background: #fff;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
text-align: center;
padding: 30px 0;
border-radius: 5px;
}
.box-content{
display: inline-block;
width: 550px;
}
.box-content p{
color: #000;
font-size: 16px;
}
.hero-area{
padding: 140px 0 90px !important;
}
.choose_us .cu-menu li a {
display: inline-block;
background: #fff;
border-radius: 5px;
margin: 0 10px;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
transition: 0.2s all ease-in-out 0s;
width: 100%;
padding: 25px 0;
}
.choose_us .cu-menu li a .title{
color: #000 !important;
font-size: 16px;
font-weight: 500;
}
.choose_us .cu-menu li a:hover{
transition: 0.2s all ease-in-out 0s;
}
.choose_us .cu-menu li a:hover .icon{
background: linear-gradient(to bottom, rgb(22 29 20), rgb(3 120 34));
color: #fff;
transition: 0.2s all ease-in-out 0s;
}
.choose_us .cu-menu li a:hover .title{
color: #000 !important;
}
.section-header h3{
color: #fff;
text-align: center;
font-size: 36px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.referral-header h3{
text-transform: none !important;
}
/*
.cu-menu li a.active{
background-color: red !important;
}
.cu-menu li a.active .title{
color: #fff !important;
} */
.align-center{
text-align: center;
}
.breadcrumb-area {
padding: 120px 0px 117px;
position: relative;
overflow: hidden;
background: linear-gradient(to bottom, rgb(73 214 1), rgb(23 123 65));
}
.base-btn2 {
font-size: 16px;
font-weight: 600;
padding: 12px 35px;
display: inline-block;
color: #0f9831;
border-radius: 50px;
cursor: pointer;
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
background: #fff;
border: 1px solid #fff;
}
.base-btn2:hover {
background: #fff;
color: #0f9831;
}
/* edit profile and my account css */
.form-width{
min-width: 250px;
}
.form-align{
display: inline-block;
margin-right: 30px;
}
.form-align label{
color: #fff;
}
.profileedit-area .form-group label{
color: #555;
}
#my-account-sec{
background: #0f9831;
box-shadow: 0px 0px 29.4px 0.6px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 0px 29.4px 0.6px rgba(0, 0, 0, 0.5);
padding: 30px 15px;
}
.profile-img{
display: block;
width: 220px;
height: 220px;
position: relative;
overflow: hidden;
border-radius: 50%;
background: #777;
margin: 25px auto;
border: 2px solid #777;
}
.profile-img img{
width: 100%;
height: auto;
min-height: 220px;
max-width: 220px;
object-fit: cover;
}
.edit-profile{
position: relative;
padding: 10px 0;
text-align: center;
}
.edit-profile i{
color: #fff;
font-size: 16px;
}
.profile-content{
display: inline-block;
position: relative;
padding: 5px 0px;
width: 100%;
border-bottom: 1px solid #ccc;
margin-bottom: 20px;
}
.profile-content h4{
color: #fff;
}
.email-sec, .contact-sec{
display: inline-block;
position: relative;
margin-bottom: 15px;
padding: 0 0;
overflow: hidden;
color: #fff;
}
.color{
color: #fff;
}
.address-sec{
padding-top: 20px;
margin-top: 20px;
}
.email-sec i, .contact-sec i, .birth-sec i, .address-sec i{
padding-right: 10px;
}
.btn-change1 {
background: transparent !important;
border: 1px solid #fff !important;
color: #fff !important;
transition: all ease 0.3s !important;
}
.btn-change1:hover {
background-image: -webkit-linear-gradient(169deg, #ff4343 0%, #aa52a1 37%, #5560ff 83%) !important;
transition: all ease 0.3s !important;
border: 1px solid #a053ab !important;
box-shadow: none;
color: #fff !important;
}
.width-form{
min-width: 580px;
}
/* edit-profile */
.email-sec .profile-name{
/* padding: 10px 0; */
color: #fff;
}
.form-align{
display: inline-block;
padding-right: 30px;
margin-right: 45px;
}
.no-space{
margin: 0;
padding: 0;
}
.no-image{
display: block;
margin: auto;
position: relative;
text-align: center;
top: 100px;
}
.edit-sec0{
width: 100%;
}
.no-border{
border: none;
margin-bottom: 0px;
}
.custom-input{
background: transparent !important;
color: #fff !important;
font-size: 14px;
}
.custom-input:hover, .custom-input:active, .custom-input:focus{
background: transparent;
}
/* image upload css icon */
.profile-pic {
max-width: 200px;
max-height: 200px;
display: block;
}
.file-upload {
display: block;
opacity: 0;
position: absolute;
bottom: 8px;
left: -25px;
}
.circle {
border-radius: 1000px !important;
overflow: hidden;
width: 128px;
height: 128px;
border: 8px solid rgba(255, 255, 255, 0.7);
position: absolute;
top: 72px;
}
img {
max-width: 100%;
height: auto;
}
.p-image {
position: absolute;
top: 60%;
right: 0;
color: #666666;
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
background: #999999;
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid #fff;
padding: 10px 13px;
left: 200px;
margin: auto;
}
.p-image i{
color: #fff;
cursor: pointer;
}
.p-image:hover {
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
font-size: 1.2em;
}
.upload-button:hover {
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
color: #999;
}
.custom-control-label {
color: #777 !important;
}
/* referral css */
.nopad{
padding-bottom: 40px !important;
}
.breadcrumb-area .referral-p{
color: #fff !important;
letter-spacing: 0.5px !important;
line-height: 1.7 !important;
text-align: center !important;
}
.referral-icon{
text-align: center;
display: block;
margin-bottom: 30px;
}
.referral-icon img{
width: 100%;
height: auto;
max-width: 120px;
}
#referral-sec{
position: relative;
background: #fff;
padding: 60px 0 0;
text-align: center;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}
#referral-sec .code-sec img{
width: 100%;
height: auto;
max-width: 20px;
margin-left: 15px;
}
#referral-sec .code-sec p a{
color: #0f9831;
text-decoration: none;
font-size: 16px;
padding-top: 5px;
}
#btn-section{
position: relative;
overflow: hidden;
text-align: center;
padding: 40px 0 40px;
background: #fff;
}
#btn-section .referralbtn{
display: block;
margin: auto;
text-align: center;
position: relative;
}
.base-btn1{
width: 220px;
border-radius: 5px;
}
.referralbtn a:hover{
color: #fff !important;
}
.base-btn1:hover{
color: #fff !important;
}
.base-btn1:hover{
background: #0f9831 !important;
}
.base-btn1{
background: #0f9831 !important;
}
.custombtn0:hover{
color: #fff !important;
}
/* logn images css */
.img-place{
display: block;
margin-bottom: 30px;
position: relative;
text-align: center;
}
.img-place img{
max-width: 120px;
min-height: 90px;
}
.signin-sec a{
color: #000;
}
.signin-sec a:hover{
color: #0f9831;
}
.signin-form .up-sec:hover{
color: #0f9831 !important;
}
.signin-form .up-sec{
color: #0f9831;
}
.banner-content{
padding: 20px 20px;
background: #0f9831;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
border-radius: 5px;
}
#hero-area{
padding: 90px 0 90px !important;
}
.contact-field{
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
background: -webkit-linear-gradient(40deg, #ff0000 0, #ff0000 100%);
background: -o-linear-gradient(40deg, #ff0000 0, #ff0000 100%);
background: linear-gradient(50deg, #ff0000 0, #ff0000 100%);
border-radius: 3px;
padding: 22px 30px 25px;
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
padding: 60px 0px;
text-align: center;
}
.contact-field .title{
color: #fff;
text-align: center;
}
.contact .contact-field .address-list {
padding: 22px 0px 0px;
}
.contact .contact-field .address-list li{
color: #fff;
display: inline-block;
margin: 0 20px;
text-align: center;
}
.contact .contact-field .address-list li i{
padding-bottom: 12px;
font-size: 20px;
}
.contact .contact-field .address-list li p{
color: #fff;
}
.contact-header h2{
color: #0f9831 !important;
}
.privacy-header h3{
color: #0f9831;
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}
.privacy-content p{
color: #000;
text-align: center;
letter-spacing: 0.5px;
line-height: 1.7;
}
.footer .copy-bg .left-area p:hover{
color: #fff;
transition: 0.2s all ease-in-out 0s;
}
.footer .copy-bg .left-area p{
transition: 0.2s all ease-in-out 0s;
}
.privacypolicy{
padding: 120px 0 137px !important;
}
.responsive-table #tablesec_wrapper .row{
width: 100% !important;
margin: 0 !important;
}
.start-invest .table{
width: 100%;
}
.table-column{
width: 100% !important;
}
/*tab and tables css */
.tab-content {
padding:10px;
}
.nav-tabs {
border-bottom: none;
display: inline-flex;
}
.tab-btn0{
display: block;
line-height: 50px;
padding: 0px 50px;
border-radius: 50px;
font-size: 18px;
font-weight: 600;
color: #131333;
-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
margin: 0px 5px;
transition: 0.2s all ease-in-out 0s;
}
.nav-tabs li a:hover{
color: red;
transition: 0.2s all ease-in-out 0s;
}
.nav-tabs li .active{
background: red !important;
color: #fff !important;
transition: 0.2s all ease-in-out 0s;
}
.dataTables_wrapper .row:first-child{
width: 100% !important;
}
.dataTables_wrapper .row:last-child{
width: 100% !important;
}
.fade:not(.show){
opacity: 1 !important;
}
#example2-tab1-dt_wrapper .row{
width: 100% !important;
}
.referral-icon h5{
color: #fff;
line-height: 1.9;
margin-bottom: 15px;
}
.referral-icon h2{
color: #fff;
}
.investmentbtn{
max-width: 320px;
}
.investmentbtn{
min-width: 350px !important;
height: 60px;
vertical-align: middle;
padding: 15px 0;
background: #0f9831;
color: #fff;
font-weight: 600;
font-size: 18px
}
.breadcrumb-area .title {
font-size: 32px;
line-height: 50px;
font-weight: 600;
margin-bottom: 11px;
color: #fff;
text-align: center;
}
.profit-btn {
background: #fff !important;
color: #0f9831;
font-weight: 600;
}
/* add investment css */
.custompad{
padding: 30px 0 !important;
}
.Investment-header h3{
padding: 20px 0 !important;
text-transform: capitalize;
}
.Investment-area h5{
font-weight: 600;
}
.investment-select{
display: block;
width: 100%;
max-width: 490px;
height: auto;
position: relative;
overflow: hidden;
text-align: left;
margin: auto;
}
.mt-top{
margin-top: 30px;
}
.investment-select label{
font-weight: 600;
color: #000;
padding-left: 10px;
}
.Investment-area .radio input[type="radio"] {
opacity: 0;
z-index: 1;
}
.Investment-area .radio-danger input[type="radio"]:checked + label::before {
border-color: #d9534f;
}
.Investment-area .radio label::before {
content: "";
display: inline-block;
position: absolute;
width: 17px;
height: 17px;
left: 0;
top: 3px;
border: 1px solid #e01212;
border-radius: 50%;
background-color: #fff;
-webkit-transition: border 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out;
}
.Investment-area .radio-danger input[type="radio"]:checked + label::after {
background-color: #d9534f;
}
.Investment-area .radio input[type="radio"]:checked + label::after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.Investment-area .radio label::after {
display: inline-block;
position: absolute;
content: " ";
width: 11px;
height: 11px;
left: 3px;
top: 6px;
border-radius: 50%;
background-color: #e01212;
-webkit-transform: scale(0, 0);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.investmentbutton{
margin-bottom: 30px;
}
.addbtn{
max-width: 300px;
border-radius: 5px;
width: 100%;
}
.paragraph-sec{
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.paragraph-sec p{
color: #000;
font-weight: 600;
}
.paragraph-sec p:before{
content: '';
position: absolute;
left: 52%;
right: 0;
top: 12px;
z-index: 1;
opacity: 0.5;
border: 1px solid #777;
width: 120px;
}
.paragraph-sec p::after{
content: '';
position: absolute;
right: 52%;
top: 12px;
z-index: 1;
opacity: 0.5;
border: 1px solid #777;
width: 120px;
}
.custom-select{
width: 100%;
max-width: 460px;
}
.custom-amount{
width: 100%;
max-width: 460px;
margin: 0 auto;
display: block;
}
/* success page css */
.success-area{
padding: 60px 0 !important;
}
.success-h5{
text-align: center;
color: #fff;
font-weight: 500;
line-height: 1.5;
}
#success-sec{
padding-top: 60px !important;
}
#success-sec .section-header h3{
padding-bottom: 30px;
}
.custom-model{
max-width: 350px;
margin: 0 auto;
}
.custom-body{
padding: 10px 0;
text-align: center;
}
.custom-body p{
margin: 0;
padding: 0;
font-size: 16px;
color: #000;
font-weight: 600;
}
.custom-footer{
border: none;
}
.custom-header{
border: none;
}
.modal-icon{
display: block;
margin: auto;
width: 90px;
height: 90px;
background: red;
border-radius: 50%;
text-align: center;
}
.modal-icon i{
font-size: 36px;
text-align: center;
color: #fff;
padding: 25px 0;
}
.modal-btn{
max-width: 160px;
margin: auto;
text-align: center;
}
.dataTables_paginate .pagination li{
display: inline-block;
margin: 0 10px;
}
/*//////////////////////////////////// agriculture //////////////////////*/
#main-banner{
padding-top: 65px !important;
background: #142314;
}
.banner-btn .base-btn1 {
background: #0f9831 !important;
}
.banner-btn .base-btn1 {
max-width: 165px;
border-radius: 5px;
width: auto;
}
.banner-btn .base-btn1 {
font-size: 16px;
font-weight: 400;
padding: 12px 30px;
display: inline-block;
color: #fff;
cursor: pointer;
border: 0px;
transition: all 0.3s ease-in;
}
.banner-btn .base-btn1:hover{
color: #fff !important;
box-shadow: 0px 3px 3px 3px #27262680;
}
.about-area::before{
content: "";
position: absolute;
height: 100%;
width: 45%;
background: linear-gradient(to bottom, rgb(70 110 152 / 43%), rgb(17 14 88 / 23%)),url('../images/agriculture/business.jpg') center no-repeat;
background-size: cover;
top: 100%;
max-height: 520px;
}
.about-area .image{
display: block;
background: #129b2c40;
padding: 30px 20px;
border: 3px solid #16a025;
color: #fff;
width: 100%;
max-width: 70%;
height: auto;
min-height: 190px;
}
.about-area .image h5{
color: #fff;
font-weight: 400;
font-size: 18px;
line-height: 1.5;
}
.about-area .image h5 span{
padding: 0px 5px;
color: #c0ff00;
font-size: 28px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.5px;
}
.about-area .content{
padding: 35px;
border: 1px solid;
border-width: 20px;
border-image: linear-gradient(to right, rgb(43 208 28), rgb(178 230 67));
border-image-slice: 1;
height: 100%;
min-height: 380px
}
.nav-pills .nav-link{
font-size: 14px;
}
.nav-pills .nav-link:hover{
color: #159f26;
}
.nav-pills .nav-link.active{
color: #fff !important;
background-color: #159f26;
}
.tab-content h5{
font-size: 18px;
line-height: 1.5;
color: #ececec;
font-family: "Roboto";
letter-spacing: 0.5px;
line-height: 1.5;
font-weight: 400;
}
#triple-card-sec{
text-align: center;
padding-bottom: 60px;
background: #142314;
}
.triple-card{
display: inline-block;
width: 30%;
height: auto;
padding: 20px;
text-align: center;
transition: 0.2s all ease-in-out 0s;
border: 1px solid #16a025;
}
.customize-card{
min-width: 350px;
}
.triple-card h1{
color: #139d2a;
}
#about-sec .section-heading{
margin-bottom: 40px;
}
.triple-card h5 span{
font-size: 44px;
color: #b7f12b;
padding: 0 5px;
}
.triple-card h5{
color: #fff;
}
.customize-card{
margin: 0 -15px;
background: #16a025;
padding: 40px 0;
border-radius: 3px;
}
.customize-card h5 span{
color: #fff;
}
.customize-card h5{
color: #fff;
}
.choose_us .base-btn1{
max-width: 165px;
border-radius: 5px;
width: auto;
}
.choose_us .base-btn1:hover{
color: #fff !important;
}
.choose_us .browse{
max-width: 210px;
}
.choose_us .cu-menu li a:hover i{
color: #fff;
}
.how-it-work .work-img{
margin: 30px 0;
}
.how-it-work .base-btn1{
margin: auto;
width: 100%;
max-width: 175px;
display: block;
text-align: center;
}
.how-it-work .base-btn1:hover{
color: #fff !important;
}
.main-section-area{
background:url('../images/tab-bg1.png') center no-repeat;
background-size: cover;
position:relative;
}
.main-section-area .section-heading h2{
color: #fff !important;
}
.main-section-area::before{
display: none!important;
position: absolute;
height: 100%;
width: 100%;
content: '';
left: 0;
top: 0;
background: url(../images/black-shape.png) 100% 100% no-repeat;
background-size: contain;
transform: rotate(180deg);
max-height: 200px;
}
.main-section-area::after{
display: none!important;
position: absolute;
height: 100%;
width: 100%;
content: '';
left: 0;
bottom: 0;
background: url(../images/black-shape.png) 100% 100% no-repeat;
background-size: contain;
max-height: 200px;
}
.pricing2 .tab-content{
padding: 60px 120px;
border: 1px solid #0f9831;
}
.pricing2 .tab-content h6{
font-weight: 100;
line-height: 1.5;
letter-spacing: 0.5px;
text-align: center;
margin: 20px 0;
color: #ececec;
font-family: "Roboto";
font-size: 18px;
}
.pricing2 .tab-content p{
text-align: center;
font-size: 14px;
letter-spacing: 0.5px;
line-height: 1.7;
color: #000;
}
.full-card-area{
background: #0f9831;
padding: 30px;
width: 80%;
margin: auto;
margin-bottom: -35px;
border-radius: 5px;
text-align: center;
position: relative;
}
.full-card-area::after{
display: block!important;
position: absolute;
height: 50px;
width: 50px;
content: '';
left: 0;
background: #0f9831;
transform: rotate(45deg);
bottom: -25px;
right: 0;
margin: auto;
}
.pricing2 .card{
padding: 10px 20px;
display: block;
position: relative;
background: transparent;
border: 1px solid #fff;
transition: 0.2s all ease-in-out;
height: auto;
min-height: 285px;
}
.pricing2 .card h5{
color: #fff;
font-weight: 500;
font-size: 16px;
}
.pricing2 .card p{
color: #fff;
font-weight: 500;
font-size: 16px;
}
.pricing2 .card .myicon{
text-align: center;
}
.pricing2 .card .myicon i{
color: #fff;
font-size: 44px;
}
.pricing2 .card:hover{
background: #fff;
}
.pricing2 .card:hover h5{
color: #0f9831;
}
.pricing2 .card:hover p{
color: #104c1f;
}
.pricing2 .card:hover i{
color: #0f9831;
}
/*login*/
.fb {
background-color: #3B5998;
color: white;
}
.google {
background-color: #fff;
color: #000;
}
.google:hover{
color: #000 !important;
}
.sign-form .subtitle .btn:hover{
color: #fff;
}
.auth .sign-form{
background: transparent;
}
.auth .sign-form .heading .title{color: #fff !important;}
.sign-form .form-group .form-control{
background: #555;
color: #fff;
border: none;
}
.sign-form .form-group ::placeholder{
color: #999;
}
.bottom-login{
padding: 20px 0;
}
.bottom-login p{color: #999; text-align: right; margin: 0;}
.bottom-login a{float: right;}
.auth .sign-form{box-shadow: none !important;}
.login-img img{
width: 100%;
background-size: cover;
object-fit: cover;
}
/*.login-img{*/
/* position: relative;*/
/* background: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),url('../assets/images/login/investor.jpg') center no-repeat;*/
/* background-size: cover;*/
/* width: 100%;*/
/* height: auto;*/
/* min-height: 320px;*/
/*}*/
.login-img{
margin-top: 40px;
}
.login-img img::before{
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
background: #14231466;
z-index: 1;
height: 100%;
}
.login-content{
padding-left: 20px;
padding: 20px 0;
}
.forgot-color a{
color: #999;
}
/*/////////////////////// faq Accordian css ///////////////////////*/
.faq-sec{
background: #142314;
}
.questions {
max-width: 75%;
margin: 0 auto;
tex-align: center;
}
.accordion:hover {
transition: 0.2s all ease-in-out 0s;
box-shadow: 0 13px 34px -25px rgba(0,0,0,.41);
border-color: #fff;
}
.accordion {
background-color: transparent;
color: #fff;
cursor: pointer;
padding: 18px;
font-weight: 400;
width: 100%;
font-size: 15px;
transition: 0.4s;
border-bottom: 1px solid #ddd;
}
.accordion:after {
content: '\002B';
color: #b7f12b;
font-weight: bold;
float: right;
margin-left: 5px;
font-size: 26px
}
.accordion.active:after {
content: "\2212";
}
.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
padding: 0px 15px 0;
}
.panel p{
color: #ececec;
font-size: 16px;
font-weight: 600;
line-height: 1.7;
padding-top: 10px;
letter-spacing: 0.5px;
}
.answers {
margin-top: 90px;
}
/*////////// datatable css //////////*/
.div.dataTables_wrapper div.dataTables_length select{
margin: 0 10px;
}
.dataTables_length{
float:left;
}
.dataTables_filter{
float: right;
}
.input-sm{margin: 0 10px;}
.navbar-toggler-icon{
display: block;
background: #fff;
width: 25px;
height: 3px;
margin: 5px 0;
border-radius: 3px;
}
.profile-area{padding: 120px 0;}
.profileedit-area{padding: 120px 0;}
.about-area .nav-pills .nav-link{color: #b7f12b;}
.about-area .nav-pills .nav-link:active,.about-area .nav-pills .nav-link:focus{color: #fff !important;}
.auth .sign-form .subtitle a
{
display: inline-block !important;
margin: 0 5px;
}
.auth .sign-form .subtitle a button{
padding: 0 20px;
margin: 10px 0;
max-width: 220px;
}
.content-area{padding: 60px 0 0;}
.content-area .card{
text-align: center;
padding: 20px;
min-height: 120px;
}
.content-area .card h4{font-size: 18px;}
.content-area .card-content{padding: 5px 0;}
.investment-history{padding: 60px 0;}
.investment-history .card{max-width: 460px; margin:auto; border: none;}
.investment-history .card .card-content{padding: 30px 15px 0;}
.wallet-area{padding: 60px 0 0;}
.referralbtn .base-btn1{max-width: 160px; font-weight: 600;}
.mt-top{margin-top: 10px;}
.referralbtn a:hover,.referralbtn a:active{color: #fff !important; border-color: transparent;}
.profileedit-area .profile-content{padding-bottom: 15px;}
.profileedit-area .profile-content h4{
color: #104c1f;
margin: 0 0 15px;
}
.main-banner h5 span{
color: #c0ff00;
font-weight: 600;
}
.main-banner .left-content .content h3{
color: #fff;
}
.offering-banner h5{
color: #fff;
line-height: 1.7;
font-size: 18px;
}
.offering-banner h2{
color: #fff;
}
.offering-banner .slider-item h4{
color: #fff;
font-size: 20px;
}
.offering-banner .slider-item h3{
color: #c0ff00 !important;
}
.offering-banner{
position: relative;
background-size: cover;
width: 100%;
min-height: 100%;
}
.offering-banner .shape-cover{
width: 100%;
height: 100%;
z-index: 1;
opacity: 1;
position: absolute;
bottom: 0;
}
.offering-banner::before{
display: none;
}
.offering-banner .left-content{
position: absolute;
bottom: 0;
display: block;
max-width: 50%;
padding: 120px 100px;
}
.offering-banner .carousel-inner{
max-height: 650px;
position: relative;
}
.offering-banner .carousel-inner::before{
content: "";
position: absolute;
/* background: #00000070; */
left: 0;
right: 0;
bottom: 0;
z-index: 2;
opacity: 1;
width: 100%;
height: 100%;
}
.offering-banner .carousel-inner .carousel-item img{
-webkit-animation: zoomin 10s ease-in infinite;
animation: zoomin 10s ease-in infinite;
transition: all .5s ease-in-out;
overflow: hidden;
}
@keyframes zoomin {
0% {transform: scale(1);}
50% {transform: scale(1.1);}
100% {transform: scale(1);}
}
@-webkit-keyframes zoomin {
0% {transform: scale(1);}
50% {transform: scale(1.1);}
100% {transform: scale(1);}
}
.farms-area::before{
display: none;
}
.farms-area{
padding: 90px 0 120px;
background: linear-gradient(to bottom, rgb(7 7 7 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.commodities-area{
background: linear-gradient(to bottom, rgb(27 19 4 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.products-area{
background: linear-gradient(to bottom, rgb(27 19 4 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.farms-area .farm-img{position: relative;}
.farms-area .section-heading{
margin-bottom: 0 !important;
}
.farm-card{
background: #142314;
padding: 20px;
box-shadow: rgb(11 9 9 / 56%) 2px 3px 3px 2px;
margin: 10px 0;
}
.farm-card .card-title{
padding-bottom: 10px;
text-align: center;
}
.farm-card .card-title h3{
color: #c0ff00;
}
.farm-card .card-block h5{
color: #fff;
}
.farm-card .card-block h6{
color: #b1afaf;
}
.farmcard-content h5{
color: #fff;
}
.farmcard-content p{
margin: 0;
color: #b1afaf;
}
.farm-content{
position: relative;
right: 50px;
}
.farm-content::before{
background: url('../images/offering/3.png') no-repeat;
content: "";
position: absolute;
left: 50px;
right: 0;
top: -5px;
width: 100%;
height: 100%;
background-size: cover;
}
.farm-card .accordion{
background-color: transparent;
color: #fff;
cursor: pointer;
padding: 10px;
font-weight: 400;
width: 100%;
font-size: 15px;
transition: 0.4s;
border-bottom: none;
background: #00000036;
border-radius: 3px;
font-family: "poppins";
margin-top: 10px;
}
.farm-card .accordion:after{
content: '\002B';
color: #000;
font-weight: bold;
float: left;
margin-right: 10px;
background: #b7f12b;
padding: 0px 7px;
font-size: 20px;
width: 25px;
height: 25px;
border-radius: 50%;
margin-bottom: 0;
}
.farm-card .questions{
max-width: 100%;
margin: 0;
}
.farm-card .panel{
background: #00000030;
margin: 10px 0;
}
.farm-card .panel p{
font-family: "poppins";
font-weight: 400;
}
.farm-card .base-btn1{
width: 100px;
padding: 5px 15px;
text-align: center;
margin: 5px auto;
font-family: "poppins";
}
.custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #0f9831;
background-color: #0f9831;
}
/*///////////// new css 15oct ///////////*/
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
margin-top: 220px;
z-index: 1;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width: 100%;
position: absolute;
background: #EBEFD3;
}
#wrapper.toggled #page-content-wrapper {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
#sidebar-wrapper ul .base-btn2{
margin-left: 20px;
margin-top: 10px;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
margin-left: 30px;
color: #fff;
font-family: "poppins";
padding: 10px 0;
line-height: 1.7;
}
.sidebar-nav li:last-child{
border-bottom: none;
}
.sidebar-nav li a {
line-height: 26px;
font-size: 16px;
position: relative;
padding: 10px 0px;
transition: all linear 0.3s;
font-family: "poppins";
color: #000;
}
.sidebar-nav li i{
color: #fff;
margin-right: 10px;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 65px;
font-size: 18px;
line-height: 60px;
border: none;
}
.sidebar-brand > .navbar-brand{
padding-left: 0
}
.sidebar-nav > .sidebar-brand a {
color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
@media(min-width:768px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
position: relative;
padding-top: 90px;
}
#wrapper.toggled #page-content-wrapper {
position: relative;
margin-right: 0;
}
}
.copyright_area{
padding: 24px 0px 25px;
background: #0e4119;
border-top: 1px solid #000;
text-align: center;
}
.copyright_area .left-area p {
transition: 0.2s all ease-in-out 0s;
}
.copyright_area .left-area p {
font-size: 16px;
line-height: 26px;
margin-bottom: 0px;
color: rgba(255, 255, 255, 0.8);
}
#page-area-wrapper{
padding: 60px 0;
}
.breadcrumb-area{
padding: 60px 0;
}
.header .mainmenu-area{
padding: 12px 0;
}
.sidebar-profile-brand .profile-brand img{
width: 100%;
max-width: 90px;
border-radius: 50%;
object-fit: cover;
}
.sidebar-profile-brand{
padding-left: 15px;
border-bottom: none !important;
}
.sidebar-profile-brand h5,p{
color: #000;
}
.sidebar-profile-brand h5{
margin-top: 15px;
}
.wallet-rapper .card{
background: #d2d2d2;
}
.new-btn{
padding: 5px;
background: #0f9831;
color: #fff;
border-radius: 5px;
font-family: "poppins";
font-size: 16px;
margin: 0 15px;
}
.new-btn:hover{
color: #fff;
}
.wallet-rapper .card .card-content{
margin: 30px 0;
}
.wallet-rapper .card {
text-align: center;
padding: 30px;
min-height: 120px;
max-width: 420px;
margin: auto;
border: 2px solid #888;
border-radius: 0;
}
.table-card{
background: #262F19;
padding: 25px 20px;
color: #fff;
}
.table-card table thead th,.table-card table tbody td{
color: #fff;
}
.table-card table thead th{
border: none;
}
.table-card table tbody td{
border-bottom: 1px solid #dee2e6;
}
.wallet_ul ul{
list-style: none;
padding: 0;
margin: 0;
}
.wallet_ul ul li{
display: inline-block;
font-family: "poppins";
line-height: 1.7;
}
.wallet_ul ul li i{
color: #5acc00;
font-size: 32px;
padding-bottom: 15px;
}
.wallet_ul ul li:first-child{
margin-right: 20px;
}
.table-card h4{
text-align: center;
color: #FFFFFF87;
margin-bottom: 20px;
font-weight: 500;
}
.invest_area_new{
padding: 0 0 60px;
}
.investment_admin{
padding: 30px;
background: #E9E9E9;
}
.invest_card{
position: relative;
background: linear-gradient(to bottom, rgba(1, 88, 55, 0.986), rgba(10, 80, 1, 0.73)),
url('../images/admin/bg_shape.png')center no-repeat;
background-size: cover;
padding: 20px;
text-align: center;
color: #fff;
}
.invest_img img{
max-width: 120px;
border-radius: 50%;
}
.invest_content{
padding: 20px 0;
}
.invest_content h3,p{
color: #fff;
}
.invest_btn button{
background: #fff;
color: #000;
padding: 10px;
border: none;
box-shadow: none;
font-family: "poppins";
}
.invest_h1{
color: #000;
font-family: "poppins";
font-size: 42px;
margin-bottom: 15px;
font-weight: 400;
}
.invest_h3{
color: #104c1f;
font-family: "poppins";
margin-bottom: 15px;
font-weight: 400;
}
#page-full-wrapper {
position: relative;
padding-top: 90px;
min-height: 100vh;
}
.profileedit-area .form-control{
background-color: transparent;
padding: 20px 10px;
color: #555;
font-size: 16px;
}
.profileedit-area{
padding: 60px;
}
.edit-profile a button{
background: #0e4119;
color: #ffffff;
}
.edit-profile a button:hover{
color: #fff;
background: #0e4119;
border-color: #0e4119;
}
.edit-profile a button:active,.edit-profile a button:focus{
color: #0e4119;
background: transparent;
border-radius: 50px;
outline: none;
}
.profileedit-area .form-control:active,.profileedit-area .form-control:focus{
border-color: #0e4119;
}
.profile-area .profile-content {
padding-bottom: 5px;
}
/* //////////// login ///////////// */
.login-wrapper{
background: linear-gradient(to bottom, rgba(245, 246, 252, 0), rgb(0, 0, 0)),url('../images/admin/login.jpg') center no-repeat;
background-size: cover;
width: 100%;
position: relative;
background-position: inherit;
padding: 80px 0 10px !important;
}
.login-card_wrapper{
position: relative;
display: block;
width: auto;
max-width: 500px;
margin-left: auto;
background: linear-gradient(to bottom, rgb(10, 27, 9), rgb(10 21 11 / 62%)),url('../images/admin/bg_shape.png') center no-repeat !important;
}
/*16oct*/
.page_section_wrapper h3{
font-family: "poppins";
padding: 0px 0 20px;
}
.referral_card_area{
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
border: none;
}
/* //////////////////////////////// Phresh farm 17 oct New css start here ////////////////////////////////////////////////////// */
.mainmenu-area .navbar .navbar-brand img{
height: auto;
max-width: 180px;
}
.main_pf{
background: url('../images/phreshfarm_img/banner_pf.png')center no-repeat;
background-size: 100%;
width: 100%;
height: auto;
min-height: 100vh;
position: relative;
}
.topbar_area_pf{
background: rgba(0,0,0,.7);
}
.topbar_area_pf .navbar{
padding: 0 40px;
}
.topbar_area_pf .nav-item{
position: relative;
}
.topbar_area_pf .nav-item span:first-child{
color: #fff;
font-family: "poppins";
margin-right: 15px;
font-size: 20px;
}
.topbar_area_pf .nav-item span .dropdown-toggle {
white-space: nowrap;
color: #fff;
font-size: 18px;
}
.topbar_area_pf .nav-item .bars_pf i{
font-size: 36px;
color: #fff;
margin-left: 10px;
}
.page-content-wrapper{
position: relative;
padding-top: 40px;
background: transparent;
}
/* tab css start */
.pf_tab_one{
background: rgba(0,0,0,.7);
min-height: 550px;
height: 100%;
border-radius: 10px;
position: relative;
}
.pf_tab_one ul{
list-style: none;
padding: 0;
margin: 0;
}
.pf_tab_one ul li{
display: inline-block;
font-size: 22px;
padding: 25px 0;
cursor: pointer;
background: #0000009e;
border-top-left-radius: 10px;
}
.pf_tab_one ul li:last-child{
text-align: right;
border-top-right-radius: 10px;
}
.pf_tab_one li span{
color: #fff;
font-family: "poppins";
padding: 0 20px;
}
/* inner tab css */
.pf_inner_tab_one{
background: #fff;
position: absolute;
width: 100%;
height: auto;
border-radius: 10px;
right: 20px;
min-height: 320px;
}
.pf_invest_cont{
text-align: center;
justify-content: center;
padding: 170px 180px;
}
.pf_invest_cont h5{
color: #2bb673;
max-width: 95%;
}
.pf_btn{
background: #1d3b2d;
color: #8dc63f;
min-width: 150px;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 5px;
font-family: "Avenir 03",sans-serif;
font-size: 11px;
line-height: 12px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 600;
}
.pf_btn:hover{
color: #8dc63f;
box-shadow: 0 16px 39px -10px rgba(0,0,0,.54);
}
.pf_invest_top{
background: #8dc63f;
position: relative;
padding: 25px 30px 0;
border-top-right-radius: 10px;
min-height: 220px;
}
.pf_invest_top::before{
background: url('../images/phreshfarm_img/graph-green-1.webp') center no-repeat;
content: "";
position: absolute;
width: 100%;
height: 143px;
left: 0;
right: 0;
background-size: cover;
bottom: 30px;
}
.pf_invest_top h5{
color: #fff;
width: 180px;
}
.pf_invest_top p{
color: #000;
font-size: 22px;
font-weight: 600;
font-family: "poppins";
margin-top: 95px;
position: relative;
}
.pf_invest_bottom::before{
display: none;
}
.pf_invest_bottom{
background: #2bb673;
border-top-right-radius: 0;
border-bottom-right-radius: 10px;
}
.pf_invest_bottom span{
padding: 20px 0;
color: #000;
font-weight: 600;
font-size: 22px;
font-family: "poppins";
}
.pf_invest_bottom .pf_btn{
background: #fff;
color: #2bb673;
margin: 25px 0;
}
.sidebar-nav .active{
padding: 12px 0;
border-radius: 10px;
color: #000;
background: #fff;
}
.sidebar-nav .active span{
border: none;
}
.sidebar-nav .active span p{
color: #0e4119;
margin-bottom: 0;
}
.sidebar-nav .active span i{
color: #0e4119;
}
.sidebar-nav li span{
border-bottom: 2px solid #c1bfbf75;
width: 80%;
display: block;
padding: 0 0;
margin: 0 15px;
}
.sidebar-nav li span p{
color: #b1ddce;
margin-left: 25px;
}
.sidebar-nav li i{
float: left;
background: -webkit-gradient(linear, left top, left bottom, from(rgb(93 191 12)), to(rgb(9 216 135)));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 20px;
}
.pf_tab_one .pf_active span{
color: #8dc63f;
position: relative;
}
.pf_tab_one .pf_active{
background: transparent;
}
.pf_tab_one .pf_active span::before{
content: "";
width: 30px;
height: 4px;
position: absolute;
background: #8dc63f;
bottom: -8px;
}
.one_second_cont{
text-align: center;
padding: 15px 0;
background: #f1f2f2;
margin: 20px;
border: 1px solid #8dc63f;
border-radius: 5px;
}
.one_second_cont p{
font-size: 12px;
color: #000;
margin: 10px;
font-family: "poppins";
}
.second_invest_top{min-height: 280px;}
.second_invest_top::before{
display: none;
}
.second_invest_top span{
display: block;
width: 100%;
color: #f8f8f8b4;
font-size: 12px;
font-family: "poppins";
}
.second_invest_top p{
color: #000;
font-size: 22px;
font-weight: 600;
font-family: "poppins";
margin-top: 10px;
}
.second_invest_bottom{
border-radius: 0;
min-height: 170px;
}
.second_invest_bottom::before{
background: url('../images/phreshfarm_img/graph-green-2.webp') center no-repeat;
content: "";
position: absolute;
width: 100%;
height: 143px;
left: 0;
right: 0;
background-size: cover;
bottom: 30px;
}
/* ///////// 3rd tab css ////////// */
.pd-form{
margin: 85px 0 0;
padding: 0 40px;
}
.pd-form h6{
padding: 13px 20px;
background: #caf3e06b;
border-radius: 5px;
}
.pd-form h6 span{font-weight: 400;}
.pd-form .pf_btn{
background: #a7a9ac;
color: #fff;
}
.code_share{
padding: 30px 40px;
padding-top: 15px;
}
.code_share ul{
list-style-type: none;
margin-left: 15px;
}
.code_share ul li{
display: inline-block;
margin: 0 12px;
background: transparent;
margin-top: 5px;
padding: 0;
}
.code_share ul li:first-child{
margin-left: 0;
}
.code_share ul li span{
background: transparent;
padding: 5px 10px;
border: 1px solid;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
}
.code_share ul li span i{
margin-right: 5px;
}
.pf_percent{
padding: 0px 40px;
padding-bottom: 5px;
}
.pf_percent p{
color: #0f9831;
font-size: 14px;
text-transform: uppercase;
margin: 0;
}
.pf_percent h2{
color: #0f9831;
font-weight: 600;
text-align: right;
}
.pf_percent h6{
color: #000;
font-weight: 400;
text-align: left;
padding: 40px 20px 0;
}
.pf_referal_btm{
padding: 15px 40px;
}
.pf_referal_btm p{
color: #000;
font-family: "poppins";
font-size: 14px;
}
.referral_invite_side{
padding: 30px 40px;
}
.referral_invite_side p{
margin-top: 0;
font-size: 12px;
font-weight: 400;
color: #f8f8f8;
position: relative;
}
.referral_invite_side h5{
position: relative;
font-size: 24px;
}
/* ////////////////// profile css ///////// */
.profile_pf_Sec{
padding: 25px 60px;
height: 445px;
overflow-y: scroll;
padding-bottom: 0px;
}
.profile_pf_Sec h3{
color: #104c1f;
}
.profile_pf_Sec label{
color: #104c1f;
font-family: "poppins";
font-weight: 600;
}
.profile_pf_Sec .form-control{
color: #000;
background: #cff7e459;
border: 1px solid #cff7e459;
border-radius: 3px;
font-size: 12px;
font-weight: 400;
font-family: "poppins";
}
.profile_pf_Sec .form-control:active,.profile_pf_Sec .form-control:focus{
border-color: #8dc63f;
box-shadow: none;
}
.pf_profile_btm{
border-top: 2px solid #999;
text-align: right;
padding: 10px 0;
}
.pf_profile_btm p{
font-size: 12px;
}
/* ///////////// investiment history sec ////////////// */
.pf_inv_history_Sec{
padding: 0 40px;
min-height: 440px;
}
.pf_invest_history{
margin: 20px 0px;
padding: 40px 60px;
text-align: left;
min-height: 175px;
}
.pf_invest_history p {
margin: 0;
}
/* //////////////// side menu animation css /////////////// */
.side_animation_wrapper{
position: absolute;
display: block;
width: 100%;
max-width: 340px;
height: 100%;
background: #fff;
left: 0;
bottom: 0;
z-index: 999999;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
-webkit-transition: left .5s ease;
transition: left .5s ease;
}
.side_menu_list{
margin-top: 15px;
}
.side_menu_list ul{
list-style: none;
padding: 0;
margin: 0 70px;
}
.side_menu_list ul li{
padding: 15px 0;
color: #104c1f;
line-height: 1.7;
letter-spacing: 0.5px;
font-family: "poppins";
font-size: 14px;
border-bottom: 1px solid #b7b6b6;
text-transform: uppercase;
position: relative;
font-weight: 600;
}
.side_menu_list ul li a{
transition: 0.3s all ease-in-out;
}
.side_menu_list ul li:last-child{
border: none;
}
.rj{
position: absolute;
background: #e4f4e870;
right: -70px;
bottom: 0;
width: 50%;
height: 50px;
opacity: 0;
transition: width 0.5s ease-in-out;
}
.side_menu_list ul li:hover .rj{
opacity: 1;
width: 70%;
transition: width 0.5s ease-in-out;
}
.side_menu_list ul li:hover a{
color: #93e027;
}
.bottom_side_info ul{
list-style: none;
padding: 0;
margin: 0 70px;
}
.bottom_side_info ul li{
font-size: 12px;
font-family: "poppins";
padding: 2px 0;
}
.bottom_side_info ul li a{
color: #999;
transition: 0.2s all ease-in-out;
}
.bottom_side_info ul li a:hover{
color: #8dc63f;
}
.side_pf_copyright{
text-align: center;
margin-left: 20px;
padding-top: 15px;
}
.side_pf_copyright p{
color: #999;
font-size: 12px;
font-family: "poppins";
}
.sidemenu_cancel{
text-align: right;
padding: 15px;
padding-bottom: 20px;
}
.sidemenu_cancel img{
width: 100%;
max-width: 70px;
}
.sidemenu_cancel img:hover{
transform: rotate(90deg);
transition: 0.6s all ease-in-out;
}
#wrapper{position: relative;}
.pf_wrapper::before{
position: absolute;
background: linear-gradient(90deg, rgba(141, 198, 63, 0.7), rgba(43, 182, 115, 0.7));
content: "";
width: 100%;
height: 100%;
z-index: 999999;
left: 0;
right: 0;
top: 0;
}
/* ////////////////////////////////////////////////// */
.pf_nav_item{
margin-right: 20px;
}
.nav-item .pf_dropdwn i{
color: #fff;
font-size: 20px;
cursor: pointer;
}
.pf-dropdown-menu{
width: 100%;
background: #1d3b2d !important;
top: 55px;
border-radius: 5px !important;
}
.pf-dropdown-menu a{
color: #fff !important;
border-bottom: 4px solid rgb(247 241 241 / 35%) !important;
font-weight: 500 !important;
font-size: 15px !important;
}
.pf-dropdown-menu a:last-child{
border: none !important;
}
.pf-dropdown-menu a:hover{
background: #1d3b2d !important;
}
.pf_dropdwn img{
width: 100%;
max-width: 40px;
border-radius: 50%;
}
/* add transition effect on Click */
.pf_click_one, .pf_click_second{
transition: min-width 0.5s ease-in-out 0s;
}
/* sliding animation css */
.moved {
left: -400px;
}
/* .slide-out {
animation: slide-out 0.5s forwards;
-webkit-animation: slide-out 0.5s forwards;
}
@keyframes slide-out {
0% { transform: translateX(0%); }
50% { transform: translateX(-20%); }
}
@-webkit-keyframes slide-out {
0% { -webkit-transform: translateX(0%); }
50% { -webkit-transform: translateX(-20%); }
} */ | public/assets/css/New folder/custom.css | .testimonial {
padding: 121px 0px 115px;
background: #142314;
}
.auth .sign-form .reg-text a:hover{
color: #0f9831 !important;
}
.auth .sign-form button:hover{
color: #fff !important;
}
.testimonial h2, .testimonial p{
color: #333 !important;
}
.fotter-logo h3{
margin: 0;
color: #fff;
font-weight: 900;
}
.navbar-brand h3{
margin: 0;
color: #fff;
font-weight: 900;
}
.text-center{
outline: none;
text-align: center;
}
/*////////////////////////*/
.referral-icon p{
color: #f8f8f8;
}
.mainmenu-area{
background: linear-gradient(to bottom, rgb(22 29 20), rgb(3 120 34));
}
.navbar-brand h3{
color: #fff;
}
.fotter-logo h3{
color: #fff;
}
.fotter-logo img{
width: 100%;
max-height: 120px;
height: auto;
max-width: 120px;
}
.left-content .box{
display: inline-block;
position: relative;
overflow: hidden;
width: 100%;
height: auto;
background: #fff;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
text-align: center;
padding: 30px 0;
border-radius: 5px;
}
.box-content{
display: inline-block;
width: 550px;
}
.box-content p{
color: #000;
font-size: 16px;
}
.hero-area{
padding: 140px 0 90px !important;
}
.choose_us .cu-menu li a {
display: inline-block;
background: #fff;
border-radius: 5px;
margin: 0 10px;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
transition: 0.2s all ease-in-out 0s;
width: 100%;
padding: 25px 0;
}
.choose_us .cu-menu li a .title{
color: #000 !important;
font-size: 16px;
font-weight: 500;
}
.choose_us .cu-menu li a:hover{
transition: 0.2s all ease-in-out 0s;
}
.choose_us .cu-menu li a:hover .icon{
background: linear-gradient(to bottom, rgb(22 29 20), rgb(3 120 34));
color: #fff;
transition: 0.2s all ease-in-out 0s;
}
.choose_us .cu-menu li a:hover .title{
color: #000 !important;
}
.section-header h3{
color: #fff;
text-align: center;
font-size: 36px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.referral-header h3{
text-transform: none !important;
}
/*
.cu-menu li a.active{
background-color: red !important;
}
.cu-menu li a.active .title{
color: #fff !important;
} */
.align-center{
text-align: center;
}
.breadcrumb-area {
padding: 120px 0px 117px;
position: relative;
overflow: hidden;
background: linear-gradient(to bottom, rgb(73 214 1), rgb(23 123 65));
}
.base-btn2 {
font-size: 16px;
font-weight: 600;
padding: 12px 35px;
display: inline-block;
color: #0f9831;
border-radius: 50px;
cursor: pointer;
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
background: #fff;
border: 1px solid #fff;
}
.base-btn2:hover {
background: #fff;
color: #0f9831;
}
/* edit profile and my account css */
.form-width{
min-width: 250px;
}
.form-align{
display: inline-block;
margin-right: 30px;
}
.form-align label{
color: #fff;
}
.profileedit-area .form-group label{
color: #555;
}
#my-account-sec{
background: #0f9831;
box-shadow: 0px 0px 29.4px 0.6px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 0px 29.4px 0.6px rgba(0, 0, 0, 0.5);
padding: 30px 15px;
}
.profile-img{
display: block;
width: 220px;
height: 220px;
position: relative;
overflow: hidden;
border-radius: 50%;
background: #777;
margin: 25px auto;
border: 2px solid #777;
}
.profile-img img{
width: 100%;
height: auto;
min-height: 220px;
max-width: 220px;
object-fit: cover;
}
.edit-profile{
position: relative;
padding: 10px 0;
text-align: center;
}
.edit-profile i{
color: #fff;
font-size: 16px;
}
.profile-content{
display: inline-block;
position: relative;
padding: 5px 0px;
width: 100%;
border-bottom: 1px solid #ccc;
margin-bottom: 20px;
}
.profile-content h4{
color: #fff;
}
.email-sec, .contact-sec{
display: inline-block;
position: relative;
margin-bottom: 15px;
padding: 0 0;
overflow: hidden;
color: #fff;
}
.color{
color: #fff;
}
.address-sec{
padding-top: 20px;
margin-top: 20px;
}
.email-sec i, .contact-sec i, .birth-sec i, .address-sec i{
padding-right: 10px;
}
.btn-change1 {
background: transparent !important;
border: 1px solid #fff !important;
color: #fff !important;
transition: all ease 0.3s !important;
}
.btn-change1:hover {
background-image: -webkit-linear-gradient(169deg, #ff4343 0%, #aa52a1 37%, #5560ff 83%) !important;
transition: all ease 0.3s !important;
border: 1px solid #a053ab !important;
box-shadow: none;
color: #fff !important;
}
.width-form{
min-width: 580px;
}
/* edit-profile */
.email-sec .profile-name{
/* padding: 10px 0; */
color: #fff;
}
.form-align{
display: inline-block;
padding-right: 30px;
margin-right: 45px;
}
.no-space{
margin: 0;
padding: 0;
}
.no-image{
display: block;
margin: auto;
position: relative;
text-align: center;
top: 100px;
}
.edit-sec0{
width: 100%;
}
.no-border{
border: none;
margin-bottom: 0px;
}
.custom-input{
background: transparent !important;
color: #fff !important;
font-size: 14px;
}
.custom-input:hover, .custom-input:active, .custom-input:focus{
background: transparent;
}
/* image upload css icon */
.profile-pic {
max-width: 200px;
max-height: 200px;
display: block;
}
.file-upload {
display: block;
opacity: 0;
position: absolute;
bottom: 8px;
left: -25px;
}
.circle {
border-radius: 1000px !important;
overflow: hidden;
width: 128px;
height: 128px;
border: 8px solid rgba(255, 255, 255, 0.7);
position: absolute;
top: 72px;
}
img {
max-width: 100%;
height: auto;
}
.p-image {
position: absolute;
top: 60%;
right: 0;
color: #666666;
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
background: #999999;
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid #fff;
padding: 10px 13px;
left: 200px;
margin: auto;
}
.p-image i{
color: #fff;
cursor: pointer;
}
.p-image:hover {
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
font-size: 1.2em;
}
.upload-button:hover {
transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
color: #999;
}
.custom-control-label {
color: #777 !important;
}
/* referral css */
.nopad{
padding-bottom: 40px !important;
}
.breadcrumb-area .referral-p{
color: #fff !important;
letter-spacing: 0.5px !important;
line-height: 1.7 !important;
text-align: center !important;
}
.referral-icon{
text-align: center;
display: block;
margin-bottom: 30px;
}
.referral-icon img{
width: 100%;
height: auto;
max-width: 120px;
}
#referral-sec{
position: relative;
background: #fff;
padding: 60px 0 0;
text-align: center;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}
#referral-sec .code-sec img{
width: 100%;
height: auto;
max-width: 20px;
margin-left: 15px;
}
#referral-sec .code-sec p a{
color: #0f9831;
text-decoration: none;
font-size: 16px;
padding-top: 5px;
}
#btn-section{
position: relative;
overflow: hidden;
text-align: center;
padding: 40px 0 40px;
background: #fff;
}
#btn-section .referralbtn{
display: block;
margin: auto;
text-align: center;
position: relative;
}
.base-btn1{
width: 220px;
border-radius: 5px;
}
.referralbtn a:hover{
color: #fff !important;
}
.base-btn1:hover{
color: #fff !important;
}
.base-btn1:hover{
background: #0f9831 !important;
}
.base-btn1{
background: #0f9831 !important;
}
.custombtn0:hover{
color: #fff !important;
}
/* logn images css */
.img-place{
display: block;
margin-bottom: 30px;
position: relative;
text-align: center;
}
.img-place img{
max-width: 120px;
min-height: 90px;
}
.signin-sec a{
color: #000;
}
.signin-sec a:hover{
color: #0f9831;
}
.signin-form .up-sec:hover{
color: #0f9831 !important;
}
.signin-form .up-sec{
color: #0f9831;
}
.banner-content{
padding: 20px 20px;
background: #0f9831;
box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
border-radius: 5px;
}
#hero-area{
padding: 90px 0 90px !important;
}
.contact-field{
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
background: -webkit-linear-gradient(40deg, #ff0000 0, #ff0000 100%);
background: -o-linear-gradient(40deg, #ff0000 0, #ff0000 100%);
background: linear-gradient(50deg, #ff0000 0, #ff0000 100%);
border-radius: 3px;
padding: 22px 30px 25px;
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
padding: 60px 0px;
text-align: center;
}
.contact-field .title{
color: #fff;
text-align: center;
}
.contact .contact-field .address-list {
padding: 22px 0px 0px;
}
.contact .contact-field .address-list li{
color: #fff;
display: inline-block;
margin: 0 20px;
text-align: center;
}
.contact .contact-field .address-list li i{
padding-bottom: 12px;
font-size: 20px;
}
.contact .contact-field .address-list li p{
color: #fff;
}
.contact-header h2{
color: #0f9831 !important;
}
.privacy-header h3{
color: #0f9831;
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}
.privacy-content p{
color: #000;
text-align: center;
letter-spacing: 0.5px;
line-height: 1.7;
}
.footer .copy-bg .left-area p:hover{
color: #fff;
transition: 0.2s all ease-in-out 0s;
}
.footer .copy-bg .left-area p{
transition: 0.2s all ease-in-out 0s;
}
.privacypolicy{
padding: 120px 0 137px !important;
}
.responsive-table #tablesec_wrapper .row{
width: 100% !important;
margin: 0 !important;
}
.start-invest .table{
width: 100%;
}
.table-column{
width: 100% !important;
}
/*tab and tables css */
.tab-content {
padding:10px;
}
.nav-tabs {
border-bottom: none;
display: inline-flex;
}
.tab-btn0{
display: block;
line-height: 50px;
padding: 0px 50px;
border-radius: 50px;
font-size: 18px;
font-weight: 600;
color: #131333;
-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
margin: 0px 5px;
transition: 0.2s all ease-in-out 0s;
}
.nav-tabs li a:hover{
color: red;
transition: 0.2s all ease-in-out 0s;
}
.nav-tabs li .active{
background: red !important;
color: #fff !important;
transition: 0.2s all ease-in-out 0s;
}
.dataTables_wrapper .row:first-child{
width: 100% !important;
}
.dataTables_wrapper .row:last-child{
width: 100% !important;
}
.fade:not(.show){
opacity: 1 !important;
}
#example2-tab1-dt_wrapper .row{
width: 100% !important;
}
.referral-icon h5{
color: #fff;
line-height: 1.9;
margin-bottom: 15px;
}
.referral-icon h2{
color: #fff;
}
.investmentbtn{
max-width: 320px;
}
.investmentbtn{
min-width: 350px !important;
height: 60px;
vertical-align: middle;
padding: 15px 0;
background: #0f9831;
color: #fff;
font-weight: 600;
font-size: 18px
}
.breadcrumb-area .title {
font-size: 32px;
line-height: 50px;
font-weight: 600;
margin-bottom: 11px;
color: #fff;
text-align: center;
}
.profit-btn {
background: #fff !important;
color: #0f9831;
font-weight: 600;
}
/* add investment css */
.custompad{
padding: 30px 0 !important;
}
.Investment-header h3{
padding: 20px 0 !important;
text-transform: capitalize;
}
.Investment-area h5{
font-weight: 600;
}
.investment-select{
display: block;
width: 100%;
max-width: 490px;
height: auto;
position: relative;
overflow: hidden;
text-align: left;
margin: auto;
}
.mt-top{
margin-top: 30px;
}
.investment-select label{
font-weight: 600;
color: #000;
padding-left: 10px;
}
.Investment-area .radio input[type="radio"] {
opacity: 0;
z-index: 1;
}
.Investment-area .radio-danger input[type="radio"]:checked + label::before {
border-color: #d9534f;
}
.Investment-area .radio label::before {
content: "";
display: inline-block;
position: absolute;
width: 17px;
height: 17px;
left: 0;
top: 3px;
border: 1px solid #e01212;
border-radius: 50%;
background-color: #fff;
-webkit-transition: border 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out;
}
.Investment-area .radio-danger input[type="radio"]:checked + label::after {
background-color: #d9534f;
}
.Investment-area .radio input[type="radio"]:checked + label::after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.Investment-area .radio label::after {
display: inline-block;
position: absolute;
content: " ";
width: 11px;
height: 11px;
left: 3px;
top: 6px;
border-radius: 50%;
background-color: #e01212;
-webkit-transform: scale(0, 0);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.investmentbutton{
margin-bottom: 30px;
}
.addbtn{
max-width: 300px;
border-radius: 5px;
width: 100%;
}
.paragraph-sec{
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.paragraph-sec p{
color: #000;
font-weight: 600;
}
.paragraph-sec p:before{
content: '';
position: absolute;
left: 52%;
right: 0;
top: 12px;
z-index: 1;
opacity: 0.5;
border: 1px solid #777;
width: 120px;
}
.paragraph-sec p::after{
content: '';
position: absolute;
right: 52%;
top: 12px;
z-index: 1;
opacity: 0.5;
border: 1px solid #777;
width: 120px;
}
.custom-select{
width: 100%;
max-width: 460px;
}
.custom-amount{
width: 100%;
max-width: 460px;
margin: 0 auto;
display: block;
}
/* success page css */
.success-area{
padding: 60px 0 !important;
}
.success-h5{
text-align: center;
color: #fff;
font-weight: 500;
line-height: 1.5;
}
#success-sec{
padding-top: 60px !important;
}
#success-sec .section-header h3{
padding-bottom: 30px;
}
.custom-model{
max-width: 350px;
margin: 0 auto;
}
.custom-body{
padding: 10px 0;
text-align: center;
}
.custom-body p{
margin: 0;
padding: 0;
font-size: 16px;
color: #000;
font-weight: 600;
}
.custom-footer{
border: none;
}
.custom-header{
border: none;
}
.modal-icon{
display: block;
margin: auto;
width: 90px;
height: 90px;
background: red;
border-radius: 50%;
text-align: center;
}
.modal-icon i{
font-size: 36px;
text-align: center;
color: #fff;
padding: 25px 0;
}
.modal-btn{
max-width: 160px;
margin: auto;
text-align: center;
}
.dataTables_paginate .pagination li{
display: inline-block;
margin: 0 10px;
}
/*//////////////////////////////////// agriculture //////////////////////*/
#main-banner{
padding-top: 65px !important;
background: #142314;
}
.banner-btn .base-btn1 {
background: #0f9831 !important;
}
.banner-btn .base-btn1 {
max-width: 165px;
border-radius: 5px;
width: auto;
}
.banner-btn .base-btn1 {
font-size: 16px;
font-weight: 400;
padding: 12px 30px;
display: inline-block;
color: #fff;
cursor: pointer;
border: 0px;
transition: all 0.3s ease-in;
}
.banner-btn .base-btn1:hover{
color: #fff !important;
box-shadow: 0px 3px 3px 3px #27262680;
}
.about-area::before{
content: "";
position: absolute;
height: 100%;
width: 45%;
background: linear-gradient(to bottom, rgb(70 110 152 / 43%), rgb(17 14 88 / 23%)),url('../images/agriculture/business.jpg') center no-repeat;
background-size: cover;
top: 100%;
max-height: 520px;
}
.about-area .image{
display: block;
background: #129b2c40;
padding: 30px 20px;
border: 3px solid #16a025;
color: #fff;
width: 100%;
max-width: 70%;
height: auto;
min-height: 190px;
}
.about-area .image h5{
color: #fff;
font-weight: 400;
font-size: 18px;
line-height: 1.5;
}
.about-area .image h5 span{
padding: 0px 5px;
color: #c0ff00;
font-size: 28px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.5px;
}
.about-area .content{
padding: 35px;
border: 1px solid;
border-width: 20px;
border-image: linear-gradient(to right, rgb(43 208 28), rgb(178 230 67));
border-image-slice: 1;
height: 100%;
min-height: 380px
}
.nav-pills .nav-link{
font-size: 14px;
}
.nav-pills .nav-link:hover{
color: #159f26;
}
.nav-pills .nav-link.active{
color: #fff !important;
background-color: #159f26;
}
.tab-content h5{
font-size: 18px;
line-height: 1.5;
color: #ececec;
font-family: "Roboto";
letter-spacing: 0.5px;
line-height: 1.5;
font-weight: 400;
}
#triple-card-sec{
text-align: center;
padding-bottom: 60px;
background: #142314;
}
.triple-card{
display: inline-block;
width: 30%;
height: auto;
padding: 20px;
text-align: center;
transition: 0.2s all ease-in-out 0s;
border: 1px solid #16a025;
}
.customize-card{
min-width: 350px;
}
.triple-card h1{
color: #139d2a;
}
#about-sec .section-heading{
margin-bottom: 40px;
}
.triple-card h5 span{
font-size: 44px;
color: #b7f12b;
padding: 0 5px;
}
.triple-card h5{
color: #fff;
}
.customize-card{
margin: 0 -15px;
background: #16a025;
padding: 40px 0;
border-radius: 3px;
}
.customize-card h5 span{
color: #fff;
}
.customize-card h5{
color: #fff;
}
.choose_us .base-btn1{
max-width: 165px;
border-radius: 5px;
width: auto;
}
.choose_us .base-btn1:hover{
color: #fff !important;
}
.choose_us .browse{
max-width: 210px;
}
.choose_us .cu-menu li a:hover i{
color: #fff;
}
.how-it-work .work-img{
margin: 30px 0;
}
.how-it-work .base-btn1{
margin: auto;
width: 100%;
max-width: 175px;
display: block;
text-align: center;
}
.how-it-work .base-btn1:hover{
color: #fff !important;
}
.main-section-area{
background:url('../images/tab-bg1.png') center no-repeat;
background-size: cover;
position:relative;
}
.main-section-area .section-heading h2{
color: #fff !important;
}
.main-section-area::before{
display: none!important;
position: absolute;
height: 100%;
width: 100%;
content: '';
left: 0;
top: 0;
background: url(../images/black-shape.png) 100% 100% no-repeat;
background-size: contain;
transform: rotate(180deg);
max-height: 200px;
}
.main-section-area::after{
display: none!important;
position: absolute;
height: 100%;
width: 100%;
content: '';
left: 0;
bottom: 0;
background: url(../images/black-shape.png) 100% 100% no-repeat;
background-size: contain;
max-height: 200px;
}
.pricing2 .tab-content{
padding: 60px 120px;
border: 1px solid #0f9831;
}
.pricing2 .tab-content h6{
font-weight: 100;
line-height: 1.5;
letter-spacing: 0.5px;
text-align: center;
margin: 20px 0;
color: #ececec;
font-family: "Roboto";
font-size: 18px;
}
.pricing2 .tab-content p{
text-align: center;
font-size: 14px;
letter-spacing: 0.5px;
line-height: 1.7;
color: #000;
}
.full-card-area{
background: #0f9831;
padding: 30px;
width: 80%;
margin: auto;
margin-bottom: -35px;
border-radius: 5px;
text-align: center;
position: relative;
}
.full-card-area::after{
display: block!important;
position: absolute;
height: 50px;
width: 50px;
content: '';
left: 0;
background: #0f9831;
transform: rotate(45deg);
bottom: -25px;
right: 0;
margin: auto;
}
.pricing2 .card{
padding: 10px 20px;
display: block;
position: relative;
background: transparent;
border: 1px solid #fff;
transition: 0.2s all ease-in-out;
height: auto;
min-height: 285px;
}
.pricing2 .card h5{
color: #fff;
font-weight: 500;
font-size: 16px;
}
.pricing2 .card p{
color: #fff;
font-weight: 500;
font-size: 16px;
}
.pricing2 .card .myicon{
text-align: center;
}
.pricing2 .card .myicon i{
color: #fff;
font-size: 44px;
}
.pricing2 .card:hover{
background: #fff;
}
.pricing2 .card:hover h5{
color: #0f9831;
}
.pricing2 .card:hover p{
color: #104c1f;
}
.pricing2 .card:hover i{
color: #0f9831;
}
/*login*/
.fb {
background-color: #3B5998;
color: white;
}
.google {
background-color: #fff;
color: #000;
}
.google:hover{
color: #000 !important;
}
.sign-form .subtitle .btn:hover{
color: #fff;
}
.auth .sign-form{
background: transparent;
}
.auth .sign-form .heading .title{color: #fff !important;}
.sign-form .form-group .form-control{
background: #555;
color: #fff;
border: none;
}
.sign-form .form-group ::placeholder{
color: #999;
}
.bottom-login{
padding: 20px 0;
}
.bottom-login p{color: #999; text-align: right; margin: 0;}
.bottom-login a{float: right;}
.auth .sign-form{box-shadow: none !important;}
.login-img img{
width: 100%;
background-size: cover;
object-fit: cover;
}
/*.login-img{*/
/* position: relative;*/
/* background: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),url('../assets/images/login/investor.jpg') center no-repeat;*/
/* background-size: cover;*/
/* width: 100%;*/
/* height: auto;*/
/* min-height: 320px;*/
/*}*/
.login-img{
margin-top: 40px;
}
.login-img img::before{
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
background: #14231466;
z-index: 1;
height: 100%;
}
.login-content{
padding-left: 20px;
padding: 20px 0;
}
.forgot-color a{
color: #999;
}
/*/////////////////////// faq Accordian css ///////////////////////*/
.faq-sec{
background: #142314;
}
.questions {
max-width: 75%;
margin: 0 auto;
tex-align: center;
}
.accordion:hover {
transition: 0.2s all ease-in-out 0s;
box-shadow: 0 13px 34px -25px rgba(0,0,0,.41);
border-color: #fff;
}
.accordion {
background-color: transparent;
color: #fff;
cursor: pointer;
padding: 18px;
font-weight: 400;
width: 100%;
font-size: 15px;
transition: 0.4s;
border-bottom: 1px solid #ddd;
}
.accordion:after {
content: '\002B';
color: #b7f12b;
font-weight: bold;
float: right;
margin-left: 5px;
font-size: 26px
}
.accordion.active:after {
content: "\2212";
}
.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
padding: 0px 15px 0;
}
.panel p{
color: #ececec;
font-size: 16px;
font-weight: 600;
line-height: 1.7;
padding-top: 10px;
letter-spacing: 0.5px;
}
.answers {
margin-top: 90px;
}
/*////////// datatable css //////////*/
.div.dataTables_wrapper div.dataTables_length select{
margin: 0 10px;
}
.dataTables_length{
float:left;
}
.dataTables_filter{
float: right;
}
.input-sm{margin: 0 10px;}
.navbar-toggler-icon{
display: block;
background: #fff;
width: 25px;
height: 3px;
margin: 5px 0;
border-radius: 3px;
}
.profile-area{padding: 120px 0;}
.profileedit-area{padding: 120px 0;}
.about-area .nav-pills .nav-link{color: #b7f12b;}
.about-area .nav-pills .nav-link:active,.about-area .nav-pills .nav-link:focus{color: #fff !important;}
.auth .sign-form .subtitle a
{
display: inline-block !important;
margin: 0 5px;
}
.auth .sign-form .subtitle a button{
padding: 0 20px;
margin: 10px 0;
max-width: 220px;
}
.content-area{padding: 60px 0 0;}
.content-area .card{
text-align: center;
padding: 20px;
min-height: 120px;
}
.content-area .card h4{font-size: 18px;}
.content-area .card-content{padding: 5px 0;}
.investment-history{padding: 60px 0;}
.investment-history .card{max-width: 460px; margin:auto; border: none;}
.investment-history .card .card-content{padding: 30px 15px 0;}
.wallet-area{padding: 60px 0 0;}
.referralbtn .base-btn1{max-width: 160px; font-weight: 600;}
.mt-top{margin-top: 10px;}
.referralbtn a:hover,.referralbtn a:active{color: #fff !important; border-color: transparent;}
.profileedit-area .profile-content{padding-bottom: 15px;}
.profileedit-area .profile-content h4{
color: #104c1f;
margin: 0 0 15px;
}
.main-banner h5 span{
color: #c0ff00;
font-weight: 600;
}
.main-banner .left-content .content h3{
color: #fff;
}
.offering-banner h5{
color: #fff;
line-height: 1.7;
font-size: 18px;
}
.offering-banner h2{
color: #fff;
}
.offering-banner .slider-item h4{
color: #fff;
font-size: 20px;
}
.offering-banner .slider-item h3{
color: #c0ff00 !important;
}
.offering-banner{
position: relative;
background-size: cover;
width: 100%;
min-height: 100%;
}
.offering-banner .shape-cover{
width: 100%;
height: 100%;
z-index: 1;
opacity: 1;
position: absolute;
bottom: 0;
}
.offering-banner::before{
display: none;
}
.offering-banner .left-content{
position: absolute;
bottom: 0;
display: block;
max-width: 50%;
padding: 120px 100px;
}
.offering-banner .carousel-inner{
max-height: 650px;
position: relative;
}
.offering-banner .carousel-inner::before{
content: "";
position: absolute;
/* background: #00000070; */
left: 0;
right: 0;
bottom: 0;
z-index: 2;
opacity: 1;
width: 100%;
height: 100%;
}
.offering-banner .carousel-inner .carousel-item img{
-webkit-animation: zoomin 10s ease-in infinite;
animation: zoomin 10s ease-in infinite;
transition: all .5s ease-in-out;
overflow: hidden;
}
@keyframes zoomin {
0% {transform: scale(1);}
50% {transform: scale(1.1);}
100% {transform: scale(1);}
}
@-webkit-keyframes zoomin {
0% {transform: scale(1);}
50% {transform: scale(1.1);}
100% {transform: scale(1);}
}
.farms-area::before{
display: none;
}
.farms-area{
padding: 90px 0 120px;
background: linear-gradient(to bottom, rgb(7 7 7 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.commodities-area{
background: linear-gradient(to bottom, rgb(27 19 4 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.products-area{
background: linear-gradient(to bottom, rgb(27 19 4 / 86%), rgb(20 21 21 / 90%)),
url('../images/offering/4.png');
}
.farms-area .farm-img{position: relative;}
.farms-area .section-heading{
margin-bottom: 0 !important;
}
.farm-card{
background: #142314;
padding: 20px;
box-shadow: rgb(11 9 9 / 56%) 2px 3px 3px 2px;
margin: 10px 0;
}
.farm-card .card-title{
padding-bottom: 10px;
text-align: center;
}
.farm-card .card-title h3{
color: #c0ff00;
}
.farm-card .card-block h5{
color: #fff;
}
.farm-card .card-block h6{
color: #b1afaf;
}
.farmcard-content h5{
color: #fff;
}
.farmcard-content p{
margin: 0;
color: #b1afaf;
}
.farm-content{
position: relative;
right: 50px;
}
.farm-content::before{
background: url('../images/offering/3.png') no-repeat;
content: "";
position: absolute;
left: 50px;
right: 0;
top: -5px;
width: 100%;
height: 100%;
background-size: cover;
}
.farm-card .accordion{
background-color: transparent;
color: #fff;
cursor: pointer;
padding: 10px;
font-weight: 400;
width: 100%;
font-size: 15px;
transition: 0.4s;
border-bottom: none;
background: #00000036;
border-radius: 3px;
font-family: "poppins";
margin-top: 10px;
}
.farm-card .accordion:after{
content: '\002B';
color: #000;
font-weight: bold;
float: left;
margin-right: 10px;
background: #b7f12b;
padding: 0px 7px;
font-size: 20px;
width: 25px;
height: 25px;
border-radius: 50%;
margin-bottom: 0;
}
.farm-card .questions{
max-width: 100%;
margin: 0;
}
.farm-card .panel{
background: #00000030;
margin: 10px 0;
}
.farm-card .panel p{
font-family: "poppins";
font-weight: 400;
}
.farm-card .base-btn1{
width: 100px;
padding: 5px 15px;
text-align: center;
margin: 5px auto;
font-family: "poppins";
}
.custom-control-input:checked~.custom-control-label::before{
color: #fff;
border-color: #0f9831;
background-color: #0f9831;
}
/*///////////// new css 15oct ///////////*/
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
margin-top: 220px;
z-index: 1;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width: 100%;
position: absolute;
background: #EBEFD3;
}
#wrapper.toggled #page-content-wrapper {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
#sidebar-wrapper ul .base-btn2{
margin-left: 20px;
margin-top: 10px;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
margin-left: 30px;
color: #fff;
font-family: "poppins";
padding: 10px 0;
line-height: 1.7;
}
.sidebar-nav li:last-child{
border-bottom: none;
}
.sidebar-nav li a {
line-height: 26px;
font-size: 16px;
position: relative;
padding: 10px 0px;
transition: all linear 0.3s;
font-family: "poppins";
color: #000;
}
.sidebar-nav li i{
color: #fff;
margin-right: 10px;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 65px;
font-size: 18px;
line-height: 60px;
border: none;
}
.sidebar-brand > .navbar-brand{
padding-left: 0
}
.sidebar-nav > .sidebar-brand a {
color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
@media(min-width:768px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
position: relative;
padding-top: 90px;
}
#wrapper.toggled #page-content-wrapper {
position: relative;
margin-right: 0;
}
}
.copyright_area{
padding: 24px 0px 25px;
background: #0e4119;
border-top: 1px solid #000;
text-align: center;
}
.copyright_area .left-area p {
transition: 0.2s all ease-in-out 0s;
}
.copyright_area .left-area p {
font-size: 16px;
line-height: 26px;
margin-bottom: 0px;
color: rgba(255, 255, 255, 0.8);
}
#page-area-wrapper{
padding: 60px 0;
}
.breadcrumb-area{
padding: 60px 0;
}
.header .mainmenu-area{
padding: 12px 0;
}
.sidebar-profile-brand .profile-brand img{
width: 100%;
max-width: 90px;
border-radius: 50%;
object-fit: cover;
}
.sidebar-profile-brand{
padding-left: 15px;
border-bottom: none !important;
}
.sidebar-profile-brand h5,p{
color: #000;
}
.sidebar-profile-brand h5{
margin-top: 15px;
}
.wallet-rapper .card{
background: #d2d2d2;
}
.new-btn{
padding: 5px;
background: #0f9831;
color: #fff;
border-radius: 5px;
font-family: "poppins";
font-size: 16px;
margin: 0 15px;
}
.new-btn:hover{
color: #fff;
}
.wallet-rapper .card .card-content{
margin: 30px 0;
}
.wallet-rapper .card {
text-align: center;
padding: 30px;
min-height: 120px;
max-width: 420px;
margin: auto;
border: 2px solid #888;
border-radius: 0;
}
.table-card{
background: #262F19;
padding: 25px 20px;
color: #fff;
}
.table-card table thead th,.table-card table tbody td{
color: #fff;
}
.table-card table thead th{
border: none;
}
.table-card table tbody td{
border-bottom: 1px solid #dee2e6;
}
.wallet_ul ul{
list-style: none;
padding: 0;
margin: 0;
}
.wallet_ul ul li{
display: inline-block;
font-family: "poppins";
line-height: 1.7;
}
.wallet_ul ul li i{
color: #5acc00;
font-size: 32px;
padding-bottom: 15px;
}
.wallet_ul ul li:first-child{
margin-right: 20px;
}
.table-card h4{
text-align: center;
color: #FFFFFF87;
margin-bottom: 20px;
font-weight: 500;
}
.invest_area_new{
padding: 0 0 60px;
}
.investment_admin{
padding: 30px;
background: #E9E9E9;
}
.invest_card{
position: relative;
background: linear-gradient(to bottom, rgba(1, 88, 55, 0.986), rgba(10, 80, 1, 0.73)),
url('../images/admin/bg_shape.png')center no-repeat;
background-size: cover;
padding: 20px;
text-align: center;
color: #fff;
}
.invest_img img{
max-width: 120px;
border-radius: 50%;
}
.invest_content{
padding: 20px 0;
}
.invest_content h3,p{
color: #fff;
}
.invest_btn button{
background: #fff;
color: #000;
padding: 10px;
border: none;
box-shadow: none;
font-family: "poppins";
}
.invest_h1{
color: #000;
font-family: "poppins";
font-size: 42px;
margin-bottom: 15px;
font-weight: 400;
}
.invest_h3{
color: #104c1f;
font-family: "poppins";
margin-bottom: 15px;
font-weight: 400;
}
#page-full-wrapper {
position: relative;
padding-top: 90px;
min-height: 100vh;
}
.profileedit-area .form-control{
background-color: transparent;
padding: 20px 10px;
color: #555;
font-size: 16px;
}
.profileedit-area{
padding: 60px;
}
.edit-profile a button{
background: #0e4119;
color: #ffffff;
}
.edit-profile a button:hover{
color: #fff;
background: #0e4119;
border-color: #0e4119;
}
.edit-profile a button:active,.edit-profile a button:focus{
color: #0e4119;
background: transparent;
border-radius: 50px;
outline: none;
}
.profileedit-area .form-control:active,.profileedit-area .form-control:focus{
border-color: #0e4119;
}
.profile-area .profile-content {
padding-bottom: 5px;
}
/* //////////// login ///////////// */
.login-wrapper{
background: linear-gradient(to bottom, rgba(245, 246, 252, 0), rgb(0, 0, 0)),url('../images/admin/login.jpg') center no-repeat;
background-size: cover;
width: 100%;
position: relative;
background-position: inherit;
padding: 80px 0 10px !important;
}
.login-card_wrapper{
position: relative;
display: block;
width: auto;
max-width: 500px;
margin-left: auto;
background: linear-gradient(to bottom, rgb(10, 27, 9), rgb(10 21 11 / 62%)),url('../images/admin/bg_shape.png') center no-repeat !important;
}
/*16oct*/
.page_section_wrapper h3{
font-family: "poppins";
padding: 0px 0 20px;
}
.referral_card_area{
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
border: none;
}
/* //////////////////////////////// Phresh farm 17 oct New css start here ////////////////////////////////////////////////////// */
.mainmenu-area .navbar .navbar-brand img{
height: auto;
max-width: 180px;
}
.main_pf{
background: url('../images/phreshfarm_img/banner_pf.png')center no-repeat;
background-size: 100%;
width: 100%;
height: auto;
min-height: 100vh;
position: relative;
}
.topbar_area_pf{
background: rgba(0,0,0,.7);
}
.topbar_area_pf .navbar{
padding: 0 40px;
}
.topbar_area_pf .nav-item{
position: relative;
}
.topbar_area_pf .nav-item span:first-child{
color: #fff;
font-family: "poppins";
margin-right: 15px;
font-size: 20px;
}
.topbar_area_pf .nav-item span .dropdown-toggle {
white-space: nowrap;
color: #fff;
font-size: 18px;
}
.topbar_area_pf .nav-item .bars_pf i{
font-size: 36px;
color: #fff;
margin-left: 10px;
}
.page-content-wrapper{
position: relative;
padding-top: 40px;
background: transparent;
}
/* tab css start */
.pf_tab_one{
background: rgba(0,0,0,.7);
min-height: 550px;
height: 100%;
border-radius: 10px;
position: relative;
}
.pf_tab_one ul{
list-style: none;
padding: 0;
margin: 0;
}
.pf_tab_one ul li{
display: inline-block;
font-size: 22px;
padding: 25px 0;
cursor: pointer;
background: #0000009e;
border-top-left-radius: 10px;
}
.pf_tab_one ul li:last-child{
text-align: right;
border-top-right-radius: 10px;
}
.pf_tab_one li span{
color: #fff;
font-family: "poppins";
padding: 0 20px;
}
/* inner tab css */
.pf_inner_tab_one{
background: #fff;
position: absolute;
width: 100%;
height: auto;
border-radius: 10px;
right: 20px;
min-height: 320px;
}
.pf_invest_cont{
text-align: center;
justify-content: center;
padding: 170px 180px;
}
.pf_invest_cont h5{
color: #2bb673;
max-width: 95%;
}
.pf_btn{
background: #1d3b2d;
color: #8dc63f;
min-width: 150px;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 5px;
font-family: "Avenir 03",sans-serif;
font-size: 11px;
line-height: 12px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 600;
}
.pf_btn:hover{
color: #8dc63f;
box-shadow: 0 16px 39px -10px rgba(0,0,0,.54);
}
.pf_invest_top{
background: #8dc63f;
position: relative;
padding: 25px 30px 0;
border-top-right-radius: 10px;
min-height: 220px;
}
.pf_invest_top::before{
background: url('../images/phreshfarm_img/graph-green-1.webp') center no-repeat;
content: "";
position: absolute;
width: 100%;
height: 143px;
left: 0;
right: 0;
background-size: cover;
bottom: 30px;
}
.pf_invest_top h5{
color: #fff;
width: 180px;
}
.pf_invest_top p{
color: #000;
font-size: 22px;
font-weight: 600;
font-family: "poppins";
margin-top: 95px;
position: relative;
}
.pf_invest_bottom::before{
display: none;
}
.pf_invest_bottom{
background: #2bb673;
border-top-right-radius: 0;
border-bottom-right-radius: 10px;
}
.pf_invest_bottom span{
padding: 20px 0;
color: #000;
font-weight: 600;
font-size: 22px;
font-family: "poppins";
}
.pf_invest_bottom .pf_btn{
background: #fff;
color: #2bb673;
margin: 25px 0;
}
.sidebar-nav .active{
padding: 12px 0;
border-radius: 10px;
color: #000;
background: #fff;
}
.sidebar-nav .active span{
border: none;
}
.sidebar-nav .active span p{
color: #0e4119;
margin-bottom: 0;
}
.sidebar-nav .active span i{
color: #0e4119;
}
.sidebar-nav li span{
border-bottom: 2px solid #c1bfbf75;
width: 80%;
display: block;
padding: 0 0;
margin: 0 15px;
}
.sidebar-nav li span p{
color: #b1ddce;
margin-left: 25px;
}
.sidebar-nav li i{
float: left;
background: -webkit-gradient(linear, left top, left bottom, from(rgb(93 191 12)), to(rgb(9 216 135)));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 20px;
}
.pf_tab_one .pf_active span{
color: #8dc63f;
position: relative;
}
.pf_tab_one .pf_active{
background: transparent;
}
.pf_tab_one .pf_active span::before{
content: "";
width: 30px;
height: 4px;
position: absolute;
background: #8dc63f;
bottom: -8px;
}
.one_second_cont{
text-align: center;
padding: 15px 0;
background: #f1f2f2;
margin: 20px;
border: 1px solid #8dc63f;
border-radius: 5px;
}
.one_second_cont p{
font-size: 12px;
color: #000;
margin: 10px;
font-family: "poppins";
}
.second_invest_top{min-height: 280px;}
.second_invest_top::before{
display: none;
}
.second_invest_top span{
display: block;
width: 100%;
color: #f8f8f8b4;
font-size: 12px;
font-family: "poppins";
}
.second_invest_top p{
color: #000;
font-size: 22px;
font-weight: 600;
font-family: "poppins";
margin-top: 10px;
}
.second_invest_bottom{
border-radius: 0;
min-height: 170px;
}
.second_invest_bottom::before{
background: url('../images/phreshfarm_img/graph-green-2.webp') center no-repeat;
content: "";
position: absolute;
width: 100%;
height: 143px;
left: 0;
right: 0;
background-size: cover;
bottom: 30px;
}
/* ///////// 3rd tab css ////////// */
.pd-form{
margin: 85px 0 0;
padding: 0 40px;
}
.pd-form h6{
padding: 13px 20px;
background: #caf3e06b;
border-radius: 5px;
}
.pd-form h6 span{font-weight: 400;}
.pd-form .pf_btn{
background: #a7a9ac;
color: #fff;
}
.code_share{
padding: 30px 40px;
padding-top: 15px;
}
.code_share ul{
list-style-type: none;
margin-left: 15px;
}
.code_share ul li{
display: inline-block;
margin: 0 12px;
background: transparent;
margin-top: 5px;
padding: 0;
}
.code_share ul li:first-child{
margin-left: 0;
}
.code_share ul li span{
background: transparent;
padding: 5px 10px;
border: 1px solid;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
}
.code_share ul li span i{
margin-right: 5px;
}
.pf_percent{
padding: 0px 40px;
padding-bottom: 5px;
}
.pf_percent p{
color: #0f9831;
font-size: 14px;
text-transform: uppercase;
margin: 0;
}
.pf_percent h2{
color: #0f9831;
font-weight: 600;
text-align: right;
}
.pf_percent h6{
color: #000;
font-weight: 400;
text-align: left;
padding: 40px 20px 0;
}
.pf_referal_btm{
padding: 15px 40px;
}
.pf_referal_btm p{
color: #000;
font-family: "poppins";
font-size: 14px;
}
.referral_invite_side{
padding: 30px 40px;
}
.referral_invite_side p{
margin-top: 0;
font-size: 12px;
font-weight: 400;
color: #f8f8f8;
position: relative;
}
.referral_invite_side h5{
position: relative;
font-size: 24px;
}
/* ////////////////// profile css ///////// */
.profile_pf_Sec{
padding: 25px 60px;
height: 445px;
overflow-y: scroll;
padding-bottom: 0px;
}
.profile_pf_Sec h3{
color: #104c1f;
}
.profile_pf_Sec label{
color: #104c1f;
font-family: "poppins";
font-weight: 600;
}
.profile_pf_Sec .form-control{
color: #000;
background: #cff7e459;
border: 1px solid #cff7e459;
border-radius: 3px;
font-size: 12px;
font-weight: 400;
font-family: "poppins";
}
.profile_pf_Sec .form-control:active,.profile_pf_Sec .form-control:focus{
border-color: #8dc63f;
box-shadow: none;
}
.pf_profile_btm{
border-top: 2px solid #999;
text-align: right;
padding: 10px 0;
}
.pf_profile_btm p{
font-size: 12px;
}
/* ///////////// investiment history sec ////////////// */
.pf_inv_history_Sec{
padding: 0 40px;
min-height: 440px;
}
.pf_invest_history{
margin: 20px 0px;
padding: 40px 60px;
text-align: left;
min-height: 175px;
}
.pf_invest_history p {
margin: 0;
}
/* //////////////// side menu animation css /////////////// */
.side_animation_wrapper{
position: absolute;
display: block;
width: 100%;
max-width: 340px;
height: 100%;
background: #fff;
left: 0;
bottom: 0;
z-index: 999999;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
-webkit-transition: left .5s ease;
transition: left .5s ease;
}
.side_menu_list{
margin-top: 15px;
}
.side_menu_list ul{
list-style: none;
padding: 0;
margin: 0 70px;
}
.side_menu_list ul li{
padding: 15px 0;
color: #104c1f;
line-height: 1.7;
letter-spacing: 0.5px;
font-family: "poppins";
font-size: 14px;
border-bottom: 1px solid #b7b6b6;
text-transform: uppercase;
position: relative;
font-weight: 600;
}
.side_menu_list ul li a{
transition: 0.3s all ease-in-out;
}
.side_menu_list ul li:last-child{
border: none;
}
.rj{
position: absolute;
background: #e4f4e870;
right: -70px;
bottom: 0;
width: 50%;
height: 50px;
opacity: 0;
transition: width 0.5s ease-in-out;
}
.side_menu_list ul li:hover .rj{
opacity: 1;
width: 70%;
transition: width 0.5s ease-in-out;
}
.side_menu_list ul li:hover a{
color: #93e027;
}
.bottom_side_info ul{
list-style: none;
padding: 0;
margin: 0 70px;
}
.bottom_side_info ul li{
font-size: 12px;
font-family: "poppins";
padding: 2px 0;
}
.bottom_side_info ul li a{
color: #999;
transition: 0.2s all ease-in-out;
}
.bottom_side_info ul li a:hover{
color: #8dc63f;
}
.side_pf_copyright{
text-align: center;
margin-left: 20px;
padding-top: 15px;
}
.side_pf_copyright p{
color: #999;
font-size: 12px;
font-family: "poppins";
}
.sidemenu_cancel{
text-align: right;
padding: 15px;
padding-bottom: 20px;
}
.sidemenu_cancel img{
width: 100%;
max-width: 70px;
}
.sidemenu_cancel img:hover{
transform: rotate(90deg);
transition: 0.6s all ease-in-out;
}
#wrapper{position: relative;}
.pf_wrapper::before{
position: absolute;
background: linear-gradient(90deg, rgba(141, 198, 63, 0.7), rgba(43, 182, 115, 0.7));
content: "";
width: 100%;
height: 100%;
z-index: 999999;
left: 0;
right: 0;
top: 0;
}
/* ////////////////////////////////////////////////// */
.pf_nav_item{
margin-right: 20px;
}
.nav-item .pf_dropdwn i{
color: #fff;
font-size: 20px;
cursor: pointer;
}
.pf-dropdown-menu{
width: 100%;
background: #1d3b2d !important;
top: 55px;
border-radius: 5px !important;
}
.pf-dropdown-menu a{
color: #fff !important;
border-bottom: 4px solid rgb(247 241 241 / 35%) !important;
font-weight: 500 !important;
font-size: 15px !important;
}
.pf-dropdown-menu a:last-child{
border: none !important;
}
.pf-dropdown-menu a:hover{
background: #1d3b2d !important;
}
.pf_dropdwn img{
width: 100%;
max-width: 40px;
border-radius: 50%;
}
/* add transition effect on Click */
.pf_click_one, .pf_click_second{
transition: min-width 0.5s ease-in-out 0s;
}
/* sliding animation css */
.moved {
left: -400px;
}
/* .slide-out {
animation: slide-out 0.5s forwards;
-webkit-animation: slide-out 0.5s forwards;
}
@keyframes slide-out {
0% { transform: translateX(0%); }
50% { transform: translateX(-20%); }
}
@-webkit-keyframes slide-out {
0% { -webkit-transform: translateX(0%); }
50% { -webkit-transform: translateX(-20%); }
} */ | 0.350088 | 0.167134 |
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4; }
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none; }
::selection {
background: #b3d4fc;
text-shadow: none; }
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0; }
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle; }
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0; }
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical; }
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0; }
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important; }
/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
* causes content to wrap 1 word per line:
* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
/* 1 */ }
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit; }
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden; }
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " ";
/* 1 */
display: table;
/* 2 */ }
.clearfix:after {
clear: both; }
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */ }
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
/* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: ""; }
pre {
white-space: pre-wrap !important; }
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; } }
.fs-35 {
font-size: 35px !important; }
.body {
font-size: 17px;
line-height: 20px;
font-family: 'PT Sans', sans-serif;
color: #333333; }
.container-xl {
max-width: 1020px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px; }
.container-lg {
padding-left: 20px;
padding-right: 20px;
max-width: 820px;
margin-right: auto;
margin-left: auto; }
.section-heading {
font-family: "PT Sans Narrow", sans-serif;
color: #e75125;
font-size: 45px;
font-weight: bold;
line-height: 0.6;
letter-spacing: 0.7px; }
.section-subtitle {
font-family: "PT Sans", sans-serif;
color: #00aae7;
font-size: 24px;
font-weight: bold;
letter-spacing: -1.6px; }
.header {
height: 100px;
width: 100%;
background-color: #fff;
z-index: 100; }
.header__wrapp {
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;
height: 100%;
width: 100%; }
.header_sticky {
max-width: 100%;
position: -webkit-sticky;
position: sticky;
top: 0px; }
.menu {
width: 448px;
margin-right: 20px;
padding-left: 0px;
margin-bottom: 0px;
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-family: "PT Sans Narrow", sans-serif; }
.menu__item {
list-style-type: none;
display: inline-block;
color: #e75125; }
.menu__link {
color: inherit;
font-size: 16px;
line-height: 30px;
font-weight: bold;
letter-spacing: 0px; }
.menu__link:hover {
text-decoration: none;
color: inherit; }
.banner {
color: #fff;
background-image: url("../images/top-bg.png");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
position: relative;
overflow: hidden;
padding-top: 100px; }
.banner__heading {
font-family: "PT Sans Narrow", sans-serif;
margin-bottom: 25px;
font-size: 76px;
line-height: 0.7;
letter-spacing: 3px;
font-weight: bold;
text-transform: uppercase;
display: block;
text-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7); }
.banner__subtitle {
font-family: "PT Sans Narrow", sans-serif;
margin-bottom: 44px;
font-size: 45px;
letter-spacing: 0.9px;
text-transform: uppercase;
font-weight: bold;
display: block;
line-height: 1;
text-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7); }
.banner__button {
font-family: "PT Sans Narrow", sans-serif;
width: 220px;
height: 60px;
-webkit-box-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7);
box-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7);
border-radius: 30px;
border: 2px solid #fff;
background-color: #e75125;
text-transform: uppercase;
font-size: 26px;
line-height: 36px;
font-weight: bold;
color: #fff;
margin-bottom: 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;
cursor: pointer; }
.banner__button:hover {
background-color: #c94923; }
.banner__button a {
height: 100%;
width: 100%;
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;
color: #fff; }
.banner__button a:hover {
text-decoration: none; }
.banner__footer {
font-family: "PT Sans Narrow", sans-serif;
height: 80px;
width: 100%;
background-color: rgba(16, 115, 183, 0.5);
font-size: 33px;
line-height: 52px;
letter-spacing: 0.66px;
text-transform: uppercase;
font-weight: bold;
color: #fff; }
.banner__text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 100%; }
.banner__boots {
position: absolute;
right: 163px;
bottom: 0; }
.media-share {
margin-top: 24px;
width: 273px;
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.media-share__img {
min-width: 20px;
padding-right: 4px;
padding-left: 1px;
border-right: 1px solid #ffffff40; }
.media-share__img_mw {
background-image: url("../images/mw.jpg");
height: 20px;
width: 20px;
background-size: cover;
background-position: center;
background-repeat: no-repeat; }
.media-share__img svg {
height: 15px;
vertical-align: baseline; }
.media-share__button {
cursor: pointer;
margin-right: 4px;
min-width: 60px;
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;
line-height: 1;
padding-left: 3px;
padding-right: 3px;
color: white;
font-weight: bold;
height: 24px;
border-radius: 3px;
border: none;
font-size: 12px; }
.media-share__button_vk {
background-color: #4771a0; }
.media-share__button_mw {
min-width: 52px;
background-color: #008BE5; }
.media-share__button_face {
background-color: #39579a; }
.media-share__button_od {
background-color: #ed721f; }
.media-share__button_flag {
min-width: 25px;
background-color: #ee1700; }
.media-share__button_flag .media-share__img {
height: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-right: none;
padding: 0px; }
.media-share__score {
padding-left: 0px;
padding-right: 4px; }
.about {
background-color: #f4f4f4;
padding-top: 100px;
padding-bottom: 100px; }
.about .section-heading {
margin-bottom: 25px; }
.about .section-subtitle {
line-height: 1.1;
margin-bottom: 19px;
letter-spacing: -1.6px; }
.about__row {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.about__banner {
background-image: url("../images/sprinters.png");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
margin-right: 10px;
-webkit-box-flex: 0;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
max-width: 50%;
min-height: 340px; }
.about__text {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
padding-left: 29px; }
.about__write {
font-family: 'PT Sans', sans-serif;
line-height: 20px;
display: block;
letter-spacing: -0.5px; }
.how {
margin-top: 100px;
margin-bottom: 100px; }
.how .section-heading {
text-align: center;
margin-bottom: 24px; }
.how .section-subtitle {
text-align: center;
letter-spacing: -1.3px;
margin-bottom: 16px; }
.how__text {
max-width: 810px;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
letter-spacing: -0.5px;
margin-bottom: 35px; }
.how__video {
width: 768px;
height: 432px;
display: block;
margin-left: auto;
margin-right: auto; }
.circle {
height: 132px;
width: 132px;
border-radius: 100px;
background-color: #00aae7;
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; }
.program {
padding-top: 100px;
padding-bottom: 80px;
background-color: #f4f4f4; }
.program .section-heading {
text-align: center;
margin-bottom: 25px; }
.program .section-subtitle {
margin-bottom: 15px;
text-align: center; }
.program__text {
text-align: center;
line-height: 20px;
font-family: "PT Sans", sans-serif;
color: #333333;
letter-spacing: -0.5px;
margin-bottom: 36px; }
.program__item {
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;
max-width: 515px;
margin-right: auto;
margin-left: auto;
margin-bottom: 20px; }
.program .circle {
-webkit-box-flex: 0;
-ms-flex: 0 0 132px;
flex: 0 0 132px;
font-size: 42px;
line-height: 5px;
font-family: "PT Sans Narrow", sans-serif;
font-weight: bold;
color: #fff; }
.program__desc {
-webkit-box-flex: 1;
-ms-flex: 1 1 50%;
flex: 1 1 50%;
font-size: 15px;
line-height: 20px;
color: #333333;
padding-left: 19px; }
.route {
padding-top: 100px;
padding-bottom: 100px;
background-color: #00aae7; }
.route .section-heading {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-bottom: 44px;
color: #fff; }
.route .section-subtitle {
font-weight: 400;
line-height: 26px;
margin-bottom: 18px;
letter-spacing: -1px; }
.route__wrapp {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.route__item {
background-color: #fff;
-webkit-box-flex: 1;
-ms-flex: 1 0 48%;
flex: 1 0 48%;
max-width: 50%;
padding-top: 33px;
padding-left: 28px;
padding-bottom: 36px;
padding-right: 28px;
-webkit-box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7);
box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7); }
.route__item_mr {
margin-right: 20px; }
.route__picture {
min-height: 192px;
margin-bottom: 33px; }
.route__img {
display: block;
margin-left: auto;
margin-right: auto; }
.route__img_pt {
padding-top: 20px; }
.route__text {
letter-spacing: -0.6px; }
.dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
margin-top: 65px; }
.dots__item {
height: 10px;
width: 10px;
border-radius: 100px;
background-color: #d9d9d9; }
.dots__item_mr {
margin-right: 8px; }
.share {
margin-top: 100px;
margin-bottom: 78px; }
.share .container-lg {
padding-left: 0px;
padding-right: 0px; }
.share .section-heading {
text-align: center;
margin-bottom: 45px; }
.share .section-subtitle {
margin-top: 20px;
text-align: center; }
.share .circle {
margin-bottom: 16px;
margin-left: auto;
margin-right: auto; }
.share .circle__text {
display: block;
font-size: 15px;
color: #333333;
text-align: center; }
.share__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; }
.share__item {
-webkit-box-flex: 1;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
max-width: 25%; }
.map {
background-image: -webkit-gradient(linear, left top, left bottom, from(#00aae7), to(#00aae7)), url("../images/runners.png");
background-image: linear-gradient(#00aae7, #00aae7), url("../images/runners.png");
padding-top: 100px;
padding-bottom: 100px; }
.map .section-heading {
margin-bottom: 37px;
text-align: center;
color: #fff; }
.map__pic {
position: relative; }
.map__img {
display: block;
margin-right: auto;
margin-left: auto; }
.map__text {
color: #fff;
font-size: 20px;
line-height: 24px;
max-width: 385px;
position: absolute;
top: 180px;
left: calc(50% - 192px);
letter-spacing: -1.2px; }
.schedule {
margin-top: 100px;
margin-bottom: 52px;
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; }
.schedule .section-heading {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-bottom: 50px; }
.schedule .section-subtitle {
margin-bottom: 32px; }
.schedule__leftside, .schedule__rightside {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
max-width: 50%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.schedule__leftside {
padding-left: 59px; }
.schedule__rightside {
padding-left: 10px; }
.schedule__list {
padding-left: 0px; }
.schedule__item {
padding-left: 40px;
line-height: 24px;
font-size: 20px;
list-style-type: none;
padding-bottom: 24px;
letter-spacing: -0.7px;
position: relative; }
.schedule__item::before {
content: "";
position: absolute;
left: 0px;
top: 0px;
width: 20px;
height: 20px;
border-radius: 100px;
border: 3px solid #00aae7;
display: block;
background-color: white;
z-index: 1; }
.schedule__item::after {
content: "";
position: absolute;
left: 9px;
top: 0px;
display: block;
width: 3px;
height: 100%;
background-color: #cccccc; }
.schedule__item_nobord::after {
content: "";
display: none; }
.schedule__title {
display: block;
font-weight: bold; }
.schedule__subtitle {
display: block; }
.categories {
padding-top: 93px;
padding-bottom: 100px;
background-color: #00aae7; }
.categories .section-heading {
line-height: 1;
margin-bottom: 34px;
color: #fff;
text-align: center; }
.categories__wrapp {
margin-left: auto;
margin-right: auto;
max-width: 660px;
background-color: #fff;
-webkit-box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7);
box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7); }
.categories__row {
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;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
height: 50%; }
.categories__row_bbord {
border-bottom: 1px solid #e6e6e6; }
.categories__row_tbord {
border-top: 1px solid #e6e6e6; }
.categories__col {
height: 100px;
border: 1px solid #e6e6e6;
border-collapse: collapse;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.categories__col_first {
border-left: 0px;
color: #00aae7;
font-weight: bold;
padding-left: 40px;
-webkit-box-flex: 0;
-ms-flex: 0 0 26%;
flex: 0 0 26%;
max-width: 26%;
text-align: left;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: start; }
.categories__col_center {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 43%;
flex: 0 0 43%;
max-width: 43%; }
.categories__col_last {
border-right: 0px;
font-weight: bold;
padding-right: 40px;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-flex: 0;
-ms-flex: 0 0 31%;
flex: 0 0 31%;
max-width: 31%; }
.entry {
padding-top: 73px;
padding-bottom: 100px;
background-color: #f4f4f4; }
.entry .section-heading {
text-align: center;
margin-bottom: 27px; }
.entry .section-subtitle {
text-align: center;
line-height: 1;
margin-bottom: 38px; }
.form {
font-size: 18px;
max-width: 840px;
margin-left: auto;
margin-right: auto;
padding-top: 45px;
padding-left: 60px;
padding-right: 60px;
padding-bottom: 50px;
background-color: #fff;
position: relative; }
.form label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #00aae7;
font-weight: bold; }
.form input, .form .custom-select {
padding-top: 12px;
padding-bottom: 11px;
padding-left: 10px;
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
border: 1px solid #cccccc;
background-color: transparent; }
.form .custom-select {
height: auto;
padding-top: 8px;
padding-bottom: 8px; }
.form__input-group {
margin-bottom: 18px; }
.form__main {
padding-bottom: 6px;
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;
max-width: 100%; }
.form__rope {
height: 1px;
margin-left: -10px;
margin-right: -10px;
background-color: #cccccc; }
.form__player, .form__date, .form__mail {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
padding-right: 10px; }
.form__date {
padding-left: 10px;
position: relative; }
.form__date .ui-datepicker-trigger {
position: relative;
left: -35px;
top: -2px; }
.form__date input {
max-width: 160px; }
.form__player input, .form__mail input, .form__phone input {
width: 100%; }
.form__phone {
padding-left: 10px;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.form__note {
display: block;
margin-top: 6px;
font-size: 13px;
color: #666666; }
.form__players {
margin-top: 24px; }
.form__item {
position: relative;
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; }
.form__type {
max-width: 170px;
padding-left: 10px;
margin-right: 10px;
width: 100%; }
.form__distance {
max-width: 170px;
margin-left: 10px;
width: 100%; }
.form__add {
margin-bottom: 34px; }
.form__link {
color: #00aae7;
font-weight: bold;
font-size: 17px;
letter-spacing: -0.8px;
border-bottom: 1px dashed #00aae7; }
.form__link:hover {
color: #00aae7;
text-decoration: none; }
.form__result {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 22px;
margin-bottom: 24px; }
.form__sum {
letter-spacing: -0.9px;
font-size: 24px;
line-height: 26px; }
.form__rubles {
letter-spacing: normal;
font-weight: bold; }
.form__button {
color: #fff;
font-size: 26px;
text-transform: uppercase;
font-family: "PT Sans Narrow", sans-serif;
font-weight: bold;
text-align: center;
padding-top: 18px;
padding-right: 36px;
padding-left: 36px;
padding-bottom: 19px;
border-radius: 30px;
border: none;
background-color: #e75125;
cursor: pointer; }
.form__hint {
margin-left: 13px;
letter-spacing: -0.6px;
font-size: 17px; }
.form__close {
height: 20px;
width: 20px;
position: absolute;
right: -30px;
top: 0px;
cursor: pointer; }
.partners {
margin-top: 70px;
margin-bottom: 75px; }
.partners .section-subtitle {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 40px;
text-align: center; }
.partners__wrapp {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.partners__side {
-webkit-box-flex: 0;
-ms-flex: 0 0 48%;
flex: 0 0 48%;
max-width: 50%;
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;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.partners__item {
text-align: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
min-height: 90px; }
.partners__item_xbord {
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc; }
.partners__text {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-top: 43px; }
.footer {
background-color: #f2f2f2; }
.footer__body {
height: 150px;
padding-top: 10px;
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; }
.footer__tag {
padding-left: 12px;
color: #e75125;
font-size: 48px;
font-family: "PT Sans Narrow", sans-serif; }
.footer__icon {
padding-right: 17px; }
.footer__address {
background-color: #00aae7;
height: 50px;
margin-bottom: 0px;
font-size: 17px;
color: #fff;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
letter-spacing: -0.7px; }
.ui-selectmenu-button.ui-button {
height: 45px;
width: 100%;
position: relative;
padding-left: 10px;
padding-right: 25px;
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
border: 1px solid #cccccc;
background-color: transparent;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: 0.5s;
transition: 0.5s; }
.ui-selectmenu-button.ui-button:hover .ui-selectmenu-icon.ui-icon, .ui-selectmenu-button.ui-button:focus .ui-selectmenu-icon.ui-icon {
background-image: url("../images/v.png"); }
.ui-selectmenu-button.ui-button[aria-expanded=true] > .ui-selectmenu-icon.ui-icon {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.ui-selectmenu-icon.ui-icon {
position: absolute;
right: 8px;
background-image: url("../images/v.png");
background-position: 0px; }
.ui-selectmenu-text {
margin-right: 0px;
font-size: 17px; }
.ui-widget {
font-size: inherit;
font-family: inherit; }
.ui-menu .ui-menu-item-wrapper {
height: 40px;
padding: 0px 0px 0px 5px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 1px solid #e6e6e6;
border-top: 1px solid transparent;
margin: 0px 5px 0px 5px; }
.ui-selectmenu-menu .ui-menu {
padding-left: 5px;
padding-right: 5px; }
.ui-selectmenu-menu .ui-menu .ui-menu-item {
margin: 0px -5px 0px -5px; }
.ui-selectmenu-menu .ui-menu .ui-menu-item:last-child div {
border-bottom: 0px; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
border: 1px solid transparent;
background-color: #f4f4f4;
color: inherit; }
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
margin: 0px;
border-left: 0px;
padding-left: 10px;
padding-right: 10px; }
@media screen and (max-width: 1200px) {
.banner__boots {
right: 0px; } } | src/css/main.css | Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4; }
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none; }
::selection {
background: #b3d4fc;
text-shadow: none; }
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0; }
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle; }
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0; }
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical; }
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0; }
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important; }
/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
* causes content to wrap 1 word per line:
* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
/* 1 */ }
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit; }
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden; }
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " ";
/* 1 */
display: table;
/* 2 */ }
.clearfix:after {
clear: both; }
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */ }
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
/* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: ""; }
pre {
white-space: pre-wrap !important; }
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; } }
.fs-35 {
font-size: 35px !important; }
.body {
font-size: 17px;
line-height: 20px;
font-family: 'PT Sans', sans-serif;
color: #333333; }
.container-xl {
max-width: 1020px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px; }
.container-lg {
padding-left: 20px;
padding-right: 20px;
max-width: 820px;
margin-right: auto;
margin-left: auto; }
.section-heading {
font-family: "PT Sans Narrow", sans-serif;
color: #e75125;
font-size: 45px;
font-weight: bold;
line-height: 0.6;
letter-spacing: 0.7px; }
.section-subtitle {
font-family: "PT Sans", sans-serif;
color: #00aae7;
font-size: 24px;
font-weight: bold;
letter-spacing: -1.6px; }
.header {
height: 100px;
width: 100%;
background-color: #fff;
z-index: 100; }
.header__wrapp {
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;
height: 100%;
width: 100%; }
.header_sticky {
max-width: 100%;
position: -webkit-sticky;
position: sticky;
top: 0px; }
.menu {
width: 448px;
margin-right: 20px;
padding-left: 0px;
margin-bottom: 0px;
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-family: "PT Sans Narrow", sans-serif; }
.menu__item {
list-style-type: none;
display: inline-block;
color: #e75125; }
.menu__link {
color: inherit;
font-size: 16px;
line-height: 30px;
font-weight: bold;
letter-spacing: 0px; }
.menu__link:hover {
text-decoration: none;
color: inherit; }
.banner {
color: #fff;
background-image: url("../images/top-bg.png");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
position: relative;
overflow: hidden;
padding-top: 100px; }
.banner__heading {
font-family: "PT Sans Narrow", sans-serif;
margin-bottom: 25px;
font-size: 76px;
line-height: 0.7;
letter-spacing: 3px;
font-weight: bold;
text-transform: uppercase;
display: block;
text-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7); }
.banner__subtitle {
font-family: "PT Sans Narrow", sans-serif;
margin-bottom: 44px;
font-size: 45px;
letter-spacing: 0.9px;
text-transform: uppercase;
font-weight: bold;
display: block;
line-height: 1;
text-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7); }
.banner__button {
font-family: "PT Sans Narrow", sans-serif;
width: 220px;
height: 60px;
-webkit-box-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7);
box-shadow: 5px 5px 0 rgba(16, 98, 154, 0.7);
border-radius: 30px;
border: 2px solid #fff;
background-color: #e75125;
text-transform: uppercase;
font-size: 26px;
line-height: 36px;
font-weight: bold;
color: #fff;
margin-bottom: 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;
cursor: pointer; }
.banner__button:hover {
background-color: #c94923; }
.banner__button a {
height: 100%;
width: 100%;
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;
color: #fff; }
.banner__button a:hover {
text-decoration: none; }
.banner__footer {
font-family: "PT Sans Narrow", sans-serif;
height: 80px;
width: 100%;
background-color: rgba(16, 115, 183, 0.5);
font-size: 33px;
line-height: 52px;
letter-spacing: 0.66px;
text-transform: uppercase;
font-weight: bold;
color: #fff; }
.banner__text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 100%; }
.banner__boots {
position: absolute;
right: 163px;
bottom: 0; }
.media-share {
margin-top: 24px;
width: 273px;
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.media-share__img {
min-width: 20px;
padding-right: 4px;
padding-left: 1px;
border-right: 1px solid #ffffff40; }
.media-share__img_mw {
background-image: url("../images/mw.jpg");
height: 20px;
width: 20px;
background-size: cover;
background-position: center;
background-repeat: no-repeat; }
.media-share__img svg {
height: 15px;
vertical-align: baseline; }
.media-share__button {
cursor: pointer;
margin-right: 4px;
min-width: 60px;
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;
line-height: 1;
padding-left: 3px;
padding-right: 3px;
color: white;
font-weight: bold;
height: 24px;
border-radius: 3px;
border: none;
font-size: 12px; }
.media-share__button_vk {
background-color: #4771a0; }
.media-share__button_mw {
min-width: 52px;
background-color: #008BE5; }
.media-share__button_face {
background-color: #39579a; }
.media-share__button_od {
background-color: #ed721f; }
.media-share__button_flag {
min-width: 25px;
background-color: #ee1700; }
.media-share__button_flag .media-share__img {
height: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-right: none;
padding: 0px; }
.media-share__score {
padding-left: 0px;
padding-right: 4px; }
.about {
background-color: #f4f4f4;
padding-top: 100px;
padding-bottom: 100px; }
.about .section-heading {
margin-bottom: 25px; }
.about .section-subtitle {
line-height: 1.1;
margin-bottom: 19px;
letter-spacing: -1.6px; }
.about__row {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.about__banner {
background-image: url("../images/sprinters.png");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
margin-right: 10px;
-webkit-box-flex: 0;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
max-width: 50%;
min-height: 340px; }
.about__text {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
padding-left: 29px; }
.about__write {
font-family: 'PT Sans', sans-serif;
line-height: 20px;
display: block;
letter-spacing: -0.5px; }
.how {
margin-top: 100px;
margin-bottom: 100px; }
.how .section-heading {
text-align: center;
margin-bottom: 24px; }
.how .section-subtitle {
text-align: center;
letter-spacing: -1.3px;
margin-bottom: 16px; }
.how__text {
max-width: 810px;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
letter-spacing: -0.5px;
margin-bottom: 35px; }
.how__video {
width: 768px;
height: 432px;
display: block;
margin-left: auto;
margin-right: auto; }
.circle {
height: 132px;
width: 132px;
border-radius: 100px;
background-color: #00aae7;
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; }
.program {
padding-top: 100px;
padding-bottom: 80px;
background-color: #f4f4f4; }
.program .section-heading {
text-align: center;
margin-bottom: 25px; }
.program .section-subtitle {
margin-bottom: 15px;
text-align: center; }
.program__text {
text-align: center;
line-height: 20px;
font-family: "PT Sans", sans-serif;
color: #333333;
letter-spacing: -0.5px;
margin-bottom: 36px; }
.program__item {
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;
max-width: 515px;
margin-right: auto;
margin-left: auto;
margin-bottom: 20px; }
.program .circle {
-webkit-box-flex: 0;
-ms-flex: 0 0 132px;
flex: 0 0 132px;
font-size: 42px;
line-height: 5px;
font-family: "PT Sans Narrow", sans-serif;
font-weight: bold;
color: #fff; }
.program__desc {
-webkit-box-flex: 1;
-ms-flex: 1 1 50%;
flex: 1 1 50%;
font-size: 15px;
line-height: 20px;
color: #333333;
padding-left: 19px; }
.route {
padding-top: 100px;
padding-bottom: 100px;
background-color: #00aae7; }
.route .section-heading {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-bottom: 44px;
color: #fff; }
.route .section-subtitle {
font-weight: 400;
line-height: 26px;
margin-bottom: 18px;
letter-spacing: -1px; }
.route__wrapp {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.route__item {
background-color: #fff;
-webkit-box-flex: 1;
-ms-flex: 1 0 48%;
flex: 1 0 48%;
max-width: 50%;
padding-top: 33px;
padding-left: 28px;
padding-bottom: 36px;
padding-right: 28px;
-webkit-box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7);
box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7); }
.route__item_mr {
margin-right: 20px; }
.route__picture {
min-height: 192px;
margin-bottom: 33px; }
.route__img {
display: block;
margin-left: auto;
margin-right: auto; }
.route__img_pt {
padding-top: 20px; }
.route__text {
letter-spacing: -0.6px; }
.dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
margin-top: 65px; }
.dots__item {
height: 10px;
width: 10px;
border-radius: 100px;
background-color: #d9d9d9; }
.dots__item_mr {
margin-right: 8px; }
.share {
margin-top: 100px;
margin-bottom: 78px; }
.share .container-lg {
padding-left: 0px;
padding-right: 0px; }
.share .section-heading {
text-align: center;
margin-bottom: 45px; }
.share .section-subtitle {
margin-top: 20px;
text-align: center; }
.share .circle {
margin-bottom: 16px;
margin-left: auto;
margin-right: auto; }
.share .circle__text {
display: block;
font-size: 15px;
color: #333333;
text-align: center; }
.share__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; }
.share__item {
-webkit-box-flex: 1;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
max-width: 25%; }
.map {
background-image: -webkit-gradient(linear, left top, left bottom, from(#00aae7), to(#00aae7)), url("../images/runners.png");
background-image: linear-gradient(#00aae7, #00aae7), url("../images/runners.png");
padding-top: 100px;
padding-bottom: 100px; }
.map .section-heading {
margin-bottom: 37px;
text-align: center;
color: #fff; }
.map__pic {
position: relative; }
.map__img {
display: block;
margin-right: auto;
margin-left: auto; }
.map__text {
color: #fff;
font-size: 20px;
line-height: 24px;
max-width: 385px;
position: absolute;
top: 180px;
left: calc(50% - 192px);
letter-spacing: -1.2px; }
.schedule {
margin-top: 100px;
margin-bottom: 52px;
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; }
.schedule .section-heading {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-bottom: 50px; }
.schedule .section-subtitle {
margin-bottom: 32px; }
.schedule__leftside, .schedule__rightside {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
max-width: 50%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; }
.schedule__leftside {
padding-left: 59px; }
.schedule__rightside {
padding-left: 10px; }
.schedule__list {
padding-left: 0px; }
.schedule__item {
padding-left: 40px;
line-height: 24px;
font-size: 20px;
list-style-type: none;
padding-bottom: 24px;
letter-spacing: -0.7px;
position: relative; }
.schedule__item::before {
content: "";
position: absolute;
left: 0px;
top: 0px;
width: 20px;
height: 20px;
border-radius: 100px;
border: 3px solid #00aae7;
display: block;
background-color: white;
z-index: 1; }
.schedule__item::after {
content: "";
position: absolute;
left: 9px;
top: 0px;
display: block;
width: 3px;
height: 100%;
background-color: #cccccc; }
.schedule__item_nobord::after {
content: "";
display: none; }
.schedule__title {
display: block;
font-weight: bold; }
.schedule__subtitle {
display: block; }
.categories {
padding-top: 93px;
padding-bottom: 100px;
background-color: #00aae7; }
.categories .section-heading {
line-height: 1;
margin-bottom: 34px;
color: #fff;
text-align: center; }
.categories__wrapp {
margin-left: auto;
margin-right: auto;
max-width: 660px;
background-color: #fff;
-webkit-box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7);
box-shadow: 6px 6px 0 rgba(16, 98, 154, 0.7); }
.categories__row {
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;
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
height: 50%; }
.categories__row_bbord {
border-bottom: 1px solid #e6e6e6; }
.categories__row_tbord {
border-top: 1px solid #e6e6e6; }
.categories__col {
height: 100px;
border: 1px solid #e6e6e6;
border-collapse: collapse;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.categories__col_first {
border-left: 0px;
color: #00aae7;
font-weight: bold;
padding-left: 40px;
-webkit-box-flex: 0;
-ms-flex: 0 0 26%;
flex: 0 0 26%;
max-width: 26%;
text-align: left;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: start; }
.categories__col_center {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 43%;
flex: 0 0 43%;
max-width: 43%; }
.categories__col_last {
border-right: 0px;
font-weight: bold;
padding-right: 40px;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-flex: 0;
-ms-flex: 0 0 31%;
flex: 0 0 31%;
max-width: 31%; }
.entry {
padding-top: 73px;
padding-bottom: 100px;
background-color: #f4f4f4; }
.entry .section-heading {
text-align: center;
margin-bottom: 27px; }
.entry .section-subtitle {
text-align: center;
line-height: 1;
margin-bottom: 38px; }
.form {
font-size: 18px;
max-width: 840px;
margin-left: auto;
margin-right: auto;
padding-top: 45px;
padding-left: 60px;
padding-right: 60px;
padding-bottom: 50px;
background-color: #fff;
position: relative; }
.form label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #00aae7;
font-weight: bold; }
.form input, .form .custom-select {
padding-top: 12px;
padding-bottom: 11px;
padding-left: 10px;
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
border: 1px solid #cccccc;
background-color: transparent; }
.form .custom-select {
height: auto;
padding-top: 8px;
padding-bottom: 8px; }
.form__input-group {
margin-bottom: 18px; }
.form__main {
padding-bottom: 6px;
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;
max-width: 100%; }
.form__rope {
height: 1px;
margin-left: -10px;
margin-right: -10px;
background-color: #cccccc; }
.form__player, .form__date, .form__mail {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
padding-right: 10px; }
.form__date {
padding-left: 10px;
position: relative; }
.form__date .ui-datepicker-trigger {
position: relative;
left: -35px;
top: -2px; }
.form__date input {
max-width: 160px; }
.form__player input, .form__mail input, .form__phone input {
width: 100%; }
.form__phone {
padding-left: 10px;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.form__note {
display: block;
margin-top: 6px;
font-size: 13px;
color: #666666; }
.form__players {
margin-top: 24px; }
.form__item {
position: relative;
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; }
.form__type {
max-width: 170px;
padding-left: 10px;
margin-right: 10px;
width: 100%; }
.form__distance {
max-width: 170px;
margin-left: 10px;
width: 100%; }
.form__add {
margin-bottom: 34px; }
.form__link {
color: #00aae7;
font-weight: bold;
font-size: 17px;
letter-spacing: -0.8px;
border-bottom: 1px dashed #00aae7; }
.form__link:hover {
color: #00aae7;
text-decoration: none; }
.form__result {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 22px;
margin-bottom: 24px; }
.form__sum {
letter-spacing: -0.9px;
font-size: 24px;
line-height: 26px; }
.form__rubles {
letter-spacing: normal;
font-weight: bold; }
.form__button {
color: #fff;
font-size: 26px;
text-transform: uppercase;
font-family: "PT Sans Narrow", sans-serif;
font-weight: bold;
text-align: center;
padding-top: 18px;
padding-right: 36px;
padding-left: 36px;
padding-bottom: 19px;
border-radius: 30px;
border: none;
background-color: #e75125;
cursor: pointer; }
.form__hint {
margin-left: 13px;
letter-spacing: -0.6px;
font-size: 17px; }
.form__close {
height: 20px;
width: 20px;
position: absolute;
right: -30px;
top: 0px;
cursor: pointer; }
.partners {
margin-top: 70px;
margin-bottom: 75px; }
.partners .section-subtitle {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 40px;
text-align: center; }
.partners__wrapp {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.partners__side {
-webkit-box-flex: 0;
-ms-flex: 0 0 48%;
flex: 0 0 48%;
max-width: 50%;
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;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.partners__item {
text-align: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%;
min-height: 90px; }
.partners__item_xbord {
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc; }
.partners__text {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
margin-top: 43px; }
.footer {
background-color: #f2f2f2; }
.footer__body {
height: 150px;
padding-top: 10px;
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; }
.footer__tag {
padding-left: 12px;
color: #e75125;
font-size: 48px;
font-family: "PT Sans Narrow", sans-serif; }
.footer__icon {
padding-right: 17px; }
.footer__address {
background-color: #00aae7;
height: 50px;
margin-bottom: 0px;
font-size: 17px;
color: #fff;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
letter-spacing: -0.7px; }
.ui-selectmenu-button.ui-button {
height: 45px;
width: 100%;
position: relative;
padding-left: 10px;
padding-right: 25px;
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
border: 1px solid #cccccc;
background-color: transparent;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: 0.5s;
transition: 0.5s; }
.ui-selectmenu-button.ui-button:hover .ui-selectmenu-icon.ui-icon, .ui-selectmenu-button.ui-button:focus .ui-selectmenu-icon.ui-icon {
background-image: url("../images/v.png"); }
.ui-selectmenu-button.ui-button[aria-expanded=true] > .ui-selectmenu-icon.ui-icon {
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.ui-selectmenu-icon.ui-icon {
position: absolute;
right: 8px;
background-image: url("../images/v.png");
background-position: 0px; }
.ui-selectmenu-text {
margin-right: 0px;
font-size: 17px; }
.ui-widget {
font-size: inherit;
font-family: inherit; }
.ui-menu .ui-menu-item-wrapper {
height: 40px;
padding: 0px 0px 0px 5px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 1px solid #e6e6e6;
border-top: 1px solid transparent;
margin: 0px 5px 0px 5px; }
.ui-selectmenu-menu .ui-menu {
padding-left: 5px;
padding-right: 5px; }
.ui-selectmenu-menu .ui-menu .ui-menu-item {
margin: 0px -5px 0px -5px; }
.ui-selectmenu-menu .ui-menu .ui-menu-item:last-child div {
border-bottom: 0px; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
border: 1px solid transparent;
background-color: #f4f4f4;
color: inherit; }
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
margin: 0px;
border-left: 0px;
padding-left: 10px;
padding-right: 10px; }
@media screen and (max-width: 1200px) {
.banner__boots {
right: 0px; } } | 0.774754 | 0.090574 |
.paperfont{
display: block;
float: left;
}
.paperfont.left{
margin-right: 10px;
}
.paperfont.left5{
margin-right: 5px;
}
.paperfont.center{
margin-right: 10px;
margin-left: 10px;
}
.paperfont.right{
margin-left: 10px;
}
.pixel15{
width: 15px;
height: 15px;
}
.pixel20{
width: 20px;
height: 20px;
}
i.pixel60{
width: 60px !important;
height: 60px !important;
margin: 0 auto;
}
/* BEGIN ICONS */
.paper-view{
background: url('../svg/loupe.svg') no-repeat;
}
.paper-alert{
background: url('../svg/alerts.svg') no-repeat;
}
.paper-binoculars{
background: url('../svg/binoculars.svg') no-repeat;
}
.paper-add{
background: url('../svg/add.svg') no-repeat;
}
.paper-remove{
background: url('../svg/remove.svg') no-repeat;
}
.paper-refresh{
background: url('../svg/refresh.svg') no-repeat;
}
.paper-update{
background: url('../svg/update.svg') no-repeat;
}
.paper-list{
background: url('../svg/list.svg') no-repeat;
}
.paper-coins{
background: url('../svg/coins.svg') no-repeat;
}
.paper-controls5{
background: url('../svg/controls-5.svg') no-repeat;
}
.paper-user{
background: url('../svg/user.svg') no-repeat;
}
.paper-setting4{
background: url('../svg/settings-4.svg') no-repeat;
}
.paper-obook{
background: url('../svg/open-book.svg') no-repeat;
}
.paper-map{
background: url('../svg/map.svg') no-repeat;
}
.paper-users1{
background: url('../svg/users-1.svg') no-repeat;
}
.paper-users{
background: url('../svg/users.svg') no-repeat;
}
.paper-bookmark{
background: url('../svg/bookmark.svg') no-repeat;
}
.paper-database2{
background: url('../svg/database-2.svg') no-repeat;
}
.paper-dollar{
background: url('../svg/dollar.svg') no-repeat;
}
.paper-notes{
background: url('../svg/notes.svg') no-repeat;
}
.paper-notes1{
background: url('../svg/notes-1.svg') no-repeat;
}
.paper-notes2{
background: url('../svg/notes-2.svg') no-repeat;
}
.paper-money{
background: url('../svg/money.svg') no-repeat;
}
.paper-moneybag{
background: url('../svg/money-bag.svg') no-repeat;
}
.paper-investment{
background: url('../svg/investment.svg') no-repeat;
}
.paper-receipt{
background: url('../svg/receipt.svg') no-repeat;
}
.paper-invoice{
background: url('../svg/invoice.svg') no-repeat;
}
.paper-invoice1{
background: url('../svg/invoice1.svg') no-repeat;
}
.paper-cash{
background: url('../svg/cash.svg') no-repeat;
}
.paper-payment{
background: url('../svg/payment.svg') no-repeat;
}
.paper-card{
background: url('../svg/card.svg') no-repeat;
}
.paper-coupon{
background: url('../svg/coupon.svg') no-repeat;
}
.paper-voucher1{
background: url('../svg/voucher1.svg') no-repeat;
}
.paper-pricetag4{
background: url('../svg/price-tag-4.svg') no-repeat;
}
.paper-piechart{
background: url('../svg/pie-chart.svg') no-repeat;
}
.paper-boy{
background: url('../svg/boy.svg') no-repeat;
}
.paper-man{
background: url('../svg/man.svg') no-repeat;
}
.paper-woman{
background: url('../svg/woman.svg') no-repeat;
}
.paper-family{
background: url('../svg/family.svg') no-repeat;
}
.paper-backpack{
background: url('../svg/backpack.svg') no-repeat;
}
.paper-branch{
background: url('../svg/branch.svg') no-repeat;
}
.paper-chalkboard{
background: url('../svg/chalkboard.svg') no-repeat;
}
.paper-curriculum{
background: url('../svg/curriculum.svg') no-repeat;
}
.paper-money1{
background: url('../svg/money1.svg') no-repeat;
}
.paper-windows{
background: url('../svg/windows.svg') no-repeat;
}
.paper-windows1{
background: url('../svg/windows-1.svg') no-repeat;
}
.paper-windows2{
background: url('../svg/windows-2.svg') no-repeat;
}
.paper-windows3{
background: url('../svg/windows-3.svg') no-repeat;
}
.paper-notebook{
background: url('../svg/notebook.svg') no-repeat;
}
.paper-notebook1{
background: url('../svg/notebook-1.svg') no-repeat;
}
.paper-notebook2{
background: url('../svg/notebook-2.svg') no-repeat;
}
.paper-notebook3{
background: url('../svg/notebook-3.svg') no-repeat;
}
.paper-notebook4{
background: url('../svg/notebook-4.svg') no-repeat;
}
.paper-notebook5{
background: url('../svg/notebook-5.svg') no-repeat;
}
/*FINANCE*/
.paper-voucher{
background: url('../svg/voucher.svg') no-repeat;
}
.paper-shoppingbag{
background: url('../svg/shopping-bag.svg') no-repeat;
}
.paper-invoiceitem{
background: url('../svg/invoice-item.svg') no-repeat;
}
.paper-invoice2{
background: url('../svg/invoice2.svg') no-repeat;
}
.paper-voucher2{
background: url('../svg/voucher2.svg') no-repeat;
}
.paper-discount{
background: url('../svg/discount.svg') no-repeat;
}
.paper-creditcard{
background: url('../svg/credit-card.svg') no-repeat;
}
.paper-finance{
background: url('../svg/finance.svg') no-repeat;
}
/*ACADEMIC*/
.paper-book{
background: url('../svg/book.svg') no-repeat;
}
.paper-checklist{
background: url('../svg/check-list.svg') no-repeat;
}
.paper-school{
background: url('../svg/school.svg') no-repeat;
}
.paper-school1{
background: url('../svg/school1.svg') no-repeat;
}
.paper-schoolmaterial{
background: url('../svg/school-material.svg') no-repeat;
}
.paper-schoolmaterial1{
background: url('../svg/school-material1.svg') no-repeat;
}
.paper-notepad{
background: url('../svg/notepad.svg') no-repeat;
}
.paper-whiteboard{
background: url('../svg/whiteboard.svg') no-repeat;
}
.paper-blackboard{
background: url('../svg/blackboard.svg') no-repeat;
}
.paper-deskchair{
background: url('../svg/desk-chair.svg') no-repeat;
}
.paper-desk{
background: url('../svg/desk.svg') no-repeat;
}
.paper-grade{
background: url('../svg/grade.svg') no-repeat;
}
.paper-calendar{
background: url('../svg/calendar.svg') no-repeat;
}
.paper-calendar1{
background: url('../svg/calendar1.svg') no-repeat;
}
.paper-calendar2{
background: url('../svg/calendar2.svg') no-repeat;
}
.paper-learning{
background: url('../svg/learning.svg') no-repeat;
}
.paper-learning1{
background: url('../svg/learning1.svg') no-repeat;
}
.paper-teacher{
background: url('../svg/teacher.svg') no-repeat;
}
.paper-mother{
background: url('../svg/mother.svg') no-repeat;
}
.paper-library{
background: url('../svg/library.svg') no-repeat;
}
.paper-test{
background: url('../svg/test.svg') no-repeat;
}
.paper-networking{
background: url('../svg/networking.svg') no-repeat;
}
/* SETTING */
.paper-setting{
background: url('../svg/setting.svg') no-repeat;
}
.paper-anchor{
background: url('../svg/anchor.svg') no-repeat;
}
.paper-tool{
background: url('../svg/tool.svg') no-repeat;
}
.paper-tool1{
background: url('../svg/tool1.svg') no-repeat;
}
.paper-speedometer{
background: url('../svg/speedometer.svg') no-repeat;
} | web/css/paperfont.css | .paperfont{
display: block;
float: left;
}
.paperfont.left{
margin-right: 10px;
}
.paperfont.left5{
margin-right: 5px;
}
.paperfont.center{
margin-right: 10px;
margin-left: 10px;
}
.paperfont.right{
margin-left: 10px;
}
.pixel15{
width: 15px;
height: 15px;
}
.pixel20{
width: 20px;
height: 20px;
}
i.pixel60{
width: 60px !important;
height: 60px !important;
margin: 0 auto;
}
/* BEGIN ICONS */
.paper-view{
background: url('../svg/loupe.svg') no-repeat;
}
.paper-alert{
background: url('../svg/alerts.svg') no-repeat;
}
.paper-binoculars{
background: url('../svg/binoculars.svg') no-repeat;
}
.paper-add{
background: url('../svg/add.svg') no-repeat;
}
.paper-remove{
background: url('../svg/remove.svg') no-repeat;
}
.paper-refresh{
background: url('../svg/refresh.svg') no-repeat;
}
.paper-update{
background: url('../svg/update.svg') no-repeat;
}
.paper-list{
background: url('../svg/list.svg') no-repeat;
}
.paper-coins{
background: url('../svg/coins.svg') no-repeat;
}
.paper-controls5{
background: url('../svg/controls-5.svg') no-repeat;
}
.paper-user{
background: url('../svg/user.svg') no-repeat;
}
.paper-setting4{
background: url('../svg/settings-4.svg') no-repeat;
}
.paper-obook{
background: url('../svg/open-book.svg') no-repeat;
}
.paper-map{
background: url('../svg/map.svg') no-repeat;
}
.paper-users1{
background: url('../svg/users-1.svg') no-repeat;
}
.paper-users{
background: url('../svg/users.svg') no-repeat;
}
.paper-bookmark{
background: url('../svg/bookmark.svg') no-repeat;
}
.paper-database2{
background: url('../svg/database-2.svg') no-repeat;
}
.paper-dollar{
background: url('../svg/dollar.svg') no-repeat;
}
.paper-notes{
background: url('../svg/notes.svg') no-repeat;
}
.paper-notes1{
background: url('../svg/notes-1.svg') no-repeat;
}
.paper-notes2{
background: url('../svg/notes-2.svg') no-repeat;
}
.paper-money{
background: url('../svg/money.svg') no-repeat;
}
.paper-moneybag{
background: url('../svg/money-bag.svg') no-repeat;
}
.paper-investment{
background: url('../svg/investment.svg') no-repeat;
}
.paper-receipt{
background: url('../svg/receipt.svg') no-repeat;
}
.paper-invoice{
background: url('../svg/invoice.svg') no-repeat;
}
.paper-invoice1{
background: url('../svg/invoice1.svg') no-repeat;
}
.paper-cash{
background: url('../svg/cash.svg') no-repeat;
}
.paper-payment{
background: url('../svg/payment.svg') no-repeat;
}
.paper-card{
background: url('../svg/card.svg') no-repeat;
}
.paper-coupon{
background: url('../svg/coupon.svg') no-repeat;
}
.paper-voucher1{
background: url('../svg/voucher1.svg') no-repeat;
}
.paper-pricetag4{
background: url('../svg/price-tag-4.svg') no-repeat;
}
.paper-piechart{
background: url('../svg/pie-chart.svg') no-repeat;
}
.paper-boy{
background: url('../svg/boy.svg') no-repeat;
}
.paper-man{
background: url('../svg/man.svg') no-repeat;
}
.paper-woman{
background: url('../svg/woman.svg') no-repeat;
}
.paper-family{
background: url('../svg/family.svg') no-repeat;
}
.paper-backpack{
background: url('../svg/backpack.svg') no-repeat;
}
.paper-branch{
background: url('../svg/branch.svg') no-repeat;
}
.paper-chalkboard{
background: url('../svg/chalkboard.svg') no-repeat;
}
.paper-curriculum{
background: url('../svg/curriculum.svg') no-repeat;
}
.paper-money1{
background: url('../svg/money1.svg') no-repeat;
}
.paper-windows{
background: url('../svg/windows.svg') no-repeat;
}
.paper-windows1{
background: url('../svg/windows-1.svg') no-repeat;
}
.paper-windows2{
background: url('../svg/windows-2.svg') no-repeat;
}
.paper-windows3{
background: url('../svg/windows-3.svg') no-repeat;
}
.paper-notebook{
background: url('../svg/notebook.svg') no-repeat;
}
.paper-notebook1{
background: url('../svg/notebook-1.svg') no-repeat;
}
.paper-notebook2{
background: url('../svg/notebook-2.svg') no-repeat;
}
.paper-notebook3{
background: url('../svg/notebook-3.svg') no-repeat;
}
.paper-notebook4{
background: url('../svg/notebook-4.svg') no-repeat;
}
.paper-notebook5{
background: url('../svg/notebook-5.svg') no-repeat;
}
/*FINANCE*/
.paper-voucher{
background: url('../svg/voucher.svg') no-repeat;
}
.paper-shoppingbag{
background: url('../svg/shopping-bag.svg') no-repeat;
}
.paper-invoiceitem{
background: url('../svg/invoice-item.svg') no-repeat;
}
.paper-invoice2{
background: url('../svg/invoice2.svg') no-repeat;
}
.paper-voucher2{
background: url('../svg/voucher2.svg') no-repeat;
}
.paper-discount{
background: url('../svg/discount.svg') no-repeat;
}
.paper-creditcard{
background: url('../svg/credit-card.svg') no-repeat;
}
.paper-finance{
background: url('../svg/finance.svg') no-repeat;
}
/*ACADEMIC*/
.paper-book{
background: url('../svg/book.svg') no-repeat;
}
.paper-checklist{
background: url('../svg/check-list.svg') no-repeat;
}
.paper-school{
background: url('../svg/school.svg') no-repeat;
}
.paper-school1{
background: url('../svg/school1.svg') no-repeat;
}
.paper-schoolmaterial{
background: url('../svg/school-material.svg') no-repeat;
}
.paper-schoolmaterial1{
background: url('../svg/school-material1.svg') no-repeat;
}
.paper-notepad{
background: url('../svg/notepad.svg') no-repeat;
}
.paper-whiteboard{
background: url('../svg/whiteboard.svg') no-repeat;
}
.paper-blackboard{
background: url('../svg/blackboard.svg') no-repeat;
}
.paper-deskchair{
background: url('../svg/desk-chair.svg') no-repeat;
}
.paper-desk{
background: url('../svg/desk.svg') no-repeat;
}
.paper-grade{
background: url('../svg/grade.svg') no-repeat;
}
.paper-calendar{
background: url('../svg/calendar.svg') no-repeat;
}
.paper-calendar1{
background: url('../svg/calendar1.svg') no-repeat;
}
.paper-calendar2{
background: url('../svg/calendar2.svg') no-repeat;
}
.paper-learning{
background: url('../svg/learning.svg') no-repeat;
}
.paper-learning1{
background: url('../svg/learning1.svg') no-repeat;
}
.paper-teacher{
background: url('../svg/teacher.svg') no-repeat;
}
.paper-mother{
background: url('../svg/mother.svg') no-repeat;
}
.paper-library{
background: url('../svg/library.svg') no-repeat;
}
.paper-test{
background: url('../svg/test.svg') no-repeat;
}
.paper-networking{
background: url('../svg/networking.svg') no-repeat;
}
/* SETTING */
.paper-setting{
background: url('../svg/setting.svg') no-repeat;
}
.paper-anchor{
background: url('../svg/anchor.svg') no-repeat;
}
.paper-tool{
background: url('../svg/tool.svg') no-repeat;
}
.paper-tool1{
background: url('../svg/tool1.svg') no-repeat;
}
.paper-speedometer{
background: url('../svg/speedometer.svg') no-repeat;
} | 0.314366 | 0.070464 |
header .subnav {
position: relative;
margin-bottom: 30px;
}
.modal-footer{
margin-bottom: 20px;
}
.image-id{
float: right;
background-image: url(/redesign/css/analytics/images/icons-all.png);
background-position: 0px 8px;
background-size: 35px;
background-repeat: no-repeat;
text-indent: 20px;
}
.append{
float: left;
margin-bottom: 30px;
border: 10px solid #fff;
position: relative;
width: 100% !important;
height: auto !important;
border: 1px solid ;
}
.select-date{
margin-left: 20px;
}
.arrow{
content: "";
display: none;
position: absolute;
top: 42px;
left: 50%;
margin-left: -10px;
width: 0;
z-index: 111;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 12px solid #379fe7;
}
.imginfos li{
padding: 0;
margin-bottom: 20px;
}
.img-info{
width: 270px;
height: 342px;
float: left;
}
.imgshow{
width: 100%;height: 50%;
background-image: url(/redesign/css/analytics/images/cars.png);
background-position: 0px 6px;
background-size: cover;
background-repeat: no-repeat;
position: relative;
}
#dateRange .modal-footer .btn {
color: #fff;
width: 100px;
height: 30px;
margin-left: 30px;
}
#dateRange .modal-footer .btn-primary{
background-color: #379fe7;
}
.pikers table td{
height: 36px;
}
.pikers table tr{
border: none;
}
.ui-datepicker .ui-datepicker-prev span{
/*background-image: url(/redesign/css/analytics/images/arrows.png);*/
background-position: left center;
background-size: 300px;
background-repeat: no-repeat;
margin-top: -3px;
}
.ui-datepicker .ui-datepicker-next span{
right: 7px;
/*background-image: url(/redesign/css/analytics/images/arrows.png);*/
background-position: right center;
background-size: 300px;
background-repeat: no-repeat;
margin-top: -4px;
}
.ui-datepicker-year{
margin-right: 2px !important;
}
.btn-sm {
padding: 5px 10px !important;
}
.details{
border: 1px solid;
}
.tip-contents{
line-height: 34px;
color: #000;
text-indent: 20px;
}
.tip-contents span{
text-align: left;
width: 60px;
display: inline-block;
}
.tip-contents span:first-child{
color: #b6b6b9;
}
.showDetail{
color: #1c91e3;
cursor: pointer;
line-height: 33px;
text-align: center;
position: relative;
border-top: 1px solid #000;
}
.tit-item{
background-color: #379fe7;
position: relative;
padding: 0;
margin-bottom: 0;
}
.tit-item-left{position: relative;display: inline-block;}
.tit-item-left li{
float: left;
line-height: 46px;
width: 100px;
text-align: center;
font-size: 18px;
}
.tit-item-left li.active{
border-bottom: 4px solid #44b2fe;
}
.tit-item-left a{
color: #fff;
}
.closebtn{
display: inline-block;
width: 30px;
height: 30px;
background-color: antiquewhite;
right: 0;
position: absolute;
bottom: 0;
background-image: url(creative/images/d3-modal-close.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
width: 20px;
height: 20px;
}
.subnav{
border-radius: 0;
}
.body-item{
margin-bottom: 40px;
}
.body-item table{
width: 94%;
margin: 0 3%;
}
.body-item table tr:nth-child(even) {
background-color: #f6f6f6;
}
table td {
padding: 0 12px;
height: 51px;
line-height: 9px;
}
.hidden{
display: none;
}
@media screen and (max-width: 1024px) {
.append{
width: 100% !important;
}
}
#dateRange.dateRange_expanded{
position: absolute;
z-index: 111;
width: 100%;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
background-color: #1c91e3;
text-align: center;
line-height: 28px;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight,.ui-datepicker td span, .ui-datepicker td a{
text-align: center;
}
.ac_daterange_quick_range li a{
color: #167ddc;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
border: 1px solid #acb2ba;
background-color: #fafbfd;
height: 35px;
border-radius: 3px;
}
@media (max-width: 1100px){
table {
min-width: auto;
}
} | backend/web/redesign/css/analytics/campaign-image.css | header .subnav {
position: relative;
margin-bottom: 30px;
}
.modal-footer{
margin-bottom: 20px;
}
.image-id{
float: right;
background-image: url(/redesign/css/analytics/images/icons-all.png);
background-position: 0px 8px;
background-size: 35px;
background-repeat: no-repeat;
text-indent: 20px;
}
.append{
float: left;
margin-bottom: 30px;
border: 10px solid #fff;
position: relative;
width: 100% !important;
height: auto !important;
border: 1px solid ;
}
.select-date{
margin-left: 20px;
}
.arrow{
content: "";
display: none;
position: absolute;
top: 42px;
left: 50%;
margin-left: -10px;
width: 0;
z-index: 111;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 12px solid #379fe7;
}
.imginfos li{
padding: 0;
margin-bottom: 20px;
}
.img-info{
width: 270px;
height: 342px;
float: left;
}
.imgshow{
width: 100%;height: 50%;
background-image: url(/redesign/css/analytics/images/cars.png);
background-position: 0px 6px;
background-size: cover;
background-repeat: no-repeat;
position: relative;
}
#dateRange .modal-footer .btn {
color: #fff;
width: 100px;
height: 30px;
margin-left: 30px;
}
#dateRange .modal-footer .btn-primary{
background-color: #379fe7;
}
.pikers table td{
height: 36px;
}
.pikers table tr{
border: none;
}
.ui-datepicker .ui-datepicker-prev span{
/*background-image: url(/redesign/css/analytics/images/arrows.png);*/
background-position: left center;
background-size: 300px;
background-repeat: no-repeat;
margin-top: -3px;
}
.ui-datepicker .ui-datepicker-next span{
right: 7px;
/*background-image: url(/redesign/css/analytics/images/arrows.png);*/
background-position: right center;
background-size: 300px;
background-repeat: no-repeat;
margin-top: -4px;
}
.ui-datepicker-year{
margin-right: 2px !important;
}
.btn-sm {
padding: 5px 10px !important;
}
.details{
border: 1px solid;
}
.tip-contents{
line-height: 34px;
color: #000;
text-indent: 20px;
}
.tip-contents span{
text-align: left;
width: 60px;
display: inline-block;
}
.tip-contents span:first-child{
color: #b6b6b9;
}
.showDetail{
color: #1c91e3;
cursor: pointer;
line-height: 33px;
text-align: center;
position: relative;
border-top: 1px solid #000;
}
.tit-item{
background-color: #379fe7;
position: relative;
padding: 0;
margin-bottom: 0;
}
.tit-item-left{position: relative;display: inline-block;}
.tit-item-left li{
float: left;
line-height: 46px;
width: 100px;
text-align: center;
font-size: 18px;
}
.tit-item-left li.active{
border-bottom: 4px solid #44b2fe;
}
.tit-item-left a{
color: #fff;
}
.closebtn{
display: inline-block;
width: 30px;
height: 30px;
background-color: antiquewhite;
right: 0;
position: absolute;
bottom: 0;
background-image: url(creative/images/d3-modal-close.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
width: 20px;
height: 20px;
}
.subnav{
border-radius: 0;
}
.body-item{
margin-bottom: 40px;
}
.body-item table{
width: 94%;
margin: 0 3%;
}
.body-item table tr:nth-child(even) {
background-color: #f6f6f6;
}
table td {
padding: 0 12px;
height: 51px;
line-height: 9px;
}
.hidden{
display: none;
}
@media screen and (max-width: 1024px) {
.append{
width: 100% !important;
}
}
#dateRange.dateRange_expanded{
position: absolute;
z-index: 111;
width: 100%;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
background-color: #1c91e3;
text-align: center;
line-height: 28px;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight,.ui-datepicker td span, .ui-datepicker td a{
text-align: center;
}
.ac_daterange_quick_range li a{
color: #167ddc;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
border: 1px solid #acb2ba;
background-color: #fafbfd;
height: 35px;
border-radius: 3px;
}
@media (max-width: 1100px){
table {
min-width: auto;
}
} | 0.203391 | 0.116261 |
@import url('https://fonts.googleapis.com/css?family=Bubbler+One');
/*****************
HTML,BODY
******************/
html{
min-height: 100%;
position: relative;
}
body{
font-family: 'Bubbler One', sans-serif;
margin-bottom: 40px;
background: #6D6027;
background: -webkit-linear-gradient(to right, #D3CBB8, rgba(121, 90, 212, 0.1));
background: linear-gradient(to right, #D3CBB8, rgba(121, 90, 212, 0.1));
}
/*****************
HEADER AREA
******************/
header{
margin-top: 40px;
}
.container-fluid .row header h1,h3{
color: #212121;
}
.container-fluid .row header h1 {
font-size: 40px;
}
.container-fluid .row header h3 i{
font-size: 25px;
}
body > div > div:nth-child(1) > header > h3 > a > i{
color: #007100;
}
/*****************
GAME BODY
******************/
#game-body {
width: 340px;
height: 350px;
border: 10px solid #C8D3A3;
border-radius: 10px 0 0 10px;
-webkit-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
background: #339dd3;
margin-top: 40px;
}
#game-body ul{
margin: 0;
padding-top: 15px;
padding-left: 10px;
}
#game-body li {
list-style: none;
float: left;
display: inline-block;
width: 100px;
height: 100px;
background: #C8D3A3;
border: 1px solid #26271E;
cursor: pointer;
text-align: center;
}
#game-body li.o,
#game-body li.x {
padding-top: 10px;
font-size: 50px;
color: #26271E;
font-weight: bold;
text-shadow: 3px 1px 13px black;
}
#game-body li.x:active,
#game-body li.o:active {
color: darkred;
border: 2px solid darkred;
}
#game-body li:active {
width: 100px;
height: 100px;
border: 0;
}
#info {
position: absolute;
top: 0;
left: 355px;
height: 350px;
text-align:center;
margin-top: 40px;
background: #339dd3;
width: 101px;
border-radius: 0 10px 10px 0;
border-left: 2px solid #26271E;
border-right: 2px solid rgba(38, 39, 30, 0.45);
}
#whose-turn span,
#game-messages span {
display: none;
}
#whose-turn.x span.x,
#whose-turn.o span.o{
display: block;
margin-top: 10px;
position: absolute;
top: 171px;
left: 174px;
width: 100px;
height: 42px;
background-color: white;
text-align: center;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
line-height: 2.2;
}
#game-messages.player-x-win span.player-x-win,
#game-messages.player-o-win span.player-o-win,
#game-messages.draw span.draw
{
display: block;
margin-top: 10px;
position: absolute;
top: 181px;
left: 187px;
width: 90px;
height: 48px;
background-color: #C8D3A3;
text-align: center;
border: 2px solid #26271E;
border-radius: 10px;
font-size: 16px;
font-weight: bold;
line-height: 2.2;
padding-top: 4px;
}
#whose-turn.x span.x,
#whose-turn.o span.o{
top: 32px;
left: 13px;
background-color: #767A5A;
width: 75px;
color: greenyellow;
}
#score p,
#x-score,
#o-score,
.x-score,
.o-score{
position: absolute;
font-size: 16px;
font-weight: bold;
height: 30px;
}
#score{
width: 90px;
height: 57px;
background-color: #767A5A;
margin-top: -16px;
margin-left: 3px;
border-radius: 5px;
color: greenyellow;
}
#score #x-score,
#score #o-score{
top: 0;
left: 61px;
width: 25px;
}
#score .x-score,
#score .o-score{
left: 7px;
width: 60px;}
#score .x-score{
top: 116px;
}
#score .o-score{
top: 140px;
}
#reset-game {
background: #339dd3;
position: absolute;
left: 359px;
top: 294px;
height: 89px;
border-radius: 0 0 10px 0;
font-size: 18px;
font-weight: bold;
width: 89px;
border: 7px solid #C8D3A3;
outline: none;
color: whitesmoke;
background: linear-gradient(to top, #4f687c, #2f8abc);
box-shadow:
1px 0 rgba(200, 211, 163, 0.96), 1px 1px rgba(124, 130, 100, 0.95),
2px 1px rgba(170, 180, 140, 0.9), 2px 2px rgba(124, 130, 100, 0.90),
3px 2px rgba(170, 180, 140, 0.86), 3px 3px rgba(124, 130, 100, 0.86),
4px 3px rgba(170, 180, 140, 0.80), 4px 4px rgba(124, 130, 100, 0.80),
5px 4px rgba(170, 180, 140, 0.76), 5px 5px rgba(124, 130, 100, 0.75)
}
#reset-game:hover{
cursor: pointer;
outline: none;
}
#reset-game:active{
left: 364px;
top: 299px;
-webkit-box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
-moz-box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
outline: none;
}
/*****************
FOOTER AREA
******************/
.footer {
position: absolute;!important;
bottom: 0;
width: 100%;
/* fixed height of the footer here */
height: 40px;
margin-bottom: 20px;
}
.footer .container .row .my-contacts .contacts-inner{
margin:0 auto;
width: 150px;
position: relative;
}
.footer .container .row .my-contacts .contacts-inner i{
font-size: 300%;
padding-right: 5px;
}
.footer .container .row .my-contacts .contacts-inner a .fa-facebook-official{
color: #4867AA;
}
.footer .container .row .my-contacts .contacts-inner a .fa-twitter-square{
color: #41ABE1;
}
.footer .container .row .my-contacts .contacts-inner a .fa-github-square{
color: #24292E;
}
.footer .container .row .my-contacts .contacts-inner a .fa-facebook-official:hover,
a .fa-twitter-square:hover,
a .fa-github-square:hover{
opacity: 0.6;
}
.turn-is{
padding-top: 20px;
padding-bottom: 30px;
}
.turn-is,
.score-board{
font-size: 15px;
font-weight: bold;
}
/*****************
SHADOWS
******************/
#game-body li.x:active,
#game-body li:hover,
#game-body li,
#info {
-webkit-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
}
#whose-turn.x span.x,
#whose-turn.o span.o,
#score{
-webkit-box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
}
.shadowed{
position: absolute;
top: 49px;
left: 23px;
width: 442px;
height: 348px;
border-radius: 9px;
-webkit-box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
z-index: -1;
}
.box-shadow {
position: absolute;
top: 40px;
left: 16px;
width: 442px;
height: 350px;
border-radius: 10px;
background: linear-gradient(to top, #339dd3, #2f8abc);
box-shadow:
1px 0 #339dd3, 1px 1px #2f8abc,
2px 1px rgba(51, 157, 211, 0.96), 2px 2px rgba(47, 138, 188, 0.96),
3px 2px rgba(51, 157, 211, 0.91), 3px 3px rgba(47, 138, 188, 0.90),
4px 3px rgba(51, 157, 211, 0.85), 4px 4px rgba(47, 138, 188, 0.86),
5px 4px rgba(51, 157, 211, 0.80), 5px 5px rgba(47, 138, 188, 0.80),
6px 5px rgba(51, 157, 211, 0.75), 6px 6px rgba(47, 138, 188, 0.76),
7px 6px rgba(51, 157, 211, 0.70), 7px 7px rgba(47, 138, 188, 0.70),
8px 7px rgba(51, 157, 211, 0.65), 8px 8px rgba(47, 138, 188, 0.65);
z-index: -1;
} | css/main.css | @import url('https://fonts.googleapis.com/css?family=Bubbler+One');
/*****************
HTML,BODY
******************/
html{
min-height: 100%;
position: relative;
}
body{
font-family: 'Bubbler One', sans-serif;
margin-bottom: 40px;
background: #6D6027;
background: -webkit-linear-gradient(to right, #D3CBB8, rgba(121, 90, 212, 0.1));
background: linear-gradient(to right, #D3CBB8, rgba(121, 90, 212, 0.1));
}
/*****************
HEADER AREA
******************/
header{
margin-top: 40px;
}
.container-fluid .row header h1,h3{
color: #212121;
}
.container-fluid .row header h1 {
font-size: 40px;
}
.container-fluid .row header h3 i{
font-size: 25px;
}
body > div > div:nth-child(1) > header > h3 > a > i{
color: #007100;
}
/*****************
GAME BODY
******************/
#game-body {
width: 340px;
height: 350px;
border: 10px solid #C8D3A3;
border-radius: 10px 0 0 10px;
-webkit-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
background: #339dd3;
margin-top: 40px;
}
#game-body ul{
margin: 0;
padding-top: 15px;
padding-left: 10px;
}
#game-body li {
list-style: none;
float: left;
display: inline-block;
width: 100px;
height: 100px;
background: #C8D3A3;
border: 1px solid #26271E;
cursor: pointer;
text-align: center;
}
#game-body li.o,
#game-body li.x {
padding-top: 10px;
font-size: 50px;
color: #26271E;
font-weight: bold;
text-shadow: 3px 1px 13px black;
}
#game-body li.x:active,
#game-body li.o:active {
color: darkred;
border: 2px solid darkred;
}
#game-body li:active {
width: 100px;
height: 100px;
border: 0;
}
#info {
position: absolute;
top: 0;
left: 355px;
height: 350px;
text-align:center;
margin-top: 40px;
background: #339dd3;
width: 101px;
border-radius: 0 10px 10px 0;
border-left: 2px solid #26271E;
border-right: 2px solid rgba(38, 39, 30, 0.45);
}
#whose-turn span,
#game-messages span {
display: none;
}
#whose-turn.x span.x,
#whose-turn.o span.o{
display: block;
margin-top: 10px;
position: absolute;
top: 171px;
left: 174px;
width: 100px;
height: 42px;
background-color: white;
text-align: center;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
line-height: 2.2;
}
#game-messages.player-x-win span.player-x-win,
#game-messages.player-o-win span.player-o-win,
#game-messages.draw span.draw
{
display: block;
margin-top: 10px;
position: absolute;
top: 181px;
left: 187px;
width: 90px;
height: 48px;
background-color: #C8D3A3;
text-align: center;
border: 2px solid #26271E;
border-radius: 10px;
font-size: 16px;
font-weight: bold;
line-height: 2.2;
padding-top: 4px;
}
#whose-turn.x span.x,
#whose-turn.o span.o{
top: 32px;
left: 13px;
background-color: #767A5A;
width: 75px;
color: greenyellow;
}
#score p,
#x-score,
#o-score,
.x-score,
.o-score{
position: absolute;
font-size: 16px;
font-weight: bold;
height: 30px;
}
#score{
width: 90px;
height: 57px;
background-color: #767A5A;
margin-top: -16px;
margin-left: 3px;
border-radius: 5px;
color: greenyellow;
}
#score #x-score,
#score #o-score{
top: 0;
left: 61px;
width: 25px;
}
#score .x-score,
#score .o-score{
left: 7px;
width: 60px;}
#score .x-score{
top: 116px;
}
#score .o-score{
top: 140px;
}
#reset-game {
background: #339dd3;
position: absolute;
left: 359px;
top: 294px;
height: 89px;
border-radius: 0 0 10px 0;
font-size: 18px;
font-weight: bold;
width: 89px;
border: 7px solid #C8D3A3;
outline: none;
color: whitesmoke;
background: linear-gradient(to top, #4f687c, #2f8abc);
box-shadow:
1px 0 rgba(200, 211, 163, 0.96), 1px 1px rgba(124, 130, 100, 0.95),
2px 1px rgba(170, 180, 140, 0.9), 2px 2px rgba(124, 130, 100, 0.90),
3px 2px rgba(170, 180, 140, 0.86), 3px 3px rgba(124, 130, 100, 0.86),
4px 3px rgba(170, 180, 140, 0.80), 4px 4px rgba(124, 130, 100, 0.80),
5px 4px rgba(170, 180, 140, 0.76), 5px 5px rgba(124, 130, 100, 0.75)
}
#reset-game:hover{
cursor: pointer;
outline: none;
}
#reset-game:active{
left: 364px;
top: 299px;
-webkit-box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
-moz-box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
box-shadow: inset -1px 3px 111px -46px rgba(0,0,0,0.75);
outline: none;
}
/*****************
FOOTER AREA
******************/
.footer {
position: absolute;!important;
bottom: 0;
width: 100%;
/* fixed height of the footer here */
height: 40px;
margin-bottom: 20px;
}
.footer .container .row .my-contacts .contacts-inner{
margin:0 auto;
width: 150px;
position: relative;
}
.footer .container .row .my-contacts .contacts-inner i{
font-size: 300%;
padding-right: 5px;
}
.footer .container .row .my-contacts .contacts-inner a .fa-facebook-official{
color: #4867AA;
}
.footer .container .row .my-contacts .contacts-inner a .fa-twitter-square{
color: #41ABE1;
}
.footer .container .row .my-contacts .contacts-inner a .fa-github-square{
color: #24292E;
}
.footer .container .row .my-contacts .contacts-inner a .fa-facebook-official:hover,
a .fa-twitter-square:hover,
a .fa-github-square:hover{
opacity: 0.6;
}
.turn-is{
padding-top: 20px;
padding-bottom: 30px;
}
.turn-is,
.score-board{
font-size: 15px;
font-weight: bold;
}
/*****************
SHADOWS
******************/
#game-body li.x:active,
#game-body li:hover,
#game-body li,
#info {
-webkit-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 62px -11px rgba(0,0,0,0.75);
}
#whose-turn.x span.x,
#whose-turn.o span.o,
#score{
-webkit-box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
box-shadow: inset 0 0 78px -11px rgba(0,0,0,0.75);
}
.shadowed{
position: absolute;
top: 49px;
left: 23px;
width: 442px;
height: 348px;
border-radius: 9px;
-webkit-box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
box-shadow: 10px 10px 26px -2px rgba(0,0,0,0.75);
z-index: -1;
}
.box-shadow {
position: absolute;
top: 40px;
left: 16px;
width: 442px;
height: 350px;
border-radius: 10px;
background: linear-gradient(to top, #339dd3, #2f8abc);
box-shadow:
1px 0 #339dd3, 1px 1px #2f8abc,
2px 1px rgba(51, 157, 211, 0.96), 2px 2px rgba(47, 138, 188, 0.96),
3px 2px rgba(51, 157, 211, 0.91), 3px 3px rgba(47, 138, 188, 0.90),
4px 3px rgba(51, 157, 211, 0.85), 4px 4px rgba(47, 138, 188, 0.86),
5px 4px rgba(51, 157, 211, 0.80), 5px 5px rgba(47, 138, 188, 0.80),
6px 5px rgba(51, 157, 211, 0.75), 6px 6px rgba(47, 138, 188, 0.76),
7px 6px rgba(51, 157, 211, 0.70), 7px 7px rgba(47, 138, 188, 0.70),
8px 7px rgba(51, 157, 211, 0.65), 8px 8px rgba(47, 138, 188, 0.65);
z-index: -1;
} | 0.25945 | 0.067179 |
@-moz-document url-prefix("https://www.easistent.com/urniki/") {
html, body, #main, #okvir_glavni_spodaj {
color: #ffffff;
background-color: #000000;
border: none;
}
.horizontal_tabs {
background: #E1C08B none;
}
#okvir_prijava {
background-color: #0c0c0d;
border-color: #38383d;
}
#okvir_prijava .padding5 {
background-color: #0c0c0d !important;
}
.novi_filtri {
background-color: #38383d !important;
}
.ednevnik-seznam_ur_teden th {
border-top: 5px solid #737373;
color: #ffffff;
}
.ednevnik-seznam_ur_teden th > div {
color: #f9f9fa !important;
}
.ednevnik-seznam_ur_teden-urnik {
color: #f9f9fa !important;
min-height: 36px;
border-color: #38383d !important;
}
.ednevnik-seznam_ur_teden-urnik:hover {
background-image: none;
background-color: #38383d;
background: linear-gradient(to right, #38383d 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-dogodek {
background-image: none;
background-color: #352b1c;
background: linear-gradient(to right, #352b1c 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-dogodek:hover {
background-image: none;
background-color: #966d0d;
background: linear-gradient(to right, #966d0d 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-nadomescanje {
background-image: none;
background-color: #1b3133;
background: linear-gradient(to right, #1b3133 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-nadomescanje:hover {
background-image: none;
background-color: #32938f;
background: linear-gradient(to right, #32938f 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-zaposlitev {
background-image: none;
background-color: #372138;
background: linear-gradient(to right, #372138 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-zaposlitev:hover {
background-image: none;
background-color: #923293;
background: linear-gradient(to right, #923293 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td {
background-image: none;
background-color: #0c0c0d;
}
.ednevnik-seznam_ur_teden td {
border: 1px solid #38383d;
color: #ffffff;
}
.black {
color: #ffffff;
}
.gray {
color: #f9f9fa;
}
} | data/usercss/150706.user.css | @-moz-document url-prefix("https://www.easistent.com/urniki/") {
html, body, #main, #okvir_glavni_spodaj {
color: #ffffff;
background-color: #000000;
border: none;
}
.horizontal_tabs {
background: #E1C08B none;
}
#okvir_prijava {
background-color: #0c0c0d;
border-color: #38383d;
}
#okvir_prijava .padding5 {
background-color: #0c0c0d !important;
}
.novi_filtri {
background-color: #38383d !important;
}
.ednevnik-seznam_ur_teden th {
border-top: 5px solid #737373;
color: #ffffff;
}
.ednevnik-seznam_ur_teden th > div {
color: #f9f9fa !important;
}
.ednevnik-seznam_ur_teden-urnik {
color: #f9f9fa !important;
min-height: 36px;
border-color: #38383d !important;
}
.ednevnik-seznam_ur_teden-urnik:hover {
background-image: none;
background-color: #38383d;
background: linear-gradient(to right, #38383d 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-dogodek {
background-image: none;
background-color: #352b1c;
background: linear-gradient(to right, #352b1c 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-dogodek:hover {
background-image: none;
background-color: #966d0d;
background: linear-gradient(to right, #966d0d 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-nadomescanje {
background-image: none;
background-color: #1b3133;
background: linear-gradient(to right, #1b3133 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-nadomescanje:hover {
background-image: none;
background-color: #32938f;
background: linear-gradient(to right, #32938f 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-zaposlitev {
background-image: none;
background-color: #372138;
background: linear-gradient(to right, #372138 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td-zaposlitev:hover {
background-image: none;
background-color: #923293;
background: linear-gradient(to right, #923293 0%, #0c0c0d 100%);
}
.ednevnik-seznam_ur_teden-td {
background-image: none;
background-color: #0c0c0d;
}
.ednevnik-seznam_ur_teden td {
border: 1px solid #38383d;
color: #ffffff;
}
.black {
color: #ffffff;
}
.gray {
color: #f9f9fa;
}
} | 0.246896 | 0.072112 |
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-top-color: #ddd;
border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 74px;
margin-right: 0;
margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #ffffff;
}
tr.odd {
background-color: #DDD;
}
.clickable {
cursor: pointer;
}
h1, .h1 {
font-size: 22px;
}
h2, .h2 {
font-size: 18px;
}
h3, .h3 {
font-size: 16px;
}
h4, .h4 {
font-size: 14px;
}
input.h1, input.h2, input.h3, input.h4 {
margin-bottom: 0;
}
canvas {
min-width: 100px;
min-height: 100px;
width: 100%;
height: 100%;
}
.fileinput-button {
overflow: hidden;
}
.fileinput-button input {
width: calc(100% + 24px);
height: 100%;
display: block !important;
opacity: 0 !important;
overflow: hidden !important;
margin: -6px -12px;
padding: 0;
padding-bottom: 6px;
margin-top: -27px;
}
.field {
margin-top: .1em;
margin-bottom: .1em;
}
.field .h1:before, .field .h2:before, .field .h3:before, .field .h4:before {
content: "";
display: block;
clear: both;
height: .5em;
} | app/styles/main.css | .tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-top-color: #ddd;
border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 74px;
margin-right: 0;
margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #ffffff;
}
tr.odd {
background-color: #DDD;
}
.clickable {
cursor: pointer;
}
h1, .h1 {
font-size: 22px;
}
h2, .h2 {
font-size: 18px;
}
h3, .h3 {
font-size: 16px;
}
h4, .h4 {
font-size: 14px;
}
input.h1, input.h2, input.h3, input.h4 {
margin-bottom: 0;
}
canvas {
min-width: 100px;
min-height: 100px;
width: 100%;
height: 100%;
}
.fileinput-button {
overflow: hidden;
}
.fileinput-button input {
width: calc(100% + 24px);
height: 100%;
display: block !important;
opacity: 0 !important;
overflow: hidden !important;
margin: -6px -12px;
padding: 0;
padding-bottom: 6px;
margin-top: -27px;
}
.field {
margin-top: .1em;
margin-bottom: .1em;
}
.field .h1:before, .field .h2:before, .field .h3:before, .field .h4:before {
content: "";
display: block;
clear: both;
height: .5em;
} | 0.393036 | 0.071689 |
@import url(https://fonts.googleapis.com/css?family=Bree+Serif&subset=latin,latin-ext);
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article h1 a
{
font-family: "Bree Serif";
color: #272727;
font-size: 22px;
line-height: 30px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article h1 a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > h1
{
font-family: "Bree Serif";
color: #272727;
font-size: 26px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content h1 a
{
text-shadow: 1px 1px 0px #000000;
font-family: "Bree Serif";
color: #d7d7d7;
font-size: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content h1 a:hover
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture
{
border-width: 5px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big h1 a
{
text-shadow: none;
font-family: "Bree Serif";
color: #272727;
font-size: 20px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big h1 a:hover
{
text-shadow: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small h1 a
{
font-family: "Bree Serif";
color: #272727;
font-size: 16px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small h1 a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary p,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.box.big .summary,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content p,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content ul li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content ol li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .in_article_image p.image_title,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .in_article_image .image_description
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content .summary
{
font-family: "Arial";
color: #bdbdbd;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info a
{
text-decoration: none;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a:visited:hover
{
text-decoration: underline;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text.light_text
{
font-family: "Arial";
color: #696969;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .edn_article_map
{
border-width: 1px;
border-style: solid;
border-color: #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs a
{
text-transform: none;
text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3);
text-decoration: none;
font-family: "Arial";
color: #4f4f4f;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs a:hover
{
text-decoration: underline;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs
{
color: #696969;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/sidebarBoxTitleBackground/predefined/module_title_background-light.png");
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a span
{
font-family: "Arial";
color: #242424;
font-size: 12px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a:hover span
{
color: #242424;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box
{
border-top-width: 1px;
border-top-style: solid;
border-top-color: #ffffff;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #c6c6c6;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box.even
{
background-color: #e1e1e1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box.odd
{
background-color: #bababa;
background-image: url("../images/sidebarboxArticleBackground/predefined/sidebar_article_second_bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/tagCloudTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags
{
background-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a
{
font-family: "Arial";
color: #3d3c3c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a:hover
{
text-decoration: underline;
color: #3d3c3c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a span
{
font-family: "Arial";
color: #888888;
font-size: 12px;
font-style: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/categoryMenuTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div
{
background-color: #c8c8c8;
background-image: url("../images/categoryMenuItemsBackground/predefined/item_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-top-color: #dcdcdc;
border-bottom-color: #b5b5b5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div
{
background-color: #efefef;
background-image: none;
border-top-color: #d3d3d3;
border-bottom-color: #f5f5f5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category:hover
{
text-decoration: none;
color: #b50909;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category span
{
color: #5f5f5f;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse
{
background-image: url("../images/categoryMenuExpandCollapseIcon/predefined/expand_collapse.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div .bullet
{
background-image: url("../images/categoryMenuItemBullet/predefined/item_bullets_light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list
{
background-color: #e0e1e1;
background-image: url("../images/articleBox/inListBackground/predefined/article_list_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container
{
background-color: #f0f0f0;
background-image: url("../images/articleBox/inListBackground/predefined/article_list_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list
{
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big
{
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.details_wrapper .eds_mediaContainer
{
border-width: 1px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list a:hover .article_image
{
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.span > .content_wrapper > .content > .article_image
{
border-width: 4px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a img
{
border-width: 1px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a:hover img
{
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box
{
background-color: #979797;
background-image: url("../images/articleDate/background/predefined/date_box_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-width: 1px;
border-style: solid;
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span
{
font-family: "Arial";
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.day
{
text-shadow: 1px 1px 0px #cccccc;
color: #404040;
font-size: 21px;
font-style: normal;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.month
{
color: #4c4c4c;
font-size: 12px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.year
{
color: #4c4c4c;
font-size: 12px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text
{
background-color: #ababab;
background-image: url("../images/articleMetaDetails/background/predefined/article_meta_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #ffffff;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #dfdfdf;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #dfdfdf;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #dfdfdf;
box-shadow: 0px -1px 0px 0px #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text
{
font-family: "Arial";
color: #4d4d4d;
font-size: 12px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author a
{
text-decoration: none;
color: #4d4d4d;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text > a
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text > a:hover
{
text-decoration: underline;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author
{
background-image: url("../images/articleMetaDetails/icons/predefined/person-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.comments,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.comments
{
background-image: url("../images/articleMetaDetails/icons/predefined/comments-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.rating,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.rating
{
background-image: url("../images/articleMetaDetails/icons/predefined/rating_star-light.png");
background-position: 0% 4px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .event_date
{
font-family: "Arial";
color: #3f3f3f;
font-size: 12px;
background-image: url("../images/eventDate/icon/predefined/event_clock-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .event_location
{
font-family: "Arial";
color: #3f3f3f;
font-size: 12px;
background-image: url("../images/eventLocation/icon/predefined/location_marker.png");
background-position: 5px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .edn_eventDetails *
{
color: #4c4c4c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .eds_openModal
{
background-color: #868686;
box-shadow: 0px 0px 2px 0px #878787;
text-shadow: -1px -1px 1px #8f8f8f,1px 1px 1px #c6c6c6;
color: #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .eds_openModal:hover
{
background-color: #5e5e5e;
box-shadow: 0px 0px 2px 0px #878787;
text-shadow: 1px 1px 1px #a3a3a3;
color: #4a4a4a;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container
{
font-family: "Arial";
color: #696969;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container a
{
background-color: #c2c2c2;
text-shadow: none;
color: #2f2f2f;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container a:hover
{
background-color: #9c9c9c;
text-shadow: none;
color: #121212;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px 0px;
box-shadow: 0px 1px 2px 0px #828282;
font-family: "Arial";
color: #3a3a3a;
font-size: 12px;
border-width: 1px;
border-style: solid;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td a:hover
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px -23px;
box-shadow: 0px 1px 2px 0px #828282;
color: #3a3a3a;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px -23px;
box-shadow: 0px 1px 2px 0px #828282;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active:hover
{
color: #3a3a3a;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger
{
border-width: 1px;
border-style: solid;
border-color: #949494;
background-color: #b7b7b7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover
{
border-width: 1px;
border-style: solid;
border-color: #949494;
background-color: #a3a3a3;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger
{
border-width: 1px;
border-style: solid;
border-color: #949494;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay
{
background-color: #a3a3a3;
background-image: url("../images/pagination/infiniteScrollButton/loadingImage/predefined/loadingArticles-light.gif");
background-position: 50% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span
{
font-family: "Bree Serif";
color: #ffffff;
font-size: 16px;
line-height: 1.3;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span
{
color: #3c3c3e;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile
{
background-color: #cfcfcf;
background-image: url("../images/profileBox/background/predefined/dark_bottom_gradient.png");
background-repeat: repeat-x;
background-position: 0% 100%;
border-width: 3px;
border-style: solid;
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container h2
{
font-family: "Arial";
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container .short_info,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container .short_info p
{
font-family: "Arial";
color: #5f5f5f;
font-style: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.facebook
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/facebook-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.twitter
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/twitter-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.google_plus
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/gplus-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.linked_in
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/linked_in-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .profile_picture_container
{
border-width: 2px;
border-style: solid;
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #666666;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .contact span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio span
{
font-family: "Arial";
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .contact
{
background-image: url("../images/profileBox/contactAndBiographyLink/icons/predefined/letter.png");
background-position: 0% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio
{
background-image: url("../images/profileBox/contactAndBiographyLink/icons/predefined/person2-light.png");
background-position: 0% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants
{
border-width: 1px;
border-style: solid;
border-color: #fff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader
{
background-color: #e1e1e1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:first-child th
{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #fff;
color: #4c4c4c;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
background-color: #d7d7d7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
background-color: #cacaca;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr td
{
color: #4c4c4c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/articleDocuments/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li span
{
font-family: "Arial";
color: #4c4c4c;
font-size: 11px;
line-height: 15px;
font-style: italic;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li
{
background-image: url("../images/articleDocuments/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/articleLinks/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li span
{
font-family: "Arial";
color: #4c4c4c;
font-size: 11px;
line-height: 15px;
font-style: italic;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li
{
background-image: url("../images/articleLinks/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/relatedArticles/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li
{
background-image: url("../images/relatedArticles/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment h3
{
font-family: "Arial";
color: #6b6b6b;
font-size: 16px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box
{
background-color: #cacaca;
box-shadow: inset 0px 0px 0px 1px #dfdfdf;
border-width: 2px;
border-style: solid;
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.left
{
font-family: "Arial";
color: #6b6b6b;
font-size: 14px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment
{
background-color: #e1e1e1;
background-image: url("../images/comments/numberOfComments/background/predefined/num_of_bg.png");
background-repeat: repeat;
background-position: 0% 0%;
box-shadow: inset 0px 0px 0px 1px #ececec;
border-width: 1px;
border-style: solid;
border-color: #d6d6d6;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a
{
font-family: "Arial";
color: #636363;
font-size: 14px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a
{
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a:hover
{
text-decoration: underline;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right textarea
{
background-color: #d6d6d6;
border-width: 1px;
border-style: solid;
border-color: #dddddd;
box-shadow: inset 0px 0px 0px 1px #e6e6e6;
color: #6b6b6b;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit
{
background-color: #868686;
background-image: url("../images/comments/submitButton/background/predefined/add_comment_button-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
box-shadow: 0px 0px 2px 0px #878787;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit:hover
{
background-color: #5e5e5e;
background-image: url("../images/comments/submitButton/background/predefined/add_comment_button-light.png");
background-repeat: repeat-x;
background-position: 0px -34px;
box-shadow: 0px 0px 2px 0px #878787;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit span
{
text-shadow: -1px -1px 1px #8f8f8f,1px 1px 1px #c6c6c6;
color: #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit:hover span
{
text-shadow: 1px 1px 1px #a3a3a3;
color: #4a4a4a;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content
{
background-color: #e3e3e3;
background-image: url("../images/comments/commentBubble/background/predefined/comment_bg-light.png");
background-repeat: repeat-x;
background-position: 0px 0px;
border-width: 2px;
border-style: solid;
border-color: #dddddd;
box-shadow: inset 0px 0px 0px 1px #eeeeee;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content p
{
font-family: "Arial";
color: #474747;
font-size: 12px;
line-height: 15px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .arrow
{
background-image: url("../images/comments/commentBubble/pointer/predefined/details_pointer-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr
{
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td
{
background-color: #d7d7d7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr:nth-child(2n) td
{
background-color: #cacaca;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon
{
background-image: url("../images/articleDetailsCustomFields/checkBox/predefined/cf-checkbox-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon
{
background-image: url("../images/articleDetailsCustomFields/checkBox/predefined/cf-checkbox-light.png");
background-position: 0px -27px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .category_info
{
background-color: #eaeaea;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category_info h1
{
font-family: "Bree Serif";
color: #272727;
font-size: 18px;
line-height: 22px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category_info .description
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
line-height: 14px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .child_categories
{
background-color: #eaeaea;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a img
{
border-width: 4px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #999999;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a:hover img
{
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #999999;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a span
{
text-shadow: -1px -1px 0px #ffffff;
font-family: "Arial";
color: #4f4f4f;
font-size: 14px;
line-height: 17px;
background-image: none;
background-repeat: no-repeat;
background-position: 50% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a:hover span
{
text-shadow: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container
{
border-color: #bebebe;
background-color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection
{
background-color: #979797;
background-image: url("../images/calendar/calendarMonthTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td
{
text-shadow: none;
font-family: "Bree Serif";
color: #222222;
font-size: 20px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a
{
text-shadow: none;
color: #222222 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover
{
text-shadow: none;
color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .top_calendar_actions > a
{
background-image: url("../images/calendar/actionIcons/predefined/action_buttons-light.png");
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day
{
background-color: #d0d0d0 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days
{
background-color: #cacaca !important;
background-image: url("../images/calendar/weekdays/background/predefined/week_days_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
text-shadow: 1px 1px 0px #dedede;
font-family: "Arial";
color: #3e3e3e;
font-size: 9px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days
{
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span
{
background-color: #cfcfcf;
background-image: url("../images/calendar/days/background/predefined/day_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts > a
{
background-color: #cfcfcf;
background-image: url("../images/calendar/days/background/predefined/has_post_bg-light.png");
background-repeat: no-repeat;
background-position: 100% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events > a
{
background-color: #ed5500;
background-image: url("../images/calendar/days/background/predefined/has_event.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.today > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.today > a
{
background-color: #a50000;
background-image: url("../images/calendar/days/background/predefined/today_bg-light.png");
background-repeat: repeat;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.selected > a
{
background-color: #878787;
background-image: none;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span
{
font-family: "Arial";
color: #222222;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a
{
color: #222222;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a
{
color: #222222;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span
{
color: #a1a1a1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a
{
background-color: #ffffff;
border-color: #adadad;
color: #707070 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a
{
background-color: #fff3e9;
border-color: #f77601;
color: #ef5a00 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list
{
border-color: #bebebe;
background-color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/calendarArchive/titleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li
{
background-color: #dddddd;
background-image: url("../images/calendarArchive/itemsBackground/predefined/archive_folder.png");
background-repeat: no-repeat;
background-position: 8px 7px;
border-top-color: #bfbfbf;
border-bottom-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li
{
background-color: #efefef;
background-image: url("../images/calendarArchive/itemsBackground/predefined/item_bullets-light.png");
background-repeat: no-repeat;
background-position: 11px 8px;
border-top-color: #d3d3d3;
border-bottom-color: #f5f5f5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse
{
background-image: url("../images/calendarArchive/expandCollapseIcon/predefined/expand_collapse.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-month
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-year:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-month:hover
{
color: #b50909;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month
{
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/calendarEvents/titleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li a
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li
{
background-color: #dddddd;
background-image: url("../images/calendarEvents/itemsBackground/predefined/event_clock-light.png");
background-position: 6px 7px;
border-bottom-color: #d3d3d3;
}
.qtip.edn_calendarbox_BlogTwo.light
{
background-color: #f6f6f6;
border-width: 1px;
border-style: solid;
border-color: #cdcdcd;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > p.title a
{
font-family: "Arial";
color: #333333;
font-size: 14px;
font-weight: bold;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > p.title a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > a
{
font-family: "Arial";
color: #333333;
font-size: 12px;
font-weight: bold;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > p
{
font-family: "Arial";
color: #f5f5f5;
font-size: 10px;
}
.qtip.edn_calendarbox_BlogTwo.light .qtip-content > .wrapper > .article > .content
{
font-family: "Arial";
color: #111111;
font-size: 12px;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > a
{
text-decoration: none;
font-family: "Arial";
color: #333333;
font-size: 12px;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title
{
background-color: #fefefe;
border-bottom-color: #cdcdcd;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span,
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span a
{
font-family: "Arial";
color: #111111;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span a:hover
{
text-decoration: underline;
color: #111111;
}
.eds_news_BlogTwo.eds_style_predefined_light .article_rss_wrapper > a > span,
.eds_news_BlogTwo.eds_style_predefined_light .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss,
.eds_news_BlogTwo.eds_style_predefined_light .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss
{
background-image: url("../images/rssLink/rssIcon/predefined/rss-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light .article_rss_wrapper > a:hover > span,
.eds_news_BlogTwo.eds_style_predefined_light .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss:hover,
.eds_news_BlogTwo.eds_style_predefined_light .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss:hover
{
background-position: -17px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleDefault .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a
{
font-family: "Arial";
color: #272727;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleDefault .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input.button_outside > .input
{
background-color: #ffffff;
box-shadow: inset 0px 3px 6px 0px #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .input input
{
text-shadow: none;
color: #3d3d3d;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .do_search
{
background-color: transparent;
background-image: url("../images/searchButton/background/predefined/search_button_bg.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .do_search:hover
{
background-color: transparent;
background-image: url("../images/searchButton/background/predefined/search_button_bg.png");
background-position: -37px 0px;
}
.EDN_search.theme_BlogTwo.light
{
background-color: #cacaca;
border-color: #f4f4f4;
}
.EDN_search.theme_BlogTwo.light .acSelect
{
background-color: #d6d6d6;
}
.EDN_search.theme_BlogTwo.light ul li,
.EDN_search.theme_BlogTwo.light ul li span a,
.EDN_search.theme_BlogTwo.light .acSelect,
.EDN_search.theme_BlogTwo.light .acSelect a
{
color: #6b6b6b;
}
.EDN_search.theme_BlogTwo.light ul li span a:hover
{
color: #6b6b6b;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label:before,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before
{
background-image: url("../images/advancedSearchForm/checkBoxes/predefined/cf-checkbox-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before
{
background-image: url("../images/advancedSearchForm/checkBoxes/predefined/cf-checkbox-light.png");
background-position: 0px -27px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before
{
background-image: url("../images/advancedSearchForm/radioButtons/predefined/cf-radiobutton-light.png");
background-position: 0px -25px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before
{
background-image: url("../images/advancedSearchForm/radioButtons/predefined/cf-radiobutton-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span
{
font-family: "Arial";
color: #272727;
font-size: 12px;
line-height: 1.5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"]
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
background-color: #ffffff;
font-family: "Arial";
color: #545454;
font-size: 12px;
box-shadow: inset 0px 3px 6px 0px #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after
{
border-color: #d4d4d4;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option
{
background-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span
{
box-shadow: inset 0px 3px 6px 0px #cccccc;
background-image: url("../images/advancedSearchForm/select/selectArrow/predefined/select-pointer-light.png");
background-position: 100% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option
{
font-family: "Arial";
color: #545454;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled
{
color: #a1a1a1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
background-color: #d9d9d9;
border-color: #727272;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
background-color: #ad0000;
border-color: #727272;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
font-family: "Arial";
color: #cd1919;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
font-family: "Arial";
color: #777777;
font-size: 10px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit
{
background-color: #cacaca;
background-image: url("../images/advancedSearchForm/submit/background/predefined/submit-button-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover
{
background-color: #cacaca;
background-position: 0% -34px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span
{
text-shadow: none;
font-family: "Arial";
color: #555555;
font-size: 14px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover span
{
color: #c0c0c0;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
background-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
background-color: #979797;
background-image: url("../images/advancedSearchModule/moduleTitle/background/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 100%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title > span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
} | VS2013_PROJECT/NZPortalWeb/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/StylesCSS/light.css | @import url(https://fonts.googleapis.com/css?family=Bree+Serif&subset=latin,latin-ext);
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article h1 a
{
font-family: "Bree Serif";
color: #272727;
font-size: 22px;
line-height: 30px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article h1 a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > h1
{
font-family: "Bree Serif";
color: #272727;
font-size: 26px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content h1 a
{
text-shadow: 1px 1px 0px #000000;
font-family: "Bree Serif";
color: #d7d7d7;
font-size: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content h1 a:hover
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture
{
border-width: 5px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big h1 a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big h1 a
{
text-shadow: none;
font-family: "Bree Serif";
color: #272727;
font-size: 20px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big h1 a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big h1 a:hover
{
text-shadow: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small h1 a
{
font-family: "Bree Serif";
color: #272727;
font-size: 16px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small h1 a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary p,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.box.big .summary,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content p,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content ul li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content ol li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .in_article_image p.image_title,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .in_article_image .image_description
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.in_picture .content .summary
{
font-family: "Arial";
color: #bdbdbd;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info a
{
text-decoration: none;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a:visited:hover
{
text-decoration: underline;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text.light_text
{
font-family: "Arial";
color: #696969;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .edn_article_map
{
border-width: 1px;
border-style: solid;
border-color: #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs a
{
text-transform: none;
text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3);
text-decoration: none;
font-family: "Arial";
color: #4f4f4f;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs a:hover
{
text-decoration: underline;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .bread_crumbs
{
color: #696969;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/sidebarBoxTitleBackground/predefined/module_title_background-light.png");
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a span
{
font-family: "Arial";
color: #242424;
font-size: 12px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a:hover span
{
color: #242424;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box
{
border-top-width: 1px;
border-top-style: solid;
border-top-color: #ffffff;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #c6c6c6;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box.even
{
background-color: #e1e1e1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box.odd
{
background-color: #bababa;
background-image: url("../images/sidebarboxArticleBackground/predefined/sidebar_article_second_bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/tagCloudTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags
{
background-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a
{
font-family: "Arial";
color: #3d3c3c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a:hover
{
text-decoration: underline;
color: #3d3c3c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_tagCloud .tags a span
{
font-family: "Arial";
color: #888888;
font-size: 12px;
font-style: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/categoryMenuTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div
{
background-color: #c8c8c8;
background-image: url("../images/categoryMenuItemsBackground/predefined/item_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-top-color: #dcdcdc;
border-bottom-color: #b5b5b5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div
{
background-color: #efefef;
background-image: none;
border-top-color: #d3d3d3;
border-bottom-color: #f5f5f5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category:hover
{
text-decoration: none;
color: #b50909;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category span
{
color: #5f5f5f;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse
{
background-image: url("../images/categoryMenuExpandCollapseIcon/predefined/expand_collapse.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div .bullet
{
background-image: url("../images/categoryMenuItemBullet/predefined/item_bullets_light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list
{
background-color: #e0e1e1;
background-image: url("../images/articleBox/inListBackground/predefined/article_list_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container
{
background-color: #f0f0f0;
background-image: url("../images/articleBox/inListBackground/predefined/article_list_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list
{
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big
{
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.details_wrapper .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .in_article_image .image_wrapper,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .eds_mediaContainer,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.details_wrapper .eds_mediaContainer
{
border-width: 1px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list a:hover .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article.in_list a:hover .article_image
{
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.big > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.box.small > img,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.span > .content_wrapper > .content > .article_image,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article.in_list.span > .content_wrapper > .content > .article_image
{
border-width: 4px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a img
{
border-width: 1px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleSidebarBox .article.sidebar_box > a:hover img
{
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box
{
background-color: #979797;
background-image: url("../images/articleDate/background/predefined/date_box_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-width: 1px;
border-style: solid;
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span
{
font-family: "Arial";
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.day
{
text-shadow: 1px 1px 0px #cccccc;
color: #404040;
font-size: 21px;
font-style: normal;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.month,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.month
{
color: #4c4c4c;
font-size: 12px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleMulti .article .date_box span.year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListBox .article .date_box span.year
{
color: #4c4c4c;
font-size: 12px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text
{
background-color: #ababab;
background-image: url("../images/articleMetaDetails/background/predefined/article_meta_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #ffffff;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #dfdfdf;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #dfdfdf;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #dfdfdf;
box-shadow: 0px -1px 0px 0px #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.in_list.span > .meta_text div.attribute,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text
{
font-family: "Arial";
color: #4d4d4d;
font-size: 12px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author a
{
text-decoration: none;
color: #4d4d4d;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text > a
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.details_wrapper > .details_container > .meta_text > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.details_wrapper > .details_container > .meta_text > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container > .meta_text > a:hover
{
text-decoration: underline;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.author,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.author
{
background-image: url("../images/articleMetaDetails/icons/predefined/person-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.comments,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.comments
{
background-image: url("../images/articleMetaDetails/icons/predefined/comments-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListArticleDefault .article.in_list.span > .meta_text div.attribute.rating,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .article.in_list.span > .meta_text div.attribute.rating
{
background-image: url("../images/articleMetaDetails/icons/predefined/rating_star-light.png");
background-position: 0% 4px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .event_date
{
font-family: "Arial";
color: #3f3f3f;
font-size: 12px;
background-image: url("../images/eventDate/icon/predefined/event_clock-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .event_location
{
font-family: "Arial";
color: #3f3f3f;
font-size: 12px;
background-image: url("../images/eventLocation/icon/predefined/location_marker.png");
background-position: 5px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .edn_eventDetails *
{
color: #4c4c4c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .eds_openModal
{
background-color: #868686;
box-shadow: 0px 0px 2px 0px #878787;
text-shadow: -1px -1px 1px #8f8f8f,1px 1px 1px #c6c6c6;
color: #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .eds_openModal:hover
{
background-color: #5e5e5e;
box-shadow: 0px 0px 2px 0px #878787;
text-shadow: 1px 1px 1px #a3a3a3;
color: #4a4a4a;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container
{
font-family: "Arial";
color: #696969;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container a
{
background-color: #c2c2c2;
text-shadow: none;
color: #2f2f2f;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article .box_list_container a:hover
{
background-color: #9c9c9c;
text-shadow: none;
color: #121212;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px 0px;
box-shadow: 0px 1px 2px 0px #828282;
font-family: "Arial";
color: #3a3a3a;
font-size: 12px;
border-width: 1px;
border-style: solid;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td a:hover
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px -23px;
box-shadow: 0px 1px 2px 0px #828282;
color: #3a3a3a;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span
{
background-color: #a8a8a8;
background-image: url("../images/paginationItems/predefined/pagination_bg-light.png");
background-repeat: repeat-x;
background-position: 0px -23px;
box-shadow: 0px 1px 2px 0px #828282;
border-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .details_container .main_content .article_pagination td span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article_pager a.active:hover
{
color: #3a3a3a;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger
{
border-width: 1px;
border-style: solid;
border-color: #949494;
background-color: #b7b7b7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover
{
border-width: 1px;
border-style: solid;
border-color: #949494;
background-color: #a3a3a3;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger
{
border-width: 1px;
border-style: solid;
border-color: #949494;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay
{
background-color: #a3a3a3;
background-image: url("../images/pagination/infiniteScrollButton/loadingImage/predefined/loadingArticles-light.gif");
background-position: 50% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span
{
font-family: "Bree Serif";
color: #ffffff;
font-size: 16px;
line-height: 1.3;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span
{
color: #3c3c3e;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile
{
background-color: #cfcfcf;
background-image: url("../images/profileBox/background/predefined/dark_bottom_gradient.png");
background-repeat: repeat-x;
background-position: 0% 100%;
border-width: 3px;
border-style: solid;
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container h2
{
font-family: "Arial";
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container .short_info,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .details_container .short_info p
{
font-family: "Arial";
color: #5f5f5f;
font-style: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.facebook
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/facebook-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.twitter
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/twitter-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.google_plus
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/gplus-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .social.linked_in
{
background-image: url("../images/profileBox/socialNetworksIcons/predefined/linked_in-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .profile_picture_container
{
border-width: 2px;
border-style: solid;
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #666666;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .contact span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio span
{
font-family: "Arial";
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .contact
{
background-image: url("../images/profileBox/contactAndBiographyLink/icons/predefined/letter.png");
background-position: 0% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio
{
background-image: url("../images/profileBox/contactAndBiographyLink/icons/predefined/person2-light.png");
background-position: 0% 50%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants
{
border-width: 1px;
border-style: solid;
border-color: #fff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader
{
background-color: #e1e1e1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:first-child th
{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #fff;
color: #4c4c4c;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
background-color: #d7d7d7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
background-color: #cacaca;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .edn_listOfAttendants > table tr td
{
color: #4c4c4c;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/articleDocuments/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li span
{
font-family: "Arial";
color: #4c4c4c;
font-size: 11px;
line-height: 15px;
font-style: italic;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .article_documents ul li
{
background-image: url("../images/articleDocuments/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/articleLinks/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li span
{
font-family: "Arial";
color: #4c4c4c;
font-size: 11px;
line-height: 15px;
font-style: italic;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .edn_article_links ul li
{
background-image: url("../images/articleLinks/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles
{
border-width: 3px;
border-style: solid;
border-color: #dddddd;
background-color: #cfcfcf;
background-image: url("../images/relatedArticles/background/predefined/bg.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles > h2
{
font-family: "Bree Serif";
color: #262626;
font-size: 18px;
line-height: 22px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li a
{
text-decoration: none;
font-family: "Arial";
color: #262626;
font-size: 12px;
line-height: 14px;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li a:hover
{
text-decoration: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news .article .related_articles ul li
{
background-image: url("../images/relatedArticles/listIcon/predefined/bullet-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment h3
{
font-family: "Arial";
color: #6b6b6b;
font-size: 16px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box
{
background-color: #cacaca;
box-shadow: inset 0px 0px 0px 1px #dfdfdf;
border-width: 2px;
border-style: solid;
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.left
{
font-family: "Arial";
color: #6b6b6b;
font-size: 14px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment
{
background-color: #e1e1e1;
background-image: url("../images/comments/numberOfComments/background/predefined/num_of_bg.png");
background-repeat: repeat;
background-position: 0% 0%;
box-shadow: inset 0px 0px 0px 1px #ececec;
border-width: 1px;
border-style: solid;
border-color: #d6d6d6;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a
{
font-family: "Arial";
color: #636363;
font-size: 14px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a
{
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .num_of_comment a:hover
{
text-decoration: underline;
color: #262626;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right textarea
{
background-color: #d6d6d6;
border-width: 1px;
border-style: solid;
border-color: #dddddd;
box-shadow: inset 0px 0px 0px 1px #e6e6e6;
color: #6b6b6b;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit
{
background-color: #868686;
background-image: url("../images/comments/submitButton/background/predefined/add_comment_button-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
box-shadow: 0px 0px 2px 0px #878787;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit:hover
{
background-color: #5e5e5e;
background-image: url("../images/comments/submitButton/background/predefined/add_comment_button-light.png");
background-repeat: repeat-x;
background-position: 0px -34px;
box-shadow: 0px 0px 2px 0px #878787;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit span
{
text-shadow: -1px -1px 1px #8f8f8f,1px 1px 1px #c6c6c6;
color: #555555;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .add_comment .add_article_box table td.right .submit:hover span
{
text-shadow: 1px 1px 1px #a3a3a3;
color: #4a4a4a;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content
{
background-color: #e3e3e3;
background-image: url("../images/comments/commentBubble/background/predefined/comment_bg-light.png");
background-repeat: repeat-x;
background-position: 0px 0px;
border-width: 2px;
border-style: solid;
border-color: #dddddd;
box-shadow: inset 0px 0px 0px 1px #eeeeee;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content p
{
font-family: "Arial";
color: #474747;
font-size: 12px;
line-height: 15px;
font-style: normal;
font-weight: normal;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .arrow
{
background-image: url("../images/comments/commentBubble/pointer/predefined/details_pointer-light.png");
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr
{
border-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td
{
background-color: #d7d7d7;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr:nth-child(2n) td
{
background-color: #cacaca;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon
{
background-image: url("../images/articleDetailsCustomFields/checkBox/predefined/cf-checkbox-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsDetailsArticle .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon
{
background-image: url("../images/articleDetailsCustomFields/checkBox/predefined/cf-checkbox-light.png");
background-position: 0px -27px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .category_info
{
background-color: #eaeaea;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category_info h1
{
font-family: "Bree Serif";
color: #272727;
font-size: 18px;
line-height: 22px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category_info .description
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
line-height: 14px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .child_categories
{
background-color: #eaeaea;
border-width: 1px;
border-style: solid;
border-color: #a9a9a9;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a img
{
border-width: 4px;
border-style: solid;
border-color: #e4e4e4;
box-shadow: 1px 1px 3px 0px #999999;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a:hover img
{
border-color: #ffffff;
box-shadow: 1px 1px 3px 0px #999999;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a span
{
text-shadow: -1px -1px 0px #ffffff;
font-family: "Arial";
color: #4f4f4f;
font-size: 14px;
line-height: 17px;
background-image: none;
background-repeat: no-repeat;
background-position: 50% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_news.eds_templateGroup_newsListCatalogDefault .category.in_list > a:hover span
{
text-shadow: none;
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container
{
border-color: #bebebe;
background-color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection
{
background-color: #979797;
background-image: url("../images/calendar/calendarMonthTitleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td
{
text-shadow: none;
font-family: "Bree Serif";
color: #222222;
font-size: 20px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a
{
text-shadow: none;
color: #222222 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover
{
text-shadow: none;
color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .top_calendar_actions > a
{
background-image: url("../images/calendar/actionIcons/predefined/action_buttons-light.png");
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day
{
background-color: #d0d0d0 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days
{
background-color: #cacaca !important;
background-image: url("../images/calendar/weekdays/background/predefined/week_days_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
text-shadow: 1px 1px 0px #dedede;
font-family: "Arial";
color: #3e3e3e;
font-size: 9px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days
{
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span
{
background-color: #cfcfcf;
background-image: url("../images/calendar/days/background/predefined/day_bg-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts > a
{
background-color: #cfcfcf;
background-image: url("../images/calendar/days/background/predefined/has_post_bg-light.png");
background-repeat: no-repeat;
background-position: 100% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events > a
{
background-color: #ed5500;
background-image: url("../images/calendar/days/background/predefined/has_event.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.today > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.today > a
{
background-color: #a50000;
background-image: url("../images/calendar/days/background/predefined/today_bg-light.png");
background-repeat: repeat;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.selected > a
{
background-color: #878787;
background-image: none;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span
{
font-family: "Arial";
color: #222222;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a
{
color: #222222;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a
{
color: #222222;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span
{
color: #a1a1a1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span
{
color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a
{
background-color: #ffffff;
border-color: #adadad;
color: #707070 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a
{
background-color: #fff3e9;
border-color: #f77601;
color: #ef5a00 !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list
{
border-color: #bebebe;
background-color: #ffffff !important;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/calendarArchive/titleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li
{
background-color: #dddddd;
background-image: url("../images/calendarArchive/itemsBackground/predefined/archive_folder.png");
background-repeat: no-repeat;
background-position: 8px 7px;
border-top-color: #bfbfbf;
border-bottom-color: transparent;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li
{
background-color: #efefef;
background-image: url("../images/calendarArchive/itemsBackground/predefined/item_bullets-light.png");
background-repeat: no-repeat;
background-position: 11px 8px;
border-top-color: #d3d3d3;
border-bottom-color: #f5f5f5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse
{
background-image: url("../images/calendarArchive/expandCollapseIcon/predefined/expand_collapse.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-month
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-year:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div > .edn_archive-month:hover
{
color: #b50909;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month
{
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events
{
background-color: #ffffff;
border-color: #bebebe;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events > h1.edn_module_title
{
background-color: #979797;
background-image: url("../images/calendarEvents/titleBackground/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events > h1.edn_module_title span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
line-height: 21px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li a
{
font-family: "Arial";
color: #000000;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_calendar .archive_list.events ul li
{
background-color: #dddddd;
background-image: url("../images/calendarEvents/itemsBackground/predefined/event_clock-light.png");
background-position: 6px 7px;
border-bottom-color: #d3d3d3;
}
.qtip.edn_calendarbox_BlogTwo.light
{
background-color: #f6f6f6;
border-width: 1px;
border-style: solid;
border-color: #cdcdcd;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > p.title a
{
font-family: "Arial";
color: #333333;
font-size: 14px;
font-weight: bold;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > p.title a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > a
{
font-family: "Arial";
color: #333333;
font-size: 12px;
font-weight: bold;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article_list > li > p
{
font-family: "Arial";
color: #f5f5f5;
font-size: 10px;
}
.qtip.edn_calendarbox_BlogTwo.light .qtip-content > .wrapper > .article > .content
{
font-family: "Arial";
color: #111111;
font-size: 12px;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > a
{
text-decoration: none;
font-family: "Arial";
color: #333333;
font-size: 12px;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .wrapper > .article > a:hover
{
text-decoration: underline;
color: #333333;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title
{
background-color: #fefefe;
border-bottom-color: #cdcdcd;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span,
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span a
{
font-family: "Arial";
color: #111111;
}
.qtip.edn_calendarbox_BlogTwo.light > .qtip-content > .title span a:hover
{
text-decoration: underline;
color: #111111;
}
.eds_news_BlogTwo.eds_style_predefined_light .article_rss_wrapper > a > span,
.eds_news_BlogTwo.eds_style_predefined_light .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss,
.eds_news_BlogTwo.eds_style_predefined_light .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss
{
background-image: url("../images/rssLink/rssIcon/predefined/rss-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light .article_rss_wrapper > a:hover > span,
.eds_news_BlogTwo.eds_style_predefined_light .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss:hover,
.eds_news_BlogTwo.eds_style_predefined_light .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss:hover
{
background-position: -17px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleDefault .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .article_rss_wrapper > a,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a
{
font-family: "Arial";
color: #272727;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleDefault .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListCatalogDefault .article_rss_wrapper > a:hover,
.eds_news_BlogTwo.eds_style_predefined_light.eds_templateGroup_newsListArticleMulti .article_rss_wrapper > a:hover
{
color: #000000;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input.button_outside > .input
{
background-color: #ffffff;
box-shadow: inset 0px 3px 6px 0px #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .input input
{
text-shadow: none;
color: #3d3d3d;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .do_search
{
background-color: transparent;
background-image: url("../images/searchButton/background/predefined/search_button_bg.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .search_input > .do_search:hover
{
background-color: transparent;
background-image: url("../images/searchButton/background/predefined/search_button_bg.png");
background-position: -37px 0px;
}
.EDN_search.theme_BlogTwo.light
{
background-color: #cacaca;
border-color: #f4f4f4;
}
.EDN_search.theme_BlogTwo.light .acSelect
{
background-color: #d6d6d6;
}
.EDN_search.theme_BlogTwo.light ul li,
.EDN_search.theme_BlogTwo.light ul li span a,
.EDN_search.theme_BlogTwo.light .acSelect,
.EDN_search.theme_BlogTwo.light .acSelect a
{
color: #6b6b6b;
}
.EDN_search.theme_BlogTwo.light ul li span a:hover
{
color: #6b6b6b;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label:before,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before
{
background-image: url("../images/advancedSearchForm/checkBoxes/predefined/cf-checkbox-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before
{
background-image: url("../images/advancedSearchForm/checkBoxes/predefined/cf-checkbox-light.png");
background-position: 0px -27px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before
{
background-image: url("../images/advancedSearchForm/radioButtons/predefined/cf-radiobutton-light.png");
background-position: 0px -25px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before
{
background-image: url("../images/advancedSearchForm/radioButtons/predefined/cf-radiobutton-light.png");
background-position: 0px 0px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label
{
font-family: "Arial";
color: #4c4c4c;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span
{
font-family: "Arial";
color: #272727;
font-size: 12px;
line-height: 1.5;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"]
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
background-color: #ffffff;
font-family: "Arial";
color: #545454;
font-size: 12px;
box-shadow: inset 0px 3px 6px 0px #cccccc;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after
{
border-color: #d4d4d4;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option
{
background-color: #ffffff;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span
{
box-shadow: inset 0px 3px 6px 0px #cccccc;
background-image: url("../images/advancedSearchForm/select/selectArrow/predefined/select-pointer-light.png");
background-position: 100% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option
{
font-family: "Arial";
color: #545454;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled
{
color: #a1a1a1;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
background-color: #d9d9d9;
border-color: #727272;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
background-color: #ad0000;
border-color: #727272;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
font-family: "Arial";
color: #cd1919;
font-size: 12px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
font-family: "Arial";
color: #777777;
font-size: 10px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit
{
background-color: #cacaca;
background-image: url("../images/advancedSearchForm/submit/background/predefined/submit-button-light.png");
background-repeat: repeat-x;
background-position: 0% 0%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover
{
background-color: #cacaca;
background-position: 0% -34px;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span
{
text-shadow: none;
font-family: "Arial";
color: #555555;
font-size: 14px;
font-weight: bold;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover span
{
color: #c0c0c0;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch
{
border-width: 1px;
border-style: solid;
border-color: #ffffff;
background-color: #dddddd;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
background-color: #979797;
background-image: url("../images/advancedSearchModule/moduleTitle/background/predefined/module_title_background-light.png");
background-repeat: repeat-x;
background-position: 0% 100%;
}
.eds_news_BlogTwo.eds_style_predefined_light.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title > span
{
font-family: "Bree Serif";
color: #222222;
font-size: 18px;
} | 0.276886 | 0.091788 |
.navbar.navbar-dark .navbar-nav .nav-item .nav-link{
color: #4c4e50!important;
}
.h-pre{
background: #1369a794 !important;
}
.h-fon{
background: #715d1fc4!important;
}
.mask-med{
background: #00000042!important;
}
.cor-foo{
background: #536b7d!important;
}
.green-bost{
background: #91b382!important;
border-radius: 7px;
}
/* IMAGENES */
.fluid-total{
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
/* MARGENES */
.col-center{
float: none;
margin-top: auto;
margin-bottom: auto;
}
.sm-01{
margin: 0!important;
}
.sp-01{
padding: 0!important;
}
.redondear-10{
border-radius: 20px;
border: 2px solid black;
}
.max-w{
max-width: 300px;
}
.m-0-tol{
margin: 0;
}
.p-0-tol{
padding: 0;
}
.col-3{
padding-right: 5px !important;
padding-left: 5px!important;
}
.nav-menu {
padding: 1rem 0;
transition: all 0.3s ease;
}
.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
background: -webkit-linear-gradient(135deg, #2196f3 0%, #2196f3 100%);
color: -webkit-linear-gradient(135deg, rgb(74, 13, 143) 0%, rgb(250, 42, 143) 100%);
}
.nav-menu.is-scrolling {
padding: 8px;;
}
.navbar {
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0)!important;
font-weight: 300;
}
/* Letras */
.text-h1{
font-size: 1.45rem;
}
.f-text-nav{
font-family: Helvetica, sans-serif;
font-weight: 600 !important;
font-size: 1rem;
}
/* .text-t-25{
font-size: 25px;
position: absolute;
right: 15px;
bottom: -10px;
} */
.al-he{
line-height: 14px!important;
}
.text-t-25{
font-size: 30px;
}
.text-t-15{
font-size: 15px;
}
.morge{
font-size: 30px;
position: absolute;
right: 15px;
top:75px;
display: inline;
font-weight: normal;
line-height: 1;
}
.morge-1{
font-size: 40px;
position: absolute;
right: 20px;
top:12px;
display: inline;
font-weight: normal;
line-height: 1;
}
.morge-2{
font-size: 40px;
position: absolute;
left: 35px;
top:12px;
display: inline;
font-weight: normal;
line-height: 1;
}
.m-text-25{
font-size: 35px;
margin-top: -80px;
display: inline-block;
}
.m-text-45{
font-size: 118px;
font-family: "franklin-gothic-urw","Helvectica Neue",helvetica,clean,sans-serif;
line-height: 0.95;
font-weight: bold;
position: relative;
margin: -5px 0 0 0;
}
.reger{
width: 70px;
height: 50px;
}
.cetri:hover{
background-color: #dbe0db4d;
border-radius: 7px;
}
.gradient-fill:before {
color: #fc73b4;
/* background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%); */
/* background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%); */
background: linear-gradient(to bottom, #bbb61a 0%, #91b382 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.ti-3x {
font-size: 3em;
}
.card.features:before {
content: "";
position: absolute;
width: 3px;
color: #fc73b4;
background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: linear-gradient(to bottom, #ffc107 0%, #28a745 100%);
top: 0;
bottom: 0;
left: 0;
}
/* .ir-arriba {
display:none;
padding:20px;
background:#70859c;
font-size:20px;
color:#fff;
position: fixed;
bottom:20px;
right:20px;
z-index: 2;
border-radius: 7px;
} */
.ir-arriba {
display:none;
width:50px;
height:50px;
line-height:50px;
border: 2px solid #f5f5f5;
border-radius: 50%;
color:#f5f5f5;
text-align:center;
text-decoration:none;
background: #464646;
box-shadow: 0 0 3px gray;
font-size:20px;
font-weight:bold;
position: fixed;
bottom:20px;
right:20px;
z-index: 2;
}
.circle-icon {
box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
/* padding: 10px; */
padding: 0px;
width: 70px;
height: 70px;
border-radius: 50%;
margin-bottom: 1.5rem;
/* background-color: #FFF; */
background-color: #bfbfbf;
/* color: #91b382; */
color: white;
font-size: 48px;
text-align: center;
line-height: 80px;
font-weight: 300;
transition: all 0.3s ease;
}
.circle-icon-2 {
box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
padding: 0px;
width: 200px;
height: 200px;
border-radius: 50%;
margin-bottom: 1.5rem;
background-color: #bfbfbf;
color: white;
font-size: 48px;
text-align: center;
line-height: 80px;
font-weight: 300;
transition: all 0.3s ease;
}
.circle-icon:hover{
background-color:#91b382;
color: white;
}
/* carga de pagina */
.loader-page {
position: fixed;
z-index: 25000;
background: rgb(255, 255, 255);
left: 0px;
top: 0px;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
transition:all .3s ease;
}
.loader-page::before {
content: "";
position: absolute;
border: 2px solid rgb(50, 150, 176);
width: 60px;
height: 60px;
border-radius: 50%;
box-sizing: border-box;
border-left: 2px solid rgba(50, 150, 176,0);
border-top: 2px solid rgba(50, 150, 176,0);
animation: rotarload 1s linear infinite;
transform: rotate(0deg);
}
@keyframes rotarload {
0% {transform: rotate(0deg)}
100% {transform: rotate(360deg)}
}
.loader-page::after {
content: "";
position: absolute;
border: 2px solid rgba(50, 150, 176,.5);
width: 60px;
height: 60px;
border-radius: 50%;
box-sizing: border-box;
border-left: 2px solid rgba(50, 150, 176, 0);
border-top: 2px solid rgba(50, 150, 176, 0);
animation: rotarload 1s ease-out infinite;
transform: rotate(0deg);
}
/* Iconos redondeados */
i.icon-round {
border-radius: 100%;
color: #fff;
font-size: 18px;
height: 50px;
line-height: 100px;
margin-bottom: 13px;
margin-right: 13px;
text-align: center;
vertical-align: middle;
width: 50px;
}
i.icon-round {
background-color: #425664;
}
.social-footer a .fas {
height: 34px;
line-height: 32px;
width: 34px;
}
.social-footer a .fab {
height: 34px;
line-height: 32px;
width: 34px;
}
.social-footer a .fa {
height: 34px;
line-height: 32px;
width: 34px;
}
/* margenes */
.mn-t-01{
margin-top: -20px !important;
}
/* efecto de letras*/
.b-01{
font-weight: bold!important;
}
@media (min-width: 769px){
.reds02{
color: black !important;
}
.bg-info01 {
background-color: #2196f300 !important;
/* background-color: #00000061!important; */
}
.overload{
position: absolute!important;
left: 10px;
top: 10%;
}
.overload-01{
position: absolute!important;
left: 0px;
top: 15%;
}
.overload-02{
position: absolute!important;
right: 1px;
top: 31%;
width: 100%;
height: 200px;
}
.fle-oqu{
position: absolute;
top: 19%;
left: 20px;
width: 50%;
}
.overload-03{
position: absolute!important;
right: 1px;
bottom: 5px;
width: 100%;
height: 100%;
}
.top-res-01{
margin-top: 35px !important;
}
}
@media (max-width: 768px){
.navbar.navbar-dark .breadcrumb .nav-item .nav-link, .navbar.navbar-dark .navbar-nav .nav-item .nav-link{
color: black !important;
}
.center-log{
position: absolute;
left: 44%;
top:-1px;
}
.top-res-01{
margin-top: 35px !important;
}
.bg-info01 {
background-color: #ffffffd1!important;
/* background-color: #00000061!important; */
}
} | public/olter/css/style.css | .navbar.navbar-dark .navbar-nav .nav-item .nav-link{
color: #4c4e50!important;
}
.h-pre{
background: #1369a794 !important;
}
.h-fon{
background: #715d1fc4!important;
}
.mask-med{
background: #00000042!important;
}
.cor-foo{
background: #536b7d!important;
}
.green-bost{
background: #91b382!important;
border-radius: 7px;
}
/* IMAGENES */
.fluid-total{
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
/* MARGENES */
.col-center{
float: none;
margin-top: auto;
margin-bottom: auto;
}
.sm-01{
margin: 0!important;
}
.sp-01{
padding: 0!important;
}
.redondear-10{
border-radius: 20px;
border: 2px solid black;
}
.max-w{
max-width: 300px;
}
.m-0-tol{
margin: 0;
}
.p-0-tol{
padding: 0;
}
.col-3{
padding-right: 5px !important;
padding-left: 5px!important;
}
.nav-menu {
padding: 1rem 0;
transition: all 0.3s ease;
}
.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
background: -webkit-linear-gradient(135deg, #2196f3 0%, #2196f3 100%);
color: -webkit-linear-gradient(135deg, rgb(74, 13, 143) 0%, rgb(250, 42, 143) 100%);
}
.nav-menu.is-scrolling {
padding: 8px;;
}
.navbar {
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0)!important;
font-weight: 300;
}
/* Letras */
.text-h1{
font-size: 1.45rem;
}
.f-text-nav{
font-family: Helvetica, sans-serif;
font-weight: 600 !important;
font-size: 1rem;
}
/* .text-t-25{
font-size: 25px;
position: absolute;
right: 15px;
bottom: -10px;
} */
.al-he{
line-height: 14px!important;
}
.text-t-25{
font-size: 30px;
}
.text-t-15{
font-size: 15px;
}
.morge{
font-size: 30px;
position: absolute;
right: 15px;
top:75px;
display: inline;
font-weight: normal;
line-height: 1;
}
.morge-1{
font-size: 40px;
position: absolute;
right: 20px;
top:12px;
display: inline;
font-weight: normal;
line-height: 1;
}
.morge-2{
font-size: 40px;
position: absolute;
left: 35px;
top:12px;
display: inline;
font-weight: normal;
line-height: 1;
}
.m-text-25{
font-size: 35px;
margin-top: -80px;
display: inline-block;
}
.m-text-45{
font-size: 118px;
font-family: "franklin-gothic-urw","Helvectica Neue",helvetica,clean,sans-serif;
line-height: 0.95;
font-weight: bold;
position: relative;
margin: -5px 0 0 0;
}
.reger{
width: 70px;
height: 50px;
}
.cetri:hover{
background-color: #dbe0db4d;
border-radius: 7px;
}
.gradient-fill:before {
color: #fc73b4;
/* background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%); */
/* background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%); */
background: linear-gradient(to bottom, #bbb61a 0%, #91b382 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.ti-3x {
font-size: 3em;
}
.card.features:before {
content: "";
position: absolute;
width: 3px;
color: #fc73b4;
background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
background: linear-gradient(to bottom, #ffc107 0%, #28a745 100%);
top: 0;
bottom: 0;
left: 0;
}
/* .ir-arriba {
display:none;
padding:20px;
background:#70859c;
font-size:20px;
color:#fff;
position: fixed;
bottom:20px;
right:20px;
z-index: 2;
border-radius: 7px;
} */
.ir-arriba {
display:none;
width:50px;
height:50px;
line-height:50px;
border: 2px solid #f5f5f5;
border-radius: 50%;
color:#f5f5f5;
text-align:center;
text-decoration:none;
background: #464646;
box-shadow: 0 0 3px gray;
font-size:20px;
font-weight:bold;
position: fixed;
bottom:20px;
right:20px;
z-index: 2;
}
.circle-icon {
box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
/* padding: 10px; */
padding: 0px;
width: 70px;
height: 70px;
border-radius: 50%;
margin-bottom: 1.5rem;
/* background-color: #FFF; */
background-color: #bfbfbf;
/* color: #91b382; */
color: white;
font-size: 48px;
text-align: center;
line-height: 80px;
font-weight: 300;
transition: all 0.3s ease;
}
.circle-icon-2 {
box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
padding: 0px;
width: 200px;
height: 200px;
border-radius: 50%;
margin-bottom: 1.5rem;
background-color: #bfbfbf;
color: white;
font-size: 48px;
text-align: center;
line-height: 80px;
font-weight: 300;
transition: all 0.3s ease;
}
.circle-icon:hover{
background-color:#91b382;
color: white;
}
/* carga de pagina */
.loader-page {
position: fixed;
z-index: 25000;
background: rgb(255, 255, 255);
left: 0px;
top: 0px;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
transition:all .3s ease;
}
.loader-page::before {
content: "";
position: absolute;
border: 2px solid rgb(50, 150, 176);
width: 60px;
height: 60px;
border-radius: 50%;
box-sizing: border-box;
border-left: 2px solid rgba(50, 150, 176,0);
border-top: 2px solid rgba(50, 150, 176,0);
animation: rotarload 1s linear infinite;
transform: rotate(0deg);
}
@keyframes rotarload {
0% {transform: rotate(0deg)}
100% {transform: rotate(360deg)}
}
.loader-page::after {
content: "";
position: absolute;
border: 2px solid rgba(50, 150, 176,.5);
width: 60px;
height: 60px;
border-radius: 50%;
box-sizing: border-box;
border-left: 2px solid rgba(50, 150, 176, 0);
border-top: 2px solid rgba(50, 150, 176, 0);
animation: rotarload 1s ease-out infinite;
transform: rotate(0deg);
}
/* Iconos redondeados */
i.icon-round {
border-radius: 100%;
color: #fff;
font-size: 18px;
height: 50px;
line-height: 100px;
margin-bottom: 13px;
margin-right: 13px;
text-align: center;
vertical-align: middle;
width: 50px;
}
i.icon-round {
background-color: #425664;
}
.social-footer a .fas {
height: 34px;
line-height: 32px;
width: 34px;
}
.social-footer a .fab {
height: 34px;
line-height: 32px;
width: 34px;
}
.social-footer a .fa {
height: 34px;
line-height: 32px;
width: 34px;
}
/* margenes */
.mn-t-01{
margin-top: -20px !important;
}
/* efecto de letras*/
.b-01{
font-weight: bold!important;
}
@media (min-width: 769px){
.reds02{
color: black !important;
}
.bg-info01 {
background-color: #2196f300 !important;
/* background-color: #00000061!important; */
}
.overload{
position: absolute!important;
left: 10px;
top: 10%;
}
.overload-01{
position: absolute!important;
left: 0px;
top: 15%;
}
.overload-02{
position: absolute!important;
right: 1px;
top: 31%;
width: 100%;
height: 200px;
}
.fle-oqu{
position: absolute;
top: 19%;
left: 20px;
width: 50%;
}
.overload-03{
position: absolute!important;
right: 1px;
bottom: 5px;
width: 100%;
height: 100%;
}
.top-res-01{
margin-top: 35px !important;
}
}
@media (max-width: 768px){
.navbar.navbar-dark .breadcrumb .nav-item .nav-link, .navbar.navbar-dark .navbar-nav .nav-item .nav-link{
color: black !important;
}
.center-log{
position: absolute;
left: 44%;
top:-1px;
}
.top-res-01{
margin-top: 35px !important;
}
.bg-info01 {
background-color: #ffffffd1!important;
/* background-color: #00000061!important; */
}
} | 0.301979 | 0.082883 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://eksisozluk.com"), url-prefix("https://eksisozluk.com") {
#main{margin-top:10px !important;}
#container, #top-bar {
width:100% !important;
max-width:100% !important;
padding:0 20px !important;
}
#entry-list footer .favorite-link.favorited{color:green !important;}
#entry-list footer .feedback a{color:blue !important;}
.voted {color: #ff9100 !important;text-shadow: 0 0 5px #ff9100 !important;}
.icon-twitter:hover {color: #55acee !important;}
.icon-facebook:hover {color: #3b5998 !important;}
#entry-list footer .feedback a{color:#c0c0c0 !important;}
.topic-list li:first-child{border-top:0px !important;}
.topic-list.partial > li > a{text-indent:-8px !important;}
html.no-touch #index-section{width:200px !important; left:5px !important;}
#container{margin-top:5px !important;}
#content-section {
width:100% !important;
padding-right:350px !important;
}
.vote-response-area{margin-top:2px !important}
#site-footer ul li > a:hover{text-decoration: underline !important;
background-color: #cccccc !important;}
#delete-self-form{background-color:#d8d8d8 !important;}
#user-notifications ul li.success{background-color:#d6d6d6 !important; border-right:1px solid #888 !important; border-bottom:1px solid #888 !important; border-top:1px solid #888 !important; border-left:6px solid rgb(81, 163, 81) !important;}
#user-notifications ul li{background-color:#d6d6d6 !important; border:1px solid #888 !important;}
#confirm-dialog{background-color:#d8d8d8 !important;}
fieldset legend{border-bottom: 1px solid #c0c0c0 !important;}
#content-body{margin: 0px 0 0 10px !important;}
#aside {margin-left:15px !important; float:left !important;}
#user-notifications ul li .close:hover{background-color:transparent !important; text-decoration:underline !important;}
#user-notifications ul{background-color:#d8d8d8 !important;}
.modal .modal-close:hover{background-color:transparent !important; text-decoration:underline !important;}
.aside-link > a:hover{background-color:#d6d6d6 !important;}
.ui-autocomplete{background-color:#cccccc !important}
.ui-autocomplete li a:hover{background-color:#d5d5d5 !important;}
a:hover{background-color:#c0c0c0 !important;text-decoration:none !important;}
.dropdown .dropdown-menu.open{background-color:#cccccc !important}
.dropdown .dropdown-menu li > a:hover{background-color:#d6d6d6 !important}
.tabs > li > a:hover{background-color:#d8d8d8 !important;}
.url:hover{background-color:transparent !important; text-decoration:underline !important;}
.show-others:hover{background-color:#cccccc !important;text-decoration:underline !important;}
.sub-title-menu #topic-share-menu > .toggles:hover{background-color: #cccccc
!important; text-decoration: underline !important;}
.edittools{border-color:transparent !important; margin-top:3px !important}
.sub-title-menu #topic-research-menu .toggles:hover{background-color: #cccccc
!important; text-decoration: underline !important;}
#user-badges a:hover{background-color:rgb(255, 185, 110) !important;}
#user-badges a{color:#000000 !important;}
.sub-title-menu > div > a:hover{background-color: #cccccc !important;
text-decoration: underline !important;}
.modal-overlay{opacity: 0.05 !important;}
#entry-list footer div.feedback > a:hover{background-color: #cccccc !important;
text-decoration: underline !important;}
#top-bar > #advanced-search-form > .actions > .close:hover{background-color:
#ebebeb !important; text-decoration: underline !important;}
#advanced-search-form.open{background-color:#cccccc !important; margin-left:7px !important;}
#threads li article > a:hover{background-color:#d8d8d8 !important}
#threads li article footer div a:hover{background-color:#d8d8d8 !important;
text-decoration:underline !important;}
#select-all-link:hover{background-color:#cccccc !important;
text-decoration:underline !important;}
#message-thread .outgoing{background-color:#d8d8d8 !important; border:1px solid
#888 !important;}
#message-thread .incoming{background-color:#d8d8d8 !important; border:1px solid
#888 !important;}
.popped-player{background-color:#cccccc !important; border-radius:3px !important;
border:1px solid #999999 !important;}
.popped-player .close:hover{background-color:#cccccc !important; color:black
!important; font-size:14px !important; text-decoration: underline !important;}
#profile-cards > li > ul{margin-top:1px !important}
.relation-block .relation-list > li > span >
a:last-child:hover{background-color:#cccccc !important; text-decoration:underline
!important;}
.modal{background-color:#d8d8d8 !important; border-radius:3px !important;}
.modal .modal-close:hover{background-color:#d8d8d8 !important; text-decoration:underline !important}
.topic-list li .detail{padding-left:10px !important}
.profile-buttons > a:hover{background-color:#cccccc !important;
text-decoration:underline !important;}
body,body>header,#sub-navigation {
background-color:#ccc !important;
font:9pt/1.618 Verdana, sans-serif !important;}
.tabs > li.active{border-width:0 !important;}
.tabs > li.active:hover{background-color:#d8d8d8 !important}
.tabs > li{border-radius:0 !important; text-decoration:none !important;}
a {color:navy !important;}
.empty-index-item{color:black !important;}
#logo {width:140px !important;}
.profile-buttons{
margin-top:1px !important;
margin-bottom: 6px !important;
}
/*
//sitedeki kenar logoları
http://antik.eks#isozluk.com/img/logo.png
http://i.imgur.com/qnPF5yO.png
http://i.imgur.com/gpRNhXe.png/
https://ekstat.com/img/logov2.png
*/
#logo a {background-image:url('http://i.imgur.com/ciIONmo.png') !important;}
#logo a:hover{background-color:#cccccc !important;}
#sub-navigation a,#top-bar
input[type=submit].primary,#a3-toggle,#top-navigation>ul>li>a,#entry-list footer
.rate-options a,#entry-list footer div.info>.options a {border:2px outset #a6b4d4 !important;
color:#fff !important;
font:8pt/1.7 Arial, sans-serif !important;
box-shadow:none !important;
background-color:#566484 !important;
background-image:none !important;
height:auto !important;
padding:0 4px !important;}
#top-navigation > ul .new-update, #sub-navigation > ul .new-update {
border:2px outset #a6b4d4 !important;
color:#fff !important;
font:8pt/1.7 Arial, sans-serif !important;
box-shadow:none !important;
background-color:#3da724 !important;
background-image:none !important;
height:auto !important;
padding:0 4px !important;}
.share-links li > a:hover{background-color:#cccccc !important; text-decoration:underline !important;}
#top-navigation {
float:left !important;
margin-left:-15px !important;}
.field-validation-error{color:black !important; font-weight:bold !important;}
#a3-toggle {margin-left:5px !important;}
#search-textbox {
border-radius:0 !important;
box-shadow:none !important;
border:1px solid gray !important;
font-size:8pt !important;
height:20px !important;
margin-top:4px !important;
color:#353535 !important;}
#search-textbox:focus {color:#353535 !important;}
#profile-cards > li > h3{height:22px !important;}
h1,h2,h3,h4,h5,h6 {font:bold 12pt Verdana, sans-serif !important;}
#topic h1 {margin:10px 0 !important;}
.topic-list li {border:0 !important;}
.topic-list li a:before {content:"\00B7\00A0" !important;}
.topic-list li a:hover {background-color:silver !important;}
.topic-list.partial li.numbered>a>small {font-size:100% !important;position:static !important;color:#000 !important;}
#entry-list {list-style-type:disc !important; margin-top:0px !important; margin-left:40px !important;}
#entry-list .no-seq{list-style-type:disc !important;margin-left:-25px !important; padding:5px !important;}
#entry-list .hidden, #entry-list .deleted{margin-left:-40px !important; list-style-type:none !important;}
#entry-list>li:before {content:none !important;}
#entry-list>li {margin-top:10px !important;}
#entry-list>li article {display:inline-block !important;vertical-align:top !important;width:100%;}
#entry-list footer div.feedback,#entry-list footer div.info>.options {opacity:0 !important;}
#entry-list article:hover div.feedback,#entry-list article:hover div.info>.options {opacity:1 !important;}
#entry-list footer time,#entry-list footer address {font-size:.9em !important;}
.share-dialog{z-index:999 !important; background-color:#cccccc !important;
border:1px solid #d5d5d5 !important;}
.share-dialog.open{margin-top:3px !important;}
#in-topic-search-options{z-index:999 !important;}
.dropdown .dropdown-menu{z-index:999 !important;}
#in-topic-search-options.open{background-color: #cccccc !important;}
#in-topic-search-options form:hover{background-color:#cccccc !important;}
#in-topic-search-options > li > a:hover{background-color:#d5d5d5 !important;}
#entry-list footer .entry-date {float:right !important;}
#entry-list footer .entry-date:before {content:", " !important;}
.topic-list.partial li.numbered>a>small:before,#entry-list footer address:before {content:"(" !important;}
.more-data{border:1px solid #c0c0c0 !important;}
.more-data:hover{background-color:#c0c0c0 !important;}
.topic-list li{border-top:1px solid #c0c0c0 !important;}
.topic-list.partial li.numbered>a>small:after,#entry-list footer
.entry-date:after {content:")" !important;}
@media handheld,only screen and (max-width:850px){html.no-touch #index-section{background-color:#cccccc !important;border:1px solid #888 !important;}#search-form #search-textbox{width:67%} #top-navigation > ul > li.today a{margin-right:60px !important}#top-navigation ul > :first-child > a{text-indent:-1.5px !important}#top-navigation ul > :nth-child(3) > a{text-indent:-2px !important}.topic-list li a:before {content:"\00A0\00A0" !important;}
h2{margin-top:5px !important}}
@media handheld,only screen and (min-width:850px){#top-navigation > ul > :nth-child(2) > a{margin-left:-3px !important;} #main{margin-left:190px !important;}
}@media handheld,only screen and (max-width:480px){#logo a{background-size: 95% !important;}/*#search-form{width:76% !important;}*/#search-form #a3-toggle{display:none !important;}#logo a{background-image: url('https://ekstat.com/img/ilogo_small.png') !important; background-size:20px 20px !important;}#logo{width:20px !important;}
}
html.no-touch #partial-index::-webkit-scrollbar-thumb{background-color:#c4c4c4 !important}
@media handheld,only screen and (max-width:320px){
#search-form input[type=submit]{display:block !important;}
#logo{margin-left:-18px !important;}
#search-form{width:87% !important;margin-left:5px !important;}
#search-form #search-textbox{margin-right:3px !important;}
#top-bar input[type=submit].primary{margin-top:2.2px !important;}
}
@media handheld, only screen and (max-width:1070px){
#content-body, #aside{width: 100% !important;}
}
@media handheld,only screen and (min-width:1345px){
#aside{float:right !important;}
#content-body{width:70% !important;}
}
@media handheld,only screen and (min-width:1515px){
#content-body{width:74.5% !important;}
}
.topic-list.partial li.separated span {background-color:#c1c1c1 !important; color:#252525}
} | data/usercss/93974.user.css |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://eksisozluk.com"), url-prefix("https://eksisozluk.com") {
#main{margin-top:10px !important;}
#container, #top-bar {
width:100% !important;
max-width:100% !important;
padding:0 20px !important;
}
#entry-list footer .favorite-link.favorited{color:green !important;}
#entry-list footer .feedback a{color:blue !important;}
.voted {color: #ff9100 !important;text-shadow: 0 0 5px #ff9100 !important;}
.icon-twitter:hover {color: #55acee !important;}
.icon-facebook:hover {color: #3b5998 !important;}
#entry-list footer .feedback a{color:#c0c0c0 !important;}
.topic-list li:first-child{border-top:0px !important;}
.topic-list.partial > li > a{text-indent:-8px !important;}
html.no-touch #index-section{width:200px !important; left:5px !important;}
#container{margin-top:5px !important;}
#content-section {
width:100% !important;
padding-right:350px !important;
}
.vote-response-area{margin-top:2px !important}
#site-footer ul li > a:hover{text-decoration: underline !important;
background-color: #cccccc !important;}
#delete-self-form{background-color:#d8d8d8 !important;}
#user-notifications ul li.success{background-color:#d6d6d6 !important; border-right:1px solid #888 !important; border-bottom:1px solid #888 !important; border-top:1px solid #888 !important; border-left:6px solid rgb(81, 163, 81) !important;}
#user-notifications ul li{background-color:#d6d6d6 !important; border:1px solid #888 !important;}
#confirm-dialog{background-color:#d8d8d8 !important;}
fieldset legend{border-bottom: 1px solid #c0c0c0 !important;}
#content-body{margin: 0px 0 0 10px !important;}
#aside {margin-left:15px !important; float:left !important;}
#user-notifications ul li .close:hover{background-color:transparent !important; text-decoration:underline !important;}
#user-notifications ul{background-color:#d8d8d8 !important;}
.modal .modal-close:hover{background-color:transparent !important; text-decoration:underline !important;}
.aside-link > a:hover{background-color:#d6d6d6 !important;}
.ui-autocomplete{background-color:#cccccc !important}
.ui-autocomplete li a:hover{background-color:#d5d5d5 !important;}
a:hover{background-color:#c0c0c0 !important;text-decoration:none !important;}
.dropdown .dropdown-menu.open{background-color:#cccccc !important}
.dropdown .dropdown-menu li > a:hover{background-color:#d6d6d6 !important}
.tabs > li > a:hover{background-color:#d8d8d8 !important;}
.url:hover{background-color:transparent !important; text-decoration:underline !important;}
.show-others:hover{background-color:#cccccc !important;text-decoration:underline !important;}
.sub-title-menu #topic-share-menu > .toggles:hover{background-color: #cccccc
!important; text-decoration: underline !important;}
.edittools{border-color:transparent !important; margin-top:3px !important}
.sub-title-menu #topic-research-menu .toggles:hover{background-color: #cccccc
!important; text-decoration: underline !important;}
#user-badges a:hover{background-color:rgb(255, 185, 110) !important;}
#user-badges a{color:#000000 !important;}
.sub-title-menu > div > a:hover{background-color: #cccccc !important;
text-decoration: underline !important;}
.modal-overlay{opacity: 0.05 !important;}
#entry-list footer div.feedback > a:hover{background-color: #cccccc !important;
text-decoration: underline !important;}
#top-bar > #advanced-search-form > .actions > .close:hover{background-color:
#ebebeb !important; text-decoration: underline !important;}
#advanced-search-form.open{background-color:#cccccc !important; margin-left:7px !important;}
#threads li article > a:hover{background-color:#d8d8d8 !important}
#threads li article footer div a:hover{background-color:#d8d8d8 !important;
text-decoration:underline !important;}
#select-all-link:hover{background-color:#cccccc !important;
text-decoration:underline !important;}
#message-thread .outgoing{background-color:#d8d8d8 !important; border:1px solid
#888 !important;}
#message-thread .incoming{background-color:#d8d8d8 !important; border:1px solid
#888 !important;}
.popped-player{background-color:#cccccc !important; border-radius:3px !important;
border:1px solid #999999 !important;}
.popped-player .close:hover{background-color:#cccccc !important; color:black
!important; font-size:14px !important; text-decoration: underline !important;}
#profile-cards > li > ul{margin-top:1px !important}
.relation-block .relation-list > li > span >
a:last-child:hover{background-color:#cccccc !important; text-decoration:underline
!important;}
.modal{background-color:#d8d8d8 !important; border-radius:3px !important;}
.modal .modal-close:hover{background-color:#d8d8d8 !important; text-decoration:underline !important}
.topic-list li .detail{padding-left:10px !important}
.profile-buttons > a:hover{background-color:#cccccc !important;
text-decoration:underline !important;}
body,body>header,#sub-navigation {
background-color:#ccc !important;
font:9pt/1.618 Verdana, sans-serif !important;}
.tabs > li.active{border-width:0 !important;}
.tabs > li.active:hover{background-color:#d8d8d8 !important}
.tabs > li{border-radius:0 !important; text-decoration:none !important;}
a {color:navy !important;}
.empty-index-item{color:black !important;}
#logo {width:140px !important;}
.profile-buttons{
margin-top:1px !important;
margin-bottom: 6px !important;
}
/*
//sitedeki kenar logoları
http://antik.eks#isozluk.com/img/logo.png
http://i.imgur.com/qnPF5yO.png
http://i.imgur.com/gpRNhXe.png/
https://ekstat.com/img/logov2.png
*/
#logo a {background-image:url('http://i.imgur.com/ciIONmo.png') !important;}
#logo a:hover{background-color:#cccccc !important;}
#sub-navigation a,#top-bar
input[type=submit].primary,#a3-toggle,#top-navigation>ul>li>a,#entry-list footer
.rate-options a,#entry-list footer div.info>.options a {border:2px outset #a6b4d4 !important;
color:#fff !important;
font:8pt/1.7 Arial, sans-serif !important;
box-shadow:none !important;
background-color:#566484 !important;
background-image:none !important;
height:auto !important;
padding:0 4px !important;}
#top-navigation > ul .new-update, #sub-navigation > ul .new-update {
border:2px outset #a6b4d4 !important;
color:#fff !important;
font:8pt/1.7 Arial, sans-serif !important;
box-shadow:none !important;
background-color:#3da724 !important;
background-image:none !important;
height:auto !important;
padding:0 4px !important;}
.share-links li > a:hover{background-color:#cccccc !important; text-decoration:underline !important;}
#top-navigation {
float:left !important;
margin-left:-15px !important;}
.field-validation-error{color:black !important; font-weight:bold !important;}
#a3-toggle {margin-left:5px !important;}
#search-textbox {
border-radius:0 !important;
box-shadow:none !important;
border:1px solid gray !important;
font-size:8pt !important;
height:20px !important;
margin-top:4px !important;
color:#353535 !important;}
#search-textbox:focus {color:#353535 !important;}
#profile-cards > li > h3{height:22px !important;}
h1,h2,h3,h4,h5,h6 {font:bold 12pt Verdana, sans-serif !important;}
#topic h1 {margin:10px 0 !important;}
.topic-list li {border:0 !important;}
.topic-list li a:before {content:"\00B7\00A0" !important;}
.topic-list li a:hover {background-color:silver !important;}
.topic-list.partial li.numbered>a>small {font-size:100% !important;position:static !important;color:#000 !important;}
#entry-list {list-style-type:disc !important; margin-top:0px !important; margin-left:40px !important;}
#entry-list .no-seq{list-style-type:disc !important;margin-left:-25px !important; padding:5px !important;}
#entry-list .hidden, #entry-list .deleted{margin-left:-40px !important; list-style-type:none !important;}
#entry-list>li:before {content:none !important;}
#entry-list>li {margin-top:10px !important;}
#entry-list>li article {display:inline-block !important;vertical-align:top !important;width:100%;}
#entry-list footer div.feedback,#entry-list footer div.info>.options {opacity:0 !important;}
#entry-list article:hover div.feedback,#entry-list article:hover div.info>.options {opacity:1 !important;}
#entry-list footer time,#entry-list footer address {font-size:.9em !important;}
.share-dialog{z-index:999 !important; background-color:#cccccc !important;
border:1px solid #d5d5d5 !important;}
.share-dialog.open{margin-top:3px !important;}
#in-topic-search-options{z-index:999 !important;}
.dropdown .dropdown-menu{z-index:999 !important;}
#in-topic-search-options.open{background-color: #cccccc !important;}
#in-topic-search-options form:hover{background-color:#cccccc !important;}
#in-topic-search-options > li > a:hover{background-color:#d5d5d5 !important;}
#entry-list footer .entry-date {float:right !important;}
#entry-list footer .entry-date:before {content:", " !important;}
.topic-list.partial li.numbered>a>small:before,#entry-list footer address:before {content:"(" !important;}
.more-data{border:1px solid #c0c0c0 !important;}
.more-data:hover{background-color:#c0c0c0 !important;}
.topic-list li{border-top:1px solid #c0c0c0 !important;}
.topic-list.partial li.numbered>a>small:after,#entry-list footer
.entry-date:after {content:")" !important;}
@media handheld,only screen and (max-width:850px){html.no-touch #index-section{background-color:#cccccc !important;border:1px solid #888 !important;}#search-form #search-textbox{width:67%} #top-navigation > ul > li.today a{margin-right:60px !important}#top-navigation ul > :first-child > a{text-indent:-1.5px !important}#top-navigation ul > :nth-child(3) > a{text-indent:-2px !important}.topic-list li a:before {content:"\00A0\00A0" !important;}
h2{margin-top:5px !important}}
@media handheld,only screen and (min-width:850px){#top-navigation > ul > :nth-child(2) > a{margin-left:-3px !important;} #main{margin-left:190px !important;}
}@media handheld,only screen and (max-width:480px){#logo a{background-size: 95% !important;}/*#search-form{width:76% !important;}*/#search-form #a3-toggle{display:none !important;}#logo a{background-image: url('https://ekstat.com/img/ilogo_small.png') !important; background-size:20px 20px !important;}#logo{width:20px !important;}
}
html.no-touch #partial-index::-webkit-scrollbar-thumb{background-color:#c4c4c4 !important}
@media handheld,only screen and (max-width:320px){
#search-form input[type=submit]{display:block !important;}
#logo{margin-left:-18px !important;}
#search-form{width:87% !important;margin-left:5px !important;}
#search-form #search-textbox{margin-right:3px !important;}
#top-bar input[type=submit].primary{margin-top:2.2px !important;}
}
@media handheld, only screen and (max-width:1070px){
#content-body, #aside{width: 100% !important;}
}
@media handheld,only screen and (min-width:1345px){
#aside{float:right !important;}
#content-body{width:70% !important;}
}
@media handheld,only screen and (min-width:1515px){
#content-body{width:74.5% !important;}
}
.topic-list.partial li.separated span {background-color:#c1c1c1 !important; color:#252525}
} | 0.11422 | 0.060613 |
body{
width: 100%;
margin: 0;
padding: 0;
background: #f0f1f1;
min-width: 300px;
}
p {
padding:0;
margin: 0;
}
img{
padding:0;
margin: 0;
display: block;
border: none;
}
a {
list-style: none;
text-decoration: none;
}
li{ list-style:none }
.wrap{
width: 100%;
background-color:#f0f1f1;
overflow: hidden;
font-family: "Microsoft YaHei";
min-width: 300px;
}
.header{
width: 100%;
height:44px;
background: #e6e6e6;
text-align: center;
line-height:44px;
position: fixed;
top: 0;
z-index: 2;
}
.lj_srt{font-size:19px;color:#333; }
.lefter{
width: 12px;
/*height: 24px;*/
position: absolute;
left: 0.426667rem;
bottom:10px;
}
.share{
width:0.981333rem;
height: 0.981333rem;
position: absolute;
right: 0.444444rem;
bottom:0.562963rem;
}
.void{
width: 100%;
height: 44px;
z-index: 2;
}
.content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fff;
}
.content img{
width: 100%;
/*height: 100%;*/
}
.title{
width:100%;
text-align: center;
position: absolute;
top:9.5%;
font-size: 16px;
color: #333;
/*left: 50px;*/
}
.join{
width: 100%;
text-align: center;
position: absolute;
top: 13.5%;
font-size: 19px;
color: #333;
}
.need{
width: 66.7%;
height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 19px;
line-height: 40px;
position: absolute;
bottom: 45px;
left: 50%;
text-align: center;
margin-left: -33%;
}
/*商家签约第二个页面*/
.report{
width: 95%;
height: 200px;
background: #fff;
border-radius: 3px;
margin: 20px auto;
}
.rep_shop{
width: 100%;
text-align: center;
font-size: 14px;
color: #333;
padding-top: 28px;
}
.details{
width: 84.5%;
font-size: 12px;
color: #333;
margin: 13px auto 0;
}
.reports{
width: 83%;
height: 40px;
line-height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 16px;
text-align: center;
margin: 24px auto 0;
}
.report2{
width: 95%;
height: 200px;
background: #fff;
border-radius: 3px;
margin: 20px auto;
}
.rep_shop2{
width: 100%;
text-align: center;
font-size: 14px;
color: #333;
padding-top: 28px;
}
.details2{
width: 84.5%;
font-size: 12px;
color: #333;
margin: 13px auto 0;
}
.reports2{
width: 83%;
height: 40px;
line-height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 16px;
text-align: center;
margin: 24px auto 0;
}
/*全民商探协议*/
.lj_agreement{
position: fixed;
background: rgba(0,0,0,0.4);
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 8;
display: none;
}
.lj_content{
width: 100%;
/*height: 300px;*/
margin: 50px auto;
background: #fff;
}
.lj_sign{
font-size: 18px;
color: #000;
font-weight: bold;
text-indent: 30px;
padding-top: 16px;
}
.sign_content{
width: 84%;
height: 250px;
border:1px solid #333;
margin: 10px auto;
overflow-y: scroll;
font-size: 12px;
}
.sign_content h3{
text-align: center;
}
.lj_agree{
width: 50%;
height: 20px;
line-height: 20px;
margin-left: 20px;
}
.agree{
font-size: 14px;
color: #333;
}
.lj_consent{
width: 80px;
height: 24px;
border: 1px solid #333;
text-align: center;
line-height: 24px;
font-size: 14px;
margin: 12px auto;
border-radius: 4px;
/*margin-bottom: 50px;*/
background: #fff;
}
.lj_cod{
width: 100%;
height: 10px;
}
.color{
background: #EC6D65;
border:1px solid #fff;
color: #fff;
}
.lj_sign span{
text-align: right;
}
.lj_close{
font-size: 16px;
float: right;
color: #EC6D65;
margin-right: 16px;
} | yyy/m.soolife.cn/public/css/shopseek/shopseek.css | body{
width: 100%;
margin: 0;
padding: 0;
background: #f0f1f1;
min-width: 300px;
}
p {
padding:0;
margin: 0;
}
img{
padding:0;
margin: 0;
display: block;
border: none;
}
a {
list-style: none;
text-decoration: none;
}
li{ list-style:none }
.wrap{
width: 100%;
background-color:#f0f1f1;
overflow: hidden;
font-family: "Microsoft YaHei";
min-width: 300px;
}
.header{
width: 100%;
height:44px;
background: #e6e6e6;
text-align: center;
line-height:44px;
position: fixed;
top: 0;
z-index: 2;
}
.lj_srt{font-size:19px;color:#333; }
.lefter{
width: 12px;
/*height: 24px;*/
position: absolute;
left: 0.426667rem;
bottom:10px;
}
.share{
width:0.981333rem;
height: 0.981333rem;
position: absolute;
right: 0.444444rem;
bottom:0.562963rem;
}
.void{
width: 100%;
height: 44px;
z-index: 2;
}
.content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fff;
}
.content img{
width: 100%;
/*height: 100%;*/
}
.title{
width:100%;
text-align: center;
position: absolute;
top:9.5%;
font-size: 16px;
color: #333;
/*left: 50px;*/
}
.join{
width: 100%;
text-align: center;
position: absolute;
top: 13.5%;
font-size: 19px;
color: #333;
}
.need{
width: 66.7%;
height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 19px;
line-height: 40px;
position: absolute;
bottom: 45px;
left: 50%;
text-align: center;
margin-left: -33%;
}
/*商家签约第二个页面*/
.report{
width: 95%;
height: 200px;
background: #fff;
border-radius: 3px;
margin: 20px auto;
}
.rep_shop{
width: 100%;
text-align: center;
font-size: 14px;
color: #333;
padding-top: 28px;
}
.details{
width: 84.5%;
font-size: 12px;
color: #333;
margin: 13px auto 0;
}
.reports{
width: 83%;
height: 40px;
line-height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 16px;
text-align: center;
margin: 24px auto 0;
}
.report2{
width: 95%;
height: 200px;
background: #fff;
border-radius: 3px;
margin: 20px auto;
}
.rep_shop2{
width: 100%;
text-align: center;
font-size: 14px;
color: #333;
padding-top: 28px;
}
.details2{
width: 84.5%;
font-size: 12px;
color: #333;
margin: 13px auto 0;
}
.reports2{
width: 83%;
height: 40px;
line-height: 40px;
background: #EC6D65;
border-radius: 3px;
color: #fff;
font-size: 16px;
text-align: center;
margin: 24px auto 0;
}
/*全民商探协议*/
.lj_agreement{
position: fixed;
background: rgba(0,0,0,0.4);
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 8;
display: none;
}
.lj_content{
width: 100%;
/*height: 300px;*/
margin: 50px auto;
background: #fff;
}
.lj_sign{
font-size: 18px;
color: #000;
font-weight: bold;
text-indent: 30px;
padding-top: 16px;
}
.sign_content{
width: 84%;
height: 250px;
border:1px solid #333;
margin: 10px auto;
overflow-y: scroll;
font-size: 12px;
}
.sign_content h3{
text-align: center;
}
.lj_agree{
width: 50%;
height: 20px;
line-height: 20px;
margin-left: 20px;
}
.agree{
font-size: 14px;
color: #333;
}
.lj_consent{
width: 80px;
height: 24px;
border: 1px solid #333;
text-align: center;
line-height: 24px;
font-size: 14px;
margin: 12px auto;
border-radius: 4px;
/*margin-bottom: 50px;*/
background: #fff;
}
.lj_cod{
width: 100%;
height: 10px;
}
.color{
background: #EC6D65;
border:1px solid #fff;
color: #fff;
}
.lj_sign span{
text-align: right;
}
.lj_close{
font-size: 16px;
float: right;
color: #EC6D65;
margin-right: 16px;
} | 0.242564 | 0.049589 |
.profiles-container, .profile-container {
margin-top: 30px;
margin-bottom: 30px;
padding: 20px 20px;
}
.search-container {
display: inline-block;
}
.back-cta {
display: inline-flex;
align-items: center;
align-self: flex-start;
margin-bottom: 30px;
color: #2c3e50;
font-size: 1.1em;
}
.back-cta:hover {
color: #2c3e50;
}
.back-cta:hover img {
transform: translateX(-5px);
}
.back-cta img {
max-width: 20px;
margin-right: 10px;
transition: transform 0.1s ease-in-out;
}
.profiles-header {
color: #2c3e50;
text-align: center;
}
.profiles-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 10px;
margin: 50px 0;
}
.profile-bio-container {
align-self: baseline;
}
.profile-item-container {
background-color: white;
box-shadow: 0 1px 4px 0 rgba(85,85,85,.3);
box-sizing: border-box;
border-radius: 5px;
cursor: pointer;
}
.profile-item-image:hover .profile-item-overlay {
opacity: 0.2;
}
.profile-item-image {
position: relative;
font-size: 0;
}
.profile-item-image img {
width: 100%;
}
.profile-item-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #2980b9;
background: -moz-linear-gradient(top, #2980b9 0%, #2980b9 50%, #2c3e50 100%);
background: -webkit-linear-gradient(top, #2980b9 0%,#2980b9 50%,#2c3e50 100%);
background: linear-gradient(to bottom, #2980b9 0%,#2980b9 50%,#2c3e50 100%);
opacity: 0.7;
transition: all 0.3s ease-in-out;
}
.profile-item-info {
position: absolute;
bottom: 0;
left: 0;
padding: 10px;
}
.profile-item-info h4, .profile-item-info h5 {
color: white;
margin: 5px 0;
}
.profile-item-info h4 {
font-size: 14px;
}
.profile-item-info h5 {
font-style: italic;
font-size: 12px;
}
.profile-item-buttons {
padding: 7px;
display: flex;
position: relative;
}
.profile-button {
width: auto;
display: inline-block;
background-color: #2c3e50;
color: white;
box-sizing: border-box;
border: none;
padding: 7px 10px;
text-transform: none;
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.profile-button:nth-of-type(1) {
margin-right: 5px;
}
.profile-item-dropdown {
position: absolute;
top: 100%;
left: 0;
z-index: 1;
background-color: #2c3e50;
padding: 7px;
box-shadow: 0 1px 4px 0 rgba(85,85,85,.3);
}
.profile-item-dropdown span {
width: auto;
margin: 1px;
display: inline-block;
background-color: white;
color: #2c3e50;
box-sizing: border-box;
border: none;
padding: 7px 10px;
text-transform: none;
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.profile-info-container {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: auto;
grid-gap: 20px;
}
@media (max-width: 768px) {
.profiles-grid {
grid-template-columns: 1fr 1fr;
}
.profile-info-container {
grid-template-columns: 1fr;
}
}
@media (max-width: 414px) {
.profiles-grid {
grid-template-columns: 1fr;
}
} | client/src/styles/components/Profile.css | .profiles-container, .profile-container {
margin-top: 30px;
margin-bottom: 30px;
padding: 20px 20px;
}
.search-container {
display: inline-block;
}
.back-cta {
display: inline-flex;
align-items: center;
align-self: flex-start;
margin-bottom: 30px;
color: #2c3e50;
font-size: 1.1em;
}
.back-cta:hover {
color: #2c3e50;
}
.back-cta:hover img {
transform: translateX(-5px);
}
.back-cta img {
max-width: 20px;
margin-right: 10px;
transition: transform 0.1s ease-in-out;
}
.profiles-header {
color: #2c3e50;
text-align: center;
}
.profiles-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 10px;
margin: 50px 0;
}
.profile-bio-container {
align-self: baseline;
}
.profile-item-container {
background-color: white;
box-shadow: 0 1px 4px 0 rgba(85,85,85,.3);
box-sizing: border-box;
border-radius: 5px;
cursor: pointer;
}
.profile-item-image:hover .profile-item-overlay {
opacity: 0.2;
}
.profile-item-image {
position: relative;
font-size: 0;
}
.profile-item-image img {
width: 100%;
}
.profile-item-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #2980b9;
background: -moz-linear-gradient(top, #2980b9 0%, #2980b9 50%, #2c3e50 100%);
background: -webkit-linear-gradient(top, #2980b9 0%,#2980b9 50%,#2c3e50 100%);
background: linear-gradient(to bottom, #2980b9 0%,#2980b9 50%,#2c3e50 100%);
opacity: 0.7;
transition: all 0.3s ease-in-out;
}
.profile-item-info {
position: absolute;
bottom: 0;
left: 0;
padding: 10px;
}
.profile-item-info h4, .profile-item-info h5 {
color: white;
margin: 5px 0;
}
.profile-item-info h4 {
font-size: 14px;
}
.profile-item-info h5 {
font-style: italic;
font-size: 12px;
}
.profile-item-buttons {
padding: 7px;
display: flex;
position: relative;
}
.profile-button {
width: auto;
display: inline-block;
background-color: #2c3e50;
color: white;
box-sizing: border-box;
border: none;
padding: 7px 10px;
text-transform: none;
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.profile-button:nth-of-type(1) {
margin-right: 5px;
}
.profile-item-dropdown {
position: absolute;
top: 100%;
left: 0;
z-index: 1;
background-color: #2c3e50;
padding: 7px;
box-shadow: 0 1px 4px 0 rgba(85,85,85,.3);
}
.profile-item-dropdown span {
width: auto;
margin: 1px;
display: inline-block;
background-color: white;
color: #2c3e50;
box-sizing: border-box;
border: none;
padding: 7px 10px;
text-transform: none;
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.profile-info-container {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: auto;
grid-gap: 20px;
}
@media (max-width: 768px) {
.profiles-grid {
grid-template-columns: 1fr 1fr;
}
.profile-info-container {
grid-template-columns: 1fr;
}
}
@media (max-width: 414px) {
.profiles-grid {
grid-template-columns: 1fr;
}
} | 0.446736 | 0.101012 |
.chat-container {
margin-top: -280px;
background: white;
height: 750px;
max-height: 750px;
border-radius: 8px;
-webkit-box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
}
@media screen and (max-width: 991px) {
.chat-container {
margin-top: -10vh;
}
}
.sidebar {
z-index: 1;
padding: 0 0;
border-right: 1px solid #eee;
height: 100%;
background: var(--LighterDarkColor); /*#CACCBD;*/
-webkit-border-radius: 8px 0 0 8px;
border-radius: 8px 0 0 8px;
}
.sidebar-head {
height: 20%;
padding: 20px 0 10px;
margin: -5px;
z-index: 2;
background: var(--NoDarkColor); /*#CACCBD;*/
border-style: solid;
border-width: 5px 5px 5px 5px;
-webkit-border-radius: 8px 0;
border-radius: 8px 0;
border-color: var(--LighterDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
}
.scrollable-chats-container {
height: 80%;
margin-left: 12px;
margin-right: 4px;
margin-top: 5px;
}
.scrollable-chats {
height: 100%;
max-height: 100%;
padding-top: 20px;
overflow-x: hidden;
}
/* Scrollbar */
.scrollable-chats::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(42, 54, 63, 0.3);
border-radius: 10px;
background-color: var(--NoDarkColor);
}
.scrollable-chats::-webkit-scrollbar {
width: 4px;
background-color: var(--NoDarkColor);
}
.scrollable-chats::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: var(--DarkColor);
}
.numberCircle {
border-radius: 50%;
behavior: url(PIE.htc);
/* remove if you don't care about IE8 */
width: 38px;
height: 38px;
padding: 8px;
background: var(--primaryColor);
border: 2px solid var(--secondaryColor);
color: white;
text-align: center;
font-size: 15px;
position: absolute;
top: 10px;
right: 10px;
}
.producto-bubble {
background-color: var(--NoDarkColor); /*#FCF9FA*/
-webkit-border-radius: 4px;
border-radius: 4px;
font-size: 1.2rem;
line-height: 1.3;
margin: 5px 8px 5px 1px;
padding: 10px;
display: flex;
align-items: center;
position: relative;
top: 0;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.producto-bubble:hover {
top: -8px;
-webkit-box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
}
.producto-bubble.active {
-webkit-box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
}
.producto-bubble strong {
padding-left: 5px;
}
.title-bubble {
color: black;
font-weight: 800;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 110%;
}
.title-bubble-white {
color: white;
}
.subtitle-bubble {
font-size: 15px;
font-weight: 800;
color: var(--DarkColor);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 110%;
}
.message-title-bubble {
font-size: 15px;
color: var(--DarkColor);
overflow: hidden;
width: 110%;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.producto-bubble p:last-of-type {
margin-bottom: 0;
}
.product-image {
height: 75px;
max-width: 75px;
display: inline-block;
margin-right: 10px;
background-position: center;
background-size: cover;
border-radius: 50%;
border-style: solid;
border-width: 1px;
border-color: var(--NoDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(224, 23, 23, 0.14);
box-shadow: 0 10px 30px 0 rgba(224, 23, 23, 0.14);
}
.user-bubble {
z-index: 2;
background-color: transparent; /*#FCF9FA*/
-webkit-border-radius: 4px;
border-radius: 4px;
font-size: 1.2rem;
line-height: 1.3;
margin: 5px 5px auto;
padding: 5px;
display: flex;
align-items: center;
position: relative;
top: 0;
}
.user-bubble strong {
padding-left: 5px;
}
.user-image {
height: 65px;
width: 65px;
min-width: 65px;
max-width: 65px;
margin-right: 10px;
background-color: white; /*#FCF9FA*/
background-position: center;
background-size: cover;
border-radius: 50%;
border-style: solid;
border-width: 1px;
border-color: var(--NoDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
}
.chat-user-name {
overflow: hidden;
width: 110%;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.center-vertically {
display: flex;
align-items: center;
}
.chat-user-options {
padding: 15px;
background: transparent;
border: none;
color: white;
cursor: pointer;
border-radius: 5px;
}
.chat-user-options:focus,
.chat-user-options:hover {
color: white;
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
}
.dropdown-toggle::after {
display: none;
}
.chat-title-text {
display: inline-block;
font-size: 400%;
font-weight: 700;
color: white;
z-index: 2;
}
.placeholders {
padding-bottom: 3rem;
}
.placeholder img {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.chat {
height: 100%;
max-height: 100%;
}
.chat-tittle {
height: 13%;
max-height: 13%;
}
/* Background for titles */
.chat-headerspace {
height: 100%;
max-height: 100%;
background-color: var(--primaryColor);
border-style: solid;
border-radius: 5px;
border-color: #ddeaf3;
border-width: 5px 0 5px;
z-index: 1;
-webkit-box-shadow: 0 5px 5px 2px rgba(221, 234, 243, 0.3);
box-shadow: 0 5px 5px 2px rgba(221, 234, 243, 0.3)
}
.chat-headerspace-diagonal {
height: 30%;
max-height: 30%;
background: transparent;
background: linear-gradient(to left bottom, var(--primaryColor) 49.9%, transparent 50%);
}
.chat-title_container {
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 0;
margin-top: 4px;
}
.messages_scrollable {
height: 75%;
max-height: 78%;
overflow-x: hidden;
margin-right: 10px;
padding-top: 10px;
}
/* Scrollbar */
.messages_scrollable::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
.messages_scrollable::-webkit-scrollbar {
width: 12px;
margin-left: 15px;
background-color: #F5F5F5;
}
.messages_scrollable::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: #D62929;
}
/* Bocadillos */
.messages-bubble {
display: inline-block;
padding: 10px;
font-size: 14px;
font-weight: 700;
margin-bottom: 18px;
-webkit-box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.3);
}
.messages-bubble-date {
margin: auto;
color: #a01506;
padding: 5px;
background-color: #f5e7e7;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(245, 231, 231, 0.8);
box-shadow: 0 1px 5px 0 rgba(245, 231, 231, 0.8);
}
/* Bocadillo del emisor */
.sender-bubble {
float: left;
color: black;
background-color: white;
border-radius: 5px 5px 5px 0;
margin-left: 10px;
}
/* Flecha bocadillo sombra */
.sender-bubble-ds-arrow {
border-right: 20px solid transparent;
border-top: 15px solid rgba(231, 76, 60, 0.15);
bottom: -15px;
position: absolute;
left: 15px;
}
/* Flecha bocadillo interior */
.sender-bubble-ds-arrow::after {
border-right: 20px solid transparent;
border-top: 15px solid white;
bottom: 4px;
content: "";
position: absolute;
left: 2px;
}
.me-bubble {
float: right;
color: white;
background-color: var(--primaryColor);
border-radius: 5px 5px 0 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.45);
box-shadow: 0 1px 5px 0 rgba(231, 76, 60, 0.45);
margin-right: 22px;
}
.me-bubble-date {
text-align: right;
}
/* Flecha bocadillo sombra */
.me-bubble-ds-arrow {
border-left: 20px solid transparent;
border-top: 15px solid rgba(231, 76, 60, 0.3);
bottom: -15px;
position: absolute;
right: 15px;
}
/* Flecha bocadillo interior */
.me-bubble-ds-arrow::after {
border-left: 20px solid transparent;
border-top: 15px solid var(--primaryColor);
bottom: 4px;
content: "";
position: absolute;
right: 2px;
}
.response {
margin-top: 2%;
display: none;
height: 10%;
max-height: 10%;
}
.send-square {
height: 100%;
max-height: 100%;
padding: 10px 0 10px 0;
-webkit-box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
-moz-box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
}
.mensaje_input {
width: 96%;
height: 50px;
margin-left: 5%;
font-size: 16px;
color: #2b2e35;
font-weight: 500;
border-radius: 5px;
outline: none;
background: white;
border: 2px solid #f5f5f5;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.send_button {
height: 51px;
padding: 0 10px 0 10px;
background: var(--primaryColor);
border: none;
outline: none;
font-weight: 800;
color: white;
cursor: pointer;
border-radius: 5px;
-webkit-box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
}
.send_button:focus,
.send_button:hover {
color: white;
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
}
.send_button.active {
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 20px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 20px 0 rgba(231, 76, 60, 0.6);
}
.search_chat_input {
width: 90%;
height: 50px;
margin-left: 5%;
margin-bottom: 5px;
font-size: 16px;
color: #2b2e35;
font-weight: 500;
border-radius: 5px;
outline: none;
background: white;
border: 2px solid #f5f5f5;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
input[type=text]:focus {
box-shadow: inset 0 0 20px 10px rgba(98, 115, 112, 0.3);
border-top: 2px solid rgba(98, 115, 112, 0.3);
border-left: 2px solid rgba(98, 115, 112, 0.3);
border-right: 2px solid rgba(98, 115, 112, 0.3);
border-bottom: 2px solid var(--primaryColor);
}
input::placeholder {
font-family: "Font Awesome 5 Free", "Nunito", sans-serif;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
font-weight: 900;
}
.send_button input {
display: none;
}
.dropdown-item:active{
background-color: var(--primaryColor);
} | web/app/static/styles/chatpage.css | .chat-container {
margin-top: -280px;
background: white;
height: 750px;
max-height: 750px;
border-radius: 8px;
-webkit-box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
}
@media screen and (max-width: 991px) {
.chat-container {
margin-top: -10vh;
}
}
.sidebar {
z-index: 1;
padding: 0 0;
border-right: 1px solid #eee;
height: 100%;
background: var(--LighterDarkColor); /*#CACCBD;*/
-webkit-border-radius: 8px 0 0 8px;
border-radius: 8px 0 0 8px;
}
.sidebar-head {
height: 20%;
padding: 20px 0 10px;
margin: -5px;
z-index: 2;
background: var(--NoDarkColor); /*#CACCBD;*/
border-style: solid;
border-width: 5px 5px 5px 5px;
-webkit-border-radius: 8px 0;
border-radius: 8px 0;
border-color: var(--LighterDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
}
.scrollable-chats-container {
height: 80%;
margin-left: 12px;
margin-right: 4px;
margin-top: 5px;
}
.scrollable-chats {
height: 100%;
max-height: 100%;
padding-top: 20px;
overflow-x: hidden;
}
/* Scrollbar */
.scrollable-chats::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(42, 54, 63, 0.3);
border-radius: 10px;
background-color: var(--NoDarkColor);
}
.scrollable-chats::-webkit-scrollbar {
width: 4px;
background-color: var(--NoDarkColor);
}
.scrollable-chats::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: var(--DarkColor);
}
.numberCircle {
border-radius: 50%;
behavior: url(PIE.htc);
/* remove if you don't care about IE8 */
width: 38px;
height: 38px;
padding: 8px;
background: var(--primaryColor);
border: 2px solid var(--secondaryColor);
color: white;
text-align: center;
font-size: 15px;
position: absolute;
top: 10px;
right: 10px;
}
.producto-bubble {
background-color: var(--NoDarkColor); /*#FCF9FA*/
-webkit-border-radius: 4px;
border-radius: 4px;
font-size: 1.2rem;
line-height: 1.3;
margin: 5px 8px 5px 1px;
padding: 10px;
display: flex;
align-items: center;
position: relative;
top: 0;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.producto-bubble:hover {
top: -8px;
-webkit-box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
}
.producto-bubble.active {
-webkit-box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
box-shadow: inset 0 0 20px 20px rgba(224, 23, 23, 0.14);
}
.producto-bubble strong {
padding-left: 5px;
}
.title-bubble {
color: black;
font-weight: 800;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 110%;
}
.title-bubble-white {
color: white;
}
.subtitle-bubble {
font-size: 15px;
font-weight: 800;
color: var(--DarkColor);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 110%;
}
.message-title-bubble {
font-size: 15px;
color: var(--DarkColor);
overflow: hidden;
width: 110%;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.producto-bubble p:last-of-type {
margin-bottom: 0;
}
.product-image {
height: 75px;
max-width: 75px;
display: inline-block;
margin-right: 10px;
background-position: center;
background-size: cover;
border-radius: 50%;
border-style: solid;
border-width: 1px;
border-color: var(--NoDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(224, 23, 23, 0.14);
box-shadow: 0 10px 30px 0 rgba(224, 23, 23, 0.14);
}
.user-bubble {
z-index: 2;
background-color: transparent; /*#FCF9FA*/
-webkit-border-radius: 4px;
border-radius: 4px;
font-size: 1.2rem;
line-height: 1.3;
margin: 5px 5px auto;
padding: 5px;
display: flex;
align-items: center;
position: relative;
top: 0;
}
.user-bubble strong {
padding-left: 5px;
}
.user-image {
height: 65px;
width: 65px;
min-width: 65px;
max-width: 65px;
margin-right: 10px;
background-color: white; /*#FCF9FA*/
background-position: center;
background-size: cover;
border-radius: 50%;
border-style: solid;
border-width: 1px;
border-color: var(--NoDarkColor);
-webkit-box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
box-shadow: 0 10px 30px 0 rgba(42, 54, 63, 0.3);
}
.chat-user-name {
overflow: hidden;
width: 110%;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.center-vertically {
display: flex;
align-items: center;
}
.chat-user-options {
padding: 15px;
background: transparent;
border: none;
color: white;
cursor: pointer;
border-radius: 5px;
}
.chat-user-options:focus,
.chat-user-options:hover {
color: white;
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
}
.dropdown-toggle::after {
display: none;
}
.chat-title-text {
display: inline-block;
font-size: 400%;
font-weight: 700;
color: white;
z-index: 2;
}
.placeholders {
padding-bottom: 3rem;
}
.placeholder img {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.chat {
height: 100%;
max-height: 100%;
}
.chat-tittle {
height: 13%;
max-height: 13%;
}
/* Background for titles */
.chat-headerspace {
height: 100%;
max-height: 100%;
background-color: var(--primaryColor);
border-style: solid;
border-radius: 5px;
border-color: #ddeaf3;
border-width: 5px 0 5px;
z-index: 1;
-webkit-box-shadow: 0 5px 5px 2px rgba(221, 234, 243, 0.3);
box-shadow: 0 5px 5px 2px rgba(221, 234, 243, 0.3)
}
.chat-headerspace-diagonal {
height: 30%;
max-height: 30%;
background: transparent;
background: linear-gradient(to left bottom, var(--primaryColor) 49.9%, transparent 50%);
}
.chat-title_container {
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 0;
margin-top: 4px;
}
.messages_scrollable {
height: 75%;
max-height: 78%;
overflow-x: hidden;
margin-right: 10px;
padding-top: 10px;
}
/* Scrollbar */
.messages_scrollable::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
.messages_scrollable::-webkit-scrollbar {
width: 12px;
margin-left: 15px;
background-color: #F5F5F5;
}
.messages_scrollable::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: #D62929;
}
/* Bocadillos */
.messages-bubble {
display: inline-block;
padding: 10px;
font-size: 14px;
font-weight: 700;
margin-bottom: 18px;
-webkit-box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.3);
}
.messages-bubble-date {
margin: auto;
color: #a01506;
padding: 5px;
background-color: #f5e7e7;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(245, 231, 231, 0.8);
box-shadow: 0 1px 5px 0 rgba(245, 231, 231, 0.8);
}
/* Bocadillo del emisor */
.sender-bubble {
float: left;
color: black;
background-color: white;
border-radius: 5px 5px 5px 0;
margin-left: 10px;
}
/* Flecha bocadillo sombra */
.sender-bubble-ds-arrow {
border-right: 20px solid transparent;
border-top: 15px solid rgba(231, 76, 60, 0.15);
bottom: -15px;
position: absolute;
left: 15px;
}
/* Flecha bocadillo interior */
.sender-bubble-ds-arrow::after {
border-right: 20px solid transparent;
border-top: 15px solid white;
bottom: 4px;
content: "";
position: absolute;
left: 2px;
}
.me-bubble {
float: right;
color: white;
background-color: var(--primaryColor);
border-radius: 5px 5px 0 5px;
-webkit-box-shadow: 0 0 5px 0 rgba(231, 76, 60, 0.45);
box-shadow: 0 1px 5px 0 rgba(231, 76, 60, 0.45);
margin-right: 22px;
}
.me-bubble-date {
text-align: right;
}
/* Flecha bocadillo sombra */
.me-bubble-ds-arrow {
border-left: 20px solid transparent;
border-top: 15px solid rgba(231, 76, 60, 0.3);
bottom: -15px;
position: absolute;
right: 15px;
}
/* Flecha bocadillo interior */
.me-bubble-ds-arrow::after {
border-left: 20px solid transparent;
border-top: 15px solid var(--primaryColor);
bottom: 4px;
content: "";
position: absolute;
right: 2px;
}
.response {
margin-top: 2%;
display: none;
height: 10%;
max-height: 10%;
}
.send-square {
height: 100%;
max-height: 100%;
padding: 10px 0 10px 0;
-webkit-box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
-moz-box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 -5px 5px 0 rgba(231, 76, 60, 0.3);
}
.mensaje_input {
width: 96%;
height: 50px;
margin-left: 5%;
font-size: 16px;
color: #2b2e35;
font-weight: 500;
border-radius: 5px;
outline: none;
background: white;
border: 2px solid #f5f5f5;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.send_button {
height: 51px;
padding: 0 10px 0 10px;
background: var(--primaryColor);
border: none;
outline: none;
font-weight: 800;
color: white;
cursor: pointer;
border-radius: 5px;
-webkit-box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
box-shadow: 0 10px 30px 0 rgba(231, 76, 60, 0.3);
}
.send_button:focus,
.send_button:hover {
color: white;
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 45px 0 rgba(231, 76, 60, 0.6);
}
.send_button.active {
background-color: var(--secondaryColor);
-webkit-box-shadow: 0 10px 20px 0 rgba(231, 76, 60, 0.6);
box-shadow: 0 10px 20px 0 rgba(231, 76, 60, 0.6);
}
.search_chat_input {
width: 90%;
height: 50px;
margin-left: 5%;
margin-bottom: 5px;
font-size: 16px;
color: #2b2e35;
font-weight: 500;
border-radius: 5px;
outline: none;
background: white;
border: 2px solid #f5f5f5;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
input[type=text]:focus {
box-shadow: inset 0 0 20px 10px rgba(98, 115, 112, 0.3);
border-top: 2px solid rgba(98, 115, 112, 0.3);
border-left: 2px solid rgba(98, 115, 112, 0.3);
border-right: 2px solid rgba(98, 115, 112, 0.3);
border-bottom: 2px solid var(--primaryColor);
}
input::placeholder {
font-family: "Font Awesome 5 Free", "Nunito", sans-serif;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
font-weight: 900;
}
.send_button input {
display: none;
}
.dropdown-item:active{
background-color: var(--primaryColor);
} | 0.398758 | 0.089375 |
*{
box-sizing: border-box;
padding: 0;
}
body {
margin: 0;
padding: 0;
background-repeat: repeat;
font-family: 'Oswald', sans-serif;
}
/* fim */
/* config especifica body checkout*/
body.checkout {
background: none;
}
/* fim*/
/*config especifica body faq*/
.fundobodyfaq{
background-image: url("imagens/fundo-bkp.jpg");
object-fit: cover;
}
/*fim*/
/* ÁREA DE TÍTULO SUPERIOR */
.area_titulo{
height: 140px;
position: relative;
z-index: -5;
width: 100%;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background: rgba(255,255,255,0.8);
background-image: url(imagens/fundo.jpg);
display: block;
}
.area_titulo:after{
background-color: rgba(255, 255, 255, 0.7);
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: -10;
content: '';
}
/*titulo pagina categoria */
.page-title h1{
text-transform: uppercase;
}
/*config paragrafo geral*/
p{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 140%;
}
/* fim*/
/* config paragrafo pag login */
p.direitos{
color: rgba(255,255,255,0.6);
}
/*fim*/
/* configs da home */
.destaques, .destaques_prod {
text-align: center;
position: relative;
}
#destaqueMenorHome1_gp {
background: url("imagens/destaques/destaque1b.jpg") no-repeat center center;
width: 90%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome2_gp{
background: url("imagens/destaques/destaque2b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome3_gp{
background: url("imagens/destaques/destaque3b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome4_gp{
background: url("imagens/destaques/destaque4b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
.botaoMenorHome1{
width: 100%;
font-size: 1.2rem;
color: black;
background-color: rgba(255, 255, 255, 0.5);
border: 2px solid black;
border-radius: 5%;
margin-top: 110%;
}
.botaoMenorHome1:hover{
background-color: black;
color: white;
}
.destaqueMaior1_img{
background: url("imagens/destaques/destaque5b.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
}
.txtMaiorHover1{
display:none;
}
.destaqueMaior1_img:hover{
background: url("imagens/destaques/destaque5bpb.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
transition: 0.5s;
}
.destaqueMaior1_img:hover .txtMaiorHover1{
display: block;
height: inherit;
width: inherit;
margin: 30% auto;
text-align:center;
overflow: hidden;
font-size: 2.5rem;
color: black;
transition: 0.5s;
}
.txtMaiorHover2{
display:none;
}
.destaqueMaior2_img{
background: url("imagens/destaques/destaque6b.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
}
.destaqueMaior2_img:hover{
background: url("imagens/destaques/destaque6bpb.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
transition: 0.5s;
}
.destaqueMaior2_img:hover .txtMaiorHover2{
display: block;
height: inherit;
width: inherit;
margin: 30% auto;
text-align: center;
overflow: hidden;
font-size: 1.5em;
color: black;
transition: 0.5s;
}
#produtosMaiores_gp .txtMaiorHover2:hover{
display:block;
text-align: center;
overflow: hidden;
font-size: 3rem;
z-index: 10;
color: black;
}
#bannerInfraHome {
position: relative;
background: url("imagens/banner5b.jpg") no-repeat center center;
height: 75vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
object-fit: cover;
}
.textoInfraHome{
position: relative;
text-transform: uppercase;
font-size: 3rem;
width: 20%;
margin-left: 8%;
color: white;
}
.botaoBannerInfra{
position: relative;
/* margin-top: 10%; */
width: 15%;
font-size: 2rem;
color: white;
background-color: rgba(0, 0, 0, 0.5);
border: 2px solid white;
border-radius: 5%;
margin-left: 8%;
}
.botaoBannerInfra:hover{
background-color: rgba(255, 255, 255, 0.5);
color: black;
border: 2px solid black;
}
/* fim */
/* configs da categoria */
/* AREA DE CONTEUDO */
#pagina-categoria .loja{
margin-top: 80px;
margin-bottom: 80px;
}
/* CATEGORIAS */
#pagina-categoria ul.menu-categorias{
list-style: none;
}
/* CADA PRODUTO */
#pagina-categoria a.btn.comprar{
background-color: #C3DB5D;
color: #fff;
}
#pagina-categoria a{
color: #373339;
}
#pagina-categoria h6.titulo-sidebar{
text-transform: uppercase;
font-size: 1.5rem;
margin-bottom: 20px;
margin-top: 0px;
}
#pagina-categoria h6{
margin-top: 10px;
}
#pagina-categoria .product-img img{
max-width: 100%;
}
.single-product-wrapper{
padding-bottom: 20px;
}
/*fim */
/* inicio config navbar*/
.navbar{
padding: 0;
}
.navbar-brand img{
width: 180px;
}
/*fim*/
/* inicio config login*/
.conta i.fas.fa-user, .carrinho i.fas.fa-shopping-cart{
font-size: 26px;
}
/*fim*/
/* inicio config login e home*/
.header-meta{
height: 145px;
position: relative;
}
.header_area .navbar{
-webkit-box-shadow: 0px 6px 10px 1px rgba(0,0,0,0.24);
-moz-box-shadow: 0px 6px 10px 1px rgba(0,0,0,0.24);
box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.24);
}
.header_area .search-area form{
position: relative;
height: 145px;
border-left: 1px solid #ebebeb;
}
.header_area .search-area form input{
border: none;
background-color: rgba(255,255,255,0);
width: 150px;
height: 145px;
padding: 0 15px 0 60px;
color: #373339;
}
.header_area .search-area form button{
position: absolute;
background-color: transparent;
left: 30px;
border: none;
top: 50%;
font-size: 20px;
transform: translateY(-50%);
}
.user-login-info a, .cart-area a{
position: relative;
width: 90px;
text-align: center;
flex: 0 0 90px;
line-height: 145px;
height: 100%;
color: #373339;
font-size: 20px;
display: block;
}
.user-login-info, .cart-area{
border-left: 1px solid #ebebeb;
}
.header_area .cart-area a span, .header_area .user-login-info a span{
font-size: 14px;
top:-10px;
margin-left: 5px;
}
.cart-area a:hover{
text-decoration: none;
}
.fundoLogin{
background: url("imagens/login/fundo.jpg") no-repeat;
background-size: cover;
width: 100%;
overflow: hidden;
height: 68vh;
}
.loginArea{
background-color: rgba(248, 249, 250, 0.9);
border-radius: 1em;
padding: 1em;
text-align: center;
margin: 0 auto;
margin-bottom: 30px;
}
/*config pag cadastro */
.retorno{
margin-top: 10px;
}
/*config pag cadastro e login */
.inputUsuario input{
width: 20vw;
}
.botoesLogin input{
font-size: 0.5em;
font-weight: lighter;
}
.botoesLogin button{
background-color: rgba(248, 249, 250, 0.5);
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
.botoesLogin button:hover{
background-color:black;
color: #f8f9fa;
}
/* RODAPÉ - configs */
.footer_area{
background-color: #373339;
color: #FFFAF0;
}
.footer_area a{
color: #FFFAF0;
}
.footer-logo img{
width: 160px;
}
.footer-logo img{
width: 200px;
}
.footer_menu_loja ul{
display: flex;
}
.footer_menu_loja ul li, .footer_menu li{
list-style: none;
}
.footer_menu{
display: flex;
flex-wrap: wrap;
}
.menu-secundario{
margin-top: 45px;
}
#rodape li a{
font-size: 16px;
color: rgba(255, 255, 255, 0.6);
display: block;
font-weight: 400;
padding: 0 10px;
text-transform: capitalize;
}
/* paragrafo da home e login */
p.direitos{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 140%;
color: rgba(255,255,255,0.6);
}
/* ADAPTAÇÃO RESPONSIVA */
/*extra small*/
@media only screen and (max-width : 768px){
/* cabecalho home e login */
button.navbar-toggler{
margin-right: 20px;
}
.header-meta.d-flex.clearfix.justify-content-end{
width: 100%;
height: 60px;
border-top: 1px solid #ebebeb;
float: left;
}
.header_area .search-area form, .header_area .search-area form input{
height: 60px;
border-left: none;
}
.header_area .search-area{
padding-right: 50px;
}
.user-login-info a, .cart-area a{
line-height: 60px;
}
.navbar-brand img{
width: 140px;
}
.navbar-nav{
text-align: right;
padding-right: 20px;
padding-bottom: 20px;
}
/* rodape */
.footer-logo img{
width: 120px;
display: block;
text-align: center;
}
.footer_menu_loja ul{
margin-top: -25px;
}
.menu-secundario{
/* margin-top: 0px; */
display: none;
}
}
/*fim*/
/*extra small categoria*/
@media only screen and (max-width : 767px){
.loja_sidebar_area{
text-align: center;
margin-top: -40px;
margin-bottom: 40px;
}
.single-product-wrapper{
text-align: center;
}
}
/*fim*/
/*medium login e home*/
@media only screen and (max-width : 991px){
.menu-secundario{
display: block;
margin-top: 22px;
}
}
/*fim*/
/*config media pag produto*/
@media (min-width: 990px) {
.size:hover{
background-color: black;
color: white;
cursor: pointer;
border: 3px solid white;
}
.color:hover{
background-color: black;
color: white;
cursor: pointer;
border: 3px solid white;
}
.conclude:hover{
border: 3px solid forestgreen;
background-color: white;
color: forestgreen;
cursor: pointer;
}
}
/*fim*/
/* Login e cadastro */
.inputUsuario input{
width: 45vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
/* Login */
.inputUsuario input{
width: 25vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
width: 20vw;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
/*extra small*/
@media only screen and (max-width : 768px){
/* Login */
.fundoLogin{
height:58vh;
}
.inputUsuario input{
width: 45vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
}
/*fim*/
/*configs categoria e checkout*/
@media (max-width: 576px){
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}}
/* configs checkout*/
.checktitulo{
z-index: 1;
opacity: 1 !important;
background-image: none;
float: left;
position: absolute;
text-align: center !important;
top:-95px; left:6px;
}
.checktitulo p{
font-size: 30px;
color: black;
text-transform: uppercase;
font-weight: bold;
font-family: 'Ubuntu';
}
.backbanner{
background: url("imagens/breadcumb.jpg") no-repeat center center;
width: 100%;
height: 140px;
opacity: 0.1;
position: relative;
top:0px;
left:0px;
}
.pcheckout{
font-size: 30px;
color: black;
text-transform: uppercase;
font-weight: bold;
font-family: 'Ubuntu';
}
.primdiv label{
font-size: 12px;
font-weight: bold;
font-family: 'Poppins';
color: #212529;
text-transform: uppercase;
}
.row2{
text-align: left;
padding-top: 30px;
padding-left: 15px;
}
.row4{
border: 2px solid;
border-color: #ebebeb;
border-radius: 1px;
padding: 30px;
}
.detalhesrow{
color: gray;
font-size: 12px;
font-style: oblique;
}
.infospedido{
color:black;
font-size: 18px;
font-family: 'Ubuntu';
text-transform: uppercase;
list-style-type: none;
padding: 4px;
}
.infospedido2{
color: #212529;
font-size: 14px;
font-family: 'Poppins';
text-transform: uppercase;
list-style-type: none;
border-bottom: 0.5px solid #ccc;
width: 100%;
float: left;
padding-top: 20px;
}
.infospedido2 p{
float: left;
}
.row2 input{
border: 1px solid;
border-radius: 2px;
border-color: #ebebeb;
height: 40px;
}
.asterisco{
color:red;
}
.teste2{
float: left;
}
.clearboth{
clear: both;
}
.margemlateral{
margin-right: 50px;
}
.ffubuntu{
font-family:'Ubuntu';
}
.botaocomprar{
background-color: #3713d6;
color: #FFF;
font-family: 'Poppins';
width: 200px;
height: 50px;
text-transform: uppercase;
border: 0;
cursor: pointer;
margin-left: 15px;
}
.botaocomprar:hover{
background-color: #e80b60;
}
.checkoutwrapper{
margin-bottom: 50px;
}
.end{
font-size: 20px;
font-weight: bold;
font-family: 'Ubuntu';
color: #000000;
}
/*fim*/
/* configs pag contato */
.imgcontato {
width: 105%;
height: 700px;
}
.topico {
text-align: center;
border-radius: 5px;
font-weight: bolder;
background-color: #c0c0c0;
margin-top: 20px;
margin-left: 30px;
}
.cardoso {
color: grey;
margin-left: 30px;
}
.para {
text-align: justify;
padding: 7px;
background-color:#c0c0c0;
border-radius: 5px;
color: black;
font-size: 20px;
font-weight: lighter;
margin-left: 30px;
}
.tituloinfos {
margin-left: 30px;
}
.margintopdez {
margin-top: 10px;
}
/*fim*/
/*configs pag produto*/
#present {
margin: 0px;
/* margin-bottom: 3%; */
background-image: url("imagens/fundo-bkp.jpg");
background-repeat: repeat;
}
#modelo{
width: 70%;
margin-left: 15%;
margin-right: 15%;
margin-bottom: 3%;
position: relative;
}
#about {
width: 80%;
margin-left: 10%;
margin-right: 10%;
position: relative;
height: 30%;
}
#descritivo {
padding: 10px;
color: white;
margin-top: auto;
margin-bottom: 3%;
border: 5px solid floralwhite;
background-color: black;
text-transform: uppercase;
position: relative;
}
.size, .color{
padding: 5px;
font: inherit;
border-color: gray;
height: 35px;
width: 60px;
background-color: aliceblue;
color: black
}
.conclude {
text-align: center;
background-color: forestgreen;
color: white;
padding: 3px;
}
.size, .color, .conclude{
align-content: flex-start;
margin: 5px;
display: inline;
}
#faq-box {
width: 70%;
margin: 5% 15% 0%;
border: 6px solid gray;
padding: 0px;
z-index: 9;
}
#q-box {
text-transform: uppercase;
color: white;
background-color: black;
}
#a-box {
text-transform: uppercase;
color: black;
background-color: white;
}
#q-box, #a-box {
padding: 5px;
text-align: justify
}
/*fim*/ | public/css/novo.css | *{
box-sizing: border-box;
padding: 0;
}
body {
margin: 0;
padding: 0;
background-repeat: repeat;
font-family: 'Oswald', sans-serif;
}
/* fim */
/* config especifica body checkout*/
body.checkout {
background: none;
}
/* fim*/
/*config especifica body faq*/
.fundobodyfaq{
background-image: url("imagens/fundo-bkp.jpg");
object-fit: cover;
}
/*fim*/
/* ÁREA DE TÍTULO SUPERIOR */
.area_titulo{
height: 140px;
position: relative;
z-index: -5;
width: 100%;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background: rgba(255,255,255,0.8);
background-image: url(imagens/fundo.jpg);
display: block;
}
.area_titulo:after{
background-color: rgba(255, 255, 255, 0.7);
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: -10;
content: '';
}
/*titulo pagina categoria */
.page-title h1{
text-transform: uppercase;
}
/*config paragrafo geral*/
p{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 140%;
}
/* fim*/
/* config paragrafo pag login */
p.direitos{
color: rgba(255,255,255,0.6);
}
/*fim*/
/* configs da home */
.destaques, .destaques_prod {
text-align: center;
position: relative;
}
#destaqueMenorHome1_gp {
background: url("imagens/destaques/destaque1b.jpg") no-repeat center center;
width: 90%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome2_gp{
background: url("imagens/destaques/destaque2b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome3_gp{
background: url("imagens/destaques/destaque3b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
#destaqueMenorHome4_gp{
background: url("imagens/destaques/destaque4b.jpg") no-repeat center center;
width: 100%;
height: 50vh;
overflow: hidden;
object-fit: cover;
vertical-align: middle;
}
.botaoMenorHome1{
width: 100%;
font-size: 1.2rem;
color: black;
background-color: rgba(255, 255, 255, 0.5);
border: 2px solid black;
border-radius: 5%;
margin-top: 110%;
}
.botaoMenorHome1:hover{
background-color: black;
color: white;
}
.destaqueMaior1_img{
background: url("imagens/destaques/destaque5b.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
}
.txtMaiorHover1{
display:none;
}
.destaqueMaior1_img:hover{
background: url("imagens/destaques/destaque5bpb.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
transition: 0.5s;
}
.destaqueMaior1_img:hover .txtMaiorHover1{
display: block;
height: inherit;
width: inherit;
margin: 30% auto;
text-align:center;
overflow: hidden;
font-size: 2.5rem;
color: black;
transition: 0.5s;
}
.txtMaiorHover2{
display:none;
}
.destaqueMaior2_img{
background: url("imagens/destaques/destaque6b.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
}
.destaqueMaior2_img:hover{
background: url("imagens/destaques/destaque6bpb.jpg") no-repeat center center;
width: 100%;
height: 75vh;
overflow: hidden;
vertical-align: middle;
transition: 0.5s;
}
.destaqueMaior2_img:hover .txtMaiorHover2{
display: block;
height: inherit;
width: inherit;
margin: 30% auto;
text-align: center;
overflow: hidden;
font-size: 1.5em;
color: black;
transition: 0.5s;
}
#produtosMaiores_gp .txtMaiorHover2:hover{
display:block;
text-align: center;
overflow: hidden;
font-size: 3rem;
z-index: 10;
color: black;
}
#bannerInfraHome {
position: relative;
background: url("imagens/banner5b.jpg") no-repeat center center;
height: 75vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
object-fit: cover;
}
.textoInfraHome{
position: relative;
text-transform: uppercase;
font-size: 3rem;
width: 20%;
margin-left: 8%;
color: white;
}
.botaoBannerInfra{
position: relative;
/* margin-top: 10%; */
width: 15%;
font-size: 2rem;
color: white;
background-color: rgba(0, 0, 0, 0.5);
border: 2px solid white;
border-radius: 5%;
margin-left: 8%;
}
.botaoBannerInfra:hover{
background-color: rgba(255, 255, 255, 0.5);
color: black;
border: 2px solid black;
}
/* fim */
/* configs da categoria */
/* AREA DE CONTEUDO */
#pagina-categoria .loja{
margin-top: 80px;
margin-bottom: 80px;
}
/* CATEGORIAS */
#pagina-categoria ul.menu-categorias{
list-style: none;
}
/* CADA PRODUTO */
#pagina-categoria a.btn.comprar{
background-color: #C3DB5D;
color: #fff;
}
#pagina-categoria a{
color: #373339;
}
#pagina-categoria h6.titulo-sidebar{
text-transform: uppercase;
font-size: 1.5rem;
margin-bottom: 20px;
margin-top: 0px;
}
#pagina-categoria h6{
margin-top: 10px;
}
#pagina-categoria .product-img img{
max-width: 100%;
}
.single-product-wrapper{
padding-bottom: 20px;
}
/*fim */
/* inicio config navbar*/
.navbar{
padding: 0;
}
.navbar-brand img{
width: 180px;
}
/*fim*/
/* inicio config login*/
.conta i.fas.fa-user, .carrinho i.fas.fa-shopping-cart{
font-size: 26px;
}
/*fim*/
/* inicio config login e home*/
.header-meta{
height: 145px;
position: relative;
}
.header_area .navbar{
-webkit-box-shadow: 0px 6px 10px 1px rgba(0,0,0,0.24);
-moz-box-shadow: 0px 6px 10px 1px rgba(0,0,0,0.24);
box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.24);
}
.header_area .search-area form{
position: relative;
height: 145px;
border-left: 1px solid #ebebeb;
}
.header_area .search-area form input{
border: none;
background-color: rgba(255,255,255,0);
width: 150px;
height: 145px;
padding: 0 15px 0 60px;
color: #373339;
}
.header_area .search-area form button{
position: absolute;
background-color: transparent;
left: 30px;
border: none;
top: 50%;
font-size: 20px;
transform: translateY(-50%);
}
.user-login-info a, .cart-area a{
position: relative;
width: 90px;
text-align: center;
flex: 0 0 90px;
line-height: 145px;
height: 100%;
color: #373339;
font-size: 20px;
display: block;
}
.user-login-info, .cart-area{
border-left: 1px solid #ebebeb;
}
.header_area .cart-area a span, .header_area .user-login-info a span{
font-size: 14px;
top:-10px;
margin-left: 5px;
}
.cart-area a:hover{
text-decoration: none;
}
.fundoLogin{
background: url("imagens/login/fundo.jpg") no-repeat;
background-size: cover;
width: 100%;
overflow: hidden;
height: 68vh;
}
.loginArea{
background-color: rgba(248, 249, 250, 0.9);
border-radius: 1em;
padding: 1em;
text-align: center;
margin: 0 auto;
margin-bottom: 30px;
}
/*config pag cadastro */
.retorno{
margin-top: 10px;
}
/*config pag cadastro e login */
.inputUsuario input{
width: 20vw;
}
.botoesLogin input{
font-size: 0.5em;
font-weight: lighter;
}
.botoesLogin button{
background-color: rgba(248, 249, 250, 0.5);
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
.botoesLogin button:hover{
background-color:black;
color: #f8f9fa;
}
/* RODAPÉ - configs */
.footer_area{
background-color: #373339;
color: #FFFAF0;
}
.footer_area a{
color: #FFFAF0;
}
.footer-logo img{
width: 160px;
}
.footer-logo img{
width: 200px;
}
.footer_menu_loja ul{
display: flex;
}
.footer_menu_loja ul li, .footer_menu li{
list-style: none;
}
.footer_menu{
display: flex;
flex-wrap: wrap;
}
.menu-secundario{
margin-top: 45px;
}
#rodape li a{
font-size: 16px;
color: rgba(255, 255, 255, 0.6);
display: block;
font-weight: 400;
padding: 0 10px;
text-transform: capitalize;
}
/* paragrafo da home e login */
p.direitos{
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 140%;
color: rgba(255,255,255,0.6);
}
/* ADAPTAÇÃO RESPONSIVA */
/*extra small*/
@media only screen and (max-width : 768px){
/* cabecalho home e login */
button.navbar-toggler{
margin-right: 20px;
}
.header-meta.d-flex.clearfix.justify-content-end{
width: 100%;
height: 60px;
border-top: 1px solid #ebebeb;
float: left;
}
.header_area .search-area form, .header_area .search-area form input{
height: 60px;
border-left: none;
}
.header_area .search-area{
padding-right: 50px;
}
.user-login-info a, .cart-area a{
line-height: 60px;
}
.navbar-brand img{
width: 140px;
}
.navbar-nav{
text-align: right;
padding-right: 20px;
padding-bottom: 20px;
}
/* rodape */
.footer-logo img{
width: 120px;
display: block;
text-align: center;
}
.footer_menu_loja ul{
margin-top: -25px;
}
.menu-secundario{
/* margin-top: 0px; */
display: none;
}
}
/*fim*/
/*extra small categoria*/
@media only screen and (max-width : 767px){
.loja_sidebar_area{
text-align: center;
margin-top: -40px;
margin-bottom: 40px;
}
.single-product-wrapper{
text-align: center;
}
}
/*fim*/
/*medium login e home*/
@media only screen and (max-width : 991px){
.menu-secundario{
display: block;
margin-top: 22px;
}
}
/*fim*/
/*config media pag produto*/
@media (min-width: 990px) {
.size:hover{
background-color: black;
color: white;
cursor: pointer;
border: 3px solid white;
}
.color:hover{
background-color: black;
color: white;
cursor: pointer;
border: 3px solid white;
}
.conclude:hover{
border: 3px solid forestgreen;
background-color: white;
color: forestgreen;
cursor: pointer;
}
}
/*fim*/
/* Login e cadastro */
.inputUsuario input{
width: 45vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
/* Login */
.inputUsuario input{
width: 25vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
width: 20vw;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
/*extra small*/
@media only screen and (max-width : 768px){
/* Login */
.fundoLogin{
height:58vh;
}
.inputUsuario input{
width: 45vw;
}
.botoesLogin button{
background-color: black;
color: #f8f9fa;
font-size: 1.2em;
font-weight: bold;
border-radius: 0.2em;
}
}
/*fim*/
/*configs categoria e checkout*/
@media (max-width: 576px){
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}}
/* configs checkout*/
.checktitulo{
z-index: 1;
opacity: 1 !important;
background-image: none;
float: left;
position: absolute;
text-align: center !important;
top:-95px; left:6px;
}
.checktitulo p{
font-size: 30px;
color: black;
text-transform: uppercase;
font-weight: bold;
font-family: 'Ubuntu';
}
.backbanner{
background: url("imagens/breadcumb.jpg") no-repeat center center;
width: 100%;
height: 140px;
opacity: 0.1;
position: relative;
top:0px;
left:0px;
}
.pcheckout{
font-size: 30px;
color: black;
text-transform: uppercase;
font-weight: bold;
font-family: 'Ubuntu';
}
.primdiv label{
font-size: 12px;
font-weight: bold;
font-family: 'Poppins';
color: #212529;
text-transform: uppercase;
}
.row2{
text-align: left;
padding-top: 30px;
padding-left: 15px;
}
.row4{
border: 2px solid;
border-color: #ebebeb;
border-radius: 1px;
padding: 30px;
}
.detalhesrow{
color: gray;
font-size: 12px;
font-style: oblique;
}
.infospedido{
color:black;
font-size: 18px;
font-family: 'Ubuntu';
text-transform: uppercase;
list-style-type: none;
padding: 4px;
}
.infospedido2{
color: #212529;
font-size: 14px;
font-family: 'Poppins';
text-transform: uppercase;
list-style-type: none;
border-bottom: 0.5px solid #ccc;
width: 100%;
float: left;
padding-top: 20px;
}
.infospedido2 p{
float: left;
}
.row2 input{
border: 1px solid;
border-radius: 2px;
border-color: #ebebeb;
height: 40px;
}
.asterisco{
color:red;
}
.teste2{
float: left;
}
.clearboth{
clear: both;
}
.margemlateral{
margin-right: 50px;
}
.ffubuntu{
font-family:'Ubuntu';
}
.botaocomprar{
background-color: #3713d6;
color: #FFF;
font-family: 'Poppins';
width: 200px;
height: 50px;
text-transform: uppercase;
border: 0;
cursor: pointer;
margin-left: 15px;
}
.botaocomprar:hover{
background-color: #e80b60;
}
.checkoutwrapper{
margin-bottom: 50px;
}
.end{
font-size: 20px;
font-weight: bold;
font-family: 'Ubuntu';
color: #000000;
}
/*fim*/
/* configs pag contato */
.imgcontato {
width: 105%;
height: 700px;
}
.topico {
text-align: center;
border-radius: 5px;
font-weight: bolder;
background-color: #c0c0c0;
margin-top: 20px;
margin-left: 30px;
}
.cardoso {
color: grey;
margin-left: 30px;
}
.para {
text-align: justify;
padding: 7px;
background-color:#c0c0c0;
border-radius: 5px;
color: black;
font-size: 20px;
font-weight: lighter;
margin-left: 30px;
}
.tituloinfos {
margin-left: 30px;
}
.margintopdez {
margin-top: 10px;
}
/*fim*/
/*configs pag produto*/
#present {
margin: 0px;
/* margin-bottom: 3%; */
background-image: url("imagens/fundo-bkp.jpg");
background-repeat: repeat;
}
#modelo{
width: 70%;
margin-left: 15%;
margin-right: 15%;
margin-bottom: 3%;
position: relative;
}
#about {
width: 80%;
margin-left: 10%;
margin-right: 10%;
position: relative;
height: 30%;
}
#descritivo {
padding: 10px;
color: white;
margin-top: auto;
margin-bottom: 3%;
border: 5px solid floralwhite;
background-color: black;
text-transform: uppercase;
position: relative;
}
.size, .color{
padding: 5px;
font: inherit;
border-color: gray;
height: 35px;
width: 60px;
background-color: aliceblue;
color: black
}
.conclude {
text-align: center;
background-color: forestgreen;
color: white;
padding: 3px;
}
.size, .color, .conclude{
align-content: flex-start;
margin: 5px;
display: inline;
}
#faq-box {
width: 70%;
margin: 5% 15% 0%;
border: 6px solid gray;
padding: 0px;
z-index: 9;
}
#q-box {
text-transform: uppercase;
color: white;
background-color: black;
}
#a-box {
text-transform: uppercase;
color: black;
background-color: white;
}
#q-box, #a-box {
padding: 5px;
text-align: justify
}
/*fim*/ | 0.386069 | 0.055081 |
.container { display: flex; }
.paymentCard {
align-items: center;
background-color: #f9f9f9;
border-radius: 2px;
border: 1px solid #ccc;
box-sizing: border-box;
cursor: pointer;
display: flex;
height: 80px;
justify-content: center;
margin-left: 0;
margin-right: 0;
position: relative;
transition: border-color .3s;
text-align: center;
user-select: none;
vertical-align: middle;
white-space: normal;
width: 160px;
}
.icon {
background-color: #ff5a00;
border-radius: 50%;
color: #fff;
font-size: 13px;
font-weight: 800;
height: 26px;
line-height: 26px;
opacity: 0;
position: absolute;
right: -10px;
text-align: center;
top: -10px;
width: 26px;
}
.radioButton {
opacity: 0;
display: none;
}
.radioButton:checked ~ .paymentCard {
border-width: 2px;
border-color: #ff5a00;
box-shadow: 0 0 3px rgba(0,0,0,.2);
}
.radioButton:checked ~ .paymentCard .icon { opacity: 1; }
.paymentCard:hover { border-color: #ff5a00; }
.paymentCard img { width: 95px; }
.item {
padding: 24px 0;
border-bottom: 1px dashed #eee;
}
.item:last-of-type {
border-bottom: 0;
}
.itemTitle {
display: block;
font-size: 15px;
font-weight: 600;
margin-bottom: 15px;
}
.itemContainer {
align-items: center;
display: flex;
}
.itemContainer p {
font-size: 13px;
margin: 0;
margin-left: 20px;
width: 365px;
}
.checkboxContainer {
margin: 30px 0;
}
.agreement h2 { padding: 15px 0; }
.agreement p {
font-weight: 300;
font-size: 15px;
margin: 0;
user-select: none;
}
.agreement .link {
color: #ff5a00;
border-bottom: 1px solid #ffceb3;
transition: border-color .3s;
}
.link:hover { border-color: transparent; }
.cartContainer {
padding-left: 30px;
flex: 1;
}
.cartContainer > div {
display: block;
width: 100%;
height: 250px;
background-color: blue;
}
@media screen and (max-width: 1024px) {
.container {
flex-direction: column;
}
.cartContainer {
order: 1;
padding-left: 0;
margin-bottom: 30px;
}
.detail {
order: 2;
}
}
@media screen and (max-width: 768px) {
.itemContainer {
flex-direction: column;
align-items: left;
}
.itemContainer p {
margin-left: 0;
margin-top: 20px;
max-width: 100%;
}
} | src/modules/sales/payment-details/view/styles.css | .container { display: flex; }
.paymentCard {
align-items: center;
background-color: #f9f9f9;
border-radius: 2px;
border: 1px solid #ccc;
box-sizing: border-box;
cursor: pointer;
display: flex;
height: 80px;
justify-content: center;
margin-left: 0;
margin-right: 0;
position: relative;
transition: border-color .3s;
text-align: center;
user-select: none;
vertical-align: middle;
white-space: normal;
width: 160px;
}
.icon {
background-color: #ff5a00;
border-radius: 50%;
color: #fff;
font-size: 13px;
font-weight: 800;
height: 26px;
line-height: 26px;
opacity: 0;
position: absolute;
right: -10px;
text-align: center;
top: -10px;
width: 26px;
}
.radioButton {
opacity: 0;
display: none;
}
.radioButton:checked ~ .paymentCard {
border-width: 2px;
border-color: #ff5a00;
box-shadow: 0 0 3px rgba(0,0,0,.2);
}
.radioButton:checked ~ .paymentCard .icon { opacity: 1; }
.paymentCard:hover { border-color: #ff5a00; }
.paymentCard img { width: 95px; }
.item {
padding: 24px 0;
border-bottom: 1px dashed #eee;
}
.item:last-of-type {
border-bottom: 0;
}
.itemTitle {
display: block;
font-size: 15px;
font-weight: 600;
margin-bottom: 15px;
}
.itemContainer {
align-items: center;
display: flex;
}
.itemContainer p {
font-size: 13px;
margin: 0;
margin-left: 20px;
width: 365px;
}
.checkboxContainer {
margin: 30px 0;
}
.agreement h2 { padding: 15px 0; }
.agreement p {
font-weight: 300;
font-size: 15px;
margin: 0;
user-select: none;
}
.agreement .link {
color: #ff5a00;
border-bottom: 1px solid #ffceb3;
transition: border-color .3s;
}
.link:hover { border-color: transparent; }
.cartContainer {
padding-left: 30px;
flex: 1;
}
.cartContainer > div {
display: block;
width: 100%;
height: 250px;
background-color: blue;
}
@media screen and (max-width: 1024px) {
.container {
flex-direction: column;
}
.cartContainer {
order: 1;
padding-left: 0;
margin-bottom: 30px;
}
.detail {
order: 2;
}
}
@media screen and (max-width: 768px) {
.itemContainer {
flex-direction: column;
align-items: left;
}
.itemContainer p {
margin-left: 0;
margin-top: 20px;
max-width: 100%;
}
} | 0.611614 | 0.088072 |
body {
font-size: .875rem;
}
.feather {
width: 16px;
height: 16px;
vertical-align: text-bottom;
}
/*
* Sidebar
*/
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 100; /* Behind the navbar */
padding: 48px 0 0; /* Height of navbar */
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 48px);
padding-top: .5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
.sidebar-sticky {
position: -webkit-sticky;
position: sticky;
}
}
.sidebar .nav-link {
font-weight: 500;
color: #333;
}
.sidebar .nav-link .feather {
margin-right: 4px;
color: #999;
}
.sidebar .nav-link.active {
color: #007bff;
}
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
color: inherit;
}
.sidebar-heading {
font-size: .75rem;
text-transform: uppercase;
}
/*
* Navbar
*/
.navbar-brand {
padding-top: .75rem;
padding-bottom: .75rem;
font-size: 1rem;
}
.navbar .navbar-toggler {
top: .25rem;
right: 1rem;
}
.navbar .form-control {
padding: .75rem 1rem;
border-width: 0;
border-radius: 0;
}
.form-control-dark {
color: #fff;
background-color: rgba(255, 255, 255, .1);
border-color: rgba(255, 255, 255, .1);
}
.form-control-dark:focus {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: "Font Awesome 5 Free";
font-weight: 900;
padding-left: 5px;
}
a.asc:after {
content: "\f15d";
}
a.desc:after {
content: "\f15e";
}
.sort-numerical a.asc:after {
content: "\f163";
}
.sort-numerical a.desc:after {
content: "\f162";
}
.sort-ordinal a.asc:after {
content: "\f161";
}
.sort-ordinal a.desc:after {
content: "\f160";
}
/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
padding-top: 7px;
color: rgba(255, 255, 255, 0.5);
}
@media(max-width:767px) {
.nav li > form > button.logout {
display:block;
text-align: left;
width: 100%;
padding: 10px 0;
}
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.75);
}
.nav > li > form > button.logout:focus {
outline: none;
} | backend/web/css/site.css | body {
font-size: .875rem;
}
.feather {
width: 16px;
height: 16px;
vertical-align: text-bottom;
}
/*
* Sidebar
*/
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 100; /* Behind the navbar */
padding: 48px 0 0; /* Height of navbar */
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 48px);
padding-top: .5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
.sidebar-sticky {
position: -webkit-sticky;
position: sticky;
}
}
.sidebar .nav-link {
font-weight: 500;
color: #333;
}
.sidebar .nav-link .feather {
margin-right: 4px;
color: #999;
}
.sidebar .nav-link.active {
color: #007bff;
}
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
color: inherit;
}
.sidebar-heading {
font-size: .75rem;
text-transform: uppercase;
}
/*
* Navbar
*/
.navbar-brand {
padding-top: .75rem;
padding-bottom: .75rem;
font-size: 1rem;
}
.navbar .navbar-toggler {
top: .25rem;
right: 1rem;
}
.navbar .form-control {
padding: .75rem 1rem;
border-width: 0;
border-radius: 0;
}
.form-control-dark {
color: #fff;
background-color: rgba(255, 255, 255, .1);
border-color: rgba(255, 255, 255, .1);
}
.form-control-dark:focus {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: "Font Awesome 5 Free";
font-weight: 900;
padding-left: 5px;
}
a.asc:after {
content: "\f15d";
}
a.desc:after {
content: "\f15e";
}
.sort-numerical a.asc:after {
content: "\f163";
}
.sort-numerical a.desc:after {
content: "\f162";
}
.sort-ordinal a.asc:after {
content: "\f161";
}
.sort-ordinal a.desc:after {
content: "\f160";
}
/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
padding-top: 7px;
color: rgba(255, 255, 255, 0.5);
}
@media(max-width:767px) {
.nav li > form > button.logout {
display:block;
text-align: left;
width: 100%;
padding: 10px 0;
}
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
text-decoration: none;
color: rgba(255, 255, 255, 0.75);
}
.nav > li > form > button.logout:focus {
outline: none;
} | 0.50708 | 0.075961 |
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
/* PALETA DE CORES */
:root {
--green: #5ca720;
--darkgreen: #4b8119;
--black: #161616;
--hrGray: #a5a1a1;
--footGray: #f9f9f9;
}
/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
font-size: 62.5%;
color: var(--black);
}
a {
text-decoration: none ;
}
/* CABECALHO */
header {
display: flex;
justify-content: space-between;
align-items: center;
height: 82px;
margin: 0 48px;
}
#logo {
width: 80px;
}
#nav-icons {
width: 80px;
}
/* BANNER */
#banner picture img {
width: 100%;
}
/* */
#sub {
display: flex;
justify-content: space-between;
margin: 12px 48px;
}
#sub .promo {
font-size: 1.4rem;
text-transform: uppercase;
font-weight: 700;
}
#sub .ls {
font-size: 1.2rem;
}
hr {
background-color: var(--hrGray);
}
/* SECAO DE PRODUTOS */
section {
display: flex;
flex-wrap: wrap;
margin: 24px 48px;
justify-content: space-between;
}
section article {
margin-bottom: 32px;
}
section article img {
width: 136px;
height: 136px;
border-radius: 5px;
box-shadow: 2px 2px 5px #adadad;
}
section article img:hover {
transform: scale(110%);
transition: .3s all;
}
section article p, span {
font-size: 1.3rem;
margin-top: 8px;
}
section article span {
color: var(--green);
}
/* RODAPE */
footer {
background-color: var(--footGray);
display: flex;
flex-direction: column;
margin-top: -1px;
}
footer .info, .news{
margin: 8px 48px;
}
.info {
padding-top: 24px;
}
.info p, .news p {
font-size: 1.4rem;
padding-bottom: 8px;
}
.news form{
display: flex;
flex-direction: column;
align-items: center;
max-width: 500px;
}
footer .news form input {
width: 100%;
height: 54px;
font-size: 1.4rem;
border: none;
}
footer .news form input[type="email"] {
padding-left: 8px;
}
footer .news form input[type="submit"] {
background-color: var(--green);
border: 2px solid var(--green);
border-radius: 5px;
color: white;
text-align: center;
font-weight: bold;
font-size: 1.8rem;
margin: 16px 0 24px;
}
/* FINAL DA PÁGINA */
#bottom {
display: flex;
justify-content: space-between;
background-color: var(--footGray);
}
#bottom .social svg, #bottom .pay svg {
width: 24px;
}
.social, .pay {
display: flex;
align-items: center;
margin: 24px 48px;
}
.social svg {
margin-right: 8px;
}
.media:hover {
fill:var(--darkgreen);
transition: .5s all;
}
.pay svg {
margin-left: 8px;
}
/* TABLETS */
@media (min-width: 750px){
#logo {
width: 150px;
}
#nav-icons {
width: 150px;
}
#sub .promo {
font-size: 1.6rem;
}
#sub .ls {
font-size: 1.4rem;
}
section article img {
width: 180px;
height: 180px;
}
section article p, span {
font-size: 1.5rem;
}
footer {
flex-direction: row;
justify-content: space-between;
min-height: 208px;
}
footer .news {
padding-top: 24px;
align-content: center;
margin: 0 48px;
}
footer .news form {
flex-direction: row;
align-content: center;
}
footer .news form input[type="submit"] {
width: 150px;
border-radius: 0 5px 5px 0;
}
footer .news form input[type="email"] {
transform: translateY(-4px);
}
#bottom .social svg, #bottom .pay svg {
width: 50px;
}
.pay svg {
margin-left: 16px;
}
.social svg {
margin-right: 16px;
}
}
/* NOTEBOOK PEQUENO */
@media (min-width: 1000px) {
section article img{
width: 240px;
height: 240px;
}
section article p, span {
font-size: 2rem;
}
footer .news form input[type="submit"]:hover {
background-color: var(--darkgreen);
border-color: var(--darkgreen);
transition: .3s all;
}
footer .news form input[type="email"] {
min-width: 400px;
}
.info p, .news p {
font-size: 2rem;
padding-bottom: 8px;
}
footer .news form input {
font-size: 2rem;
}
#bottom .social svg, #bottom .pay svg {
width: 60px;
}
#logo {
width: 150px;
}
#nav-icons {
width: 150px;
}
#sub .promo {
font-size: 2rem;
}
#sub .ls {
font-size: 1.8rem;
}
.pay svg {
margin-left: 24px;
}
.social svg {
margin-right: 24px;
}
}
/* NOTEBOOK GRANDE */
@media (min-width:1400px) {
* {
margin: 0 !important;
}
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 128px !important;
}
section article img {
width: 304px;
height: 304px;
}
section article p, span {
font-size: 2.2rem;
padding-left: 8px;
}
section article {
margin: 0 0 48px !important;
}
footer .news form input[type="email"] {
transform: translateY(0);
}
section article p, span {
margin-top: 8px !important;
}
}
/* TESTE COM MEU MONITOR */
@media (min-width: 1580px) {
.info p, .news p {
font-size: 2.2rem;
}
* {
margin: 0 !important;
}
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 208px !important;
}
section article {
margin: 0 0 48px !important;
}
.social svg {
margin-right: 48px;
}
}
/* TELAS FULL HD*/
@media (min-width: 1900px) {
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 288px !important;
}
section article img{
width: 344px;
height: 344px;
}
section article p, span {
font-size: 2.6rem;
}
#bottom .social svg, #bottom .pay svg {
width: 80px;
}
#logo {
height: 400px;
width: 250px;
}
#nav-icons {
height: 400px;
width: 250px;
}
#sub .promo {
font-size: 2.8rem;
}
#sub .ls {
font-size: 2.6rem;
}
.pay svg {
width: 64px;
height: 100px;
}
.social svg {
width: 64px;
height: 100px;
}
.info p, .news p {
font-size: 2.6rem;
}
}
/* TELAS 4k*/
@media (min-width: 2500px) {
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 296px !important;
}
section article img{
width: 496px;
height: 496px;
}
section article p, span {
font-size: 3.8rem;
}
#logo {
height: 400px;
width: 250px;
}
#nav-icons {
height: 400px;
width: 250px;
}
#sub .promo {
font-size: 3.6rem;
}
#sub .ls {
font-size: 3.4rem;
}
.info p, .news p {
font-size: 4rem;
}
footer form input[type="email"], footer form input[type="submit"] {
height: 72px;
}
#bottom .social svg, #bottom .pay svg {
width: 150px;
}
}
/* TELA MOBILE PEQUENA */
@media only screen and (max-width: 380px) {
section article img{
width: 200px;
height: 200px;
}
section {
justify-content: center !important;
}
section article {
text-align: center;
}
section article p, span {
font-size: 1.8rem;
}
#bottom .social svg, #bottom .pay svg {
width: 24px;
}
} | assets/css/style.css | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
/* PALETA DE CORES */
:root {
--green: #5ca720;
--darkgreen: #4b8119;
--black: #161616;
--hrGray: #a5a1a1;
--footGray: #f9f9f9;
}
/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
font-size: 62.5%;
color: var(--black);
}
a {
text-decoration: none ;
}
/* CABECALHO */
header {
display: flex;
justify-content: space-between;
align-items: center;
height: 82px;
margin: 0 48px;
}
#logo {
width: 80px;
}
#nav-icons {
width: 80px;
}
/* BANNER */
#banner picture img {
width: 100%;
}
/* */
#sub {
display: flex;
justify-content: space-between;
margin: 12px 48px;
}
#sub .promo {
font-size: 1.4rem;
text-transform: uppercase;
font-weight: 700;
}
#sub .ls {
font-size: 1.2rem;
}
hr {
background-color: var(--hrGray);
}
/* SECAO DE PRODUTOS */
section {
display: flex;
flex-wrap: wrap;
margin: 24px 48px;
justify-content: space-between;
}
section article {
margin-bottom: 32px;
}
section article img {
width: 136px;
height: 136px;
border-radius: 5px;
box-shadow: 2px 2px 5px #adadad;
}
section article img:hover {
transform: scale(110%);
transition: .3s all;
}
section article p, span {
font-size: 1.3rem;
margin-top: 8px;
}
section article span {
color: var(--green);
}
/* RODAPE */
footer {
background-color: var(--footGray);
display: flex;
flex-direction: column;
margin-top: -1px;
}
footer .info, .news{
margin: 8px 48px;
}
.info {
padding-top: 24px;
}
.info p, .news p {
font-size: 1.4rem;
padding-bottom: 8px;
}
.news form{
display: flex;
flex-direction: column;
align-items: center;
max-width: 500px;
}
footer .news form input {
width: 100%;
height: 54px;
font-size: 1.4rem;
border: none;
}
footer .news form input[type="email"] {
padding-left: 8px;
}
footer .news form input[type="submit"] {
background-color: var(--green);
border: 2px solid var(--green);
border-radius: 5px;
color: white;
text-align: center;
font-weight: bold;
font-size: 1.8rem;
margin: 16px 0 24px;
}
/* FINAL DA PÁGINA */
#bottom {
display: flex;
justify-content: space-between;
background-color: var(--footGray);
}
#bottom .social svg, #bottom .pay svg {
width: 24px;
}
.social, .pay {
display: flex;
align-items: center;
margin: 24px 48px;
}
.social svg {
margin-right: 8px;
}
.media:hover {
fill:var(--darkgreen);
transition: .5s all;
}
.pay svg {
margin-left: 8px;
}
/* TABLETS */
@media (min-width: 750px){
#logo {
width: 150px;
}
#nav-icons {
width: 150px;
}
#sub .promo {
font-size: 1.6rem;
}
#sub .ls {
font-size: 1.4rem;
}
section article img {
width: 180px;
height: 180px;
}
section article p, span {
font-size: 1.5rem;
}
footer {
flex-direction: row;
justify-content: space-between;
min-height: 208px;
}
footer .news {
padding-top: 24px;
align-content: center;
margin: 0 48px;
}
footer .news form {
flex-direction: row;
align-content: center;
}
footer .news form input[type="submit"] {
width: 150px;
border-radius: 0 5px 5px 0;
}
footer .news form input[type="email"] {
transform: translateY(-4px);
}
#bottom .social svg, #bottom .pay svg {
width: 50px;
}
.pay svg {
margin-left: 16px;
}
.social svg {
margin-right: 16px;
}
}
/* NOTEBOOK PEQUENO */
@media (min-width: 1000px) {
section article img{
width: 240px;
height: 240px;
}
section article p, span {
font-size: 2rem;
}
footer .news form input[type="submit"]:hover {
background-color: var(--darkgreen);
border-color: var(--darkgreen);
transition: .3s all;
}
footer .news form input[type="email"] {
min-width: 400px;
}
.info p, .news p {
font-size: 2rem;
padding-bottom: 8px;
}
footer .news form input {
font-size: 2rem;
}
#bottom .social svg, #bottom .pay svg {
width: 60px;
}
#logo {
width: 150px;
}
#nav-icons {
width: 150px;
}
#sub .promo {
font-size: 2rem;
}
#sub .ls {
font-size: 1.8rem;
}
.pay svg {
margin-left: 24px;
}
.social svg {
margin-right: 24px;
}
}
/* NOTEBOOK GRANDE */
@media (min-width:1400px) {
* {
margin: 0 !important;
}
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 128px !important;
}
section article img {
width: 304px;
height: 304px;
}
section article p, span {
font-size: 2.2rem;
padding-left: 8px;
}
section article {
margin: 0 0 48px !important;
}
footer .news form input[type="email"] {
transform: translateY(0);
}
section article p, span {
margin-top: 8px !important;
}
}
/* TESTE COM MEU MONITOR */
@media (min-width: 1580px) {
.info p, .news p {
font-size: 2.2rem;
}
* {
margin: 0 !important;
}
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 208px !important;
}
section article {
margin: 0 0 48px !important;
}
.social svg {
margin-right: 48px;
}
}
/* TELAS FULL HD*/
@media (min-width: 1900px) {
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 288px !important;
}
section article img{
width: 344px;
height: 344px;
}
section article p, span {
font-size: 2.6rem;
}
#bottom .social svg, #bottom .pay svg {
width: 80px;
}
#logo {
height: 400px;
width: 250px;
}
#nav-icons {
height: 400px;
width: 250px;
}
#sub .promo {
font-size: 2.8rem;
}
#sub .ls {
font-size: 2.6rem;
}
.pay svg {
width: 64px;
height: 100px;
}
.social svg {
width: 64px;
height: 100px;
}
.info p, .news p {
font-size: 2.6rem;
}
}
/* TELAS 4k*/
@media (min-width: 2500px) {
header, section, #sub, footer .info, footer .news, #bottom .social, #bottom .pay {
margin: 24px 296px !important;
}
section article img{
width: 496px;
height: 496px;
}
section article p, span {
font-size: 3.8rem;
}
#logo {
height: 400px;
width: 250px;
}
#nav-icons {
height: 400px;
width: 250px;
}
#sub .promo {
font-size: 3.6rem;
}
#sub .ls {
font-size: 3.4rem;
}
.info p, .news p {
font-size: 4rem;
}
footer form input[type="email"], footer form input[type="submit"] {
height: 72px;
}
#bottom .social svg, #bottom .pay svg {
width: 150px;
}
}
/* TELA MOBILE PEQUENA */
@media only screen and (max-width: 380px) {
section article img{
width: 200px;
height: 200px;
}
section {
justify-content: center !important;
}
section article {
text-align: center;
}
section article p, span {
font-size: 1.8rem;
}
#bottom .social svg, #bottom .pay svg {
width: 24px;
}
} | 0.229794 | 0.081813 |
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 400;
src: url('fira-sans/fira-sans-v5-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Fira Sans'), local('FiraSans-Regular'),
url('fira-sans/fira-sans-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-regular.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-italic - latin */
@font-face {
font-family: 'Fira Sans';
font-style: italic;
font-weight: 400;
src: url('fira-sans/fira-sans-v5-latin-italic.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Italic'), local('FiraSans-Italic'),
url('fira-sans/fira-sans-v5-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-italic.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-italic.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-700 - latin */
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 700;
src: url('fira-sans/fira-sans-v5-latin-700.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Bold'), local('FiraSans-Bold'),
url('fira-sans/fira-sans-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-700.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-700italic - latin */
@font-face {
font-family: 'Fira Sans';
font-style: italic;
font-weight: 700;
src: url('fira-sans/fira-sans-v5-latin-700italic.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Bold Italic'), local('FiraSans-BoldItalic'),
url('fira-sans/fira-sans-v5-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-700italic.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* merriweather-regular - latin */
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 400;
src: url('merriweather/merriweather-v8-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Merriweather'),
url('merriweather/merriweather-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-regular.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-italic - latin */
@font-face {
font-family: 'Merriweather';
font-style: italic;
font-weight: 400;
src: url('merriweather/merriweather-v8-latin-italic.eot'); /* IE9 Compat Modes */
src: local('Merriweather Italic'), local('Merriweather-Italic'),
url('merriweather/merriweather-v8-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-italic.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-italic.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-700 - latin */
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 700;
src: url('merriweather/merriweather-v8-latin-700.eot'); /* IE9 Compat Modes */
src: local('Merriweather Bold'), local('Merriweather-Bold'),
url('merriweather/merriweather-v8-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-700.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-700.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-700italic - latin */
@font-face {
font-family: 'Merriweather';
font-style: italic;
font-weight: 700;
src: url('merriweather/merriweather-v8-latin-700italic.eot'); /* IE9 Compat Modes */
src: local('Merriweather Bold Italic'), local('Merriweather-BoldItalic'),
url('merriweather/merriweather-v8-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-700italic.svg#Merriweather') format('svg'); /* Legacy iOS */
} | fonts/custom-fonts.css | @font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 400;
src: url('fira-sans/fira-sans-v5-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Fira Sans'), local('FiraSans-Regular'),
url('fira-sans/fira-sans-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-regular.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-italic - latin */
@font-face {
font-family: 'Fira Sans';
font-style: italic;
font-weight: 400;
src: url('fira-sans/fira-sans-v5-latin-italic.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Italic'), local('FiraSans-Italic'),
url('fira-sans/fira-sans-v5-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-italic.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-italic.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-700 - latin */
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 700;
src: url('fira-sans/fira-sans-v5-latin-700.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Bold'), local('FiraSans-Bold'),
url('fira-sans/fira-sans-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-700.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* fira-sans-700italic - latin */
@font-face {
font-family: 'Fira Sans';
font-style: italic;
font-weight: 700;
src: url('fira-sans/fira-sans-v5-latin-700italic.eot'); /* IE9 Compat Modes */
src: local('Fira Sans Bold Italic'), local('FiraSans-BoldItalic'),
url('fira-sans/fira-sans-v5-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fira-sans/fira-sans-v5-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('fira-sans/fira-sans-v5-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('fira-sans/fira-sans-v5-latin-700italic.svg#FiraSans') format('svg'); /* Legacy iOS */
}
/* merriweather-regular - latin */
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 400;
src: url('merriweather/merriweather-v8-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Merriweather'),
url('merriweather/merriweather-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-regular.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-italic - latin */
@font-face {
font-family: 'Merriweather';
font-style: italic;
font-weight: 400;
src: url('merriweather/merriweather-v8-latin-italic.eot'); /* IE9 Compat Modes */
src: local('Merriweather Italic'), local('Merriweather-Italic'),
url('merriweather/merriweather-v8-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-italic.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-italic.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-700 - latin */
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 700;
src: url('merriweather/merriweather-v8-latin-700.eot'); /* IE9 Compat Modes */
src: local('Merriweather Bold'), local('Merriweather-Bold'),
url('merriweather/merriweather-v8-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-700.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-700.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-700italic - latin */
@font-face {
font-family: 'Merriweather';
font-style: italic;
font-weight: 700;
src: url('merriweather/merriweather-v8-latin-700italic.eot'); /* IE9 Compat Modes */
src: local('Merriweather Bold Italic'), local('Merriweather-BoldItalic'),
url('merriweather/merriweather-v8-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('merriweather/merriweather-v8-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('merriweather/merriweather-v8-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('merriweather/merriweather-v8-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('merriweather/merriweather-v8-latin-700italic.svg#Merriweather') format('svg'); /* Legacy iOS */
} | 0.23634 | 0.079782 |
:root {
--bg-color: #2e3440; /*change background*/
--text-color: #d8dee9; /*change text color*/
--md-char-color: #bf616a; /*change color of meta characetrs like `*` in markdown */
--meta-content-color: #b48ead; /*change color of meta contents like image text or link address in markdown */
--primary-color: #8fbcbb; /* color of primary buttons */
--primary-btn-border-color: #88c0d0;
--primary-btn-text-color: #d8dee9;
--window-border: 1px solid #eee; /*border for sidebar, etc*/
--active-file-bg-color: #eee; /*background color if list item in file tree or file list*/
--active-file-text-color: inherit;
--active-file-border-color: #777;
--side-bar-bg-color: var(--bg-color); /*change background of sidebar*/
--item-hover-bg-color: #4c566a; /*background of control items when hover, like menu in sidebar*/
--item-hover-text-color: inherit;
--monospace: monospace; /*monospace font for codes, fences*/
}
html {
font-size: 16px;
font-family: 'iA Writer Mono S', 'Cascadia Mono', 'Fira Code', monospace;
-webkit-font-smoothing: auto;
}
pre.md-meta-block {
background-color: var(--item-hover-bg-color);
}
.cm-header,
.cm-property {
color: #bf616a !important;
}
.cm-atom,
.cm-number {
color: #d8dee9 !important;
}
.CodeMirror-wrap {
background-color: #3b4252;
}
.cm-s-inner .cm-property {
color: var(--text-color);
}
a,
.cm-link {
color: #8fbcbb !important;
}
.cm-comment,
.cm-code {
color: #a3be8c !important;
}
.cm-tag {
color: #d08770 !important;
}
.cm-s-inner .cm-meta,
.cm-s-inner .cm-qualifier {
color: #b48ead !important;
}
.cm-s-inner .cm-attribute {
color: #d08770 !important;
}
.cm-s-inner .cm-builtin,
.cm-s-inner .cm-keyword {
color: #ebcb8b !important;
}
.cm-s-inner .cm-def,
.cm-s-inner .cm-variable,
.cm-s-inner .cm-variable-2,
.cm-s-inner .cm-variable-3 {
color: #81a1c1 !important;
}
.cm-s-inner .cm-string,
.cm-s-inner .cm-string-2 {
color: #bf616a !important;
}
.cm-s-inner .cm-operator {
color: var(--text-color) !important;
}
.modal-content {
border-color: #4c566a;
}
input {
border: 1px solid #4c566a;
}
.megamenu-content {
color: #4c566a;
}
.CodeMirror-activeline-background {
background-color: #4c566a !important;
}
.cm-s-inner .cm-bracket {
color: #81a1c1 !important;
}
.cm-s-inner .cm-attribute,
.cm-s-inner .cm-header,
.cm-s-inner.cm-header,
.cm-s-inner .cm-link,
.cm-s-inner.cm-link {
color: #5e81ac !important;
}
.cm-positive,
div.CodeMirror span.CodeMirror-matchingbracket,
.cm-s-inner .cm-quote,
.cm-s-inner.cm-quote {
color: #8fbcbb;
}
.cm-s-inner .cm-hr,
.cm-s-inner.cm-hr {
color: #4c566a;
}
.cm-negative,
.cm-error,
.cm-invalidchar,
div.CodeMirror span.CodeMirror-nonmatchingbracket {
color: #bf616a;
} | nord.css | :root {
--bg-color: #2e3440; /*change background*/
--text-color: #d8dee9; /*change text color*/
--md-char-color: #bf616a; /*change color of meta characetrs like `*` in markdown */
--meta-content-color: #b48ead; /*change color of meta contents like image text or link address in markdown */
--primary-color: #8fbcbb; /* color of primary buttons */
--primary-btn-border-color: #88c0d0;
--primary-btn-text-color: #d8dee9;
--window-border: 1px solid #eee; /*border for sidebar, etc*/
--active-file-bg-color: #eee; /*background color if list item in file tree or file list*/
--active-file-text-color: inherit;
--active-file-border-color: #777;
--side-bar-bg-color: var(--bg-color); /*change background of sidebar*/
--item-hover-bg-color: #4c566a; /*background of control items when hover, like menu in sidebar*/
--item-hover-text-color: inherit;
--monospace: monospace; /*monospace font for codes, fences*/
}
html {
font-size: 16px;
font-family: 'iA Writer Mono S', 'Cascadia Mono', 'Fira Code', monospace;
-webkit-font-smoothing: auto;
}
pre.md-meta-block {
background-color: var(--item-hover-bg-color);
}
.cm-header,
.cm-property {
color: #bf616a !important;
}
.cm-atom,
.cm-number {
color: #d8dee9 !important;
}
.CodeMirror-wrap {
background-color: #3b4252;
}
.cm-s-inner .cm-property {
color: var(--text-color);
}
a,
.cm-link {
color: #8fbcbb !important;
}
.cm-comment,
.cm-code {
color: #a3be8c !important;
}
.cm-tag {
color: #d08770 !important;
}
.cm-s-inner .cm-meta,
.cm-s-inner .cm-qualifier {
color: #b48ead !important;
}
.cm-s-inner .cm-attribute {
color: #d08770 !important;
}
.cm-s-inner .cm-builtin,
.cm-s-inner .cm-keyword {
color: #ebcb8b !important;
}
.cm-s-inner .cm-def,
.cm-s-inner .cm-variable,
.cm-s-inner .cm-variable-2,
.cm-s-inner .cm-variable-3 {
color: #81a1c1 !important;
}
.cm-s-inner .cm-string,
.cm-s-inner .cm-string-2 {
color: #bf616a !important;
}
.cm-s-inner .cm-operator {
color: var(--text-color) !important;
}
.modal-content {
border-color: #4c566a;
}
input {
border: 1px solid #4c566a;
}
.megamenu-content {
color: #4c566a;
}
.CodeMirror-activeline-background {
background-color: #4c566a !important;
}
.cm-s-inner .cm-bracket {
color: #81a1c1 !important;
}
.cm-s-inner .cm-attribute,
.cm-s-inner .cm-header,
.cm-s-inner.cm-header,
.cm-s-inner .cm-link,
.cm-s-inner.cm-link {
color: #5e81ac !important;
}
.cm-positive,
div.CodeMirror span.CodeMirror-matchingbracket,
.cm-s-inner .cm-quote,
.cm-s-inner.cm-quote {
color: #8fbcbb;
}
.cm-s-inner .cm-hr,
.cm-s-inner.cm-hr {
color: #4c566a;
}
.cm-negative,
.cm-error,
.cm-invalidchar,
div.CodeMirror span.CodeMirror-nonmatchingbracket {
color: #bf616a;
} | 0.494385 | 0.116739 |
body{
background:url("/img/fondoEdificioBLUE2.png") no-repeat fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.logo22{
width: 28%;
}
.text-small{
font-family: Roboto;
font-style: normal;
font-weight: 300;
font-size: 35px;
line-height: 41px;
text-align: center;
color: white;
width: 50%;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
}
.div_Iconos{
margin-top: 15%;
width: 15%;
display: flex;
margin-left: auto;
margin-right: auto;
justify-content: space-between;
}
.div_Iconos img{
width: 45px;
}
.div_Iconos a{
text-decoration: none;
}
@media(min-width:1180px){
.div_Iconos{
margin-top: 8%;
}
}
@media(min-width:1482px){
.div_Iconos{
margin-top: 2%;
}
}
@media(min-width:1500px){
.text-small{
margin-top: 5%;
}
.div_Iconos{
margin-top: 8%;
}
}
@media(min-width:1800px){
.div_Iconos{
margin-top: 2%;
}
}
@media(max-width:1050px){
.div_Iconos{
width: 20%;
margin-top: 20%;
}
.text-small{
width: 65%;
}
}
@media(max-width:950px){
.text-small{
margin-top: 15%;
font-size: 30px;
}
.div_Iconos{
margin-top: 15%;
}
.div_Iconos img{
width: 40px;
}
}
@media(max-width:850px){
.div_Iconos{
width: 25%;
margin-top: 25%;
}
}
@media(max-width:700px){
.text-small{
margin-top: 25%;
font-size: 25px;
}
.logo22{
width: 35%;
}
}
@media(max-width:600px){
.text-small{
width: 75%;
}
.div_Iconos{
width: 35%;
margin-top: 32%;
}
}
@media(max-width:500px){
.logo22{
width: 45%;
}
.text-small{
width: 100%;
}
.text-small{
margin-top: 30%;
font-size: 20px;
}
.div_Iconos{
width: 35%;
margin-top: 40%;
}
}
@media(max-width:400px){
.div_Iconos{
width: 45%;
margin-top: 45%;
}
.text-small{
margin-top: 45%;
font-size: 20px;
}
} | public/css/veintidos.css | body{
background:url("/img/fondoEdificioBLUE2.png") no-repeat fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.logo22{
width: 28%;
}
.text-small{
font-family: Roboto;
font-style: normal;
font-weight: 300;
font-size: 35px;
line-height: 41px;
text-align: center;
color: white;
width: 50%;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
}
.div_Iconos{
margin-top: 15%;
width: 15%;
display: flex;
margin-left: auto;
margin-right: auto;
justify-content: space-between;
}
.div_Iconos img{
width: 45px;
}
.div_Iconos a{
text-decoration: none;
}
@media(min-width:1180px){
.div_Iconos{
margin-top: 8%;
}
}
@media(min-width:1482px){
.div_Iconos{
margin-top: 2%;
}
}
@media(min-width:1500px){
.text-small{
margin-top: 5%;
}
.div_Iconos{
margin-top: 8%;
}
}
@media(min-width:1800px){
.div_Iconos{
margin-top: 2%;
}
}
@media(max-width:1050px){
.div_Iconos{
width: 20%;
margin-top: 20%;
}
.text-small{
width: 65%;
}
}
@media(max-width:950px){
.text-small{
margin-top: 15%;
font-size: 30px;
}
.div_Iconos{
margin-top: 15%;
}
.div_Iconos img{
width: 40px;
}
}
@media(max-width:850px){
.div_Iconos{
width: 25%;
margin-top: 25%;
}
}
@media(max-width:700px){
.text-small{
margin-top: 25%;
font-size: 25px;
}
.logo22{
width: 35%;
}
}
@media(max-width:600px){
.text-small{
width: 75%;
}
.div_Iconos{
width: 35%;
margin-top: 32%;
}
}
@media(max-width:500px){
.logo22{
width: 45%;
}
.text-small{
width: 100%;
}
.text-small{
margin-top: 30%;
font-size: 20px;
}
.div_Iconos{
width: 35%;
margin-top: 40%;
}
}
@media(max-width:400px){
.div_Iconos{
width: 45%;
margin-top: 45%;
}
.text-small{
margin-top: 45%;
font-size: 20px;
}
} | 0.223292 | 0.073297 |
#products{
padding-top:30px;
padding-bottom:30px;
background-color: #F8F8F8;
}
.products_1{
text-align:center;
border-bottom: 1px solid #e0e0e0;
padding-bottom:15px;
}
/********************* products_end ****************/
/********************* choose ****************/
#choose{
padding-top:50px;
padding-bottom:50px;
}
.choose_2 {
text-align: center;
padding: 20px;
border: 1px solid rgb(197, 28, 10);
border-radius: 7px;
box-shadow: rgba(232, 8, 8, 0.15) 0px 4px 4px 0px;
}
.choose_2 p{
padding-top:10px;
}
/********************* choose_end ****************/
/********************* natural ****************/
#natural{
padding-top:10px;
padding-bottom:50px;
}
.natural_1{
text-align:center;
padding-bottom:10px;
}
.natural_2{
text-align:center;
}
.natural_2 ul {
padding-top:15px;
padding-bottom:10px;
}
.natural_2 li i {
font-size:20px;
color: #c51c0a;
}
.natural_2 li i:hover {
color: rgb(170, 148, 39);
}
.natural_2 h4 {
font-weight:bold;
padding-bottom:5px;
}
.natural_2 p {
padding-bottom:0px;
}
.natural_2 {
padding: 25px;
border: 1px solid rgb(197, 28, 10);
border-radius: 7px;
box-shadow: rgba(204, 14, 14, 0.15) 0px 4px 4px 0px;
}
/********************* natural_end ****************/
/********************* people ****************/
#people{
padding-top:10px;
padding-bottom:50px;
}
#people .ih-item {
position: relative;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
#people .ih-item * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#people .ih-item a {
color: #333;
}
#people .ih-item a:hover {
text-decoration: none;
}
#people .ih-item img {
width: 100%;
height: 100%;
}
#people .ih-item.square {
position: relative;
width: 650px;
height: 587px;
border: 8px solid #fff;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#people .ih-item.square .info {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#people .ih-item.square.effect14.colored .info {
background: #1a4a72;
}
#people .ih-item.square.effect14.colored .info h3 {
background: rgba(12, 34, 52, 0.6);
}
#people .ih-item.square.effect14 .img {
opacity: 1;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
#people .ih-item.square.effect14 .info {
background: #333333;
visibility: hidden;
opacity: 0;
pointer-events: none;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: all 0.35s ease 0.2s;
-moz-transition: all 0.35s ease 0.2s;
transition: all 0.35s ease 0.2s;
}
#people .ih-item.square.effect14 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111111;
margin: 30px 0 0 0;
}
#people .ih-item.square.effect14 .info p {
font-style: italic;
font-size: 25px;
position: relative;
color: #bbb;
padding: 20px 20px 20px;
text-align: center;
}
#people .ih-item.square.effect14 a:hover .img {
opacity: 0;
pointer-events: none;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
transform: scale(0.5);
}
#people .ih-item.square.effect14 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
#people .ih-item.square.effect14.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
#people .ih-item.square.effect14.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
/********************* people_end ****************/
/********************* products_main ****************/
#products_main{
padding-top:30px;
padding-bottom:30px;
box-shadow: rgba(232, 8, 8, 0.15) 0px 4px 4px 0px;
}
.products_main_1 h2{
color: #c51c0a;
font-weight: bold;
padding-bottom:16px;
}
/********************* products_main_end ****************/
@media screen and (max-width : 767px){
.products_1 h2{
font-size:30px;
}
#products_main {
text-align: center;
}
.products_main_1 h2 {
font-size: 36px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-top: 20px;
padding-bottom: 10px;
}
.natural_1 h2{
font-size:30px;
}
.natural_2 {
margin-bottom: 10px;
}
#natural {
padding-bottom: 0px;
}
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 9px;
}
#people {
padding-bottom: 20px;
}
}
@media (min-width:470px) and (max-width:767px) {
}
@media (min-width:768px) and (max-width:960px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 13px;
}
.products_main_1 h2 {
padding-bottom: 10px;
font-size: 25px;
}
.products_main_1 p {
font-size: 16px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-bottom: 10px;
}
.natural_2 {
margin-bottom: 10px;
}
}
@media (min-width:961px) and (max-width:1200px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 13px;
}
.products_main_1 h2 {
padding-bottom: 10px;
font-size: 25px;
}
.products_main_1 p {
font-size: 16px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-bottom: 10px;
}
.natural_2 {
margin-bottom: 10px;
}
}
@media (min-width:1201px) and (max-width:1320px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 24px;
}
} | public/home/css/products-details.css | #products{
padding-top:30px;
padding-bottom:30px;
background-color: #F8F8F8;
}
.products_1{
text-align:center;
border-bottom: 1px solid #e0e0e0;
padding-bottom:15px;
}
/********************* products_end ****************/
/********************* choose ****************/
#choose{
padding-top:50px;
padding-bottom:50px;
}
.choose_2 {
text-align: center;
padding: 20px;
border: 1px solid rgb(197, 28, 10);
border-radius: 7px;
box-shadow: rgba(232, 8, 8, 0.15) 0px 4px 4px 0px;
}
.choose_2 p{
padding-top:10px;
}
/********************* choose_end ****************/
/********************* natural ****************/
#natural{
padding-top:10px;
padding-bottom:50px;
}
.natural_1{
text-align:center;
padding-bottom:10px;
}
.natural_2{
text-align:center;
}
.natural_2 ul {
padding-top:15px;
padding-bottom:10px;
}
.natural_2 li i {
font-size:20px;
color: #c51c0a;
}
.natural_2 li i:hover {
color: rgb(170, 148, 39);
}
.natural_2 h4 {
font-weight:bold;
padding-bottom:5px;
}
.natural_2 p {
padding-bottom:0px;
}
.natural_2 {
padding: 25px;
border: 1px solid rgb(197, 28, 10);
border-radius: 7px;
box-shadow: rgba(204, 14, 14, 0.15) 0px 4px 4px 0px;
}
/********************* natural_end ****************/
/********************* people ****************/
#people{
padding-top:10px;
padding-bottom:50px;
}
#people .ih-item {
position: relative;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
#people .ih-item * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#people .ih-item a {
color: #333;
}
#people .ih-item a:hover {
text-decoration: none;
}
#people .ih-item img {
width: 100%;
height: 100%;
}
#people .ih-item.square {
position: relative;
width: 650px;
height: 587px;
border: 8px solid #fff;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#people .ih-item.square .info {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#people .ih-item.square.effect14.colored .info {
background: #1a4a72;
}
#people .ih-item.square.effect14.colored .info h3 {
background: rgba(12, 34, 52, 0.6);
}
#people .ih-item.square.effect14 .img {
opacity: 1;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
#people .ih-item.square.effect14 .info {
background: #333333;
visibility: hidden;
opacity: 0;
pointer-events: none;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: all 0.35s ease 0.2s;
-moz-transition: all 0.35s ease 0.2s;
transition: all 0.35s ease 0.2s;
}
#people .ih-item.square.effect14 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111111;
margin: 30px 0 0 0;
}
#people .ih-item.square.effect14 .info p {
font-style: italic;
font-size: 25px;
position: relative;
color: #bbb;
padding: 20px 20px 20px;
text-align: center;
}
#people .ih-item.square.effect14 a:hover .img {
opacity: 0;
pointer-events: none;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
transform: scale(0.5);
}
#people .ih-item.square.effect14 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
#people .ih-item.square.effect14.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
#people .ih-item.square.effect14.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
/********************* people_end ****************/
/********************* products_main ****************/
#products_main{
padding-top:30px;
padding-bottom:30px;
box-shadow: rgba(232, 8, 8, 0.15) 0px 4px 4px 0px;
}
.products_main_1 h2{
color: #c51c0a;
font-weight: bold;
padding-bottom:16px;
}
/********************* products_main_end ****************/
@media screen and (max-width : 767px){
.products_1 h2{
font-size:30px;
}
#products_main {
text-align: center;
}
.products_main_1 h2 {
font-size: 36px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-top: 20px;
padding-bottom: 10px;
}
.natural_1 h2{
font-size:30px;
}
.natural_2 {
margin-bottom: 10px;
}
#natural {
padding-bottom: 0px;
}
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 9px;
}
#people {
padding-bottom: 20px;
}
}
@media (min-width:470px) and (max-width:767px) {
}
@media (min-width:768px) and (max-width:960px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 13px;
}
.products_main_1 h2 {
padding-bottom: 10px;
font-size: 25px;
}
.products_main_1 p {
font-size: 16px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-bottom: 10px;
}
.natural_2 {
margin-bottom: 10px;
}
}
@media (min-width:961px) and (max-width:1200px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 13px;
}
.products_main_1 h2 {
padding-bottom: 10px;
font-size: 25px;
}
.products_main_1 p {
font-size: 16px;
}
.choose_2 {
margin-bottom: 10px;
}
#choose {
padding-bottom: 10px;
}
.natural_2 {
margin-bottom: 10px;
}
}
@media (min-width:1201px) and (max-width:1320px) {
#people .ih-item.square {
width: 100%;
height: 100%;
}
#people .ih-item.square.effect14 .info p {
font-size: 24px;
}
} | 0.183557 | 0.134009 |
:root {
/* colour-1 */
--colour-1-100: hsl(100, 100%, 50%);
--colour-1-200: hsl(100, 100%, 50%);
--colour-1-300: hsl(100, 100%, 50%);
--colour-1-400: hsl(100, 100%, 50%);
--colour-1-500: hsl(100, 100%, 50%);
--colour-1-600: hsl(100, 100%, 50%);
--colour-1-700: hsl(100, 100%, 50%);
--colour-1-800: hsl(100, 100%, 50%);
--colour-1-900: hsl(100, 100%, 50%);
/* colour-2 */
--colour-2-100: hsl(100, 100%, 50%);
--colour-2-200: hsl(100, 100%, 50%);
--colour-2-300: hsl(100, 100%, 50%);
--colour-2-400: hsl(100, 100%, 50%);
--colour-2-500: hsl(100, 100%, 50%);
--colour-2-600: hsl(100, 100%, 50%);
--colour-2-700: hsl(100, 100%, 50%);
--colour-2-800: hsl(100, 100%, 50%);
--colour-2-900: hsl(100, 100%, 50%);
/* colour-3 */
--colour-3-100: hsl(100, 100%, 50%);
--colour-3-200: hsl(100, 100%, 50%);
--colour-3-300: hsl(100, 100%, 50%);
--colour-3-400: hsl(100, 100%, 50%);
--colour-3-500: hsl(100, 100%, 50%);
--colour-3-600: hsl(100, 100%, 50%);
--colour-3-700: hsl(100, 100%, 50%);
--colour-3-800: hsl(100, 100%, 50%);
--colour-3-900: hsl(100, 100%, 50%);
/* colour-4 */
--colour-4-100: hsl(100, 100%, 50%);
--colour-4-200: hsl(100, 100%, 50%);
--colour-4-300: hsl(100, 100%, 50%);
--colour-4-400: hsl(100, 100%, 50%);
--colour-4-500: hsl(100, 100%, 50%);
--colour-4-600: hsl(100, 100%, 50%);
--colour-4-700: hsl(100, 100%, 50%);
--colour-4-800: hsl(100, 100%, 50%);
--colour-4-900: hsl(100, 100%, 50%);
/* colour-5 */
--colour-5-100: hsl(100, 100%, 50%);
--colour-5-200: hsl(100, 100%, 50%);
--colour-5-300: hsl(100, 100%, 50%);
--colour-5-400: hsl(100, 100%, 50%);
--colour-5-500: hsl(100, 100%, 50%);
--colour-5-600: hsl(100, 100%, 50%);
--colour-5-700: hsl(100, 100%, 50%);
--colour-5-800: hsl(100, 100%, 50%);
--colour-5-900: hsl(100, 100%, 50%);
/* grey */
--grey-100: hsl(100, 100%, 50%);
--grey-200: hsl(100, 100%, 50%);
--grey-300: hsl(100, 100%, 50%);
--grey-400: hsl(100, 100%, 50%);
--grey-500: hsl(100, 100%, 50%);
--grey-600: hsl(100, 100%, 50%);
--grey-700: hsl(100, 100%, 50%);
--grey-800: hsl(100, 100%, 50%);
--grey-900: hsl(100, 100%, 50%);
} | src/css/config/colours.css | :root {
/* colour-1 */
--colour-1-100: hsl(100, 100%, 50%);
--colour-1-200: hsl(100, 100%, 50%);
--colour-1-300: hsl(100, 100%, 50%);
--colour-1-400: hsl(100, 100%, 50%);
--colour-1-500: hsl(100, 100%, 50%);
--colour-1-600: hsl(100, 100%, 50%);
--colour-1-700: hsl(100, 100%, 50%);
--colour-1-800: hsl(100, 100%, 50%);
--colour-1-900: hsl(100, 100%, 50%);
/* colour-2 */
--colour-2-100: hsl(100, 100%, 50%);
--colour-2-200: hsl(100, 100%, 50%);
--colour-2-300: hsl(100, 100%, 50%);
--colour-2-400: hsl(100, 100%, 50%);
--colour-2-500: hsl(100, 100%, 50%);
--colour-2-600: hsl(100, 100%, 50%);
--colour-2-700: hsl(100, 100%, 50%);
--colour-2-800: hsl(100, 100%, 50%);
--colour-2-900: hsl(100, 100%, 50%);
/* colour-3 */
--colour-3-100: hsl(100, 100%, 50%);
--colour-3-200: hsl(100, 100%, 50%);
--colour-3-300: hsl(100, 100%, 50%);
--colour-3-400: hsl(100, 100%, 50%);
--colour-3-500: hsl(100, 100%, 50%);
--colour-3-600: hsl(100, 100%, 50%);
--colour-3-700: hsl(100, 100%, 50%);
--colour-3-800: hsl(100, 100%, 50%);
--colour-3-900: hsl(100, 100%, 50%);
/* colour-4 */
--colour-4-100: hsl(100, 100%, 50%);
--colour-4-200: hsl(100, 100%, 50%);
--colour-4-300: hsl(100, 100%, 50%);
--colour-4-400: hsl(100, 100%, 50%);
--colour-4-500: hsl(100, 100%, 50%);
--colour-4-600: hsl(100, 100%, 50%);
--colour-4-700: hsl(100, 100%, 50%);
--colour-4-800: hsl(100, 100%, 50%);
--colour-4-900: hsl(100, 100%, 50%);
/* colour-5 */
--colour-5-100: hsl(100, 100%, 50%);
--colour-5-200: hsl(100, 100%, 50%);
--colour-5-300: hsl(100, 100%, 50%);
--colour-5-400: hsl(100, 100%, 50%);
--colour-5-500: hsl(100, 100%, 50%);
--colour-5-600: hsl(100, 100%, 50%);
--colour-5-700: hsl(100, 100%, 50%);
--colour-5-800: hsl(100, 100%, 50%);
--colour-5-900: hsl(100, 100%, 50%);
/* grey */
--grey-100: hsl(100, 100%, 50%);
--grey-200: hsl(100, 100%, 50%);
--grey-300: hsl(100, 100%, 50%);
--grey-400: hsl(100, 100%, 50%);
--grey-500: hsl(100, 100%, 50%);
--grey-600: hsl(100, 100%, 50%);
--grey-700: hsl(100, 100%, 50%);
--grey-800: hsl(100, 100%, 50%);
--grey-900: hsl(100, 100%, 50%);
} | 0.36139 | 0.126758 |
.navbar-left {
background-color:#4aaaa5;
border-radius: 0px;
color: white;
font-size:32px;
font-weight: bold;
padding: 25px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.navbar-right {
font-size: 18px;
display:inline;
text-align: right;
padding:40px 25px 20px 20px;
color: grey;
}
a {
color: grey;
padding: 10px;
}
.mainContent .row img {
width: 100%;
height: auto;
}
.navbar {
margin-bottom: 0px;
}
.container-fluid {
padding: 0px;
}
.sidenav {
background-color: #ffffff;
padding-bottom: 18px;
border:solid lightgrey 1px;
font-size: 22px;
text-align: center;
margin: 20px;
color: #4aaaa5;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.mainContent {
margin: 20px;
padding: 25px;
padding-top: 0px;
background-color: #ffffff;
border: solid lightgrey 1px;
line-height: 1.8;
}
.aboutMe {
text-align: left;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-size: 26px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h1 {
text-align: left;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-size: 26px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.btn {
color: white;
background-color: #4aaaa5;
}
h3 {
text-align: center;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.footer {
background-color: #666666;
color: white;
border-top: 4px solid #4aaaa5;
padding:20px;
}
.wallpaper {
background-image: url('images/topography/topography.png');
position: relative;
border-top:1px lightgray solid;
height:100%;
}
.images {
height:10%;
margin: auto;
display: block;
text-align: center;
}
@media screen and (max-width: 640px) {
.navbar {
text-align: center;
}
a {
padding: 50px;
}
} | style.css | .navbar-left {
background-color:#4aaaa5;
border-radius: 0px;
color: white;
font-size:32px;
font-weight: bold;
padding: 25px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.navbar-right {
font-size: 18px;
display:inline;
text-align: right;
padding:40px 25px 20px 20px;
color: grey;
}
a {
color: grey;
padding: 10px;
}
.mainContent .row img {
width: 100%;
height: auto;
}
.navbar {
margin-bottom: 0px;
}
.container-fluid {
padding: 0px;
}
.sidenav {
background-color: #ffffff;
padding-bottom: 18px;
border:solid lightgrey 1px;
font-size: 22px;
text-align: center;
margin: 20px;
color: #4aaaa5;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.mainContent {
margin: 20px;
padding: 25px;
padding-top: 0px;
background-color: #ffffff;
border: solid lightgrey 1px;
line-height: 1.8;
}
.aboutMe {
text-align: left;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-size: 26px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h1 {
text-align: left;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-size: 26px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.btn {
color: white;
background-color: #4aaaa5;
}
h3 {
text-align: center;
border-bottom: 2px lightgrey solid;
padding: 10px;
color: #4aaaa5;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.footer {
background-color: #666666;
color: white;
border-top: 4px solid #4aaaa5;
padding:20px;
}
.wallpaper {
background-image: url('images/topography/topography.png');
position: relative;
border-top:1px lightgray solid;
height:100%;
}
.images {
height:10%;
margin: auto;
display: block;
text-align: center;
}
@media screen and (max-width: 640px) {
.navbar {
text-align: center;
}
a {
padding: 50px;
}
} | 0.414425 | 0.110279 |
html, body{
width: 100%;
height: 100%;
}
.container {
width: 100%;
height: calc(100% - 67px);
margin: 0;
padding: 0;
}
.container h2 {
position: relative;
display: table;
top: 19.92px;
left: 50%;
transform: translate(-50%);
margin: 0;
}
/*Table*/
#h2-frequenc{
top: 50px;
font-size: 20px;
}
#h2-grade{
top: 60px;
font-size: 20px;
}
.container table{
position: relative;
top: 50px;
left: 50%;
transform: translate(-50%);
font-size: 15px;
}
#table-grade{
top: 60px;
}
.container table, .container thead, .container tbody{
display: table;
}
.container th{
padding-top: 10px;
padding-bottom: 10px;
}
.container td{
padding-top: 5px;
padding-bottom: 5px;
}
.container th:not(.th-name), .container td:not(.td-name){
width: 56px;
}
.th-name, .td-name{
width: 75px;
text-align: left;
}
.container td:not(.td-name){
text-align: center;
}
.container tr{
border-bottom: 1px solid rgba(0,0,0,0.12);
}
.input-grade{
width: 25px;
border: 0;
}
.input-grade:focus{
outline: none !important;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}
.input-frequenc{
width: 20px;
border: 0;
}
.input-frequenc:focus{
outline: none !important;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}
/*Graphic*/
.graphic-container{
height: 100px;
width: 100px;
position: relative;
top: 20px;
left: 50%;
margin: 15px 0 0 0;
transform: translate(-50%);
}
.graphic-background{
background-color: #d0d0d0;
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
-moz-box-shadow: -1px 1px 3px #000;
-webkit-box-shadow: -1px 1px 3px #000;
-o-box-shadow: -1px 1px 3px #000;
box-shadow: -1px 1px 3px #000;
}
.slice{
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
clip: rect(0px, 50px, 100px, 0px);
}
.slicediv{
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
clip: rect(0px, 100px, 100px, 50px);
}
#graphic-slice .slice{
background-color: #28d79e;
-webkit-transform:rotate(150deg);
-moz-transform:rotate(150deg);
-o-transform:rotate(150deg);
transform:rotate(150deg);
}
.graphic-over{
width: 80px;
height: 80px;
border-radius: 50%;
background-color: #ffffff;
z-index: 0;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#percentage{
font-family: Arial, sans-serif;
font-size: 175%;
text-align: center;
color: #28d79e;
margin: 0;
z-index: 2;
position: relative;
top: -45%;
left: 50%;
transform: translate(-50%);
} | css/performance.css | html, body{
width: 100%;
height: 100%;
}
.container {
width: 100%;
height: calc(100% - 67px);
margin: 0;
padding: 0;
}
.container h2 {
position: relative;
display: table;
top: 19.92px;
left: 50%;
transform: translate(-50%);
margin: 0;
}
/*Table*/
#h2-frequenc{
top: 50px;
font-size: 20px;
}
#h2-grade{
top: 60px;
font-size: 20px;
}
.container table{
position: relative;
top: 50px;
left: 50%;
transform: translate(-50%);
font-size: 15px;
}
#table-grade{
top: 60px;
}
.container table, .container thead, .container tbody{
display: table;
}
.container th{
padding-top: 10px;
padding-bottom: 10px;
}
.container td{
padding-top: 5px;
padding-bottom: 5px;
}
.container th:not(.th-name), .container td:not(.td-name){
width: 56px;
}
.th-name, .td-name{
width: 75px;
text-align: left;
}
.container td:not(.td-name){
text-align: center;
}
.container tr{
border-bottom: 1px solid rgba(0,0,0,0.12);
}
.input-grade{
width: 25px;
border: 0;
}
.input-grade:focus{
outline: none !important;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}
.input-frequenc{
width: 20px;
border: 0;
}
.input-frequenc:focus{
outline: none !important;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}
/*Graphic*/
.graphic-container{
height: 100px;
width: 100px;
position: relative;
top: 20px;
left: 50%;
margin: 15px 0 0 0;
transform: translate(-50%);
}
.graphic-background{
background-color: #d0d0d0;
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
-moz-box-shadow: -1px 1px 3px #000;
-webkit-box-shadow: -1px 1px 3px #000;
-o-box-shadow: -1px 1px 3px #000;
box-shadow: -1px 1px 3px #000;
}
.slice{
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
clip: rect(0px, 50px, 100px, 0px);
}
.slicediv{
position: absolute;
width: 100px;
height: 100px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
clip: rect(0px, 100px, 100px, 50px);
}
#graphic-slice .slice{
background-color: #28d79e;
-webkit-transform:rotate(150deg);
-moz-transform:rotate(150deg);
-o-transform:rotate(150deg);
transform:rotate(150deg);
}
.graphic-over{
width: 80px;
height: 80px;
border-radius: 50%;
background-color: #ffffff;
z-index: 0;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#percentage{
font-family: Arial, sans-serif;
font-size: 175%;
text-align: center;
color: #28d79e;
margin: 0;
z-index: 2;
position: relative;
top: -45%;
left: 50%;
transform: translate(-50%);
} | 0.225929 | 0.04703 |
@charset "UTF-8";
@font-face {
font-family: "ptsans";
font-weight: 400;
font-style: normal;
font-display: swap;
src: url(../fonts/ptsans.woff2) format("woff2"), url(../fonts/ptsans.woff) format("woff")
}
@font-face {
font-family: "ptsans";
font-weight: 700;
font-style: normal;
font-display: swap;
src: url(../fonts/ptsansbold.woff2) format("woff2"), url(../fonts/ptsansbold.woff) format("woff")
}
.container {
max-width: 1920px;
width: 100%;
margin: 0 auto
}
body {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #383838
}
@media (max-width: 1023px) {
body {
min-width: 1024px
}
}
.modal-open, html.has-lightbox {
overflow: hidden
}
.landing {
background: url(../img/cosmonaut.png) no-repeat right top
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.landing {
background: url(../img/cosmonaut@2x.png) no-repeat right top/783px 605px
}
}
@media (max-width: 1150px) {
.landing {
background-size: 623px 445px
}
}
*, ::after, ::before {
-webkit-box-sizing: inherit;
box-sizing: inherit
}
html {
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100%
}
main {
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
width: 100%
}
blockquote, body, h1, h2, h3, h4, h5, h6, ol, p, ul {
margin: 0
}
a {
color: inherit;
text-decoration: none
}
img {
display: block;
max-width: 100%;
height: auto
}
img:not([src]) {
visibility: hidden
}
button {
cursor: pointer
}
input::-webkit-input-placeholder {
line-height: normal !important
}
input:not([type=checkbox]):not([type=radio]), textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
border: 0;
clip: rect(0 0 0 0)
}
.header-1, .header-2, .header-3 {
font-family: "ptsans", "Arial", sans-serif;
font-size: 38px;
line-height: 48px;
font-weight: 700
}
.header-2, .header-3 {
font-size: 28px;
line-height: 26px
}
.header-3 {
font-size: 24px;
line-height: 31px
}
.choices {
position: relative;
margin-bottom: 24px;
font-size: 16px
}
.choices:focus {
outline: 0
}
.actions-list__dropdown li:last-child, .choices:last-child, .user-block li:last-child {
margin-bottom: 0
}
.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
background-color: #eaeaea;
cursor: not-allowed;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.choices.is-disabled .choices__item {
cursor: not-allowed
}
.choices[data-type*=select-one] {
cursor: pointer
}
.choices[data-type*=select-one] .choices__inner {
padding-bottom: 7.5px
}
.choices[data-type*=select-one] .choices__input {
display: block;
width: 100%;
padding: 10px;
border-bottom: 1px solid #ddd;
background-color: #fff;
margin: 0
}
.choices[data-type*=select-one] .choices__button {
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
padding: 0;
background-size: 8px;
position: absolute;
top: 50%;
right: 0;
margin-top: -10px;
margin-right: 25px;
height: 20px;
width: 20px;
border-radius: 10em;
opacity: .5
}
.choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
opacity: 1
}
.choices[data-type*=select-one] .choices__button:focus {
-webkit-box-shadow: 0 0 0 2px #00bcd4;
box-shadow: 0 0 0 2px #00bcd4
}
.choices[data-type*=select-one]:after {
content: "";
height: 0;
width: 0;
border-style: solid;
border-color: #333 transparent transparent;
border-width: 5px;
position: absolute;
right: 11.5px;
top: 50%;
margin-top: -2.5px;
pointer-events: none
}
.choices[data-type*=select-one].is-open:after {
border-color: transparent transparent #333;
margin-top: -7.5px
}
.choices[data-type*=select-one][dir=rtl]:after {
left: 11.5px;
right: auto
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
right: auto;
left: 0;
margin-left: 25px;
margin-right: 0
}
.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
cursor: text
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
position: relative;
display: inline-block;
margin: 0 -4px 0 8px;
padding-left: 16px;
border-left: 1px solid #008fa1;
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIH<KEY>);
background-size: 8px;
width: 8px;
line-height: 1;
opacity: .75;
border-radius: 0
}
.choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
opacity: 1
}
.choices__inner {
display: inline-block;
vertical-align: top;
width: 100%;
background-color: #f9f9f9;
padding: 7.5px 7.5px 3.75px;
border: 1px solid #ddd;
border-radius: 2.5px;
font-size: 14px;
min-height: 44px;
overflow: hidden
}
.is-focused .choices__inner, .is-open .choices__inner {
border-color: #b7b7b7
}
.is-open .choices__inner {
border-radius: 2.5px 2.5px 0 0
}
.is-flipped.is-open .choices__inner {
border-radius: 0 0 2.5px 2.5px
}
.choices__list {
margin: 0;
padding-left: 0;
list-style: none
}
.choices__list--single {
display: inline-block;
padding: 4px 16px 4px 4px;
width: 100%
}
[dir=rtl] .choices__list--single {
padding-right: 4px;
padding-left: 16px
}
.choices__list--single .choices__item, .filters-block__field input {
width: 100%
}
.choices__list--multiple {
display: inline
}
.choices__list--multiple .choices__item {
display: inline-block;
vertical-align: middle;
border-radius: 20px;
padding: 4px 10px;
font-size: 12px;
font-weight: 500;
margin-right: 3.75px;
margin-bottom: 3.75px;
background-color: #00bcd4;
border: 1px solid #00a5bb;
color: #fff;
word-break: break-all
}
.choices__list--multiple .choices__item[data-deletable] {
padding-right: 5px
}
[dir=rtl] .choices__list--multiple .choices__item {
margin-right: 0;
margin-left: 3.75px
}
.choices__list--multiple .choices__item.is-highlighted {
background-color: #00a5bb;
border: 1px solid #008fa1
}
.is-disabled .choices__list--multiple .choices__item {
background-color: #aaa;
border: 1px solid #919191
}
.choices__list--dropdown {
display: none;
z-index: 1;
position: absolute;
width: 100%;
background-color: #fff;
border: 1px solid #ddd;
top: 100%;
margin-top: -1px;
border-bottom-left-radius: 2.5px;
border-bottom-right-radius: 2.5px;
overflow: hidden;
word-break: break-all
}
.choices__list--dropdown.is-active {
display: block
}
.is-open .choices__list--dropdown {
border-color: #b7b7b7
}
.is-flipped .choices__list--dropdown {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: -1px;
border-radius: .25rem .25rem 0 0
}
.choices__list--dropdown .choices__list {
position: relative;
max-height: 300px;
overflow: auto;
-webkit-overflow-scrolling: touch;
will-change: scroll-position
}
.choices__list--dropdown .choices__item {
position: relative;
padding: 10px;
font-size: 14px
}
[dir=rtl] .choices__list--dropdown .choices__item {
text-align: right
}
@media (min-width: 640px) {
.choices__list--dropdown .choices__item--selectable {
padding-right: 100px
}
.choices__list--dropdown .choices__item--selectable:after {
content: attr(data-select-text);
font-size: 12px;
opacity: 0;
position: absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
[dir=rtl] .choices__list--dropdown .choices__item--selectable {
text-align: right;
padding-left: 100px;
padding-right: 10px
}
[dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
right: auto;
left: 10px
}
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
background-color: #f2f2f2
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
opacity: .5
}
.choices__item {
cursor: default
}
.choices__item--selectable, .tail-datetime-calendar .calendar-actions span[data-action] {
cursor: pointer
}
.choices__item--disabled {
cursor: not-allowed;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: .5
}
.choices__heading {
font-weight: 600;
font-size: 12px;
padding: 10px;
border-bottom: 1px solid #f7f7f7;
color: gray
}
.choices__button {
text-indent: -9999px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 0;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
cursor: pointer
}
.choices__button:focus, .choices__input:focus {
outline: 0
}
.choices__input {
display: inline-block;
vertical-align: baseline;
background-color: #f9f9f9;
font-size: 14px;
margin-bottom: 5px;
border: 0;
border-radius: 0;
max-width: 100%;
padding: 4px 0 4px 2px
}
[dir=rtl] .choices__input {
padding-right: 2px;
padding-left: 0
}
.choices__placeholder {
opacity: .5
}
.choices[data-type*=select-multiple] .choices__input.is-hidden, .choices[data-type*=select-one] .choices__input.is-hidden, .choices__input.is-hidden, .tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick:after, .tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick:before, .tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] {
display: none
}
.tail-datetime-calendar *, .tail-datetime-calendar :after, .tail-datetime-calendar :before {
box-sizing: border-box;
-webkit-box-sizing: border-box
}
.tail-datetime-calendar {
top: 0;
left: 0;
height: auto;
padding: 0;
z-index: 3000;
display: block;
position: absolute;
visibility: hidden;
direction: ltr;
border-collapse: separate;
font-family: "Open Sans", Calibri, Arial, sans-serif;
background-color: #fff;
border-radius: 3px
}
.tail-datetime-calendar:after {
clear: both;
content: "";
display: block;
font-size: 0;
visibility: hidden
}
.tail-datetime-calendar.calendar-static {
top: auto;
left: auto;
margin-left: auto;
margin-right: auto;
position: static;
visibility: visible
}
.tail-datetime-calendar .calendar-actions, .tail-datetime-calendar button.calendar-close {
color: #303438;
background-color: #fff;
border-width: 0;
border-style: solid;
border-color: transparent
}
.tail-datetime-calendar button.calendar-close {
top: 100%;
right: 15px;
opacity: .5;
position: absolute;
font-size: 14px;
line-height: 1.125em;
text-shadow: none;
border: 0;
outline: 0;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBmaWxsPSIjMzAzNDM4IiB kPSJNNy40OCA4bDMuNzUgMy43NS0xLjQ4IDEuNDhMNiA5LjQ4bC0zLjc1IDMuNzUtMS40OC0xLjQ4TDQuNTIgOCAuNz cgNC4yNWwxLjQ4LTEuNDhMNiA2LjUybDMuNzUtMy43NSAxLjQ4IDEuNDhMNy40OCA4eiIvPjwvc3ZnPg==");
background-repeat: no-repeat;
background-position: center center;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 1px 2px 1px rgba(0, 0, 0, .1);
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 1px 2px 1px rgba(0, 0, 0, .1);
transition: opacity 142ms linear;
-webkit-transition: opacity 142ms linear;
width: 35px;
height: 25px;
margin: 1px 0 0;
padding: 5px 10px;
border-radius: 0 0 3px 3px
}
.tail-datetime-calendar button.calendar-close:hover {
opacity: 1
}
.tail-datetime-calendar .calendar-tooltip {
color: #fff;
width: auto;
margin: 0;
padding: 0;
display: block;
position: absolute;
background-color: #303438;
border-radius: 3px
}
.tail-datetime-calendar .calendar-tooltip:before {
top: -7px;
left: 50%;
width: 0;
height: 0;
margin: 0 0 0 -6px;
content: "";
display: block;
position: absolute;
border-width: 0 7px 7px;
border-style: solid;
border-color: transparent transparent #303438
}
.tail-datetime-calendar .calendar-tooltip .tooltip-inner {
width: auto;
margin: 0;
padding: 4px 7px;
display: block;
font-size: 12px;
line-height: 14px
}
.tail-datetime-calendar .calendar-actions {
width: 100%;
height: 36px;
margin: 0;
padding: 0;
display: table;
overflow: hidden;
border-spacing: 0;
border-collapse: separate;
border-radius: 3px 3px 0 0
}
.tail-datetime-calendar .calendar-actions span {
margin: 0;
padding: 0;
opacity: .5;
display: table-cell;
position: relative;
text-align: center;
text-shadow: none;
background-repeat: no-repeat;
background-position: center center;
transition: opacity 142ms linear, background 142ms linear;
-webkit-transition: opacity 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-actions span.action {
width: 50px;
font-size: 22px
}
.tail-datetime-calendar .calendar-actions span.label {
width: auto;
opacity: 1;
font-size: 16px
}
.tail-datetime-calendar .calendar-actions span:first-child {
border-radius: 4px 0 0 0
}
.tail-datetime-calendar .calendar-actions span:last-child {
border-radius: 0 4px 0 0
}
.tail-datetime-calendar .calendar-actions span:first-child:before, .tail-datetime-calendar .calendar-actions span:last-child:before {
top: 5px;
bottom: 5px;
width: 1px;
height: auto;
margin: 0;
padding: 0;
content: "";
position: absolute;
background-color: #e6e6e6
}
.tail-datetime-calendar .calendar-actions span:first-child:before {
right: -1px
}
.tail-datetime-calendar .calendar-actions span:last-child:before {
left: -1px
}
.tail-datetime-calendar .calendar-actions span:first-child:before, .tail-datetime-calendar .calendar-actions span:first-child:hover:before, .tail-datetime-calendar .calendar-actions span:last-child:before, .tail-datetime-calendar .calendar-actions span:last-child:hover:before {
display: none
}
.tail-datetime-calendar .calendar-actions span.action-submit {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBkPSJNMTIgNWwtOCA4LTQ tNCAxLjUtMS41TDQgMTBsNi41LTYuNUwxMiA1eiIvPjwvc3ZnPg==")
}
.tail-datetime-calendar .calendar-actions span.action-cancel {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSI<KEY>)
}
.tail-datetime-calendar .calendar-datepicker {
width: 100%;
display: block;
position: relative
}
.tail-datetime-calendar .calendar-datepicker:after, .tail-datetime-calendar .calendar-timepicker:after {
top: -1px;
left: 10px;
right: 10px;
content: "";
position: absolute;
border-width: 1px 0 0;
border-style: solid;
border-color: #e6e6e6
}
.tail-datetime-calendar .calendar-datepicker table {
width: 100%;
margin: 0;
padding: 0;
border-spacing: 1px;
border-collapse: separate
}
.tail-datetime-calendar .calendar-datepicker table tr td, .tail-datetime-calendar .calendar-datepicker table tr th {
padding: 0;
position: relative;
text-align: center;
text-shadow: none;
background-color: transparent;
border-width: 1px;
border-style: solid;
border-color: transparent;
border-radius: 3px
}
.tail-datetime-calendar .calendar-datepicker table tr td {
color: #303438;
font-size: 13px;
font-weight: 400;
line-height: 30px;
cursor: pointer
}
.tail-datetime-calendar .calendar-datepicker table tr td span.inner {
margin: 0;
padding: 0;
display: inline-block;
height: 26px
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-disabled {
cursor: not-allowed;
color: #a0a4a8
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-disabled:after {
color: #a0a4a8;
top: 0;
left: 0;
width: 49px;
height: 35px;
margin: 0;
padding: 0;
content: "✕";
opacity: .25;
display: inline-block;
position: absolute;
font-size: 30px;
line-height: 35px
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-next, .tail-datetime-calendar .calendar-datepicker table tr td.date-previous {
color: #808488;
background-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick, .tail-datetime-calendar .calendar-datepicker table tr td.date-today:before {
top: 5px;
width: 5px;
height: 5px;
margin: 0;
padding: 0;
z-index: 20;
content: "";
display: inline-block;
position: absolute;
border-width: 0;
border-style: solid;
border-color: transparent;
border-radius: 50%
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-today:before {
left: 5px;
background-color: #32b93c
}
.tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick {
right: 5px;
background-color: #303438
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-select .tooltip-tick, .tail-datetime-calendar .calendar-datepicker table tr td.date-select.date-today:before, .tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up:hover {
background-color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day {
width: 14.28571429%
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-month {
width: 14.28571429%;
height: 35px
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year {
height: 35px;
width: 25%
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year:hover {
border-color: #e6e6e6
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-disabled:hover {
border-color: #fff;
background-color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-today, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-today, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-today {
color: #32b93c;
border-color: #32b93c
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-select span, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-select span, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-select span {
color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year span.inner {
border: 0
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade span.inner {
height: 54px;
padding: 7px 15px;
text-align: center;
line-height: 20px
}
.tail-datetime-calendar .calendar-timepicker {
width: 100%;
margin: 0;
padding: 0;
display: block;
position: relative;
border-top: 0;
text-align: center
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field {
width: auto;
margin: 0;
padding: 20px 10px 10px;
display: inline-block;
position: relative;
text-align: center
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field:first-of-type {
text-align: right
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field:last-of-type {
text-align: left
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text] {
color: #606468;
width: 75px;
height: 35px;
margin: 0;
z-index: 4;
padding: 3px 20px 3px 5px;
display: inline-block;
position: relative;
font-size: 12px;
text-align: center;
appearance: textfield;
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: #fff;
border-width: 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 3px;
box-shadow: none;
-webkit-box-shadow: none;
transition: color 142ms linear, border 142ms linear, background 142ms linear;
-webkit-transition: color 142ms linear, border 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:hover {
color: #404448;
border-color: #d0d0d0;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:focus {
color: #303438;
border-color: #149be6;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:disabled {
cursor: not-allowed;
color: #a0a4a8;
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step {
right: 11px;
width: 20px;
height: 17px;
margin: 0;
padding: 0;
z-index: 15;
display: inline-block;
position: absolute;
background-color: #fff;
box-shadow: none;
-webkit-box-shadow: none;
transition: border 142ms linear, background 142ms linear;
-webkit-transition: border 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step:before {
top: 5px;
left: 50%;
width: 0;
height: 0;
margin: 0 0 0 -3px;
padding: 0;
content: "";
display: inline-block;
position: absolute;
transition: border 142ms linear;
-webkit-transition: border 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up {
top: 21px;
border-width: 0 0 1px 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 0 2px 0 0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up:before {
border-width: 0 4px 5px;
border-style: solid;
border-color: transparent transparent #606468
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down {
top: 37px;
border-width: 1px 0 0 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 0 0 2px 0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down:before {
border-width: 5px 4px 0;
border-style: solid;
border-color: #606468 transparent transparent
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:before {
border-bottom-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:hover:before {
border-bottom-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up {
border-color: #149be6;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:before {
border-top-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:hover {
color: #fff;
background-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:hover:before {
border-top-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up:hover {
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up:before {
border-bottom-color: #a0a4a8
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up {
cursor: not-allowed;
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down:before {
border-top-color: #a0a4a8
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field label {
color: #606468;
margin: 0;
padding: 0;
display: block;
font-size: 12px
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch {
cursor: pointer;
margin: 0 0 -8px;
padding: 15px 0 0;
display: block;
text-align: center;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:after, .tail-datetime-calendar .calendar-timepicker label.timepicker-switch:before {
width: auto;
margin: 0;
padding: 0 5px;
font-size: 12px;
line-height: 16px;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:before {
content: attr(data-am)
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:after {
content: attr(data-pm)
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span {
display: inline-block;
position: relative;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span:before {
width: 50px;
height: 16px;
content: "";
display: inline-block;
vertical-align: top;
border-width: 1px;
border-style: solid;
border-color: #149be6;
border-radius: 14px;
transition: border 284ms linear;
-webkit-transition: border 284ms linear
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span:after {
top: 3px;
left: 4px;
right: 30px;
width: auto;
height: 10px;
margin: 0;
padding: 0;
content: "";
display: inline-block;
position: absolute;
background-color: #149be6;
border-radius: 15px;
vertical-align: top;
transition: left 284ms linear, right 284ms linear 284ms, background 284ms linear;
-webkit-transition: left 284ms linear, right 284ms linear 284ms, background 284ms linear
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox]:checked + span:before {
border-color: #32b93c
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox]:checked + span:after {
left: 30px;
right: 4px;
background-color: #32b93c;
transition: right 284ms linear, left 284ms linear 284ms, background 284ms linear;
-webkit-transition: right 284ms linear, left 284ms linear 284ms, background 284ms linear
}
.tail-datetime-calendar.rtl {
direction: rtl
}
.tail-datetime-calendar.rtl .calendar-actions span.action-next, .tail-datetime-calendar.rtl .calendar-actions span.action-prev {
transform: rotate(180deg);
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg)
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.date-disabled:after {
right: 3px;
transform: rotate(45deg);
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg)
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.date-today:before {
right: 5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td .tooltip-tick {
left: 5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade.date-today:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month.date-today:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year.date-today:before {
right: 50%;
margin-right: -2.5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade:hover span.inner:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month:hover span.inner:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year:hover span.inner:before {
right: 6px;
border-right-color: #ccc
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year span.inner:after {
left: 0
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade:hover span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month:hover span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year:hover span.inner:after {
left: 6px;
border-left-color: #ccc
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade span.inner {
text-align: right
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:first-child {
text-align: left;
padding-left: 0;
padding-right: 25px
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:last-child {
text-align: right;
padding-left: 25px;
padding-right: 0
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:first-child input[type=text] {
margin-left: -1px;
margin-right: 0;
border-radius: 0 3px 3px 0
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:last-child input[type=text] {
margin-left: 0;
margin-right: -1px;
border-radius: 3px 0 0 3px
}
[data-simplebar] {
position: relative;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.simplebar-wrapper {
overflow: hidden;
width: inherit;
height: inherit;
max-width: inherit;
max-height: inherit
}
.simplebar-mask, .simplebar-offset {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0;
margin: 0
}
.simplebar-mask {
overflow: hidden;
width: auto !important;
height: auto !important;
z-index: 0;
direction: inherit
}
.simplebar-offset {
direction: inherit !important;
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
resize: none !important;
-webkit-overflow-scrolling: touch
}
.simplebar-content-wrapper {
direction: inherit;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
position: relative;
display: block;
height: 100%;
width: auto;
visibility: visible;
overflow: auto;
max-width: 100%;
max-height: 100%
}
.simplebar-content:after, .simplebar-content:before {
content: ' ';
display: table
}
.simplebar-placeholder {
max-height: 100%;
max-width: 100%;
width: 100%;
pointer-events: none
}
.simplebar-height-auto-observer-wrapper {
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
height: 100%;
width: 100%;
max-width: 1px;
position: relative;
float: left;
max-height: 1px;
overflow: hidden;
z-index: -1;
padding: 0;
margin: 0;
pointer-events: none;
-webkit-box-flex: inherit;
-ms-flex-positive: inherit;
flex-grow: inherit;
-ms-flex-negative: 0;
flex-shrink: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0
}
.simplebar-height-auto-observer, .simplebar-track {
position: absolute;
pointer-events: none;
overflow: hidden
}
.simplebar-height-auto-observer {
-webkit-box-sizing: inherit;
box-sizing: inherit;
display: block;
opacity: 0;
top: 0;
left: 0;
height: 1000%;
width: 1000%;
min-height: 1px;
min-width: 1px;
z-index: -1
}
.simplebar-track {
z-index: 1;
right: 0;
bottom: 0
}
[data-simplebar].simplebar-dragging .simplebar-content {
pointer-events: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: none
}
[data-simplebar].simplebar-dragging .simplebar-track {
pointer-events: all
}
.simplebar-scrollbar {
position: absolute;
right: 2px;
width: 7px;
min-height: 10px
}
.simplebar-scrollbar:before {
position: absolute;
content: '';
background: #000;
border-radius: 7px;
left: 0;
right: 0;
opacity: 0;
-webkit-transition: opacity .2s linear;
transition: opacity .2s linear
}
.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
opacity: .5;
-webkit-transition: opacity 0s linear;
transition: opacity 0s linear
}
.simplebar-track.simplebar-vertical {
top: 0;
width: 11px
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
top: 2px;
bottom: 2px
}
.simplebar-track.simplebar-horizontal {
left: 0;
height: 11px
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
height: 100%;
left: 2px;
right: 2px
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
right: auto;
left: 0;
top: 2px;
height: 7px;
min-height: 0;
min-width: 10px;
width: auto
}
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
right: auto;
left: 0
}
.hs-dummy-scrollbar-size {
direction: rtl;
position: fixed;
opacity: 0;
visibility: hidden;
height: 500px;
width: 500px;
overflow-y: hidden;
overflow-x: scroll
}
.example {
margin: 50px
}
.example--bg-gray {
background-color: #f5f5f5
}
.example--color-brown {
color: #383838
}
.example p {
margin-top: 12px;
margin-left: 50px
}
.button, .button:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.button {
display: inline-block;
font-family: "ptsans", "Arial", sans-serif;
text-align: center;
border: 1px solid #4359fa;
border-radius: 3px;
background: 0 0;
cursor: pointer;
color: #4359fa
}
.button:hover {
color: #131f78;
border-color: #131f78
}
.button:focus {
outline: 0
}
.button.hide {
display: none
}
.button--no-border {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 0;
opacity: .5;
-ms-flex-item-align: center;
align-self: center
}
.button--icon:hover svg, .button--no-border:hover {
opacity: .75
}
.button--close:focus, .button--icon:focus, .button--no-border:focus {
outline: 0
}
.button--close, .button--icon {
padding: 0;
border: 0;
height: 18px
}
.button--icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: auto;
height: 22px;
font-size: 12px;
color: #6a6a6a
}
.button--icon svg {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
fill: #000;
opacity: .35;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button--icon span {
margin-left: 4px
}
.button--big {
min-width: 176px;
padding: 12px 5px 14px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 23px;
font-weight: 400
}
.button--normal {
min-width: 171px;
padding: 11px 5px 10px;
font-size: 14px;
line-height: 18px;
font-weight: 700
}
.button--normal, .button--small, .button--tiny {
font-family: "ptsans", "Arial", sans-serif
}
.button--small {
color: #5f5f5f;
border-color: #d5d5d5;
min-width: 75px;
padding: 6px 5px 8px;
font-size: 15px;
line-height: 19px;
font-weight: 400
}
.button--tiny {
min-width: 93px;
padding: 4px 5px 6px;
font-size: 14px;
line-height: 14px;
font-weight: 700
}
.button--red {
color: #c60000;
border-color: #c60000
}
.button--red:hover {
color: #970000;
border-color: #970000
}
.button--gray {
min-width: 103px;
color: #777;
border-color: #bbb
}
.button--green {
color: #5bad8d;
border-color: #5bad8d
}
.button--rounded-blue {
min-width: 91px;
color: #fff;
font-size: 14px;
line-height: 14px;
background-color: #4359fa;
border-radius: 16.5px
}
.button--rounded-blue:hover {
color: #fff;
background-color: #131f78
}
.button--rounded-blue, .button--rounded-green, .button--shadow {
padding: 8px 5px 10px;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
border: 0
}
.button--rounded-green {
color: #fff;
font-size: 14px;
line-height: 14px;
min-width: 113px;
background-color: #5bad8d;
border-radius: 16.5px
}
.button--rounded-green:hover {
color: #fff;
background-color: #134c00
}
.button--shadow {
min-width: 131px;
background-color: #fff;
border-radius: 18.5px;
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806)
}
.button--shadow:hover {
color: #131f78
}
.button--plain, .button--shadow {
font-size: 14px;
line-height: 18px;
color: #383838
}
.button--plain, .button--plain:hover {
border-color: transparent
}
.button svg {
pointer-events: none
}
.link, .link:hover {
-webkit-transition: .3s color;
transition: .3s color
}
.link {
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px;
font-weight: 700;
color: #4359fa
}
.link:hover {
color: #131f78
}
.link--gray {
color: gray
}
.link--big {
font-size: 24px;
line-height: 31px;
font-weight: 700
}
.input, .link--big, .link--dotted {
font-family: "ptsans", "Arial", sans-serif
}
.link--dotted {
color: rgba(56, 56, 56, .65);
background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #979797), color-stop(0%, rgba(255, 255, 255, 0)));
background-image: linear-gradient(to right, #979797 33%, rgba(255, 255, 255, 0) 0%);
background-position: bottom;
background-size: 5px 1px;
background-repeat: repeat-x;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.link--dotted:hover {
color: rgba(19, 31, 120, .65);
background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #131f78), color-stop(0%, rgba(255, 255, 255, 0)));
background-image: linear-gradient(to right, #131f78 33%, rgba(255, 255, 255, 0) 0%)
}
.link--logo svg, .link--logo:hover svg {
-webkit-transition: .3s all;
transition: .3s all
}
.link--logo:hover svg {
opacity: .7
}
.link--logo-small svg {
width: 153px;
height: 45px
}
.input {
width: 323px;
height: 41px;
padding-right: 12px;
padding-left: 11px;
font-size: 15px;
line-height: 19px;
font-weight: 400;
color: #383838;
border: 1px solid #d3d3d3;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 3px
}
.input:focus, .input:hover {
outline: 0;
border-color: rgba(211, 211, 211, .7)
}
.field--small .field__input, .input--big {
width: 347px;
height: 53px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 23px;
font-weight: 400
}
.field {
position: relative
}
.field--small .field__input {
min-width: 130px;
width: 130px;
height: 41px;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.field__calendar {
position: absolute;
top: 13px;
right: 11px;
pointer-events: none
}
.field--checkbox, .field--flag-checkbox {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.field--checkbox .field__label, .field--flag-checkbox .field__label {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
position: relative;
top: 0;
left: 0;
display: inline-block;
padding-left: 20px;
min-height: 21px;
color: #383838;
background-color: transparent;
cursor: pointer
}
.field--checkbox .field__label::before {
position: absolute;
top: 4px;
left: 0;
content: "";
display: block;
width: 13px;
height: 13px;
border: 2px solid #979797;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: .3s all;
transition: .3s all
}
.field--checkbox .field__label:hover::before {
border-color: #4359fa;
-webkit-transition: .3s all;
transition: .3s all
}
.field--checkbox .field__input:checked + label::after {
position: absolute;
top: 7px;
left: 3px;
content: "";
display: block;
width: 7px;
height: 7px;
background: #4359fa;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.field--flag-checkbox .field__label .field__flag-icon-red {
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none
}
.field--flag-checkbox .field__input:checked + label .field__flag-icon {
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none
}
.field--flag-checkbox .field__input:checked + label .field__flag-icon-red {
position: relative;
opacity: 1;
pointer-events: auto
}
.field--select.field--small .choices {
min-width: 200px
}
.field--error .field__label {
color: #ff9191
}
.field--error.field--select .choices__inner {
border: 1px solid #ff9191
}
.field--error .field__input {
color: #c60000;
border-color: #ff9191
}
.field--error .field__error-message {
visibility: visible
}
.field--fill .field__label, .landing-header--registration .landing-header__button span {
color: #5f5f5f
}
.field--fill .field__input {
color: #c60000;
border-color: #ff9191
}
.field--select .choices {
display: inline-block;
vertical-align: top;
min-width: 323px;
font-size: 15px;
line-height: 19px;
color: #5f5f5f
}
.field--select .choices[data-type*=select-one] .choices__inner {
padding: 11px 38px 9px 11px
}
.field--select .choices__inner {
min-height: 41px;
font-size: inherit;
line-height: inherit;
background-color: #fff;
border-color: #d3d3d3
}
.field--select .choices__list--single {
padding: 0
}
.field--select .choices__item--selectable:after {
display: none
}
.field--select .choices__list--dropdown {
top: 0;
margin: 0;
font-size: 16px;
line-height: 21px;
color: #383838;
background-color: transparent;
z-index: 10
}
.field--select .choices__list--dropdown .choices__list {
background-color: #fff;
padding-bottom: 10px
}
.field--select .is-open .choices__list--dropdown {
border-color: transparent #d5d5d5 #d5d5d5;
border-radius: 3px
}
.field--select .is-open .choices__list--single {
color: transparent
}
.field--select .choices[data-type*=select-one] .choices__input {
padding-right: 38px;
height: 41px;
font-weight: 700;
background-color: transparent;
background-clip: padding-box;
border-color: transparent
}
.field--select .choices[data-type*=select-one]:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
margin: 0;
width: 45px;
height: 100%;
background-image: url(../img/arrow-down.svg);
background-repeat: no-repeat;
background-size: 12px auto;
background-position: center;
border: 0;
z-index: 1
}
.field--select .choices[data-type*=select-one].is-open:after {
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
margin: 0
}
.field--select .is-open .choices__item--disabled {
display: none
}
.field--select .choices__item--choice {
padding: 7px 38px 6px 11px
}
.field--select .choices__item.is-highlighted {
background-color: transparent
}
.field--select .choices__item.is-highlighted:not(.choices__placeholder), .field--select .choices__list--single .choices__item:not([data-value='0']) {
font-weight: 700
}
.field--select .choices__list--dropdown .choices__item, .field__label {
position: relative;
background-color: #fff
}
.field--select .choices__list--dropdown .choices__item--selectable {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.field--select .choices__list--dropdown .choices__item--selectable:hover {
opacity: .65
}
@media (min-width: 640px) {
.field--select .choices__list--dropdown .choices__item--selectable {
padding-right: 38px
}
}
.field--select .field__label {
z-index: 2
}
.field__label {
position: absolute;
top: -8px;
left: 9px;
padding-left: 3px;
padding-right: 3px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #5f5f5f
}
.field__label.field__label--mail-list {
padding-left: 0;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.field__label.field__label--mail-list:hover {
opacity: .6;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.field--big .field__label {
top: -9px;
font-size: 14px;
line-height: 18px
}
.field--big .field__label, .field__error-message, .textarea {
font-family: "ptsans", "Arial", sans-serif;
font-weight: 400
}
.field__error-message {
visibility: hidden;
display: block;
margin-top: 2px;
padding-left: 10px;
padding-top: 1px;
font-size: 12px;
line-height: 16px;
color: #c60000
}
.textarea {
min-width: 543px;
height: 147px;
padding: 16px 9px 5px 15px;
font-size: 14px;
line-height: 23px;
color: #383838;
border: 1px solid #d3d3d3;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 3px;
resize: none
}
.textarea:focus, .textarea:hover {
outline: 0;
border-color: rgba(211, 211, 211, .7)
}
.label, .select {
display: block;
border-radius: 3px
}
.select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 41px;
background-color: #fff;
border-color: #d3d3d3;
padding: 0 45px 0 12px;
font-family: inherit;
font-size: 15px;
line-height: 19px;
color: #5f5f5f
}
.label {
padding: 3px 7px 2px;
color: #fff;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 700;
text-align: center
}
.label--new {
min-width: 52px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #3d5c73), color-stop(99.24%, #2d6a98));
background: linear-gradient(90deg, #3d5c73 .76%, #2d6a98 99.24%)
}
.label--presentation {
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #296da0), color-stop(99.24%, #0b8aef));
background: linear-gradient(90deg, #296da0 .76%, #0b8aef 99.24%)
}
.label--in-work {
min-width: 71px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #098cf9), color-stop(99.24%, #6140fb));
background: linear-gradient(90deg, #098cf9 .76%, #6140fb 99.24%)
}
.label--completed {
min-width: 71px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #6839fb), color-stop(99.24%, #9c0afc));
background: linear-gradient(90deg, #6839fb .76%, #9c0afc 99.24%)
}
.avatar, .tag {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px
}
.tag, .tag:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.tag {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
padding: 3px 0 4px 4px;
color: #4359fa;
text-align: center;
cursor: pointer;
font-weight: 700;
border-radius: 3px;
background-color: rgba(67, 89, 250, .16)
}
.tag:hover {
background-color: rgba(67, 89, 250, .3)
}
.avatar {
-ms-flex-negative: 0;
flex-shrink: 0;
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;
width: 27px;
height: 27px;
font-weight: 400;
background-color: #0075d0;
border-radius: 50%
}
.avatar span {
color: #fff
}
.avatar--contact {
position: absolute;
top: 15px;
left: 15px;
background-color: #ff7e7e
}
.avatar--contact::before {
position: absolute;
bottom: -2px;
right: 1px;
content: "";
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 10px;
height: 10px;
border: 2px solid #fff;
background-color: #32a100;
border-radius: 50%
}
.avatar--blue {
background-color: #0075d0
}
.avatar--red {
background-color: #ff7e7e
}
.transaction {
width: 272px;
min-height: 93px;
padding: 7px 10px;
border-radius: 3px;
background: #fff
}
.transaction__name {
margin-bottom: 8px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px;
font-weight: 700;
color: #4359fa
}
.transaction__company {
margin-bottom: 5px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400
}
.transaction__wrapper-bottom {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 8px;
border-top: 1px solid #f4f4f4
}
.title, .transaction__price, .transaction__tasks {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.title, .transaction__price {
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #adadad
}
.title::after {
content: "";
width: 100%;
height: 1px;
margin-left: 9px;
background: #dbdbdb
}
.title span {
-ms-flex-negative: 0;
flex-shrink: 0
}
.contact, .contact:hover {
-webkit-transition: .3s -webkit-box-shadow;
transition: .3s box-shadow;
transition: .3s box-shadow, .3s -webkit-box-shadow
}
.contact {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
width: 300px;
min-height: 113px;
padding: 11px 10px 10px 15px;
border: 1px solid #d8d8d8;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 8px
}
.contact:hover {
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806)
}
.contact__avatar {
position: relative;
top: 4px;
left: 0;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-right: 10px
}
.contact__name, .contact__name:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.contact__name {
display: inline-block;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 700;
color: #383838
}
.contact__name:hover {
opacity: .7
}
.contact__last-connection {
margin-bottom: 11px;
margin-top: -3px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #848484
}
.contact__row, .data-table th p {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contact__title {
display: block;
width: 60px;
margin-right: 7px;
text-align: right;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: rgba(56, 56, 56, .64)
}
.contact__row--company {
margin-bottom: 6px
}
.contact__row--company .contact__value {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 700;
-webkit-transition: .3s color;
transition: .3s color
}
.contact__row--company .contact__value:hover {
color: #131f78;
-webkit-transition: .3s color;
transition: .3s color
}
.contact__row--position .contact__value {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #383838
}
.alert {
position: relative;
width: 341px;
padding: 13px 12px 15px 44px;
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
border-radius: 18.5px
}
.alert__close {
position: absolute;
top: 12px;
left: 10px;
opacity: .25
}
.alert__error, .alert__message, .alert__message a {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 20px;
font-weight: 400;
color: #383838
}
.alert__error, .alert__message a {
font-weight: 700;
color: #4359fa
}
.alert__error {
padding-top: 2px;
font-weight: 400;
color: #900000
}
.funnel-section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: calc(100vh - 59px)
}
.funnel-section__headline {
font-size: 24px;
line-height: 31px;
color: #383838
}
.funnel-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 16px 36px 14px 32px;
border-bottom: 1px solid #d8d8d8
}
.funnel-section__search {
margin-left: 14px
}
.funnel-section__btn {
margin-left: auto
}
.funnel-section__alert {
position: fixed;
bottom: 24px;
right: 20px;
z-index: 1
}
.funnel-table, .funnel-table__col {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.funnel-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
color: #383838;
background-color: #f5f5f5
}
.funnel-table__col {
position: relative;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 22px 23px
}
.dashboard-card__info li:nth-child(3n+1), .funnel-table__col:nth-child(1) .funnel-table__header {
color: #3d5b72
}
.dashboard-card__info li:nth-child(3n+2), .funnel-table__col:nth-child(2) .funnel-table__header {
color: #296ea1
}
.dashboard-card__info li:nth-child(3n+3), .funnel-table__col:nth-child(3) .funnel-table__header {
color: #0d89f9
}
.funnel-table__col:nth-child(4) .funnel-table__header {
color: #6d35fb
}
.funnel-table__col:nth-child(1)::before {
background-image: -webkit-gradient(linear, left top, right top, from(#3d5b71), to(#2b6c9c));
background-image: linear-gradient(90deg, #3d5b71 0%, #2b6c9c 100%)
}
.funnel-table__col:nth-child(2)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #2b6c9c), color-stop(99.24%, #078ef9));
background-image: linear-gradient(90deg, #2b6c9c .76%, #078ef9 99.24%)
}
.funnel-table__col:nth-child(3)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #078ef9), color-stop(99.24%, #6839fb));
background-image: linear-gradient(90deg, #078ef9 .76%, #6839fb 99.24%)
}
.funnel-table__col:nth-child(4)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #6839fb), color-stop(99.24%, #9c0afc));
background-image: linear-gradient(90deg, #6839fb .76%, #9c0afc 99.24%)
}
.funnel-table__col::before {
position: absolute;
top: 0;
left: 0;
right: 0;
content: "";
display: block;
width: 100%;
height: 6px
}
.funnel-table__col-summary {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.funnel-table__header {
padding-bottom: 21px;
font-weight: 700;
line-height: 1.2
}
.funnel-table__title {
margin: 0 0 -3px;
font-size: 20px
}
.funnel-table__header a {
color: inherit
}
.funnel-table__tasks-number {
margin-right: auto;
font-size: 14px;
opacity: .65
}
.funnel-table__total {
padding-left: 20px;
font-size: 20px
}
.actions-list__dropdown ul, .funnel-table__list {
padding: 0;
list-style: none
}
.funnel-table__item {
margin-bottom: 8px
}
.search-block__field[type=search], .trade-card {
display: block;
background-color: #fff;
border-radius: 3px
}
.trade-card__inner {
padding: 10px 9px 7px
}
.trade-card__headline {
margin-bottom: 4px;
font-size: 15px;
line-height: 1.26;
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.trade-card__agent {
font-size: 13px;
line-height: 1.3
}
.trade-card__footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 9px 12px 9px 9px;
border-top: 1px solid #f4f4f4
}
.trade-card__tasks {
margin-right: auto;
font-size: 14px;
line-height: 1.3
}
.trade-card__cost {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 20px;
font-weight: 700;
font-size: 16px;
line-height: 1.3
}
.data-table tr:hover a, .landing-header--registration .landing-header__button:hover span, .trade-card:hover .trade-card__headline {
color: #131f78
}
.search-block {
width: 243px
}
.search-block__field-wrapper {
position: relative
}
.search-block__label {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 30px;
cursor: pointer
}
.pagination-block__btn svg, .search-block__label svg {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: block
}
.search-block__field[type=search] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 20px 0 30px;
width: 100%;
height: 29px;
font-family: inherit;
font-size: 14px;
line-height: 18px;
color: #383838;
border: 1px solid #d5d5d5
}
.search-block__field[type=search]::-webkit-input-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]::-moz-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]:-ms-input-placeholder, .search-block__field[type=search]::-ms-input-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]::placeholder {
color: #9d9d9d
}
.contacts-section, .contacts-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contacts-section {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: calc(100vh - 59px)
}
.contacts-section__header {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 16px 13px 17px 32px;
border-bottom: 1px solid #e5e5e5
}
.contacts-section__headline {
margin-right: 11px;
font-size: 24px;
line-height: 29px
}
.contacts-section__pagination-block-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: auto
}
.contacts-section__content--empty {
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-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
background-image: url(../img/bg-empty.svg);
background-repeat: no-repeat;
background-size: 100% auto;
background-position: bottom left
}
.contacts-section__message-empty {
margin: auto;
padding-bottom: 100px
}
.contacts-section__btn {
margin-right: 8px;
padding-left: 12px;
padding-right: 12px
}
.contacts-section__filters {
max-height: 0;
overflow: hidden
}
.contacts-section__filters.show {
max-height: none;
overflow: visible
}
.contacts-section__footer {
background-color: #f2f2f2;
border-bottom: 1px solid #d8d8d8
}
.message-empty {
text-align: center
}
.message-empty__headline {
margin-bottom: 5px;
font-size: 32px;
line-height: 1.28
}
.message-empty__text {
margin-bottom: 45px;
font-size: 16px;
line-height: 1.3125;
opacity: .65
}
.message-empty__btn {
min-width: 196px
}
.pagination-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 14px;
line-height: 18px
}
.pagination-block__btn {
position: relative;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 34px;
height: 29px;
border: 1px solid #d8d8d8;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.pagination-block__btn--prev {
border-radius: 3px 0 0 3px
}
.pagination-block__btn--next {
border-radius: 0 3px 3px 0
}
.pagination-block__btn--disabled {
pointer-events: none
}
.pagination-block__btn--prev svg {
-webkit-transform: translate(-50%, -50%) scale(-1, 1);
transform: translate(-50%, -50%) scale(-1, 1)
}
.actions-list__dropdown button:hover, .pagination-block__btn--disabled svg, .pagination-block__btn:hover, .tab-controls button:hover {
opacity: .65
}
.pagination-block__pages {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 4px 13px 5px;
height: 29px;
color: #d8d8d8;
border-top: 1px solid #d8d8d8;
border-bottom: 1px solid #d8d8d8
}
.pagination-block__current, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select span {
color: #383838
}
.mail-list__pagination-block .pagination-block__pages {
background-color: #fff
}
.filters-block {
padding: 21px 13px 17px 32px;
border-bottom: 1px solid #e5e5e5
}
.filters-block, .filters-block__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.filters-block__field {
margin-right: 10px;
min-width: 200px
}
.filters-block__close {
margin-left: auto;
height: 24px
}
.data-table {
width: 100%;
font-size: 14px;
line-height: 18px;
border-collapse: collapse
}
.data-table tr {
border-bottom: 1px solid #e5e5e5;
-webkit-transition: background-color .3s ease;
transition: background-color .3s ease
}
.data-table tr.selected, .data-table tr:not(:first-child):hover {
background-color: #f0f0f0
}
.data-table tr a {
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.data-table tr:hover .data-table__edit {
opacity: 1
}
.data-table tr.selected:hover .data-table__edit, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-next, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-previous {
opacity: 0;
pointer-events: none
}
.data-table th {
padding: 18px 14px 14px;
text-align: left;
width: 15%
}
.data-table th:first-child {
padding-left: 33px;
width: 20px
}
.data-table th:nth-child(2) {
width: 21%
}
.data-table th:last-child {
padding-right: 0;
width: 65px
}
.data-table td {
padding: 17px 14px 16px
}
.data-table td:first-child {
padding-left: 33px
}
.data-table td:last-child {
padding: 0 0 0 14px;
width: 65px;
min-width: 65px;
max-width: 65px
}
.data-table__sort-btn {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
display: block;
padding: 0;
width: 18px;
height: 18px;
text-align: center;
color: #4359fa;
background-color: transparent;
border: 0
}
.data-table__edit-block {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-right: 16px;
width: 100%;
min-height: 51px
}
.data-table__buttons {
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding-right: 20px;
opacity: 0;
pointer-events: none
}
.data-table__buttons, .data-table__edit, .data-table__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.data-table__link svg {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-right: 7px;
fill: #383838
}
.data-table__link span {
white-space: nowrap
}
.data-table__edit {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-left: auto;
padding: 0;
width: 30px;
height: 30px;
background-color: transparent;
border: 0;
opacity: 0;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.data-table__edit svg, .data-table__link svg {
display: block;
opacity: .35
}
.data-table__btn {
margin-left: 7px;
padding-left: 12px;
padding-right: 12px;
min-width: 103px;
background-color: #fff
}
.data-table__close-edition {
margin-left: 4px
}
.data-table .selected td:not(:first-child):not(:nth-child(2)):not(:last-child) a, .data-table .selected td:not(:first-child):not(:nth-child(2)):not(:last-child) p {
opacity: 0;
pointer-events: none
}
.data-table .selected .data-table__buttons {
opacity: 1;
pointer-events: auto
}
.modal {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
visibility: hidden;
opacity: 0;
overflow: auto;
z-index: 50;
background-color: rgba(0, 0, 0, .65)
}
.modal.show {
visibility: visible;
opacity: 1;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.modal__container {
width: 678px;
min-height: 100vh;
margin-left: auto;
padding: 32px 54px 42px 82px;
background-color: #fff;
border-radius: 2px;
z-index: 1
}
.tags {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
.tags__title {
margin-right: 7px;
margin-top: 4px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
color: #383838
}
.tags__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0;
list-style: none
}
.tags__item {
margin-right: 2px
}
.create-deal {
padding-top: 19px
}
.create-deal .choices__placeholder {
display: none
}
.create-contact .choices__inner .choices__item.choices__item--selectable, .create-deal .choices__inner .choices__item.choices__item--selectable {
font-weight: 400
}
.create-deal__title {
margin-top: 30px;
margin-bottom: 31px
}
.create-deal__caption {
margin-bottom: 30px
}
.create-deal__field {
margin-bottom: 20px
}
.create-deal__field--description {
margin-bottom: 16px
}
.create-deal__field--small {
margin-right: 8px
}
.create-deal__field--small .input {
width: 200px
}
.create-deal__field--small .choices {
min-width: 200px
}
.create-deal__field--calendar {
width: 200px;
margin-right: 0
}
.create-deal__field--tiny .input {
width: 150px
}
.create-deal__field--tiny .choices {
min-width: 150px
}
.create-deal__field--right {
margin-left: 22px;
margin-top: 1px;
margin-bottom: 18px
}
.create-deal__basic-block {
margin-bottom: 57px
}
.create-deal__wrapper-tags {
margin-top: -6px;
margin-bottom: 56px
}
.create-deal__finance-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 36px
}
.create-deal__execution-block {
margin-bottom: 56px
}
.create-deal__settings-block {
margin-top: -8px;
margin-bottom: 57px
}
.data-summary {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 11px 25px 0;
font-size: 12px;
line-height: 16px;
color: #7b7b7b
}
.data-summary li {
position: relative;
margin: 0 20px 10px 0
}
.data-summary li::after {
content: "·";
position: absolute;
top: 50%;
right: -14px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
vertical-align: top
}
.data-summary li:last-child::after {
display: none
}
.deal-card__header {
color: #fff;
background-color: #1d1d47
}
.deal-card__title-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 31px 26px 20px 33px
}
.deal-card__title {
margin-right: 9px;
font-size: 24px;
line-height: 31px
}
.deal-card__label {
margin-top: 5px
}
.deal-card__actions {
margin-top: 9px;
margin-left: auto
}
.deal-card__tab-controls {
padding: 0 16px
}
.deal-card__tab {
max-height: 0;
overflow: hidden
}
.deal-card__tab.active {
max-height: none;
overflow: visible
}
.actions-list {
position: relative
}
.actions-list__toggler {
display: block;
padding-bottom: 5px
}
.actions-list__toggler.button--icon svg {
fill: #fff
}
.actions-list__dropdown, .actions-list__dropdown button {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.actions-list__dropdown {
position: absolute;
top: 100%;
right: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-width: 201px;
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
opacity: 0;
pointer-events: none;
z-index: 1;
padding: 16px 16px 15px;
font-size: 14px;
line-height: 18px;
background-color: #fff;
border: 1px solid #d5d5d5
}
.actions-list__dropdown li {
margin-bottom: 15px
}
.actions-list__dropdown a {
padding: 0;
text-align: left;
font-size: inherit;
line-height: inherit;
background-color: transparent;
border: 0;
color: black;
}
.actions-list:focus .actions-list__dropdown, .actions-list:hover .actions-list__dropdown {
opacity: 1;
pointer-events: auto
}
.actions-list:focus svg, .actions-list:hover svg {
opacity: .75
}
.tab-controls {
padding: 0;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.tab-controls button {
display: block;
margin: 0;
padding: 10px 16px 4px;
font-family: inherit;
font-size: 16px;
line-height: 21px;
color: rgba(255, 255, 255, .82);
background-color: transparent;
border: 0;
border-radius: 3px 3px 0 0;
-webkit-transition: opacity .3s ease, color .3s ease, background-color .3s ease;
transition: opacity .3s ease, color .3s ease, background-color .3s ease
}
.tab-controls button:focus {
outline: 0
}
.tab-controls .active button {
color: #383838;
text-shadow: .5px 0 0 #383838;
background-color: #fff;
pointer-events: none
}
.deal-section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
min-height: calc(100vh - 59px)
}
.deal-section__card, .deal-section__log {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none
}
.deal-section__card {
width: 50.12%;
border: 0;
border-right-width: 2px;
border-right-style: solid;
-o-border-image: linear-gradient(to bottom, #3d5b72, #2077b9) 1 100%;
border-image: -webkit-gradient(linear, left top, left bottom, from(#3d5b72), to(#2077b9)) 1 100%;
border-image: linear-gradient(to bottom, #3d5b72, #2077b9) 1 100%
}
.deal-section__log {
width: 49.88%;
height: calc(100vh - 59px);
position: relative;
background-color: #f2f2f2
}
.landing-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 41px 88px 40px 87px
}
.landing-header--registration .landing-header__button:hover {
opacity: 1;
border-color: #131f78
}
.landing-header__button {
margin-left: auto;
margin-top: 12px
}
.landing-header__button span {
color: #fff
}
.landing-header__button:hover {
opacity: .7;
border-color: #fff
}
.landing-header__link-logo {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__link-logo:hover, .landing-header__link-logo:hover {
opacity: .7;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.intro {
padding-left: 100px;
padding-top: 64px;
padding-bottom: 226px
}
@media (max-width: 1150px) {
.intro {
padding-top: 0;
padding-bottom: 128px
}
}
.intro__title {
width: 39.3%;
margin-bottom: 39px
}
@media (max-width: 1150px) {
.intro__title {
font-size: 36px
}
}
.features {
padding: 50px 0 79px 100px
}
.features__title {
margin-top: 10px;
margin-bottom: 3px
}
.features__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0;
list-style: none
}
.features__item {
width: 33%;
padding-right: 89px
}
.features__description {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400
}
.communications {
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-height: 720px;
padding-left: 100px;
padding-top: 160px;
background: url(../img/shuttle.png) no-repeat right top
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.communications {
background: url(../img/shuttle@2x.png) no-repeat right top/588px 673px
}
}
@media (max-width: 1150px) {
.communications {
min-height: 631px;
background-size: 538px 623px
}
}
.communications__title {
width: 478px;
margin-bottom: 20px
}
@media (max-width: 1150px) {
.communications__title {
width: 384px
}
}
.communications__description {
width: 503px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400
}
@media (max-width: 1150px) {
.communications__description {
width: 346px
}
}
.work {
padding: 159px 110px 208px 55.5%;
background: url(../img/rocket.png) no-repeat left 41px
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.work {
background: url(../img/rocket@2x.png) no-repeat left 41px/604px 575px
}
}
@media (max-width: 1150px) {
.work {
background-position-y: 100px;
background-size: 544px 515px
}
}
.work__title {
padding-bottom: 34px
}
.work__list {
padding: 0;
list-style: none
}
.work__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 13px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 400
}
.work__item::before {
content: "";
-ms-flex-negative: 0;
flex-shrink: 0;
display: block;
width: 17px;
height: 2px;
margin-right: 10px;
background-color: #3267e4
}
.footer {
padding-top: 88px;
padding-bottom: 62px;
text-align: center;
background-image: url(../img/footer.png);
background-position: top;
background-repeat: no-repeat;
background-size: 100% 100%
}
.footer__link-logo {
display: inline-block;
margin: 0 35px 14px auto;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__nav {
margin-bottom: 43px
}
.footer__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
list-style: none;
margin-bottom: 20px
}
.footer__item, .main-nav li {
margin-right: 33px
}
.footer__item:last-child {
margin-right: 0
}
.footer__copyright-link, .footer__link-nav {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__link-nav {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
color: rgba(255, 255, 255, .65)
}
.footer__copyright-link:hover, .footer__link-nav:hover {
opacity: .7;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__copyright-link {
display: inline-block;
margin: 0 auto 20px
}
.footer__copyright-text {
display: block;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
color: rgba(255, 255, 255, .4)
}
.log-in {
padding-top: 84px
}
.log-in__title {
margin-bottom: 45px
}
.log-in__field {
margin-bottom: 13px
}
.log-in__button {
min-width: 347px
}
.log-in__button:focus, .registration__button:focus {
outline: 0
}
.registration__form {
width: 347px;
margin: 0 auto;
padding-top: 39px;
padding-bottom: 73px
}
.registration__title {
margin-bottom: 45px;
text-align: center
}
.registration__field {
margin-bottom: 13px
}
.registration__field--no-validate {
margin-bottom: 32px
}
.registration__button {
min-width: 347px
}
.create-contact {
padding-top: 48px
}
.create-contact .choices__placeholder {
display: none
}
.create-contact__title {
margin-bottom: 31px
}
.create-contact__field, .letter__body p {
margin-bottom: 20px
}
.create-contact__field--small .input {
width: 200px
}
.create-contact__field--small .choices {
min-width: 200px
}
.create-contact__bottom-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 29px
}
.create-contact__button {
margin-right: 17px
}
.create-contact__description {
display: none
}
.create-contact__bottom-block--error .create-contact__description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #5f5f5f
}
.create-contact__bottom-block--error .create-contact__description::before {
content: "";
display: block;
width: 27px;
height: 1px;
margin-right: 5px;
background-color: #ff9191
}
.deal-form {
padding: 27px 24px 30px 32px
}
.deal-form__section {
padding-bottom: 20px
}
.deal-form__section:last-child {
padding-bottom: 0
}
.deal-form__row, .deal-form__section-title {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.deal-form__section-title {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 16px;
font-size: 16px;
line-height: 21px;
color: #adadad
}
.deal-form__section-title::after {
content: "";
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-left: 5px;
height: 1px;
background-color: #dbdbdb
}
.deal-form__row {
padding: 12px 0 0
}
.deal-form__row--message {
margin-top: 12px
}
.deal-form__label {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 120px;
font-size: 14px;
line-height: 18px;
color: rgba(56, 56, 56, .65)
}
.deal-form__save {
margin-left: 6px;
font-size: 12px;
line-height: 100%;
color: rgba(56, 56, 56, .61)
}
.deal-form__field {
padding: 0;
width: 20px;
height: 21px;
min-width: 40px;
font-family: inherit;
font-weight: 700;
font-size: 16px;
line-height: 21px;
border: 0;
border-bottom: 1px dashed #979797;
-webkit-transition: all .3s ease;
transition: all .3s ease
}
.deal-form__field--date {
min-width: 85px
}
.deal-form__field::-webkit-input-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field::-moz-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field:-ms-input-placeholder, .deal-form__field::-ms-input-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field::placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field:focus {
outline: 0
}
.deal-form__field:not([readonly]):focus {
-webkit-box-sizing: content-box;
box-sizing: content-box;
margin: -13px 0;
padding: 0 11px;
min-width: 130px !important;
height: 48px;
border: 1px solid #d3d3d3;
border-radius: 3px
}
.deal-form__field + .deal-form__save {
display: none;
margin-top: 6px
}
.deal-form__field:focus + .deal-form__save {
display: block
}
.deal-form .choices[data-type*=select-one]:after {
background-image: none;
border: 0
}
.deal-form .choices__inner {
padding: 0 20px 0 0;
min-height: 29px;
background-color: transparent;
border: 0
}
.deal-form .choices__list--single {
padding: 0 4px 0 0;
font-size: 16px;
line-height: 21px;
border-bottom: 1px dashed #979797
}
.deal-form .choices__list--single .choices__placeholder, .deal-form .choices__list--single .choices__placeholder:hover {
font-weight: 700;
font-style: normal
}
.deal-form .choices__list--dropdown {
top: 0;
margin: 0;
padding-bottom: 10px;
min-width: 201px;
font-size: 16px;
line-height: 21px;
color: #383838
}
.deal-form .is-open .choices__list--dropdown {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-color: #d5d5d5;
border-radius: 3px
}
.deal-form .choices[data-type*=select-one] .choices__input, .deal-form .choices__item--choice::after {
display: none
}
.deal-form .choices[data-type*=select-one] .choices__inner {
padding-bottom: 0
}
.deal-form .choices__item--choice {
padding: 7px 38px 6px 11px
}
.deal-form .choices__item.is-highlighted {
background-color: transparent
}
.deal-form .choices__item.is-highlighted:not(.choices__placeholder), .deal-form .choices__list--single .choices__item:not([data-value='0']) {
font-weight: 700
}
.deal-form .choices__list--dropdown .choices__item--selectable {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
font-size: 16px;
line-height: 21px
}
.deal-form .choices__placeholder, .deal-form .choices__placeholder.is-highlighted {
font-weight: 400;
font-style: italic
}
.deal-form .choices__list--dropdown .choices__item--selectable:hover, .deal-form .choices__placeholder {
opacity: .65
}
.deal-form .choices__placeholder.is-highlighted:hover, .deal-form .choices__placeholder:hover {
font-weight: 400
}
@media (min-width: 640px) {
.deal-form .choices__list--dropdown .choices__item--selectable {
padding-right: 38px
}
}
.tags-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-top: -2px
}
.tags-block__list {
padding: 0;
list-style: none;
display: contents
}
.tags-block__list-item {
margin-right: 4px;
margin-bottom: 4px
}
.tags-block__edit {
margin-top: -1px
}
.tags-block__edit.hide, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-today::before, .tail-datetime-calendar button.calendar-close {
display: none
}
.tags-block__edit-box {
display: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.tags-block__edit-box.show {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.tags-block__field {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 7px;
width: 79px;
height: 25px;
font-size: 14px;
line-height: 18px;
color: #4359fa;
letter-spacing: -.6px;
border: 1px solid rgba(67, 89, 250, .5);
border-radius: 3px
}
.tags-block__field::-webkit-input-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field::-moz-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field:-ms-input-placeholder, .tags-block__field::-ms-input-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field::placeholder {
color: rgba(67, 89, 250, .61)
}
.calendar {
margin-top: 12px;
margin-bottom: 30px
}
.tail-datetime-calendar {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 4px 15px 15px 150px;
width: 265px;
border: 1px solid #d5d5d5;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946)
}
.tail-datetime-calendar .label {
text-transform: capitalize;
color: #383838;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
font-size: 16px;
line-height: 21px
}
.tail-datetime-calendar .calendar-actions span.action-next:hover, .tail-datetime-calendar .calendar-actions span.action-prev:hover, .tail-datetime-calendar .calendar-actions span[data-action]:hover {
background-color: #fff;
opacity: .65
}
.tail-datetime-calendar .calendar-actions span {
line-height: 44px
}
.tail-datetime-calendar .calendar-actions span.action-next, .tail-datetime-calendar .calendar-actions span.action-prev {
background-image: url(../img/next.svg);
opacity: 1
}
.tail-datetime-calendar .calendar-actions span.action-prev {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1)
}
.tail-datetime-calendar tbody tr {
border-bottom: 9px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-next:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-previous:hover, .tail-datetime-calendar .calendar-datepicker:after {
opacity: 0
}
.tail-datetime-calendar .calendar-datepicker {
margin: 0;
padding: 3px 9px 0
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day {
padding: 0;
max-width: 26px;
height: auto;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 26px;
color: #383838;
border: 0;
border-bottom: 9px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td, .tail-datetime-calendar .calendar-datepicker table tr th {
width: 26px;
height: 26px
}
.tail-datetime-calendar .calendar-datepicker table tr th {
font-family: "ptsans", "Arial", sans-serif;
text-transform: lowercase;
font-weight: 700;
font-size: 16px;
line-height: 21px;
color: #b9b9b9;
border-bottom: 11px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-today {
color: #4359fa;
border-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-select {
border-color: transparent;
background-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day:hover {
border-color: transparent;
opacity: .65
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select span {
display: block;
margin: auto;
width: 26px;
background-color: rgba(67, 89, 250, .33);
border-radius: 3px
}
.message-box {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.message-box__field {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin-top: -5px;
padding: 0;
width: 100%;
min-height: 30px;
font-family: inherit;
font-size: 13px;
line-height: 24px;
letter-spacing: -.3px;
color: #383838;
border: 0;
resize: none;
-webkit-transition: all .3s ease;
transition: all .3s ease
}
.editing .message-box__field {
margin: -15px 0 0;
padding: 15px 5px 15px 15px;
border: 1px solid #d3d3d3;
border-radius: 3px
}
.message-box__field:focus {
outline: 0
}
.message-box__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 4px 0 0 4px
}
.message-box__buttons {
display: none;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
margin-left: auto;
margin-top: -4px;
margin-right: -8px
}
.editing .message-box__buttons {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.editing .message-box__edit {
display: none
}
.page-header {
position: fixed;
text-transform: 0;
left: 0;
right: 0;
max-width: 100vw;
font-size: 14px;
line-height: 18px;
color: #fffffff;
background-color: #020337;
z-index: 11
}
.main-nav ul, .page-header__wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 4px 17px 6px 10px
}
.page-header__logo {
margin-right: 8px
}
.page-header__user-block {
margin-left: auto
}
.main-nav ul {
padding: 0;
list-style: none;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.main-nav a {
color: #fff;
opacity: .65;
-webkit-transition: opacity .3s ease, text-shadow .3s ease;
transition: opacity .3s ease, text-shadow .3s ease
}
.main-nav a:hover {
text-shadow: .5px 0 0 #fff;
opacity: 1
}
.main-nav li.active a {
font-weight: 700;
opacity: 1
}
.user-block {
position: relative
}
.user-block__toggler {
position: relative;
margin-bottom: -1px;
padding: 0;
border: 0
}
.user-block__toggler::after {
content: "";
position: absolute;
top: 100%;
right: 0;
width: 201px;
height: 4px
}
.user-block__menu {
list-style: none;
position: absolute;
top: 100%;
right: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 16px 16px 15px;
min-width: 201px;
font-size: 14px;
line-height: 18px;
background-color: #fff;
border: 1px solid #d5d5d5;
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
opacity: 0;
pointer-events: none
}
.user-block li {
margin-bottom: 16px
}
.user-block a, .user-block__menu {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.user-block a:hover {
opacity: .65
}
.user-block:hover .user-block__menu, .user-block__toggler:focus + .user-block__menu, .user-block__toggler:hover + .user-block__menu {
opacity: 1;
pointer-events: auto
}
.crm-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 57px
}
.task {
position: relative
}
.task__button {
position: absolute;
top: -19px;
right: 25px
}
.task__table {
width: 100%;
padding-top: 22px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.task th {
padding: 17px 15px 16px;
font-weight: 700;
text-align: left;
border-bottom: 1px solid #e5e5e5
}
.task th:first-child {
padding-left: 32px;
width: 26.3%
}
.task th:nth-child(2) {
width: 23.6%
}
.task th:nth-child(3) {
width: 25%
}
.task td {
padding: 15px 15px 16px;
border-bottom: 1px solid #e5e5e5
}
.task td:first-child {
padding-left: 32px
}
.members {
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;
padding: 28px 47px 0 33px
}
@media (max-width: 1140px) {
.members {
padding: 28px 24px 0
}
}
.members__contact {
width: 49%;
margin-bottom: 10px
}
.deal-log {
overflow: auto;
width: 100%;
height: calc(100vh - 59px);
position: relative;
padding: 24px 0 0
}
.deal-log__list {
list-style: none;
padding: 0 63px 90px 14px
}
.deal-log__header {
margin-bottom: 16px;
padding-left: 18px
}
.deal-log__message-panel {
position: absolute;
bottom: 0;
height: 156px;
width: 100%;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 242, .0001)), color-stop(81.71%, #f2f2f2));
background: linear-gradient(180deg, rgba(242, 242, 242, .0001) 0%, #f2f2f2 81.71%)
}
.event {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
margin-bottom: 32px
}
.event .label {
margin-top: -2px
}
.event__data-block {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 71px;
margin-right: 17px;
text-align: right
}
.event__data, .event__time {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
opacity: .65
}
.event__data {
margin-right: 3px;
font-weight: 700
}
.event__time {
font-weight: 400
}
.event__message-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.event__author, .event__message, .event__text {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px
}
.event__author {
margin-right: 6px;
line-height: 18px;
font-weight: 700
}
.event__message, .event__text {
font-weight: 400
}
.event__text {
margin-right: 7px;
line-height: 18px
}
.event__text b {
margin-left: 5px
}
.event__message {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
margin-top: 8px;
margin-bottom: 1px;
line-height: 24px
}
.event__message-sms {
position: relative;
-ms-flex-preferred-size: auto;
flex-basis: auto;
width: 312px;
margin-top: 11px;
margin-left: -11px;
margin-right: 50px;
padding: 8px 11px 15px;
background-color: #fff;
border-radius: 20px
}
.event__message-sms::before {
content: "";
position: absolute;
top: -4px;
left: 0;
display: block;
width: 25px;
height: 25px;
background: url(../img/cloud-bg.svg) no-repeat;
z-index: -5
}
.event__avatar {
-ms-flex-negative: 0;
flex-shrink: 0;
margin-right: 10px
}
.task-widget {
position: absolute;
top: 18px;
right: 32px;
text-align: right
}
.task-widget__button.hide, .task-widget__container .task-widget__close-button, .task-widget__container .task-widget__input {
display: none
}
.task-widget__container {
visibility: hidden;
opacity: 0;
position: absolute;
top: 0;
right: 0;
width: 457px;
padding-top: 18px;
padding-right: 22px;
background-color: #fff;
-webkit-transition: .5s opacity;
transition: .5s opacity
}
.task-widget__container.show {
visibility: visible;
padding-bottom: 10px;
opacity: 1;
-webkit-transition: .5s opacity;
transition: .5s opacity;
z-index: 10
}
.task-widget__container.show .task-widget__close-button {
display: block;
top: 16px;
left: 16px
}
.task-widget__container.show .task-widget__input {
display: block;
cursor: pointer
}
.task-widget__container.show .task-widget__input--date {
min-width: 0
}
.task-widget__textarea {
overflow: hidden;
min-width: 382px;
height: auto;
margin: 0;
padding-top: 0;
padding-left: 0;
padding-bottom: 3px;
font-style: italic;
line-height: 18px;
border-radius: 0;
border: 0;
border-bottom: 1px solid #979797;
-webkit-transition: .3s height;
transition: .3s height
}
.task-widget__executor, .task-widget__type {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 104px;
padding-right: 5px;
-ms-flex-negative: 0;
flex-shrink: 0
}
.task-widget__executor {
width: 131px
}
.task-widget__executor .choices__list.choices__list--single, .task-widget__type .choices__list.choices__list--single {
width: auto
}
.task-widget__date-wrapper {
position: relative;
min-height: 29px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transform: translateY(-2px);
transform: translateY(-2px)
}
.task-widget__calendar-container {
position: absolute;
top: 100%;
right: 0
}
.task-widget__calendar-container .calendar-close {
display: none
}
.task-widget__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 15px 0 0 10px;
text-align: left
}
.task-widget__form .choices {
margin-bottom: 0
}
.task-widget__form .choices__inner {
padding-right: 0
}
.task-widget__form .choices__list--single, .task-widget__form .choices__list--single .choices__placeholder {
font-size: 14px;
line-height: 18px
}
.task-widget__form .task-widget__button {
border: 0;
background-color: #fff;
padding: 0
}
.task-widget__form .task-widget__input {
width: auto;
height: auto;
font-size: 14px;
line-height: 18px;
color: rgba(56, 56, 56, .65)
}
.task-widget__form .task-widget__input--date {
color: #383838
}
.task-widget__form .task-widget__input--date::-webkit-input-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date::-moz-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date:-ms-input-placeholder, .task-widget__form .task-widget__input--date::-ms-input-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date::placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__button {
margin-left: auto;
font-size: 14px;
line-height: 18px;
margin-top: 3px
}
.message-panel {
padding: 61px 24px 10px 22px
}
.message-panel__input {
width: 100%;
padding-left: 16px;
padding-right: 100px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
border-radius: 20px
}
.message-panel__button {
position: absolute;
top: 65px;
right: 28px;
height: 33px
}
.message-panel__options {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: baseline;
-ms-flex-pack: baseline;
justify-content: baseline;
padding-top: 11px;
padding-left: 5px;
padding-right: 7px
}
.message-panel__toggle, .message-panel__toggle:hover {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.message-panel__toggle {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
margin-right: 10px;
color: rgba(56, 56, 56, .65)
}
.message-panel__toggle:hover {
opacity: .7
}
.message-panel__toggle--active {
font-weight: 700;
color: #383838
}
.message-panel__length {
margin-left: auto;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400
}
div.message-panel--chat, div.message-panel--letter {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding-left: 41px
}
div.message-panel--chat .message-panel__form, div.message-panel--letter .message-panel__form {
position: relative
}
div.message-panel--chat .message-panel__options, div.message-panel--letter .message-panel__options {
display: none
}
div.message-panel--chat .message-panel__button, div.message-panel--letter .message-panel__button {
top: 4px;
right: 4px
}
.communication-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 60px;
margin-top: 59px;
padding-left: 32px;
padding-top: 3px;
border-bottom: 1px solid #e5e5e5
}
.communication-header__caption {
margin-right: 22px;
-webkit-transform: translateY(-3px);
transform: translateY(-3px)
}
.communication-header__button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
margin-right: 7px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
border: 0;
background-color: transparent;
border-bottom: 1px solid transparent;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.communication-header__button.active {
text-shadow: 0 0 1px #383838;
border-bottom-color: #383838
}
.communication-header__button:hover {
opacity: .6;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.communication-header__button:focus {
outline: 0
}
.communication-header__button:active {
color: rgba(0, 0, 0, .85)
}
.communication-header__unread-count {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
min-width: 18px;
height: 18px;
margin-right: 28px;
padding-bottom: 1px;
padding-right: 3px;
padding-left: 2px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 10px;
line-height: 13px;
font-weight: 700;
color: #fff;
text-decoration: none;
border-radius: 9px;
background-color: #4359fa
}
.communication-header__unread-count, .communication-mail {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.communication-mail__letter, .communication-mail__list {
width: 48.5%;
-ms-flex-negative: 0;
flex-shrink: 0
}
.communication-mail__letter {
width: 51.5%
}
.mail-list, .mail-list__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.mail-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
border-right: 2px solid #f2f2f2
}
.mail-list__actions {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 11px 8px 11px 28px
}
.mail-list__new {
min-width: 140px;
-webkit-transform: translateY(-1px);
transform: translateY(-1px)
}
.mail-list__table {
width: 100%;
border-bottom: 1px solid #e5e5e5
}
.mail-list__table td, .mail-list__table th {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
color: #000;
border-top: 1px solid #e5e5e5
}
.mail-list__table th {
text-align: left;
padding: 16px 10px 13px;
font-weight: 700
}
.mail-list__table td {
padding: 14px 10px;
font-weight: 400
}
.mail-list__table td:first-child, .mail-list__table th:first-child {
padding-left: 34px;
padding-top: 16px
}
.mail-list__table td:nth-child(4), .mail-list__table th:nth-child(4) {
width: 18px;
padding: 4px 0 0
}
.mail-list__table .unread td {
font-weight: 700
}
.mail-list__table tbody tr {
background-color: #f2f2f2;
-webkit-transition: .3s background-color;
transition: .3s background-color;
cursor: pointer
}
.mail-list__table tbody tr:hover {
background-color: #fff;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.mail-list__table tr.active {
background-color: #fff
}
.mail-list__pagination-block {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 4px 29px 8px;
background-color: #f2f2f2
}
.letter, .letter__wrapper {
height: calc(100vh - 119px)
}
.letter {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.letter__wrapper {
overflow: auto;
padding: 10px 25px 0 54px
}
.communication__content.show, .letter__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.letter__visible {
min-height: 27px;
margin-left: auto;
padding: 0 5px;
border: 1px solid #bbb
}
.letter__add-message {
margin-top: auto;
padding: 61px 25px 44px 54px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), color-stop(81.71%, rgba(255, 255, 255, .95)));
background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .95) 81.71%)
}
.letter__button {
min-width: 115px;
margin-right: 8px
}
.letter__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-top: 22px;
padding-bottom: 100px
}
.letter__subject {
margin-bottom: 22px
}
.letter__date {
margin-left: auto;
line-height: 18px;
font-weight: 400;
color: #000
}
.letter__attachment, .letter__body, .letter__date, .letter__link {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px
}
.letter__body {
color: #000;
line-height: 20px;
font-weight: 400
}
.letter__attachment, .letter__link {
line-height: 18px;
font-weight: 700
}
.letter__attachment {
margin-top: 3px;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
margin-bottom: 7px
}
.letter__link {
margin-bottom: 15px
}
.dashboard-card__toggler svg, .letter__visible:hover svg {
opacity: 1
}
.communication {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.communication__content {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: none
}
.communication-telegram__list {
width: 48.5%;
-ms-flex-negative: 0;
flex-shrink: 0
}
.communication-telegram__chat {
width: 51.5%
}
.chat-list {
background-color: #f2f2f2;
border-right: 1px solid #f2f2f2
}
.chat-list__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 11px 9px 12px 28px;
border-bottom: 1px solid #dfdfdf
}
.chat-list__search {
margin-left: auto
}
.chat-list__content-item, .chat-list__content-item:hover {
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.chat-list__content-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 11px 17px 14px 32px;
border-bottom: 1px solid #dfdfdf;
cursor: pointer
}
.chat-list__content-item:hover {
background-color: #fff
}
.chat-list__content-item--active {
background-color: rgba(255, 255, 255, .88)
}
.chat-list__avatar {
width: 48px;
height: 48px;
margin-right: 10px
}
.chat-list__avatar span {
font-family: "ptsans", "Arial", sans-serif;
font-size: 23px;
line-height: 30px;
font-weight: 700
}
.chat-list__wrapper-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 79%;
padding-top: 7px
}
.chat-list__message, .chat-list__name {
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px
}
.chat-list__name {
margin-bottom: 2px;
font-weight: 700
}
.chat-list__message {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 400;
opacity: .65
}
.chat-list__wrapper-right {
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: end;
-ms-flex-align: end;
align-items: flex-end;
margin-left: auto;
padding-top: 5px
}
.chat-list__count-message, .chat-list__time {
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px
}
.chat-list__time {
margin-bottom: 3px;
font-weight: 400
}
.chat-list__count-message {
padding: 2px 7px;
font-weight: 700;
color: #fff;
background-color: #bcbcbc;
border-radius: 10.5px
}
.chat, .chat__wrapper {
height: calc(100vh - 119px)
}
.chat {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.chat__wrapper {
overflow: auto;
padding: 10px 37px 0 53px
}
.chat__content {
padding-bottom: 100px
}
.chat__date {
margin-bottom: 11px;
padding-right: 9px;
text-align: center;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
letter-spacing: -.0565218px;
color: #999
}
.chat__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 44px;
margin-left: 1px
}
.chat__button {
min-width: 115px;
margin-right: 8px
}
.chat__add-message {
margin-top: auto;
padding: 61px 25px 44px 53px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), color-stop(81.71%, rgba(255, 255, 255, .95)));
background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .95) 81.71%)
}
.chat__message-day {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
text-align: right;
width: 18px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
letter-spacing: -.0521739px;
color: #999
}
.chat__list {
padding: 0;
list-style: none;
margin-bottom: 38px
}
.chat__list:last-of-type .chat__message-day {
visibility: hidden
}
.chat__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: -1px
}
.chat__avatar {
width: 36px;
height: 36px;
margin-right: 10px
}
.chat__author {
margin-bottom: 2px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
color: #2481cc
}
.chat__wrapper-message, .chat__wrapper-message div {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.chat__wrapper-message {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.chat__wrapper-message div {
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
.chat__link, .chat__message {
margin-bottom: 11px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
letter-spacing: -.0565218px
}
.chat__message {
color: #060606;
font-weight: 400
}
.chat__link {
font-weight: 700
}
.chat__read {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-left: auto;
padding-left: 5px
}
.settings {
margin-top: 59px;
margin-bottom: 35px
}
.settings .choices__placeholder {
display: none
}
.settings__form {
width: 613px;
padding-left: 4px
}
.settings__header {
display: block;
padding: 16px 0 12px 32px;
border-bottom: 1px solid #dbdbdb
}
.settings__list {
list-style: none;
padding: 16px 0 14px 32px;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.settings__item {
margin-right: 25px
}
.settings__toggle, .settings__toggle:hover {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.settings__toggle {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
color: rgba(56, 56, 56, .65);
border: 0;
background-color: transparent;
border-bottom: 1px solid transparent
}
.settings__toggle.active {
text-shadow: 0 0 1px #383838;
border-bottom-color: #383838
}
.settings__toggle:hover {
opacity: .6
}
.settings__toggle:focus {
outline: 0
}
.settings__toggle:active {
color: rgba(0, 0, 0, .85)
}
.settings__content {
display: none
}
.settings__content.show {
display: block;
padding: 27px 0 0 28px
}
.settings__content--account.show {
padding-top: 12px
}
.settings__content--integration.show {
padding-top: 17px
}
.settings__caption {
margin-top: 41px;
margin-bottom: 37px
}
.settings__caption--account {
margin-top: 47px;
margin-bottom: 29px
}
.settings__field {
margin-bottom: 32px
}
.settings__field--account {
margin-bottom: 24px
}
.settings__field--tiny .input {
width: 200px
}
.settings__field--tiny .choices {
min-width: 200px
}
.settings__top-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 37px
}
.settings__avatar {
width: 63px;
height: 63px;
margin-right: 12px
}
.settings__avatar span {
font-family: "ptsans", "Arial", sans-serif;
font-size: 36px;
line-height: 47px;
font-weight: 700
}
.settings__button {
margin-top: 8px
}
.settings__button-account {
margin-top: 4px
}
.settings__integration-list {
padding: 0;
list-style: none;
border-top: 1px solid #dbdbdb
}
.settings__integration-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
min-height: 72px;
border-bottom: 1px solid #dbdbdb
}
.settings__integration-item, .settings__integration-title, .settings__sms-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.settings__integration-title {
margin-right: auto;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.settings__integration-title::before {
content: "";
display: block;
margin-right: 10px;
width: 32px
}
.settings__integration-title--telegram::before {
height: 32px;
background: url(../img/telegram.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--telegram::before {
background: url(../img/telegram@2x.png) no-repeat center center/32px 32px
}
}
.settings__integration-title--gmail::before {
height: 22px;
background: url(../img/gmail.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--gmail::before {
background: url(../img/gmail@2x.png) no-repeat center center/32px 22px
}
}
.settings__integration-title--sms::before {
height: 10px;
background: url(../img/sms.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--sms::before {
background: url(../img/sms@2x.png) no-repeat center center/32px 10px
}
}
.settings__sms-wrapper {
min-height: 72px;
width: 100%
}
.settings__sms-content {
padding-left: 43px
}
.settings__text, .settings__title {
margin-bottom: 8px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 700;
color: #383838
}
.settings__text {
margin-bottom: 35px;
font-weight: 400
}
.settings__text a {
font-weight: 400
}
.settings__integration-field {
margin-bottom: 33px
}
.settings__integration-button {
margin-top: -8px;
margin-bottom: 36px
}
.settings__sms-content {
display: none
}
.settings__integration-item--sms.show {
min-height: auto
}
.settings__integration-item--sms.show .settings__sms-content {
display: block
}
.toggler__label {
position: relative;
padding-right: 49px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 700;
color: #8d8d8d;
cursor: pointer;
-webkit-transition: .3s color;
transition: .3s color
}
.toggler__label::after, .toggler__label::before {
content: "";
position: absolute;
top: -2px;
right: 0;
display: block;
width: 42px;
height: 22px;
border-radius: 15px;
background-color: #606060;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.toggler__label::before {
top: 1px;
right: 23px;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #fff;
z-index: 10;
-webkit-transition: .3s right;
transition: .3s right
}
.toggler__input:checked + label {
color: #259400;
-webkit-transition: .3s color;
transition: .3s color
}
.toggler__input:checked + label::after {
background-color: #259400;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.toggler__input:checked + label::before {
right: 3px;
-webkit-transition: .3s right;
transition: .3s right
}
.dasboard-section {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
color: #fff;
background-color: #1d1d47
}
.dasboard-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 21px 34px 20px 31px
}
.dasboard-section__title {
margin-right: auto;
font-size: 38px;
line-height: 1.2
}
.dasboard-section__date {
margin-top: 18px;
font-size: 16px;
opacity: .65
}
.dasboard-section__actions {
margin-top: 21px;
margin-left: 14px
}
.dasboard-section__col, .dasboard-section__wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.dasboard-section__wrapper {
padding: 0 22px
}
.dasboard-section__col {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 50%
}
.dasboard-section__card {
margin: 0 10px 20px
}
.dasboard-section__card:last-child {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.dashboard-card {
color: #383838;
background-color: #fff;
border-radius: 8px;
overflow: hidden
}
.dashboard-card__header {
position: relative;
padding: 22px 20px 11px 24px
}
.dashboard-card__title {
margin-bottom: 5px;
font-size: 28px;
line-height: 33px;
letter-spacing: .2px
}
.dashboard-card__descr {
font-size: 12px;
line-height: 14px;
opacity: .75
}
.dashboard-card__toggler {
position: absolute;
top: 13px;
right: 16px;
opacity: 0;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
display: none
}
.dashboard-card__table {
padding-bottom: 5px
}
.dashboard-card__list {
padding: 10px 24px;
min-height: 114px
}
.dashboard-card__info ul, .dashboard-card__list ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0;
padding: 0;
list-style: none;
font-size: 12px;
line-height: 16px;
color: #898989
}
.dashboard-card__list li {
margin: 0 20px 20px 0;
width: 200px
}
@media (max-width: 1100px) {
.dashboard-card__list li {
width: 190px
}
}
.dashboard-card__list h3 {
margin-bottom: 4px;
font-size: 18px;
line-height: 21px;
letter-spacing: .2px
}
.dashboard-card__list a {
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.dashboard-card__list a:hover, .info-table a:hover {
color: #131f78
}
.dashboard-card__info {
padding: 10px 24px
}
.dashboard-card__info ul {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
max-width: 550px;
line-height: 14px;
color: #383838
}
.dashboard-card__info li {
margin: 0 20px 22px 0;
min-width: 200px
}
@media (max-width: 1100px) {
.dashboard-card__info li {
min-width: 190px
}
}
.dashboard-card__info li:last-child {
color: #6d35fb
}
.dashboard-card__info h3 {
font-size: 34px;
line-height: 40px
}
.dashboard-card__info p {
color: #383838;
opacity: .65
}
.dashboard-card__info--small {
padding-right: 48px;
text-align: center
}
.dashboard-card__info--small li {
margin-bottom: 16px;
min-width: auto
}
.dashboard-card__info--small h3 {
margin-bottom: -2px;
font-size: 40px
}
.dashboard-card__stats {
padding: 12px 33px 22px;
font-size: 14px;
line-height: 17px
}
.dashboard-card__stats ul {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 0;
-moz-column-gap: 0;
column-gap: 0;
margin: 0;
padding: 0;
list-style: none;
max-width: 448px
}
.dashboard-card__stats li {
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
break-inside: avoid;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 10px;
text-align: right
}
.dashboard-card__stats span {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: block;
padding-right: 10px;
max-width: 170px
}
.dashboard-card__stats span::after {
content: ":"
}
.dashboard-card__stats b {
display: block;
min-width: 44px;
text-align: left
}
.dashboard-card__chart {
padding: 32px 24px 0;
max-width: 550px
}
.dashboard-card:hover .dashboard-card__toggler {
opacity: 1
}
.info-table {
width: 100%;
font-size: 14px;
line-height: 17px;
border-collapse: collapse
}
.info-table tr:not(:last-child) {
border-bottom: 1px solid #ebebeb
}
.info-table th {
text-align: left
}
.info-table td, .info-table th {
padding-top: 16px;
padding-bottom: 16px;
padding-left: 12px;
width: 25%
}
.info-table td:first-child, .info-table th:first-child {
padding-left: 24px;
width: 25.5%
}
.info-table td:last-child, .info-table th:last-child {
padding-right: 24px
}
.info-table a, .info-table p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.info-table a {
display: block;
font-weight: 700;
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease;
max-width: 130px
}
@media (max-width: 1100px) {
.info-table a {
max-width: 100px
}
}
.info-table p {
max-width: 100%
}
.chart {
display: block;
width: 100%
} | frontend/web/css/style.css | @charset "UTF-8";
@font-face {
font-family: "ptsans";
font-weight: 400;
font-style: normal;
font-display: swap;
src: url(../fonts/ptsans.woff2) format("woff2"), url(../fonts/ptsans.woff) format("woff")
}
@font-face {
font-family: "ptsans";
font-weight: 700;
font-style: normal;
font-display: swap;
src: url(../fonts/ptsansbold.woff2) format("woff2"), url(../fonts/ptsansbold.woff) format("woff")
}
.container {
max-width: 1920px;
width: 100%;
margin: 0 auto
}
body {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #383838
}
@media (max-width: 1023px) {
body {
min-width: 1024px
}
}
.modal-open, html.has-lightbox {
overflow: hidden
}
.landing {
background: url(../img/cosmonaut.png) no-repeat right top
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.landing {
background: url(../img/cosmonaut@2x.png) no-repeat right top/783px 605px
}
}
@media (max-width: 1150px) {
.landing {
background-size: 623px 445px
}
}
*, ::after, ::before {
-webkit-box-sizing: inherit;
box-sizing: inherit
}
html {
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100%
}
main {
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
width: 100%
}
blockquote, body, h1, h2, h3, h4, h5, h6, ol, p, ul {
margin: 0
}
a {
color: inherit;
text-decoration: none
}
img {
display: block;
max-width: 100%;
height: auto
}
img:not([src]) {
visibility: hidden
}
button {
cursor: pointer
}
input::-webkit-input-placeholder {
line-height: normal !important
}
input:not([type=checkbox]):not([type=radio]), textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
border: 0;
clip: rect(0 0 0 0)
}
.header-1, .header-2, .header-3 {
font-family: "ptsans", "Arial", sans-serif;
font-size: 38px;
line-height: 48px;
font-weight: 700
}
.header-2, .header-3 {
font-size: 28px;
line-height: 26px
}
.header-3 {
font-size: 24px;
line-height: 31px
}
.choices {
position: relative;
margin-bottom: 24px;
font-size: 16px
}
.choices:focus {
outline: 0
}
.actions-list__dropdown li:last-child, .choices:last-child, .user-block li:last-child {
margin-bottom: 0
}
.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
background-color: #eaeaea;
cursor: not-allowed;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.choices.is-disabled .choices__item {
cursor: not-allowed
}
.choices[data-type*=select-one] {
cursor: pointer
}
.choices[data-type*=select-one] .choices__inner {
padding-bottom: 7.5px
}
.choices[data-type*=select-one] .choices__input {
display: block;
width: 100%;
padding: 10px;
border-bottom: 1px solid #ddd;
background-color: #fff;
margin: 0
}
.choices[data-type*=select-one] .choices__button {
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
padding: 0;
background-size: 8px;
position: absolute;
top: 50%;
right: 0;
margin-top: -10px;
margin-right: 25px;
height: 20px;
width: 20px;
border-radius: 10em;
opacity: .5
}
.choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
opacity: 1
}
.choices[data-type*=select-one] .choices__button:focus {
-webkit-box-shadow: 0 0 0 2px #00bcd4;
box-shadow: 0 0 0 2px #00bcd4
}
.choices[data-type*=select-one]:after {
content: "";
height: 0;
width: 0;
border-style: solid;
border-color: #333 transparent transparent;
border-width: 5px;
position: absolute;
right: 11.5px;
top: 50%;
margin-top: -2.5px;
pointer-events: none
}
.choices[data-type*=select-one].is-open:after {
border-color: transparent transparent #333;
margin-top: -7.5px
}
.choices[data-type*=select-one][dir=rtl]:after {
left: 11.5px;
right: auto
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
right: auto;
left: 0;
margin-left: 25px;
margin-right: 0
}
.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
cursor: text
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
position: relative;
display: inline-block;
margin: 0 -4px 0 8px;
padding-left: 16px;
border-left: 1px solid #008fa1;
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIH<KEY>);
background-size: 8px;
width: 8px;
line-height: 1;
opacity: .75;
border-radius: 0
}
.choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
opacity: 1
}
.choices__inner {
display: inline-block;
vertical-align: top;
width: 100%;
background-color: #f9f9f9;
padding: 7.5px 7.5px 3.75px;
border: 1px solid #ddd;
border-radius: 2.5px;
font-size: 14px;
min-height: 44px;
overflow: hidden
}
.is-focused .choices__inner, .is-open .choices__inner {
border-color: #b7b7b7
}
.is-open .choices__inner {
border-radius: 2.5px 2.5px 0 0
}
.is-flipped.is-open .choices__inner {
border-radius: 0 0 2.5px 2.5px
}
.choices__list {
margin: 0;
padding-left: 0;
list-style: none
}
.choices__list--single {
display: inline-block;
padding: 4px 16px 4px 4px;
width: 100%
}
[dir=rtl] .choices__list--single {
padding-right: 4px;
padding-left: 16px
}
.choices__list--single .choices__item, .filters-block__field input {
width: 100%
}
.choices__list--multiple {
display: inline
}
.choices__list--multiple .choices__item {
display: inline-block;
vertical-align: middle;
border-radius: 20px;
padding: 4px 10px;
font-size: 12px;
font-weight: 500;
margin-right: 3.75px;
margin-bottom: 3.75px;
background-color: #00bcd4;
border: 1px solid #00a5bb;
color: #fff;
word-break: break-all
}
.choices__list--multiple .choices__item[data-deletable] {
padding-right: 5px
}
[dir=rtl] .choices__list--multiple .choices__item {
margin-right: 0;
margin-left: 3.75px
}
.choices__list--multiple .choices__item.is-highlighted {
background-color: #00a5bb;
border: 1px solid #008fa1
}
.is-disabled .choices__list--multiple .choices__item {
background-color: #aaa;
border: 1px solid #919191
}
.choices__list--dropdown {
display: none;
z-index: 1;
position: absolute;
width: 100%;
background-color: #fff;
border: 1px solid #ddd;
top: 100%;
margin-top: -1px;
border-bottom-left-radius: 2.5px;
border-bottom-right-radius: 2.5px;
overflow: hidden;
word-break: break-all
}
.choices__list--dropdown.is-active {
display: block
}
.is-open .choices__list--dropdown {
border-color: #b7b7b7
}
.is-flipped .choices__list--dropdown {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: -1px;
border-radius: .25rem .25rem 0 0
}
.choices__list--dropdown .choices__list {
position: relative;
max-height: 300px;
overflow: auto;
-webkit-overflow-scrolling: touch;
will-change: scroll-position
}
.choices__list--dropdown .choices__item {
position: relative;
padding: 10px;
font-size: 14px
}
[dir=rtl] .choices__list--dropdown .choices__item {
text-align: right
}
@media (min-width: 640px) {
.choices__list--dropdown .choices__item--selectable {
padding-right: 100px
}
.choices__list--dropdown .choices__item--selectable:after {
content: attr(data-select-text);
font-size: 12px;
opacity: 0;
position: absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
[dir=rtl] .choices__list--dropdown .choices__item--selectable {
text-align: right;
padding-left: 100px;
padding-right: 10px
}
[dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
right: auto;
left: 10px
}
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
background-color: #f2f2f2
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
opacity: .5
}
.choices__item {
cursor: default
}
.choices__item--selectable, .tail-datetime-calendar .calendar-actions span[data-action] {
cursor: pointer
}
.choices__item--disabled {
cursor: not-allowed;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: .5
}
.choices__heading {
font-weight: 600;
font-size: 12px;
padding: 10px;
border-bottom: 1px solid #f7f7f7;
color: gray
}
.choices__button {
text-indent: -9999px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 0;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
cursor: pointer
}
.choices__button:focus, .choices__input:focus {
outline: 0
}
.choices__input {
display: inline-block;
vertical-align: baseline;
background-color: #f9f9f9;
font-size: 14px;
margin-bottom: 5px;
border: 0;
border-radius: 0;
max-width: 100%;
padding: 4px 0 4px 2px
}
[dir=rtl] .choices__input {
padding-right: 2px;
padding-left: 0
}
.choices__placeholder {
opacity: .5
}
.choices[data-type*=select-multiple] .choices__input.is-hidden, .choices[data-type*=select-one] .choices__input.is-hidden, .choices__input.is-hidden, .tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick:after, .tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick:before, .tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] {
display: none
}
.tail-datetime-calendar *, .tail-datetime-calendar :after, .tail-datetime-calendar :before {
box-sizing: border-box;
-webkit-box-sizing: border-box
}
.tail-datetime-calendar {
top: 0;
left: 0;
height: auto;
padding: 0;
z-index: 3000;
display: block;
position: absolute;
visibility: hidden;
direction: ltr;
border-collapse: separate;
font-family: "Open Sans", Calibri, Arial, sans-serif;
background-color: #fff;
border-radius: 3px
}
.tail-datetime-calendar:after {
clear: both;
content: "";
display: block;
font-size: 0;
visibility: hidden
}
.tail-datetime-calendar.calendar-static {
top: auto;
left: auto;
margin-left: auto;
margin-right: auto;
position: static;
visibility: visible
}
.tail-datetime-calendar .calendar-actions, .tail-datetime-calendar button.calendar-close {
color: #303438;
background-color: #fff;
border-width: 0;
border-style: solid;
border-color: transparent
}
.tail-datetime-calendar button.calendar-close {
top: 100%;
right: 15px;
opacity: .5;
position: absolute;
font-size: 14px;
line-height: 1.125em;
text-shadow: none;
border: 0;
outline: 0;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBmaWxsPSIjMzAzNDM4IiB kPSJNNy40OCA4bDMuNzUgMy43NS0xLjQ4IDEuNDhMNiA5LjQ4bC0zLjc1IDMuNzUtMS40OC0xLjQ4TDQuNTIgOCAuNz cgNC4yNWwxLjQ4LTEuNDhMNiA2LjUybDMuNzUtMy43NSAxLjQ4IDEuNDhMNy40OCA4eiIvPjwvc3ZnPg==");
background-repeat: no-repeat;
background-position: center center;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 1px 2px 1px rgba(0, 0, 0, .1);
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 1px 2px 1px rgba(0, 0, 0, .1);
transition: opacity 142ms linear;
-webkit-transition: opacity 142ms linear;
width: 35px;
height: 25px;
margin: 1px 0 0;
padding: 5px 10px;
border-radius: 0 0 3px 3px
}
.tail-datetime-calendar button.calendar-close:hover {
opacity: 1
}
.tail-datetime-calendar .calendar-tooltip {
color: #fff;
width: auto;
margin: 0;
padding: 0;
display: block;
position: absolute;
background-color: #303438;
border-radius: 3px
}
.tail-datetime-calendar .calendar-tooltip:before {
top: -7px;
left: 50%;
width: 0;
height: 0;
margin: 0 0 0 -6px;
content: "";
display: block;
position: absolute;
border-width: 0 7px 7px;
border-style: solid;
border-color: transparent transparent #303438
}
.tail-datetime-calendar .calendar-tooltip .tooltip-inner {
width: auto;
margin: 0;
padding: 4px 7px;
display: block;
font-size: 12px;
line-height: 14px
}
.tail-datetime-calendar .calendar-actions {
width: 100%;
height: 36px;
margin: 0;
padding: 0;
display: table;
overflow: hidden;
border-spacing: 0;
border-collapse: separate;
border-radius: 3px 3px 0 0
}
.tail-datetime-calendar .calendar-actions span {
margin: 0;
padding: 0;
opacity: .5;
display: table-cell;
position: relative;
text-align: center;
text-shadow: none;
background-repeat: no-repeat;
background-position: center center;
transition: opacity 142ms linear, background 142ms linear;
-webkit-transition: opacity 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-actions span.action {
width: 50px;
font-size: 22px
}
.tail-datetime-calendar .calendar-actions span.label {
width: auto;
opacity: 1;
font-size: 16px
}
.tail-datetime-calendar .calendar-actions span:first-child {
border-radius: 4px 0 0 0
}
.tail-datetime-calendar .calendar-actions span:last-child {
border-radius: 0 4px 0 0
}
.tail-datetime-calendar .calendar-actions span:first-child:before, .tail-datetime-calendar .calendar-actions span:last-child:before {
top: 5px;
bottom: 5px;
width: 1px;
height: auto;
margin: 0;
padding: 0;
content: "";
position: absolute;
background-color: #e6e6e6
}
.tail-datetime-calendar .calendar-actions span:first-child:before {
right: -1px
}
.tail-datetime-calendar .calendar-actions span:last-child:before {
left: -1px
}
.tail-datetime-calendar .calendar-actions span:first-child:before, .tail-datetime-calendar .calendar-actions span:first-child:hover:before, .tail-datetime-calendar .calendar-actions span:last-child:before, .tail-datetime-calendar .calendar-actions span:last-child:hover:before {
display: none
}
.tail-datetime-calendar .calendar-actions span.action-submit {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBkPSJNMTIgNWwtOCA4LTQ tNCAxLjUtMS41TDQgMTBsNi41LTYuNUwxMiA1eiIvPjwvc3ZnPg==")
}
.tail-datetime-calendar .calendar-actions span.action-cancel {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9z dmciIHdpZHRoPSI<KEY>)
}
.tail-datetime-calendar .calendar-datepicker {
width: 100%;
display: block;
position: relative
}
.tail-datetime-calendar .calendar-datepicker:after, .tail-datetime-calendar .calendar-timepicker:after {
top: -1px;
left: 10px;
right: 10px;
content: "";
position: absolute;
border-width: 1px 0 0;
border-style: solid;
border-color: #e6e6e6
}
.tail-datetime-calendar .calendar-datepicker table {
width: 100%;
margin: 0;
padding: 0;
border-spacing: 1px;
border-collapse: separate
}
.tail-datetime-calendar .calendar-datepicker table tr td, .tail-datetime-calendar .calendar-datepicker table tr th {
padding: 0;
position: relative;
text-align: center;
text-shadow: none;
background-color: transparent;
border-width: 1px;
border-style: solid;
border-color: transparent;
border-radius: 3px
}
.tail-datetime-calendar .calendar-datepicker table tr td {
color: #303438;
font-size: 13px;
font-weight: 400;
line-height: 30px;
cursor: pointer
}
.tail-datetime-calendar .calendar-datepicker table tr td span.inner {
margin: 0;
padding: 0;
display: inline-block;
height: 26px
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-disabled {
cursor: not-allowed;
color: #a0a4a8
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-disabled:after {
color: #a0a4a8;
top: 0;
left: 0;
width: 49px;
height: 35px;
margin: 0;
padding: 0;
content: "✕";
opacity: .25;
display: inline-block;
position: absolute;
font-size: 30px;
line-height: 35px
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-next, .tail-datetime-calendar .calendar-datepicker table tr td.date-previous {
color: #808488;
background-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick, .tail-datetime-calendar .calendar-datepicker table tr td.date-today:before {
top: 5px;
width: 5px;
height: 5px;
margin: 0;
padding: 0;
z-index: 20;
content: "";
display: inline-block;
position: absolute;
border-width: 0;
border-style: solid;
border-color: transparent;
border-radius: 50%
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-today:before {
left: 5px;
background-color: #32b93c
}
.tail-datetime-calendar .calendar-datepicker table tr td .tooltip-tick {
right: 5px;
background-color: #303438
}
.tail-datetime-calendar .calendar-datepicker table tr td.date-select .tooltip-tick, .tail-datetime-calendar .calendar-datepicker table tr td.date-select.date-today:before, .tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up:hover {
background-color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day {
width: 14.28571429%
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-month {
width: 14.28571429%;
height: 35px
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year {
height: 35px;
width: 25%
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year:hover {
border-color: #e6e6e6
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-disabled:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-disabled:hover {
border-color: #fff;
background-color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-today, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-today, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-today {
color: #32b93c;
border-color: #32b93c
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-select span, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-select span, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-select span {
color: #fff
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month span.inner, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year span.inner {
border: 0
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade span.inner {
height: 54px;
padding: 7px 15px;
text-align: center;
line-height: 20px
}
.tail-datetime-calendar .calendar-timepicker {
width: 100%;
margin: 0;
padding: 0;
display: block;
position: relative;
border-top: 0;
text-align: center
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field {
width: auto;
margin: 0;
padding: 20px 10px 10px;
display: inline-block;
position: relative;
text-align: center
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field:first-of-type {
text-align: right
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field:last-of-type {
text-align: left
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text] {
color: #606468;
width: 75px;
height: 35px;
margin: 0;
z-index: 4;
padding: 3px 20px 3px 5px;
display: inline-block;
position: relative;
font-size: 12px;
text-align: center;
appearance: textfield;
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: #fff;
border-width: 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 3px;
box-shadow: none;
-webkit-box-shadow: none;
transition: color 142ms linear, border 142ms linear, background 142ms linear;
-webkit-transition: color 142ms linear, border 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:hover {
color: #404448;
border-color: #d0d0d0;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:focus {
color: #303438;
border-color: #149be6;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input[type=text]:disabled {
cursor: not-allowed;
color: #a0a4a8;
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step {
right: 11px;
width: 20px;
height: 17px;
margin: 0;
padding: 0;
z-index: 15;
display: inline-block;
position: absolute;
background-color: #fff;
box-shadow: none;
-webkit-box-shadow: none;
transition: border 142ms linear, background 142ms linear;
-webkit-transition: border 142ms linear, background 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step:before {
top: 5px;
left: 50%;
width: 0;
height: 0;
margin: 0 0 0 -3px;
padding: 0;
content: "";
display: inline-block;
position: absolute;
transition: border 142ms linear;
-webkit-transition: border 142ms linear
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up {
top: 21px;
border-width: 0 0 1px 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 0 2px 0 0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-up:before {
border-width: 0 4px 5px;
border-style: solid;
border-color: transparent transparent #606468
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down {
top: 37px;
border-width: 1px 0 0 1px;
border-style: solid;
border-color: #e0e0e0;
border-radius: 0 0 2px 0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field button.picker-step.step-down:before {
border-width: 5px 4px 0;
border-style: solid;
border-color: #606468 transparent transparent
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:before {
border-bottom-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:hover:before {
border-bottom-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up {
border-color: #149be6;
background-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:before {
border-top-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button.step-up:hover {
color: #fff;
background-color: #149be6
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:focus + button + button.step-down:hover:before {
border-top-color: #fff
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down:hover, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up:hover {
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up:before {
border-bottom-color: #a0a4a8
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down, .tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button.step-up {
cursor: not-allowed;
border-color: #d0d0d0;
background-color: #f0f0f0
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field input:disabled + button + button.step-down:before {
border-top-color: #a0a4a8
}
.tail-datetime-calendar .calendar-timepicker .timepicker-field label {
color: #606468;
margin: 0;
padding: 0;
display: block;
font-size: 12px
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch {
cursor: pointer;
margin: 0 0 -8px;
padding: 15px 0 0;
display: block;
text-align: center;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:after, .tail-datetime-calendar .calendar-timepicker label.timepicker-switch:before {
width: auto;
margin: 0;
padding: 0 5px;
font-size: 12px;
line-height: 16px;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:before {
content: attr(data-am)
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch:after {
content: attr(data-pm)
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span {
display: inline-block;
position: relative;
vertical-align: top
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span:before {
width: 50px;
height: 16px;
content: "";
display: inline-block;
vertical-align: top;
border-width: 1px;
border-style: solid;
border-color: #149be6;
border-radius: 14px;
transition: border 284ms linear;
-webkit-transition: border 284ms linear
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox] + span:after {
top: 3px;
left: 4px;
right: 30px;
width: auto;
height: 10px;
margin: 0;
padding: 0;
content: "";
display: inline-block;
position: absolute;
background-color: #149be6;
border-radius: 15px;
vertical-align: top;
transition: left 284ms linear, right 284ms linear 284ms, background 284ms linear;
-webkit-transition: left 284ms linear, right 284ms linear 284ms, background 284ms linear
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox]:checked + span:before {
border-color: #32b93c
}
.tail-datetime-calendar .calendar-timepicker label.timepicker-switch input[type=checkbox]:checked + span:after {
left: 30px;
right: 4px;
background-color: #32b93c;
transition: right 284ms linear, left 284ms linear 284ms, background 284ms linear;
-webkit-transition: right 284ms linear, left 284ms linear 284ms, background 284ms linear
}
.tail-datetime-calendar.rtl {
direction: rtl
}
.tail-datetime-calendar.rtl .calendar-actions span.action-next, .tail-datetime-calendar.rtl .calendar-actions span.action-prev {
transform: rotate(180deg);
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg)
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.date-disabled:after {
right: 3px;
transform: rotate(45deg);
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg)
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.date-today:before {
right: 5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td .tooltip-tick {
left: 5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade.date-today:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month.date-today:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year.date-today:before {
right: 50%;
margin-right: -2.5px
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade:hover span.inner:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month:hover span.inner:before, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year:hover span.inner:before {
right: 6px;
border-right-color: #ccc
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year span.inner:after {
left: 0
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade:hover span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-month:hover span.inner:after, .tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-year:hover span.inner:after {
left: 6px;
border-left-color: #ccc
}
.tail-datetime-calendar.rtl .calendar-datepicker table tr td.calendar-decade span.inner {
text-align: right
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:first-child {
text-align: left;
padding-left: 0;
padding-right: 25px
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:last-child {
text-align: right;
padding-left: 25px;
padding-right: 0
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:first-child input[type=text] {
margin-left: -1px;
margin-right: 0;
border-radius: 0 3px 3px 0
}
.tail-datetime-calendar.rtl .calendar-timepicker .timepicker-field:last-child input[type=text] {
margin-left: 0;
margin-right: -1px;
border-radius: 3px 0 0 3px
}
[data-simplebar] {
position: relative;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.simplebar-wrapper {
overflow: hidden;
width: inherit;
height: inherit;
max-width: inherit;
max-height: inherit
}
.simplebar-mask, .simplebar-offset {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0;
margin: 0
}
.simplebar-mask {
overflow: hidden;
width: auto !important;
height: auto !important;
z-index: 0;
direction: inherit
}
.simplebar-offset {
direction: inherit !important;
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
resize: none !important;
-webkit-overflow-scrolling: touch
}
.simplebar-content-wrapper {
direction: inherit;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
position: relative;
display: block;
height: 100%;
width: auto;
visibility: visible;
overflow: auto;
max-width: 100%;
max-height: 100%
}
.simplebar-content:after, .simplebar-content:before {
content: ' ';
display: table
}
.simplebar-placeholder {
max-height: 100%;
max-width: 100%;
width: 100%;
pointer-events: none
}
.simplebar-height-auto-observer-wrapper {
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
height: 100%;
width: 100%;
max-width: 1px;
position: relative;
float: left;
max-height: 1px;
overflow: hidden;
z-index: -1;
padding: 0;
margin: 0;
pointer-events: none;
-webkit-box-flex: inherit;
-ms-flex-positive: inherit;
flex-grow: inherit;
-ms-flex-negative: 0;
flex-shrink: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0
}
.simplebar-height-auto-observer, .simplebar-track {
position: absolute;
pointer-events: none;
overflow: hidden
}
.simplebar-height-auto-observer {
-webkit-box-sizing: inherit;
box-sizing: inherit;
display: block;
opacity: 0;
top: 0;
left: 0;
height: 1000%;
width: 1000%;
min-height: 1px;
min-width: 1px;
z-index: -1
}
.simplebar-track {
z-index: 1;
right: 0;
bottom: 0
}
[data-simplebar].simplebar-dragging .simplebar-content {
pointer-events: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: none
}
[data-simplebar].simplebar-dragging .simplebar-track {
pointer-events: all
}
.simplebar-scrollbar {
position: absolute;
right: 2px;
width: 7px;
min-height: 10px
}
.simplebar-scrollbar:before {
position: absolute;
content: '';
background: #000;
border-radius: 7px;
left: 0;
right: 0;
opacity: 0;
-webkit-transition: opacity .2s linear;
transition: opacity .2s linear
}
.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
opacity: .5;
-webkit-transition: opacity 0s linear;
transition: opacity 0s linear
}
.simplebar-track.simplebar-vertical {
top: 0;
width: 11px
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
top: 2px;
bottom: 2px
}
.simplebar-track.simplebar-horizontal {
left: 0;
height: 11px
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
height: 100%;
left: 2px;
right: 2px
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
right: auto;
left: 0;
top: 2px;
height: 7px;
min-height: 0;
min-width: 10px;
width: auto
}
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
right: auto;
left: 0
}
.hs-dummy-scrollbar-size {
direction: rtl;
position: fixed;
opacity: 0;
visibility: hidden;
height: 500px;
width: 500px;
overflow-y: hidden;
overflow-x: scroll
}
.example {
margin: 50px
}
.example--bg-gray {
background-color: #f5f5f5
}
.example--color-brown {
color: #383838
}
.example p {
margin-top: 12px;
margin-left: 50px
}
.button, .button:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.button {
display: inline-block;
font-family: "ptsans", "Arial", sans-serif;
text-align: center;
border: 1px solid #4359fa;
border-radius: 3px;
background: 0 0;
cursor: pointer;
color: #4359fa
}
.button:hover {
color: #131f78;
border-color: #131f78
}
.button:focus {
outline: 0
}
.button.hide {
display: none
}
.button--no-border {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 0;
opacity: .5;
-ms-flex-item-align: center;
align-self: center
}
.button--icon:hover svg, .button--no-border:hover {
opacity: .75
}
.button--close:focus, .button--icon:focus, .button--no-border:focus {
outline: 0
}
.button--close, .button--icon {
padding: 0;
border: 0;
height: 18px
}
.button--icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: auto;
height: 22px;
font-size: 12px;
color: #6a6a6a
}
.button--icon svg {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
fill: #000;
opacity: .35;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button--icon span {
margin-left: 4px
}
.button--big {
min-width: 176px;
padding: 12px 5px 14px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 23px;
font-weight: 400
}
.button--normal {
min-width: 171px;
padding: 11px 5px 10px;
font-size: 14px;
line-height: 18px;
font-weight: 700
}
.button--normal, .button--small, .button--tiny {
font-family: "ptsans", "Arial", sans-serif
}
.button--small {
color: #5f5f5f;
border-color: #d5d5d5;
min-width: 75px;
padding: 6px 5px 8px;
font-size: 15px;
line-height: 19px;
font-weight: 400
}
.button--tiny {
min-width: 93px;
padding: 4px 5px 6px;
font-size: 14px;
line-height: 14px;
font-weight: 700
}
.button--red {
color: #c60000;
border-color: #c60000
}
.button--red:hover {
color: #970000;
border-color: #970000
}
.button--gray {
min-width: 103px;
color: #777;
border-color: #bbb
}
.button--green {
color: #5bad8d;
border-color: #5bad8d
}
.button--rounded-blue {
min-width: 91px;
color: #fff;
font-size: 14px;
line-height: 14px;
background-color: #4359fa;
border-radius: 16.5px
}
.button--rounded-blue:hover {
color: #fff;
background-color: #131f78
}
.button--rounded-blue, .button--rounded-green, .button--shadow {
padding: 8px 5px 10px;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
border: 0
}
.button--rounded-green {
color: #fff;
font-size: 14px;
line-height: 14px;
min-width: 113px;
background-color: #5bad8d;
border-radius: 16.5px
}
.button--rounded-green:hover {
color: #fff;
background-color: #134c00
}
.button--shadow {
min-width: 131px;
background-color: #fff;
border-radius: 18.5px;
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806)
}
.button--shadow:hover {
color: #131f78
}
.button--plain, .button--shadow {
font-size: 14px;
line-height: 18px;
color: #383838
}
.button--plain, .button--plain:hover {
border-color: transparent
}
.button svg {
pointer-events: none
}
.link, .link:hover {
-webkit-transition: .3s color;
transition: .3s color
}
.link {
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px;
font-weight: 700;
color: #4359fa
}
.link:hover {
color: #131f78
}
.link--gray {
color: gray
}
.link--big {
font-size: 24px;
line-height: 31px;
font-weight: 700
}
.input, .link--big, .link--dotted {
font-family: "ptsans", "Arial", sans-serif
}
.link--dotted {
color: rgba(56, 56, 56, .65);
background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #979797), color-stop(0%, rgba(255, 255, 255, 0)));
background-image: linear-gradient(to right, #979797 33%, rgba(255, 255, 255, 0) 0%);
background-position: bottom;
background-size: 5px 1px;
background-repeat: repeat-x;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.link--dotted:hover {
color: rgba(19, 31, 120, .65);
background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #131f78), color-stop(0%, rgba(255, 255, 255, 0)));
background-image: linear-gradient(to right, #131f78 33%, rgba(255, 255, 255, 0) 0%)
}
.link--logo svg, .link--logo:hover svg {
-webkit-transition: .3s all;
transition: .3s all
}
.link--logo:hover svg {
opacity: .7
}
.link--logo-small svg {
width: 153px;
height: 45px
}
.input {
width: 323px;
height: 41px;
padding-right: 12px;
padding-left: 11px;
font-size: 15px;
line-height: 19px;
font-weight: 400;
color: #383838;
border: 1px solid #d3d3d3;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 3px
}
.input:focus, .input:hover {
outline: 0;
border-color: rgba(211, 211, 211, .7)
}
.field--small .field__input, .input--big {
width: 347px;
height: 53px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 23px;
font-weight: 400
}
.field {
position: relative
}
.field--small .field__input {
min-width: 130px;
width: 130px;
height: 41px;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.field__calendar {
position: absolute;
top: 13px;
right: 11px;
pointer-events: none
}
.field--checkbox, .field--flag-checkbox {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.field--checkbox .field__label, .field--flag-checkbox .field__label {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
position: relative;
top: 0;
left: 0;
display: inline-block;
padding-left: 20px;
min-height: 21px;
color: #383838;
background-color: transparent;
cursor: pointer
}
.field--checkbox .field__label::before {
position: absolute;
top: 4px;
left: 0;
content: "";
display: block;
width: 13px;
height: 13px;
border: 2px solid #979797;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: .3s all;
transition: .3s all
}
.field--checkbox .field__label:hover::before {
border-color: #4359fa;
-webkit-transition: .3s all;
transition: .3s all
}
.field--checkbox .field__input:checked + label::after {
position: absolute;
top: 7px;
left: 3px;
content: "";
display: block;
width: 7px;
height: 7px;
background: #4359fa;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.field--flag-checkbox .field__label .field__flag-icon-red {
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none
}
.field--flag-checkbox .field__input:checked + label .field__flag-icon {
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none
}
.field--flag-checkbox .field__input:checked + label .field__flag-icon-red {
position: relative;
opacity: 1;
pointer-events: auto
}
.field--select.field--small .choices {
min-width: 200px
}
.field--error .field__label {
color: #ff9191
}
.field--error.field--select .choices__inner {
border: 1px solid #ff9191
}
.field--error .field__input {
color: #c60000;
border-color: #ff9191
}
.field--error .field__error-message {
visibility: visible
}
.field--fill .field__label, .landing-header--registration .landing-header__button span {
color: #5f5f5f
}
.field--fill .field__input {
color: #c60000;
border-color: #ff9191
}
.field--select .choices {
display: inline-block;
vertical-align: top;
min-width: 323px;
font-size: 15px;
line-height: 19px;
color: #5f5f5f
}
.field--select .choices[data-type*=select-one] .choices__inner {
padding: 11px 38px 9px 11px
}
.field--select .choices__inner {
min-height: 41px;
font-size: inherit;
line-height: inherit;
background-color: #fff;
border-color: #d3d3d3
}
.field--select .choices__list--single {
padding: 0
}
.field--select .choices__item--selectable:after {
display: none
}
.field--select .choices__list--dropdown {
top: 0;
margin: 0;
font-size: 16px;
line-height: 21px;
color: #383838;
background-color: transparent;
z-index: 10
}
.field--select .choices__list--dropdown .choices__list {
background-color: #fff;
padding-bottom: 10px
}
.field--select .is-open .choices__list--dropdown {
border-color: transparent #d5d5d5 #d5d5d5;
border-radius: 3px
}
.field--select .is-open .choices__list--single {
color: transparent
}
.field--select .choices[data-type*=select-one] .choices__input {
padding-right: 38px;
height: 41px;
font-weight: 700;
background-color: transparent;
background-clip: padding-box;
border-color: transparent
}
.field--select .choices[data-type*=select-one]:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
margin: 0;
width: 45px;
height: 100%;
background-image: url(../img/arrow-down.svg);
background-repeat: no-repeat;
background-size: 12px auto;
background-position: center;
border: 0;
z-index: 1
}
.field--select .choices[data-type*=select-one].is-open:after {
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
margin: 0
}
.field--select .is-open .choices__item--disabled {
display: none
}
.field--select .choices__item--choice {
padding: 7px 38px 6px 11px
}
.field--select .choices__item.is-highlighted {
background-color: transparent
}
.field--select .choices__item.is-highlighted:not(.choices__placeholder), .field--select .choices__list--single .choices__item:not([data-value='0']) {
font-weight: 700
}
.field--select .choices__list--dropdown .choices__item, .field__label {
position: relative;
background-color: #fff
}
.field--select .choices__list--dropdown .choices__item--selectable {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.field--select .choices__list--dropdown .choices__item--selectable:hover {
opacity: .65
}
@media (min-width: 640px) {
.field--select .choices__list--dropdown .choices__item--selectable {
padding-right: 38px
}
}
.field--select .field__label {
z-index: 2
}
.field__label {
position: absolute;
top: -8px;
left: 9px;
padding-left: 3px;
padding-right: 3px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #5f5f5f
}
.field__label.field__label--mail-list {
padding-left: 0;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.field__label.field__label--mail-list:hover {
opacity: .6;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.field--big .field__label {
top: -9px;
font-size: 14px;
line-height: 18px
}
.field--big .field__label, .field__error-message, .textarea {
font-family: "ptsans", "Arial", sans-serif;
font-weight: 400
}
.field__error-message {
visibility: hidden;
display: block;
margin-top: 2px;
padding-left: 10px;
padding-top: 1px;
font-size: 12px;
line-height: 16px;
color: #c60000
}
.textarea {
min-width: 543px;
height: 147px;
padding: 16px 9px 5px 15px;
font-size: 14px;
line-height: 23px;
color: #383838;
border: 1px solid #d3d3d3;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 3px;
resize: none
}
.textarea:focus, .textarea:hover {
outline: 0;
border-color: rgba(211, 211, 211, .7)
}
.label, .select {
display: block;
border-radius: 3px
}
.select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 41px;
background-color: #fff;
border-color: #d3d3d3;
padding: 0 45px 0 12px;
font-family: inherit;
font-size: 15px;
line-height: 19px;
color: #5f5f5f
}
.label {
padding: 3px 7px 2px;
color: #fff;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 700;
text-align: center
}
.label--new {
min-width: 52px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #3d5c73), color-stop(99.24%, #2d6a98));
background: linear-gradient(90deg, #3d5c73 .76%, #2d6a98 99.24%)
}
.label--presentation {
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #296da0), color-stop(99.24%, #0b8aef));
background: linear-gradient(90deg, #296da0 .76%, #0b8aef 99.24%)
}
.label--in-work {
min-width: 71px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #098cf9), color-stop(99.24%, #6140fb));
background: linear-gradient(90deg, #098cf9 .76%, #6140fb 99.24%)
}
.label--completed {
min-width: 71px;
background: -webkit-gradient(linear, left top, right top, color-stop(.76%, #6839fb), color-stop(99.24%, #9c0afc));
background: linear-gradient(90deg, #6839fb .76%, #9c0afc 99.24%)
}
.avatar, .tag {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px
}
.tag, .tag:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.tag {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
padding: 3px 0 4px 4px;
color: #4359fa;
text-align: center;
cursor: pointer;
font-weight: 700;
border-radius: 3px;
background-color: rgba(67, 89, 250, .16)
}
.tag:hover {
background-color: rgba(67, 89, 250, .3)
}
.avatar {
-ms-flex-negative: 0;
flex-shrink: 0;
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;
width: 27px;
height: 27px;
font-weight: 400;
background-color: #0075d0;
border-radius: 50%
}
.avatar span {
color: #fff
}
.avatar--contact {
position: absolute;
top: 15px;
left: 15px;
background-color: #ff7e7e
}
.avatar--contact::before {
position: absolute;
bottom: -2px;
right: 1px;
content: "";
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 10px;
height: 10px;
border: 2px solid #fff;
background-color: #32a100;
border-radius: 50%
}
.avatar--blue {
background-color: #0075d0
}
.avatar--red {
background-color: #ff7e7e
}
.transaction {
width: 272px;
min-height: 93px;
padding: 7px 10px;
border-radius: 3px;
background: #fff
}
.transaction__name {
margin-bottom: 8px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px;
font-weight: 700;
color: #4359fa
}
.transaction__company {
margin-bottom: 5px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400
}
.transaction__wrapper-bottom {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 8px;
border-top: 1px solid #f4f4f4
}
.title, .transaction__price, .transaction__tasks {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.title, .transaction__price {
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #adadad
}
.title::after {
content: "";
width: 100%;
height: 1px;
margin-left: 9px;
background: #dbdbdb
}
.title span {
-ms-flex-negative: 0;
flex-shrink: 0
}
.contact, .contact:hover {
-webkit-transition: .3s -webkit-box-shadow;
transition: .3s box-shadow;
transition: .3s box-shadow, .3s -webkit-box-shadow
}
.contact {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
width: 300px;
min-height: 113px;
padding: 11px 10px 10px 15px;
border: 1px solid #d8d8d8;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 8px
}
.contact:hover {
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806)
}
.contact__avatar {
position: relative;
top: 4px;
left: 0;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-right: 10px
}
.contact__name, .contact__name:hover {
-webkit-transition: .3s all;
transition: .3s all
}
.contact__name {
display: inline-block;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 700;
color: #383838
}
.contact__name:hover {
opacity: .7
}
.contact__last-connection {
margin-bottom: 11px;
margin-top: -3px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #848484
}
.contact__row, .data-table th p {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contact__title {
display: block;
width: 60px;
margin-right: 7px;
text-align: right;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: rgba(56, 56, 56, .64)
}
.contact__row--company {
margin-bottom: 6px
}
.contact__row--company .contact__value {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 700;
-webkit-transition: .3s color;
transition: .3s color
}
.contact__row--company .contact__value:hover {
color: #131f78;
-webkit-transition: .3s color;
transition: .3s color
}
.contact__row--position .contact__value {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #383838
}
.alert {
position: relative;
width: 341px;
padding: 13px 12px 15px 44px;
-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
box-shadow: 0 2px 16px rgba(0, 0, 0, .162806);
border-radius: 18.5px
}
.alert__close {
position: absolute;
top: 12px;
left: 10px;
opacity: .25
}
.alert__error, .alert__message, .alert__message a {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 20px;
font-weight: 400;
color: #383838
}
.alert__error, .alert__message a {
font-weight: 700;
color: #4359fa
}
.alert__error {
padding-top: 2px;
font-weight: 400;
color: #900000
}
.funnel-section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: calc(100vh - 59px)
}
.funnel-section__headline {
font-size: 24px;
line-height: 31px;
color: #383838
}
.funnel-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 16px 36px 14px 32px;
border-bottom: 1px solid #d8d8d8
}
.funnel-section__search {
margin-left: 14px
}
.funnel-section__btn {
margin-left: auto
}
.funnel-section__alert {
position: fixed;
bottom: 24px;
right: 20px;
z-index: 1
}
.funnel-table, .funnel-table__col {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.funnel-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
color: #383838;
background-color: #f5f5f5
}
.funnel-table__col {
position: relative;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 22px 23px
}
.dashboard-card__info li:nth-child(3n+1), .funnel-table__col:nth-child(1) .funnel-table__header {
color: #3d5b72
}
.dashboard-card__info li:nth-child(3n+2), .funnel-table__col:nth-child(2) .funnel-table__header {
color: #296ea1
}
.dashboard-card__info li:nth-child(3n+3), .funnel-table__col:nth-child(3) .funnel-table__header {
color: #0d89f9
}
.funnel-table__col:nth-child(4) .funnel-table__header {
color: #6d35fb
}
.funnel-table__col:nth-child(1)::before {
background-image: -webkit-gradient(linear, left top, right top, from(#3d5b71), to(#2b6c9c));
background-image: linear-gradient(90deg, #3d5b71 0%, #2b6c9c 100%)
}
.funnel-table__col:nth-child(2)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #2b6c9c), color-stop(99.24%, #078ef9));
background-image: linear-gradient(90deg, #2b6c9c .76%, #078ef9 99.24%)
}
.funnel-table__col:nth-child(3)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #078ef9), color-stop(99.24%, #6839fb));
background-image: linear-gradient(90deg, #078ef9 .76%, #6839fb 99.24%)
}
.funnel-table__col:nth-child(4)::before {
background-image: -webkit-gradient(linear, left top, right top, color-stop(.76%, #6839fb), color-stop(99.24%, #9c0afc));
background-image: linear-gradient(90deg, #6839fb .76%, #9c0afc 99.24%)
}
.funnel-table__col::before {
position: absolute;
top: 0;
left: 0;
right: 0;
content: "";
display: block;
width: 100%;
height: 6px
}
.funnel-table__col-summary {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.funnel-table__header {
padding-bottom: 21px;
font-weight: 700;
line-height: 1.2
}
.funnel-table__title {
margin: 0 0 -3px;
font-size: 20px
}
.funnel-table__header a {
color: inherit
}
.funnel-table__tasks-number {
margin-right: auto;
font-size: 14px;
opacity: .65
}
.funnel-table__total {
padding-left: 20px;
font-size: 20px
}
.actions-list__dropdown ul, .funnel-table__list {
padding: 0;
list-style: none
}
.funnel-table__item {
margin-bottom: 8px
}
.search-block__field[type=search], .trade-card {
display: block;
background-color: #fff;
border-radius: 3px
}
.trade-card__inner {
padding: 10px 9px 7px
}
.trade-card__headline {
margin-bottom: 4px;
font-size: 15px;
line-height: 1.26;
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.trade-card__agent {
font-size: 13px;
line-height: 1.3
}
.trade-card__footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 9px 12px 9px 9px;
border-top: 1px solid #f4f4f4
}
.trade-card__tasks {
margin-right: auto;
font-size: 14px;
line-height: 1.3
}
.trade-card__cost {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 20px;
font-weight: 700;
font-size: 16px;
line-height: 1.3
}
.data-table tr:hover a, .landing-header--registration .landing-header__button:hover span, .trade-card:hover .trade-card__headline {
color: #131f78
}
.search-block {
width: 243px
}
.search-block__field-wrapper {
position: relative
}
.search-block__label {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 30px;
cursor: pointer
}
.pagination-block__btn svg, .search-block__label svg {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: block
}
.search-block__field[type=search] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 20px 0 30px;
width: 100%;
height: 29px;
font-family: inherit;
font-size: 14px;
line-height: 18px;
color: #383838;
border: 1px solid #d5d5d5
}
.search-block__field[type=search]::-webkit-input-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]::-moz-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]:-ms-input-placeholder, .search-block__field[type=search]::-ms-input-placeholder {
color: #9d9d9d
}
.search-block__field[type=search]::placeholder {
color: #9d9d9d
}
.contacts-section, .contacts-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contacts-section {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: calc(100vh - 59px)
}
.contacts-section__header {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 16px 13px 17px 32px;
border-bottom: 1px solid #e5e5e5
}
.contacts-section__headline {
margin-right: 11px;
font-size: 24px;
line-height: 29px
}
.contacts-section__pagination-block-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: auto
}
.contacts-section__content--empty {
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-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
background-image: url(../img/bg-empty.svg);
background-repeat: no-repeat;
background-size: 100% auto;
background-position: bottom left
}
.contacts-section__message-empty {
margin: auto;
padding-bottom: 100px
}
.contacts-section__btn {
margin-right: 8px;
padding-left: 12px;
padding-right: 12px
}
.contacts-section__filters {
max-height: 0;
overflow: hidden
}
.contacts-section__filters.show {
max-height: none;
overflow: visible
}
.contacts-section__footer {
background-color: #f2f2f2;
border-bottom: 1px solid #d8d8d8
}
.message-empty {
text-align: center
}
.message-empty__headline {
margin-bottom: 5px;
font-size: 32px;
line-height: 1.28
}
.message-empty__text {
margin-bottom: 45px;
font-size: 16px;
line-height: 1.3125;
opacity: .65
}
.message-empty__btn {
min-width: 196px
}
.pagination-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 14px;
line-height: 18px
}
.pagination-block__btn {
position: relative;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 34px;
height: 29px;
border: 1px solid #d8d8d8;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.pagination-block__btn--prev {
border-radius: 3px 0 0 3px
}
.pagination-block__btn--next {
border-radius: 0 3px 3px 0
}
.pagination-block__btn--disabled {
pointer-events: none
}
.pagination-block__btn--prev svg {
-webkit-transform: translate(-50%, -50%) scale(-1, 1);
transform: translate(-50%, -50%) scale(-1, 1)
}
.actions-list__dropdown button:hover, .pagination-block__btn--disabled svg, .pagination-block__btn:hover, .tab-controls button:hover {
opacity: .65
}
.pagination-block__pages {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 4px 13px 5px;
height: 29px;
color: #d8d8d8;
border-top: 1px solid #d8d8d8;
border-bottom: 1px solid #d8d8d8
}
.pagination-block__current, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select span {
color: #383838
}
.mail-list__pagination-block .pagination-block__pages {
background-color: #fff
}
.filters-block {
padding: 21px 13px 17px 32px;
border-bottom: 1px solid #e5e5e5
}
.filters-block, .filters-block__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.filters-block__field {
margin-right: 10px;
min-width: 200px
}
.filters-block__close {
margin-left: auto;
height: 24px
}
.data-table {
width: 100%;
font-size: 14px;
line-height: 18px;
border-collapse: collapse
}
.data-table tr {
border-bottom: 1px solid #e5e5e5;
-webkit-transition: background-color .3s ease;
transition: background-color .3s ease
}
.data-table tr.selected, .data-table tr:not(:first-child):hover {
background-color: #f0f0f0
}
.data-table tr a {
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.data-table tr:hover .data-table__edit {
opacity: 1
}
.data-table tr.selected:hover .data-table__edit, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-next, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-previous {
opacity: 0;
pointer-events: none
}
.data-table th {
padding: 18px 14px 14px;
text-align: left;
width: 15%
}
.data-table th:first-child {
padding-left: 33px;
width: 20px
}
.data-table th:nth-child(2) {
width: 21%
}
.data-table th:last-child {
padding-right: 0;
width: 65px
}
.data-table td {
padding: 17px 14px 16px
}
.data-table td:first-child {
padding-left: 33px
}
.data-table td:last-child {
padding: 0 0 0 14px;
width: 65px;
min-width: 65px;
max-width: 65px
}
.data-table__sort-btn {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
display: block;
padding: 0;
width: 18px;
height: 18px;
text-align: center;
color: #4359fa;
background-color: transparent;
border: 0
}
.data-table__edit-block {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-right: 16px;
width: 100%;
min-height: 51px
}
.data-table__buttons {
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding-right: 20px;
opacity: 0;
pointer-events: none
}
.data-table__buttons, .data-table__edit, .data-table__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.data-table__link svg {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-right: 7px;
fill: #383838
}
.data-table__link span {
white-space: nowrap
}
.data-table__edit {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-left: auto;
padding: 0;
width: 30px;
height: 30px;
background-color: transparent;
border: 0;
opacity: 0;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.data-table__edit svg, .data-table__link svg {
display: block;
opacity: .35
}
.data-table__btn {
margin-left: 7px;
padding-left: 12px;
padding-right: 12px;
min-width: 103px;
background-color: #fff
}
.data-table__close-edition {
margin-left: 4px
}
.data-table .selected td:not(:first-child):not(:nth-child(2)):not(:last-child) a, .data-table .selected td:not(:first-child):not(:nth-child(2)):not(:last-child) p {
opacity: 0;
pointer-events: none
}
.data-table .selected .data-table__buttons {
opacity: 1;
pointer-events: auto
}
.modal {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
visibility: hidden;
opacity: 0;
overflow: auto;
z-index: 50;
background-color: rgba(0, 0, 0, .65)
}
.modal.show {
visibility: visible;
opacity: 1;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.modal__container {
width: 678px;
min-height: 100vh;
margin-left: auto;
padding: 32px 54px 42px 82px;
background-color: #fff;
border-radius: 2px;
z-index: 1
}
.tags {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
.tags__title {
margin-right: 7px;
margin-top: 4px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
color: #383838
}
.tags__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0;
list-style: none
}
.tags__item {
margin-right: 2px
}
.create-deal {
padding-top: 19px
}
.create-deal .choices__placeholder {
display: none
}
.create-contact .choices__inner .choices__item.choices__item--selectable, .create-deal .choices__inner .choices__item.choices__item--selectable {
font-weight: 400
}
.create-deal__title {
margin-top: 30px;
margin-bottom: 31px
}
.create-deal__caption {
margin-bottom: 30px
}
.create-deal__field {
margin-bottom: 20px
}
.create-deal__field--description {
margin-bottom: 16px
}
.create-deal__field--small {
margin-right: 8px
}
.create-deal__field--small .input {
width: 200px
}
.create-deal__field--small .choices {
min-width: 200px
}
.create-deal__field--calendar {
width: 200px;
margin-right: 0
}
.create-deal__field--tiny .input {
width: 150px
}
.create-deal__field--tiny .choices {
min-width: 150px
}
.create-deal__field--right {
margin-left: 22px;
margin-top: 1px;
margin-bottom: 18px
}
.create-deal__basic-block {
margin-bottom: 57px
}
.create-deal__wrapper-tags {
margin-top: -6px;
margin-bottom: 56px
}
.create-deal__finance-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 36px
}
.create-deal__execution-block {
margin-bottom: 56px
}
.create-deal__settings-block {
margin-top: -8px;
margin-bottom: 57px
}
.data-summary {
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 11px 25px 0;
font-size: 12px;
line-height: 16px;
color: #7b7b7b
}
.data-summary li {
position: relative;
margin: 0 20px 10px 0
}
.data-summary li::after {
content: "·";
position: absolute;
top: 50%;
right: -14px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
vertical-align: top
}
.data-summary li:last-child::after {
display: none
}
.deal-card__header {
color: #fff;
background-color: #1d1d47
}
.deal-card__title-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 31px 26px 20px 33px
}
.deal-card__title {
margin-right: 9px;
font-size: 24px;
line-height: 31px
}
.deal-card__label {
margin-top: 5px
}
.deal-card__actions {
margin-top: 9px;
margin-left: auto
}
.deal-card__tab-controls {
padding: 0 16px
}
.deal-card__tab {
max-height: 0;
overflow: hidden
}
.deal-card__tab.active {
max-height: none;
overflow: visible
}
.actions-list {
position: relative
}
.actions-list__toggler {
display: block;
padding-bottom: 5px
}
.actions-list__toggler.button--icon svg {
fill: #fff
}
.actions-list__dropdown, .actions-list__dropdown button {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.actions-list__dropdown {
position: absolute;
top: 100%;
right: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-width: 201px;
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
opacity: 0;
pointer-events: none;
z-index: 1;
padding: 16px 16px 15px;
font-size: 14px;
line-height: 18px;
background-color: #fff;
border: 1px solid #d5d5d5
}
.actions-list__dropdown li {
margin-bottom: 15px
}
.actions-list__dropdown a {
padding: 0;
text-align: left;
font-size: inherit;
line-height: inherit;
background-color: transparent;
border: 0;
color: black;
}
.actions-list:focus .actions-list__dropdown, .actions-list:hover .actions-list__dropdown {
opacity: 1;
pointer-events: auto
}
.actions-list:focus svg, .actions-list:hover svg {
opacity: .75
}
.tab-controls {
padding: 0;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.tab-controls button {
display: block;
margin: 0;
padding: 10px 16px 4px;
font-family: inherit;
font-size: 16px;
line-height: 21px;
color: rgba(255, 255, 255, .82);
background-color: transparent;
border: 0;
border-radius: 3px 3px 0 0;
-webkit-transition: opacity .3s ease, color .3s ease, background-color .3s ease;
transition: opacity .3s ease, color .3s ease, background-color .3s ease
}
.tab-controls button:focus {
outline: 0
}
.tab-controls .active button {
color: #383838;
text-shadow: .5px 0 0 #383838;
background-color: #fff;
pointer-events: none
}
.deal-section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
min-height: calc(100vh - 59px)
}
.deal-section__card, .deal-section__log {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none
}
.deal-section__card {
width: 50.12%;
border: 0;
border-right-width: 2px;
border-right-style: solid;
-o-border-image: linear-gradient(to bottom, #3d5b72, #2077b9) 1 100%;
border-image: -webkit-gradient(linear, left top, left bottom, from(#3d5b72), to(#2077b9)) 1 100%;
border-image: linear-gradient(to bottom, #3d5b72, #2077b9) 1 100%
}
.deal-section__log {
width: 49.88%;
height: calc(100vh - 59px);
position: relative;
background-color: #f2f2f2
}
.landing-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 41px 88px 40px 87px
}
.landing-header--registration .landing-header__button:hover {
opacity: 1;
border-color: #131f78
}
.landing-header__button {
margin-left: auto;
margin-top: 12px
}
.landing-header__button span {
color: #fff
}
.landing-header__button:hover {
opacity: .7;
border-color: #fff
}
.landing-header__link-logo {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__link-logo:hover, .landing-header__link-logo:hover {
opacity: .7;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.intro {
padding-left: 100px;
padding-top: 64px;
padding-bottom: 226px
}
@media (max-width: 1150px) {
.intro {
padding-top: 0;
padding-bottom: 128px
}
}
.intro__title {
width: 39.3%;
margin-bottom: 39px
}
@media (max-width: 1150px) {
.intro__title {
font-size: 36px
}
}
.features {
padding: 50px 0 79px 100px
}
.features__title {
margin-top: 10px;
margin-bottom: 3px
}
.features__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0;
list-style: none
}
.features__item {
width: 33%;
padding-right: 89px
}
.features__description {
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400
}
.communications {
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-height: 720px;
padding-left: 100px;
padding-top: 160px;
background: url(../img/shuttle.png) no-repeat right top
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.communications {
background: url(../img/shuttle@2x.png) no-repeat right top/588px 673px
}
}
@media (max-width: 1150px) {
.communications {
min-height: 631px;
background-size: 538px 623px
}
}
.communications__title {
width: 478px;
margin-bottom: 20px
}
@media (max-width: 1150px) {
.communications__title {
width: 384px
}
}
.communications__description {
width: 503px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400
}
@media (max-width: 1150px) {
.communications__description {
width: 346px
}
}
.work {
padding: 159px 110px 208px 55.5%;
background: url(../img/rocket.png) no-repeat left 41px
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.work {
background: url(../img/rocket@2x.png) no-repeat left 41px/604px 575px
}
}
@media (max-width: 1150px) {
.work {
background-position-y: 100px;
background-size: 544px 515px
}
}
.work__title {
padding-bottom: 34px
}
.work__list {
padding: 0;
list-style: none
}
.work__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 13px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 400
}
.work__item::before {
content: "";
-ms-flex-negative: 0;
flex-shrink: 0;
display: block;
width: 17px;
height: 2px;
margin-right: 10px;
background-color: #3267e4
}
.footer {
padding-top: 88px;
padding-bottom: 62px;
text-align: center;
background-image: url(../img/footer.png);
background-position: top;
background-repeat: no-repeat;
background-size: 100% 100%
}
.footer__link-logo {
display: inline-block;
margin: 0 35px 14px auto;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__nav {
margin-bottom: 43px
}
.footer__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
list-style: none;
margin-bottom: 20px
}
.footer__item, .main-nav li {
margin-right: 33px
}
.footer__item:last-child {
margin-right: 0
}
.footer__copyright-link, .footer__link-nav {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__link-nav {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
color: rgba(255, 255, 255, .65)
}
.footer__copyright-link:hover, .footer__link-nav:hover {
opacity: .7;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.footer__copyright-link {
display: inline-block;
margin: 0 auto 20px
}
.footer__copyright-text {
display: block;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
color: rgba(255, 255, 255, .4)
}
.log-in {
padding-top: 84px
}
.log-in__title {
margin-bottom: 45px
}
.log-in__field {
margin-bottom: 13px
}
.log-in__button {
min-width: 347px
}
.log-in__button:focus, .registration__button:focus {
outline: 0
}
.registration__form {
width: 347px;
margin: 0 auto;
padding-top: 39px;
padding-bottom: 73px
}
.registration__title {
margin-bottom: 45px;
text-align: center
}
.registration__field {
margin-bottom: 13px
}
.registration__field--no-validate {
margin-bottom: 32px
}
.registration__button {
min-width: 347px
}
.create-contact {
padding-top: 48px
}
.create-contact .choices__placeholder {
display: none
}
.create-contact__title {
margin-bottom: 31px
}
.create-contact__field, .letter__body p {
margin-bottom: 20px
}
.create-contact__field--small .input {
width: 200px
}
.create-contact__field--small .choices {
min-width: 200px
}
.create-contact__bottom-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 29px
}
.create-contact__button {
margin-right: 17px
}
.create-contact__description {
display: none
}
.create-contact__bottom-block--error .create-contact__description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: #5f5f5f
}
.create-contact__bottom-block--error .create-contact__description::before {
content: "";
display: block;
width: 27px;
height: 1px;
margin-right: 5px;
background-color: #ff9191
}
.deal-form {
padding: 27px 24px 30px 32px
}
.deal-form__section {
padding-bottom: 20px
}
.deal-form__section:last-child {
padding-bottom: 0
}
.deal-form__row, .deal-form__section-title {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.deal-form__section-title {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 16px;
font-size: 16px;
line-height: 21px;
color: #adadad
}
.deal-form__section-title::after {
content: "";
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-left: 5px;
height: 1px;
background-color: #dbdbdb
}
.deal-form__row {
padding: 12px 0 0
}
.deal-form__row--message {
margin-top: 12px
}
.deal-form__label {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 120px;
font-size: 14px;
line-height: 18px;
color: rgba(56, 56, 56, .65)
}
.deal-form__save {
margin-left: 6px;
font-size: 12px;
line-height: 100%;
color: rgba(56, 56, 56, .61)
}
.deal-form__field {
padding: 0;
width: 20px;
height: 21px;
min-width: 40px;
font-family: inherit;
font-weight: 700;
font-size: 16px;
line-height: 21px;
border: 0;
border-bottom: 1px dashed #979797;
-webkit-transition: all .3s ease;
transition: all .3s ease
}
.deal-form__field--date {
min-width: 85px
}
.deal-form__field::-webkit-input-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field::-moz-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field:-ms-input-placeholder, .deal-form__field::-ms-input-placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field::placeholder {
text-align: center;
color: rgba(56, 56, 56, .65)
}
.deal-form__field:focus {
outline: 0
}
.deal-form__field:not([readonly]):focus {
-webkit-box-sizing: content-box;
box-sizing: content-box;
margin: -13px 0;
padding: 0 11px;
min-width: 130px !important;
height: 48px;
border: 1px solid #d3d3d3;
border-radius: 3px
}
.deal-form__field + .deal-form__save {
display: none;
margin-top: 6px
}
.deal-form__field:focus + .deal-form__save {
display: block
}
.deal-form .choices[data-type*=select-one]:after {
background-image: none;
border: 0
}
.deal-form .choices__inner {
padding: 0 20px 0 0;
min-height: 29px;
background-color: transparent;
border: 0
}
.deal-form .choices__list--single {
padding: 0 4px 0 0;
font-size: 16px;
line-height: 21px;
border-bottom: 1px dashed #979797
}
.deal-form .choices__list--single .choices__placeholder, .deal-form .choices__list--single .choices__placeholder:hover {
font-weight: 700;
font-style: normal
}
.deal-form .choices__list--dropdown {
top: 0;
margin: 0;
padding-bottom: 10px;
min-width: 201px;
font-size: 16px;
line-height: 21px;
color: #383838
}
.deal-form .is-open .choices__list--dropdown {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-color: #d5d5d5;
border-radius: 3px
}
.deal-form .choices[data-type*=select-one] .choices__input, .deal-form .choices__item--choice::after {
display: none
}
.deal-form .choices[data-type*=select-one] .choices__inner {
padding-bottom: 0
}
.deal-form .choices__item--choice {
padding: 7px 38px 6px 11px
}
.deal-form .choices__item.is-highlighted {
background-color: transparent
}
.deal-form .choices__item.is-highlighted:not(.choices__placeholder), .deal-form .choices__list--single .choices__item:not([data-value='0']) {
font-weight: 700
}
.deal-form .choices__list--dropdown .choices__item--selectable {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
font-size: 16px;
line-height: 21px
}
.deal-form .choices__placeholder, .deal-form .choices__placeholder.is-highlighted {
font-weight: 400;
font-style: italic
}
.deal-form .choices__list--dropdown .choices__item--selectable:hover, .deal-form .choices__placeholder {
opacity: .65
}
.deal-form .choices__placeholder.is-highlighted:hover, .deal-form .choices__placeholder:hover {
font-weight: 400
}
@media (min-width: 640px) {
.deal-form .choices__list--dropdown .choices__item--selectable {
padding-right: 38px
}
}
.tags-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-top: -2px
}
.tags-block__list {
padding: 0;
list-style: none;
display: contents
}
.tags-block__list-item {
margin-right: 4px;
margin-bottom: 4px
}
.tags-block__edit {
margin-top: -1px
}
.tags-block__edit.hide, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-today::before, .tail-datetime-calendar button.calendar-close {
display: none
}
.tags-block__edit-box {
display: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.tags-block__edit-box.show {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.tags-block__field {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 7px;
width: 79px;
height: 25px;
font-size: 14px;
line-height: 18px;
color: #4359fa;
letter-spacing: -.6px;
border: 1px solid rgba(67, 89, 250, .5);
border-radius: 3px
}
.tags-block__field::-webkit-input-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field::-moz-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field:-ms-input-placeholder, .tags-block__field::-ms-input-placeholder {
color: rgba(67, 89, 250, .61)
}
.tags-block__field::placeholder {
color: rgba(67, 89, 250, .61)
}
.calendar {
margin-top: 12px;
margin-bottom: 30px
}
.tail-datetime-calendar {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 4px 15px 15px 150px;
width: 265px;
border: 1px solid #d5d5d5;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946)
}
.tail-datetime-calendar .label {
text-transform: capitalize;
color: #383838;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
font-size: 16px;
line-height: 21px
}
.tail-datetime-calendar .calendar-actions span.action-next:hover, .tail-datetime-calendar .calendar-actions span.action-prev:hover, .tail-datetime-calendar .calendar-actions span[data-action]:hover {
background-color: #fff;
opacity: .65
}
.tail-datetime-calendar .calendar-actions span {
line-height: 44px
}
.tail-datetime-calendar .calendar-actions span.action-next, .tail-datetime-calendar .calendar-actions span.action-prev {
background-image: url(../img/next.svg);
opacity: 1
}
.tail-datetime-calendar .calendar-actions span.action-prev {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1)
}
.tail-datetime-calendar tbody tr {
border-bottom: 9px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-next:hover, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-previous:hover, .tail-datetime-calendar .calendar-datepicker:after {
opacity: 0
}
.tail-datetime-calendar .calendar-datepicker {
margin: 0;
padding: 3px 9px 0
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day {
padding: 0;
max-width: 26px;
height: auto;
font-family: "ptsans", "Arial", sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 26px;
color: #383838;
border: 0;
border-bottom: 9px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td, .tail-datetime-calendar .calendar-datepicker table tr th {
width: 26px;
height: 26px
}
.tail-datetime-calendar .calendar-datepicker table tr th {
font-family: "ptsans", "Arial", sans-serif;
text-transform: lowercase;
font-weight: 700;
font-size: 16px;
line-height: 21px;
color: #b9b9b9;
border-bottom: 11px solid transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-today {
color: #4359fa;
border-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-decade.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-month.date-select, .tail-datetime-calendar .calendar-datepicker table tr td.calendar-year.date-select {
border-color: transparent;
background-color: transparent
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day:hover {
border-color: transparent;
opacity: .65
}
.tail-datetime-calendar .calendar-datepicker table tr td.calendar-day.date-select span {
display: block;
margin: auto;
width: 26px;
background-color: rgba(67, 89, 250, .33);
border-radius: 3px
}
.message-box {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.message-box__field {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin-top: -5px;
padding: 0;
width: 100%;
min-height: 30px;
font-family: inherit;
font-size: 13px;
line-height: 24px;
letter-spacing: -.3px;
color: #383838;
border: 0;
resize: none;
-webkit-transition: all .3s ease;
transition: all .3s ease
}
.editing .message-box__field {
margin: -15px 0 0;
padding: 15px 5px 15px 15px;
border: 1px solid #d3d3d3;
border-radius: 3px
}
.message-box__field:focus {
outline: 0
}
.message-box__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 4px 0 0 4px
}
.message-box__buttons {
display: none;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
margin-left: auto;
margin-top: -4px;
margin-right: -8px
}
.editing .message-box__buttons {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.editing .message-box__edit {
display: none
}
.page-header {
position: fixed;
text-transform: 0;
left: 0;
right: 0;
max-width: 100vw;
font-size: 14px;
line-height: 18px;
color: #fffffff;
background-color: #020337;
z-index: 11
}
.main-nav ul, .page-header__wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 4px 17px 6px 10px
}
.page-header__logo {
margin-right: 8px
}
.page-header__user-block {
margin-left: auto
}
.main-nav ul {
padding: 0;
list-style: none;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.main-nav a {
color: #fff;
opacity: .65;
-webkit-transition: opacity .3s ease, text-shadow .3s ease;
transition: opacity .3s ease, text-shadow .3s ease
}
.main-nav a:hover {
text-shadow: .5px 0 0 #fff;
opacity: 1
}
.main-nav li.active a {
font-weight: 700;
opacity: 1
}
.user-block {
position: relative
}
.user-block__toggler {
position: relative;
margin-bottom: -1px;
padding: 0;
border: 0
}
.user-block__toggler::after {
content: "";
position: absolute;
top: 100%;
right: 0;
width: 201px;
height: 4px
}
.user-block__menu {
list-style: none;
position: absolute;
top: 100%;
right: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 16px 16px 15px;
min-width: 201px;
font-size: 14px;
line-height: 18px;
background-color: #fff;
border: 1px solid #d5d5d5;
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
box-shadow: 0 3px 9px rgba(0, 0, 0, .170946);
opacity: 0;
pointer-events: none
}
.user-block li {
margin-bottom: 16px
}
.user-block a, .user-block__menu {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.user-block a:hover {
opacity: .65
}
.user-block:hover .user-block__menu, .user-block__toggler:focus + .user-block__menu, .user-block__toggler:hover + .user-block__menu {
opacity: 1;
pointer-events: auto
}
.crm-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 57px
}
.task {
position: relative
}
.task__button {
position: absolute;
top: -19px;
right: 25px
}
.task__table {
width: 100%;
padding-top: 22px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.task th {
padding: 17px 15px 16px;
font-weight: 700;
text-align: left;
border-bottom: 1px solid #e5e5e5
}
.task th:first-child {
padding-left: 32px;
width: 26.3%
}
.task th:nth-child(2) {
width: 23.6%
}
.task th:nth-child(3) {
width: 25%
}
.task td {
padding: 15px 15px 16px;
border-bottom: 1px solid #e5e5e5
}
.task td:first-child {
padding-left: 32px
}
.members {
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;
padding: 28px 47px 0 33px
}
@media (max-width: 1140px) {
.members {
padding: 28px 24px 0
}
}
.members__contact {
width: 49%;
margin-bottom: 10px
}
.deal-log {
overflow: auto;
width: 100%;
height: calc(100vh - 59px);
position: relative;
padding: 24px 0 0
}
.deal-log__list {
list-style: none;
padding: 0 63px 90px 14px
}
.deal-log__header {
margin-bottom: 16px;
padding-left: 18px
}
.deal-log__message-panel {
position: absolute;
bottom: 0;
height: 156px;
width: 100%;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 242, .0001)), color-stop(81.71%, #f2f2f2));
background: linear-gradient(180deg, rgba(242, 242, 242, .0001) 0%, #f2f2f2 81.71%)
}
.event {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
margin-bottom: 32px
}
.event .label {
margin-top: -2px
}
.event__data-block {
-ms-flex-negative: 0;
flex-shrink: 0;
width: 71px;
margin-right: 17px;
text-align: right
}
.event__data, .event__time {
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
opacity: .65
}
.event__data {
margin-right: 3px;
font-weight: 700
}
.event__time {
font-weight: 400
}
.event__message-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.event__author, .event__message, .event__text {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px
}
.event__author {
margin-right: 6px;
line-height: 18px;
font-weight: 700
}
.event__message, .event__text {
font-weight: 400
}
.event__text {
margin-right: 7px;
line-height: 18px
}
.event__text b {
margin-left: 5px
}
.event__message {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
margin-top: 8px;
margin-bottom: 1px;
line-height: 24px
}
.event__message-sms {
position: relative;
-ms-flex-preferred-size: auto;
flex-basis: auto;
width: 312px;
margin-top: 11px;
margin-left: -11px;
margin-right: 50px;
padding: 8px 11px 15px;
background-color: #fff;
border-radius: 20px
}
.event__message-sms::before {
content: "";
position: absolute;
top: -4px;
left: 0;
display: block;
width: 25px;
height: 25px;
background: url(../img/cloud-bg.svg) no-repeat;
z-index: -5
}
.event__avatar {
-ms-flex-negative: 0;
flex-shrink: 0;
margin-right: 10px
}
.task-widget {
position: absolute;
top: 18px;
right: 32px;
text-align: right
}
.task-widget__button.hide, .task-widget__container .task-widget__close-button, .task-widget__container .task-widget__input {
display: none
}
.task-widget__container {
visibility: hidden;
opacity: 0;
position: absolute;
top: 0;
right: 0;
width: 457px;
padding-top: 18px;
padding-right: 22px;
background-color: #fff;
-webkit-transition: .5s opacity;
transition: .5s opacity
}
.task-widget__container.show {
visibility: visible;
padding-bottom: 10px;
opacity: 1;
-webkit-transition: .5s opacity;
transition: .5s opacity;
z-index: 10
}
.task-widget__container.show .task-widget__close-button {
display: block;
top: 16px;
left: 16px
}
.task-widget__container.show .task-widget__input {
display: block;
cursor: pointer
}
.task-widget__container.show .task-widget__input--date {
min-width: 0
}
.task-widget__textarea {
overflow: hidden;
min-width: 382px;
height: auto;
margin: 0;
padding-top: 0;
padding-left: 0;
padding-bottom: 3px;
font-style: italic;
line-height: 18px;
border-radius: 0;
border: 0;
border-bottom: 1px solid #979797;
-webkit-transition: .3s height;
transition: .3s height
}
.task-widget__executor, .task-widget__type {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 104px;
padding-right: 5px;
-ms-flex-negative: 0;
flex-shrink: 0
}
.task-widget__executor {
width: 131px
}
.task-widget__executor .choices__list.choices__list--single, .task-widget__type .choices__list.choices__list--single {
width: auto
}
.task-widget__date-wrapper {
position: relative;
min-height: 29px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transform: translateY(-2px);
transform: translateY(-2px)
}
.task-widget__calendar-container {
position: absolute;
top: 100%;
right: 0
}
.task-widget__calendar-container .calendar-close {
display: none
}
.task-widget__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 15px 0 0 10px;
text-align: left
}
.task-widget__form .choices {
margin-bottom: 0
}
.task-widget__form .choices__inner {
padding-right: 0
}
.task-widget__form .choices__list--single, .task-widget__form .choices__list--single .choices__placeholder {
font-size: 14px;
line-height: 18px
}
.task-widget__form .task-widget__button {
border: 0;
background-color: #fff;
padding: 0
}
.task-widget__form .task-widget__input {
width: auto;
height: auto;
font-size: 14px;
line-height: 18px;
color: rgba(56, 56, 56, .65)
}
.task-widget__form .task-widget__input--date {
color: #383838
}
.task-widget__form .task-widget__input--date::-webkit-input-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date::-moz-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date:-ms-input-placeholder, .task-widget__form .task-widget__input--date::-ms-input-placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__input--date::placeholder {
color: rgba(56, 56, 56, .65);
opacity: 1
}
.task-widget__form .task-widget__button {
margin-left: auto;
font-size: 14px;
line-height: 18px;
margin-top: 3px
}
.message-panel {
padding: 61px 24px 10px 22px
}
.message-panel__input {
width: 100%;
padding-left: 16px;
padding-right: 100px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
border-radius: 20px
}
.message-panel__button {
position: absolute;
top: 65px;
right: 28px;
height: 33px
}
.message-panel__options {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: baseline;
-ms-flex-pack: baseline;
justify-content: baseline;
padding-top: 11px;
padding-left: 5px;
padding-right: 7px
}
.message-panel__toggle, .message-panel__toggle:hover {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.message-panel__toggle {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 400;
margin-right: 10px;
color: rgba(56, 56, 56, .65)
}
.message-panel__toggle:hover {
opacity: .7
}
.message-panel__toggle--active {
font-weight: 700;
color: #383838
}
.message-panel__length {
margin-left: auto;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400
}
div.message-panel--chat, div.message-panel--letter {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding-left: 41px
}
div.message-panel--chat .message-panel__form, div.message-panel--letter .message-panel__form {
position: relative
}
div.message-panel--chat .message-panel__options, div.message-panel--letter .message-panel__options {
display: none
}
div.message-panel--chat .message-panel__button, div.message-panel--letter .message-panel__button {
top: 4px;
right: 4px
}
.communication-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 60px;
margin-top: 59px;
padding-left: 32px;
padding-top: 3px;
border-bottom: 1px solid #e5e5e5
}
.communication-header__caption {
margin-right: 22px;
-webkit-transform: translateY(-3px);
transform: translateY(-3px)
}
.communication-header__button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
margin-right: 7px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
border: 0;
background-color: transparent;
border-bottom: 1px solid transparent;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.communication-header__button.active {
text-shadow: 0 0 1px #383838;
border-bottom-color: #383838
}
.communication-header__button:hover {
opacity: .6;
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.communication-header__button:focus {
outline: 0
}
.communication-header__button:active {
color: rgba(0, 0, 0, .85)
}
.communication-header__unread-count {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
min-width: 18px;
height: 18px;
margin-right: 28px;
padding-bottom: 1px;
padding-right: 3px;
padding-left: 2px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 10px;
line-height: 13px;
font-weight: 700;
color: #fff;
text-decoration: none;
border-radius: 9px;
background-color: #4359fa
}
.communication-header__unread-count, .communication-mail {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.communication-mail__letter, .communication-mail__list {
width: 48.5%;
-ms-flex-negative: 0;
flex-shrink: 0
}
.communication-mail__letter {
width: 51.5%
}
.mail-list, .mail-list__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.mail-list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
border-right: 2px solid #f2f2f2
}
.mail-list__actions {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 11px 8px 11px 28px
}
.mail-list__new {
min-width: 140px;
-webkit-transform: translateY(-1px);
transform: translateY(-1px)
}
.mail-list__table {
width: 100%;
border-bottom: 1px solid #e5e5e5
}
.mail-list__table td, .mail-list__table th {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
color: #000;
border-top: 1px solid #e5e5e5
}
.mail-list__table th {
text-align: left;
padding: 16px 10px 13px;
font-weight: 700
}
.mail-list__table td {
padding: 14px 10px;
font-weight: 400
}
.mail-list__table td:first-child, .mail-list__table th:first-child {
padding-left: 34px;
padding-top: 16px
}
.mail-list__table td:nth-child(4), .mail-list__table th:nth-child(4) {
width: 18px;
padding: 4px 0 0
}
.mail-list__table .unread td {
font-weight: 700
}
.mail-list__table tbody tr {
background-color: #f2f2f2;
-webkit-transition: .3s background-color;
transition: .3s background-color;
cursor: pointer
}
.mail-list__table tbody tr:hover {
background-color: #fff;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.mail-list__table tr.active {
background-color: #fff
}
.mail-list__pagination-block {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 4px 29px 8px;
background-color: #f2f2f2
}
.letter, .letter__wrapper {
height: calc(100vh - 119px)
}
.letter {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.letter__wrapper {
overflow: auto;
padding: 10px 25px 0 54px
}
.communication__content.show, .letter__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.letter__visible {
min-height: 27px;
margin-left: auto;
padding: 0 5px;
border: 1px solid #bbb
}
.letter__add-message {
margin-top: auto;
padding: 61px 25px 44px 54px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), color-stop(81.71%, rgba(255, 255, 255, .95)));
background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .95) 81.71%)
}
.letter__button {
min-width: 115px;
margin-right: 8px
}
.letter__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-top: 22px;
padding-bottom: 100px
}
.letter__subject {
margin-bottom: 22px
}
.letter__date {
margin-left: auto;
line-height: 18px;
font-weight: 400;
color: #000
}
.letter__attachment, .letter__body, .letter__date, .letter__link {
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px
}
.letter__body {
color: #000;
line-height: 20px;
font-weight: 400
}
.letter__attachment, .letter__link {
line-height: 18px;
font-weight: 700
}
.letter__attachment {
margin-top: 3px;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
margin-bottom: 7px
}
.letter__link {
margin-bottom: 15px
}
.dashboard-card__toggler svg, .letter__visible:hover svg {
opacity: 1
}
.communication {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.communication__content {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: none
}
.communication-telegram__list {
width: 48.5%;
-ms-flex-negative: 0;
flex-shrink: 0
}
.communication-telegram__chat {
width: 51.5%
}
.chat-list {
background-color: #f2f2f2;
border-right: 1px solid #f2f2f2
}
.chat-list__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 11px 9px 12px 28px;
border-bottom: 1px solid #dfdfdf
}
.chat-list__search {
margin-left: auto
}
.chat-list__content-item, .chat-list__content-item:hover {
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.chat-list__content-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 11px 17px 14px 32px;
border-bottom: 1px solid #dfdfdf;
cursor: pointer
}
.chat-list__content-item:hover {
background-color: #fff
}
.chat-list__content-item--active {
background-color: rgba(255, 255, 255, .88)
}
.chat-list__avatar {
width: 48px;
height: 48px;
margin-right: 10px
}
.chat-list__avatar span {
font-family: "ptsans", "Arial", sans-serif;
font-size: 23px;
line-height: 30px;
font-weight: 700
}
.chat-list__wrapper-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 79%;
padding-top: 7px
}
.chat-list__message, .chat-list__name {
font-family: "ptsans", "Arial", sans-serif;
font-size: 15px;
line-height: 19px
}
.chat-list__name {
margin-bottom: 2px;
font-weight: 700
}
.chat-list__message {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 400;
opacity: .65
}
.chat-list__wrapper-right {
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: end;
-ms-flex-align: end;
align-items: flex-end;
margin-left: auto;
padding-top: 5px
}
.chat-list__count-message, .chat-list__time {
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px
}
.chat-list__time {
margin-bottom: 3px;
font-weight: 400
}
.chat-list__count-message {
padding: 2px 7px;
font-weight: 700;
color: #fff;
background-color: #bcbcbc;
border-radius: 10.5px
}
.chat, .chat__wrapper {
height: calc(100vh - 119px)
}
.chat {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.chat__wrapper {
overflow: auto;
padding: 10px 37px 0 53px
}
.chat__content {
padding-bottom: 100px
}
.chat__date {
margin-bottom: 11px;
padding-right: 9px;
text-align: center;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
letter-spacing: -.0565218px;
color: #999
}
.chat__actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 44px;
margin-left: 1px
}
.chat__button {
min-width: 115px;
margin-right: 8px
}
.chat__add-message {
margin-top: auto;
padding: 61px 25px 44px 53px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .1)), color-stop(81.71%, rgba(255, 255, 255, .95)));
background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .95) 81.71%)
}
.chat__message-day {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
text-align: right;
width: 18px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 12px;
line-height: 16px;
font-weight: 400;
letter-spacing: -.0521739px;
color: #999
}
.chat__list {
padding: 0;
list-style: none;
margin-bottom: 38px
}
.chat__list:last-of-type .chat__message-day {
visibility: hidden
}
.chat__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: -1px
}
.chat__avatar {
width: 36px;
height: 36px;
margin-right: 10px
}
.chat__author {
margin-bottom: 2px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
font-weight: 400;
color: #2481cc
}
.chat__wrapper-message, .chat__wrapper-message div {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.chat__wrapper-message {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.chat__wrapper-message div {
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline
}
.chat__link, .chat__message {
margin-bottom: 11px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 13px;
line-height: 17px;
letter-spacing: -.0565218px
}
.chat__message {
color: #060606;
font-weight: 400
}
.chat__link {
font-weight: 700
}
.chat__read {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
margin-left: auto;
padding-left: 5px
}
.settings {
margin-top: 59px;
margin-bottom: 35px
}
.settings .choices__placeholder {
display: none
}
.settings__form {
width: 613px;
padding-left: 4px
}
.settings__header {
display: block;
padding: 16px 0 12px 32px;
border-bottom: 1px solid #dbdbdb
}
.settings__list {
list-style: none;
padding: 16px 0 14px 32px;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.settings__item {
margin-right: 25px
}
.settings__toggle, .settings__toggle:hover {
-webkit-transition: .3s opacity;
transition: .3s opacity
}
.settings__toggle {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 400;
color: rgba(56, 56, 56, .65);
border: 0;
background-color: transparent;
border-bottom: 1px solid transparent
}
.settings__toggle.active {
text-shadow: 0 0 1px #383838;
border-bottom-color: #383838
}
.settings__toggle:hover {
opacity: .6
}
.settings__toggle:focus {
outline: 0
}
.settings__toggle:active {
color: rgba(0, 0, 0, .85)
}
.settings__content {
display: none
}
.settings__content.show {
display: block;
padding: 27px 0 0 28px
}
.settings__content--account.show {
padding-top: 12px
}
.settings__content--integration.show {
padding-top: 17px
}
.settings__caption {
margin-top: 41px;
margin-bottom: 37px
}
.settings__caption--account {
margin-top: 47px;
margin-bottom: 29px
}
.settings__field {
margin-bottom: 32px
}
.settings__field--account {
margin-bottom: 24px
}
.settings__field--tiny .input {
width: 200px
}
.settings__field--tiny .choices {
min-width: 200px
}
.settings__top-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 37px
}
.settings__avatar {
width: 63px;
height: 63px;
margin-right: 12px
}
.settings__avatar span {
font-family: "ptsans", "Arial", sans-serif;
font-size: 36px;
line-height: 47px;
font-weight: 700
}
.settings__button {
margin-top: 8px
}
.settings__button-account {
margin-top: 4px
}
.settings__integration-list {
padding: 0;
list-style: none;
border-top: 1px solid #dbdbdb
}
.settings__integration-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
min-height: 72px;
border-bottom: 1px solid #dbdbdb
}
.settings__integration-item, .settings__integration-title, .settings__sms-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.settings__integration-title {
margin-right: auto;
font-family: "ptsans", "Arial", sans-serif;
font-size: 16px;
line-height: 21px;
font-weight: 700
}
.settings__integration-title::before {
content: "";
display: block;
margin-right: 10px;
width: 32px
}
.settings__integration-title--telegram::before {
height: 32px;
background: url(../img/telegram.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--telegram::before {
background: url(../img/telegram@2x.png) no-repeat center center/32px 32px
}
}
.settings__integration-title--gmail::before {
height: 22px;
background: url(../img/gmail.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--gmail::before {
background: url(../img/gmail@2x.png) no-repeat center center/32px 22px
}
}
.settings__integration-title--sms::before {
height: 10px;
background: url(../img/sms.png) no-repeat
}
@media (-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi),(min-resolution: 1.5dppx) {
.settings__integration-title--sms::before {
background: url(../img/sms@2x.png) no-repeat center center/32px 10px
}
}
.settings__sms-wrapper {
min-height: 72px;
width: 100%
}
.settings__sms-content {
padding-left: 43px
}
.settings__text, .settings__title {
margin-bottom: 8px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 700;
color: #383838
}
.settings__text {
margin-bottom: 35px;
font-weight: 400
}
.settings__text a {
font-weight: 400
}
.settings__integration-field {
margin-bottom: 33px
}
.settings__integration-button {
margin-top: -8px;
margin-bottom: 36px
}
.settings__sms-content {
display: none
}
.settings__integration-item--sms.show {
min-height: auto
}
.settings__integration-item--sms.show .settings__sms-content {
display: block
}
.toggler__label {
position: relative;
padding-right: 49px;
font-family: "ptsans", "Arial", sans-serif;
font-size: 14px;
line-height: 18px;
font-weight: 700;
color: #8d8d8d;
cursor: pointer;
-webkit-transition: .3s color;
transition: .3s color
}
.toggler__label::after, .toggler__label::before {
content: "";
position: absolute;
top: -2px;
right: 0;
display: block;
width: 42px;
height: 22px;
border-radius: 15px;
background-color: #606060;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.toggler__label::before {
top: 1px;
right: 23px;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #fff;
z-index: 10;
-webkit-transition: .3s right;
transition: .3s right
}
.toggler__input:checked + label {
color: #259400;
-webkit-transition: .3s color;
transition: .3s color
}
.toggler__input:checked + label::after {
background-color: #259400;
-webkit-transition: .3s background-color;
transition: .3s background-color
}
.toggler__input:checked + label::before {
right: 3px;
-webkit-transition: .3s right;
transition: .3s right
}
.dasboard-section {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
color: #fff;
background-color: #1d1d47
}
.dasboard-section__header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 21px 34px 20px 31px
}
.dasboard-section__title {
margin-right: auto;
font-size: 38px;
line-height: 1.2
}
.dasboard-section__date {
margin-top: 18px;
font-size: 16px;
opacity: .65
}
.dasboard-section__actions {
margin-top: 21px;
margin-left: 14px
}
.dasboard-section__col, .dasboard-section__wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.dasboard-section__wrapper {
padding: 0 22px
}
.dasboard-section__col {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 50%
}
.dasboard-section__card {
margin: 0 10px 20px
}
.dasboard-section__card:last-child {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1
}
.dashboard-card {
color: #383838;
background-color: #fff;
border-radius: 8px;
overflow: hidden
}
.dashboard-card__header {
position: relative;
padding: 22px 20px 11px 24px
}
.dashboard-card__title {
margin-bottom: 5px;
font-size: 28px;
line-height: 33px;
letter-spacing: .2px
}
.dashboard-card__descr {
font-size: 12px;
line-height: 14px;
opacity: .75
}
.dashboard-card__toggler {
position: absolute;
top: 13px;
right: 16px;
opacity: 0;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
display: none
}
.dashboard-card__table {
padding-bottom: 5px
}
.dashboard-card__list {
padding: 10px 24px;
min-height: 114px
}
.dashboard-card__info ul, .dashboard-card__list ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0;
padding: 0;
list-style: none;
font-size: 12px;
line-height: 16px;
color: #898989
}
.dashboard-card__list li {
margin: 0 20px 20px 0;
width: 200px
}
@media (max-width: 1100px) {
.dashboard-card__list li {
width: 190px
}
}
.dashboard-card__list h3 {
margin-bottom: 4px;
font-size: 18px;
line-height: 21px;
letter-spacing: .2px
}
.dashboard-card__list a {
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease
}
.dashboard-card__list a:hover, .info-table a:hover {
color: #131f78
}
.dashboard-card__info {
padding: 10px 24px
}
.dashboard-card__info ul {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
max-width: 550px;
line-height: 14px;
color: #383838
}
.dashboard-card__info li {
margin: 0 20px 22px 0;
min-width: 200px
}
@media (max-width: 1100px) {
.dashboard-card__info li {
min-width: 190px
}
}
.dashboard-card__info li:last-child {
color: #6d35fb
}
.dashboard-card__info h3 {
font-size: 34px;
line-height: 40px
}
.dashboard-card__info p {
color: #383838;
opacity: .65
}
.dashboard-card__info--small {
padding-right: 48px;
text-align: center
}
.dashboard-card__info--small li {
margin-bottom: 16px;
min-width: auto
}
.dashboard-card__info--small h3 {
margin-bottom: -2px;
font-size: 40px
}
.dashboard-card__stats {
padding: 12px 33px 22px;
font-size: 14px;
line-height: 17px
}
.dashboard-card__stats ul {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 0;
-moz-column-gap: 0;
column-gap: 0;
margin: 0;
padding: 0;
list-style: none;
max-width: 448px
}
.dashboard-card__stats li {
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
break-inside: avoid;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 10px;
text-align: right
}
.dashboard-card__stats span {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: block;
padding-right: 10px;
max-width: 170px
}
.dashboard-card__stats span::after {
content: ":"
}
.dashboard-card__stats b {
display: block;
min-width: 44px;
text-align: left
}
.dashboard-card__chart {
padding: 32px 24px 0;
max-width: 550px
}
.dashboard-card:hover .dashboard-card__toggler {
opacity: 1
}
.info-table {
width: 100%;
font-size: 14px;
line-height: 17px;
border-collapse: collapse
}
.info-table tr:not(:last-child) {
border-bottom: 1px solid #ebebeb
}
.info-table th {
text-align: left
}
.info-table td, .info-table th {
padding-top: 16px;
padding-bottom: 16px;
padding-left: 12px;
width: 25%
}
.info-table td:first-child, .info-table th:first-child {
padding-left: 24px;
width: 25.5%
}
.info-table td:last-child, .info-table th:last-child {
padding-right: 24px
}
.info-table a, .info-table p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.info-table a {
display: block;
font-weight: 700;
color: #4359fa;
-webkit-transition: color .3s ease;
transition: color .3s ease;
max-width: 130px
}
@media (max-width: 1100px) {
.info-table a {
max-width: 100px
}
}
.info-table p {
max-width: 100%
}
.chart {
display: block;
width: 100%
} | 0.378459 | 0.101768 |
body, h1, h2, h3, h4, h5, h6, html {
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline
}
.slick-slide img, 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:after, blockquote:before, q:after, q:before {
content: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
b {
font-weight: 700
}
a {
color: inherit
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box
}
*, :after, :before {
-webkit-box-sizing: inherit;
box-sizing: inherit
}
body, html {
width: 100%
}
body {
font-family: "Open Sans", "PT Sans", Tahoma, Helvetica, sans-serif;
font-size: 16px
}
body.page .footer {
position: static;
margin-top: 50px
}
body.page .footer_fixed {
position: fixed
}
body #tl-booking-form {
max-width: 1180px;
margin: 0 auto;
min-height: 700px
}
.slick-slide.slick-loading img, body .tl-analytics {
display: none
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-family: "Franklin Gothic Demi", Roboto, Verdana, "Open Sans", sans-serif
}
.h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 25px
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 25px
}
.h1, h1 {
font-size: 48px
}
.h2, h2 {
font-size: 40px
}
@media screen and (max-width: 480px) {
.h1, .h2, h1, h2 {
font-size: 30px
}
body {
font-size: 14px
}
}
p {
line-height: 1.5
}
.text-with-nl {
white-space: pre-line
}
.no-wrap {
white-space: nowrap
}
.clearfix:after, .clearfix:before {
content: '';
display: table;
clear: both
}
.svgstore-item {
fill: #f89100
}
#theme-icons {
height: 0;
width: 0;
display: none;
visibility: hidden
}
[class*=" icon-"]:before, [class^=icon-]:before {
font-family: "starticons";
font-style: normal;
speak: none;
font-weight: 400;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-rendering: optimizeLegibility
}
.icon-d:before {
content: "\e900"
}
.icon-d1:before {
content: "\e901"
}
.icon-mans1:before {
content: "\e902"
}
.icon-mans:before {
content: "\e903"
}
.icon-hours:before {
content: "\e904"
}
.icon-AccessControlledCommunity:before {
content: "\e905"
}
.icon-adapter:before {
content: "\e906"
}
.icon-airplane:before {
content: "\e907"
}
.icon-alarm:before {
content: "\e908"
}
.icon-alcove:before {
content: "\e909"
}
.icon-ambulance:before {
content: "\e90a"
}
.icon-aqua-aerobics:before {
content: "\e90b"
}
.icon-arms:before {
content: "\e90c"
}
.icon-arrow1:before {
content: "\e90d"
}
.icon-arrow1_down:before {
content: "\e90e"
}
.icon-arrow1_left:before {
content: "\e90f"
}
.icon-arrow1_up:before {
content: "\e910"
}
.icon-arrow2:before {
content: "\e911"
}
.icon-arrow3:before {
content: "\e912"
}
.icon-arrow3_left:before {
content: "\e913"
}
.icon-arrow4:before {
content: "\e914"
}
.icon-arrow4_left:before {
content: "\e915"
}
.icon-arrow5:before {
content: "\e916"
}
.icon-arrow6:before {
content: "\e917"
}
.icon-arrow6_left:before {
content: "\e918"
}
.icon-atm:before {
content: "\e919"
}
.icon-audiocenter:before {
content: "\e91a"
}
.icon-autowash:before {
content: "\e91b"
}
.icon-baby-carriages:before {
content: "\e91c"
}
.icon-badewanne:before {
content: "\e91d"
}
.icon-ball:before {
content: "\e91e"
}
.icon-bar:before {
content: "\e91f"
}
.icon-barbershop:before {
content: "\e920"
}
.icon-basketball:before {
content: "\e921"
}
.icon-bathrobe:before {
content: "\e922"
}
.icon-beach:before {
content: "\e923"
}
.icon-bed:before {
content: "\e924"
}
.icon-bed2:before {
content: "\e925"
}
.icon-bell:before {
content: "\e926"
}
.icon-benches-lantern:before {
content: "\e927"
}
.icon-bicycle:before {
content: "\e928"
}
.icon-BikeTrailAccess:before {
content: "\e929"
}
.icon-billiards:before {
content: "\e92a"
}
.icon-Billiards2:before {
content: "\e92b"
}
.icon-binoculars:before {
content: "\e92c"
}
.icon-birthday-cake:before {
content: "\e92d"
}
.icon-book:before {
content: "\e92e"
}
.icon-bottle:before {
content: "\e92f"
}
.icon-bus:before {
content: "\e930"
}
.icon-BusinessCenter:before {
content: "\e931"
}
.icon-businesscentre:before {
content: "\e932"
}
.icon-businessman:before {
content: "\e933"
}
.icon-cake:before {
content: "\e934"
}
.icon-calendar1:before {
content: "\e935"
}
.icon-calendar2:before {
content: "\e936"
}
.icon-calendar3:before {
content: "\e937"
}
.icon-calendar4:before {
content: "\e938"
}
.icon-calendar5:before {
content: "\e939"
}
.icon-calendar6:before {
content: "\e93a"
}
.icon-car:before {
content: "\e93b"
}
.icon-car2:before {
content: "\e93c"
}
.icon-carpet-covering:before {
content: "\e93d"
}
.icon-casino_1:before {
content: "\e93e"
}
.icon-casino_2:before {
content: "\e93f"
}
.icon-casino_3:before {
content: "\e940"
}
.icon-CatFriendly:before {
content: "\e941"
}
.icon-cctv:before {
content: "\e942"
}
.icon-check:before {
content: "\e943"
}
.icon-chess:before {
content: "\e944"
}
.icon-chinese:before {
content: "\e945"
}
.icon-church:before {
content: "\e946"
}
.icon-clear:before {
content: "\e947"
}
.icon-cloche:before {
content: "\e948"
}
.icon-close:before {
content: "\e949"
}
.icon-cloudy:before {
content: "\e94a"
}
.icon-clown:before {
content: "\e94b"
}
.icon-cocktail:before {
content: "\e94c"
}
.icon-coffeemaker:before {
content: "\e94d"
}
.icon-concierge:before {
content: "\e94e"
}
.icon-conditioner:before {
content: "\e94f"
}
.icon-conference:before {
content: "\e950"
}
.icon-ConferenceRoom:before {
content: "\e951"
}
.icon-cooking:before {
content: "\e952"
}
.icon-cosmetics:before {
content: "\e953"
}
.icon-cot:before {
content: "\e954"
}
.icon-cow:before {
content: "\e955"
}
.icon-creditcard:before {
content: "\e956"
}
.icon-cripple:before {
content: "\e957"
}
.icon-cross-country-skiing:before {
content: "\e958"
}
.icon-cruise:before {
content: "\e959"
}
.icon-cup:before {
content: "\e95a"
}
.icon-currencyexchange:before {
content: "\e95b"
}
.icon-depositbox:before {
content: "\e95c"
}
.icon-desk-2:before {
content: "\e95d"
}
.icon-discount:before {
content: "\e95e"
}
.icon-display:before {
content: "\e95f"
}
.icon-document:before {
content: "\e960"
}
.icon-document2:before {
content: "\e961"
}
.icon-DogFriendly:before {
content: "\e962"
}
.icon-DogPark:before {
content: "\e963"
}
.icon-double-bed-2:before {
content: "\e964"
}
.icon-douche:before {
content: "\e965"
}
.icon-drink:before {
content: "\e966"
}
.icon-drink-machine:before {
content: "\e967"
}
.icon-drop:before {
content: "\e968"
}
.icon-duck:before {
content: "\e969"
}
.icon-duck-2:before {
content: "\e96a"
}
.icon-electric-range:before {
content: "\e96b"
}
.icon-elevator:before {
content: "\e96c"
}
.icon-eng:before {
content: "\e96d"
}
.icon-esp:before {
content: "\e96e"
}
.icon-euro:before {
content: "\e96f"
}
.icon-euro-serif:before {
content: "\e970"
}
.icon-EventRoom:before {
content: "\e971"
}
.icon-family:before {
content: "\e972"
}
.icon-faq:before {
content: "\e973"
}
.icon-fax1:before {
content: "\e974"
}
.icon-fax2:before {
content: "\e975"
}
.icon-fb:before {
content: "\e976"
}
.icon-feeder:before {
content: "\e977"
}
.icon-fireplacee:before {
content: "\e978"
}
.icon-fish:before {
content: "\e979"
}
.icon-flatTV:before {
content: "\e97a"
}
.icon-flickr:before {
content: "\e97b"
}
.icon-flower:before {
content: "\e97c"
}
.icon-fousquare:before {
content: "\e97d"
}
.icon-fruits:before {
content: "\e97e"
}
.icon-gallery:before {
content: "\e97f"
}
.icon-GarageParking:before {
content: "\e980"
}
.icon-googleplus:before {
content: "\e981"
}
.icon-gym:before {
content: "\e982"
}
.icon-gym-bike:before {
content: "\e983"
}
.icon-hairdryer:before {
content: "\e984"
}
.icon-hanger:before {
content: "\e985"
}
.icon-hanger-2:before {
content: "\e986"
}
.icon-heating:before {
content: "\e987"
}
.icon-HighSpeed:before {
content: "\e988"
}
.icon-home1:before {
content: "\e989"
}
.icon-home2:before {
content: "\e98a"
}
.icon-home3:before {
content: "\e98b"
}
.icon-home4:before {
content: "\e98c"
}
.icon-home5:before {
content: "\e98d"
}
.icon-home6:before {
content: "\e98e"
}
.icon-hoover:before {
content: "\e98f"
}
.icon-horse:before {
content: "\e990"
}
.icon-HotTub:before {
content: "\e991"
}
.icon-hygiene:before {
content: "\e992"
}
.icon-icq:before {
content: "\e993"
}
.icon-IndoorPool:before {
content: "\e994"
}
.icon-inmap:before {
content: "\e995"
}
.icon-inmap1:before {
content: "\e996"
}
.icon-inmap2:before {
content: "\e997"
}
.icon-inmap3:before {
content: "\e998"
}
.icon-inmap4:before {
content: "\e999"
}
.icon-inmap5:before {
content: "\e99a"
}
.icon-inmap6:before {
content: "\e99b"
}
.icon-inmap7:before {
content: "\e99c"
}
.icon-instagram:before {
content: "\e99d"
}
.icon-instagram2:before {
content: "\e99e"
}
.icon-internet:before {
content: "\e99f"
}
.icon-iPod:before {
content: "\e9a0"
}
.icon-iron:before {
content: "\e9a1"
}
.icon-ivisa:before {
content: "\e9a2"
}
.icon-jacuzzi:before {
content: "\e9a3"
}
.icon-keys:before {
content: "\e9a4"
}
.icon-keys2:before {
content: "\e9a5"
}
.icon-kidgirl:before {
content: "\e9a6"
}
.icon-kitchen-furniture:before {
content: "\e9a7"
}
.icon-krug:before {
content: "\e9a8"
}
.icon-kvadrik:before {
content: "\e9a9"
}
.icon-vk-2020:before {
content: "\e9aa"
}
.icon-lj:before {
content: "\e9ab"
}
.icon-lounge:before {
content: "\e9ac"
}
.icon-magnifier1:before {
content: "\e9ad"
}
.icon-magnifier2:before {
content: "\e9ae"
}
.icon-magnifier3:before {
content: "\e9af"
}
.icon-magnifier4:before {
content: "\e9b0"
}
.icon-MaidServiceAvailable:before {
content: "\e9b1"
}
.icon-mail1:before {
content: "\e9b2"
}
.icon-mail2:before {
content: "\e9b3"
}
.icon-mail3:before {
content: "\e9b4"
}
.icon-mail4:before {
content: "\e9b5"
}
.icon-mail5:before {
content: "\e9b6"
}
.icon-mail6:before {
content: "\e9b7"
}
.icon-makeup-mirror:before {
content: "\e9b8"
}
.icon-man:before {
content: "\e9b9"
}
.icon-manbuysticket:before {
content: "\e9ba"
}
.icon-manOk:before {
content: "\e9bb"
}
.icon-man-roof:before {
content: "\e9bc"
}
.icon-man-with-racket:before {
content: "\e9bd"
}
.icon-mariornament:before {
content: "\e9be"
}
.icon-massage:before {
content: "\e9bf"
}
.icon-matrioshka:before {
content: "\e9c0"
}
.icon-meal:before {
content: "\e9c1"
}
.icon-medicine:before {
content: "\e9c2"
}
.icon-menu1:before {
content: "\e9c3"
}
.icon-menu2:before {
content: "\e9c4"
}
.icon-metro:before {
content: "\e9c5"
}
.icon-metro2:before {
content: "\e9c6"
}
.icon-MetroAccessible:before {
content: "\e9c7"
}
.icon-microphone:before {
content: "\e9c8"
}
.icon-microwave:before {
content: "\e9c9"
}
.icon-mineralwater:before {
content: "\e9ca"
}
.icon-minibus:before {
content: "\e9cb"
}
.icon-moneypay:before {
content: "\e9cc"
}
.icon-moneyterminal:before {
content: "\e9cd"
}
.icon-monitor:before {
content: "\e9ce"
}
.icon-MovieTheater:before {
content: "\e9cf"
}
.icon-museum2:before {
content: "\e9d0"
}
.icon-music:before {
content: "\e9d1"
}
.icon-mute:before {
content: "\e9d2"
}
.icon-newspaper:before {
content: "\e9d3"
}
.icon-nightstand:before {
content: "\e9d4"
}
.icon-NoPetsPermitted:before {
content: "\e9d5"
}
.icon-nosmoke:before {
content: "\e9d6"
}
.icon-notdisturb:before {
content: "\e9d7"
}
.icon-odnoklassiki:before {
content: "\e9d8"
}
.icon-OutdoorGrillingArea:before {
content: "\e9d9"
}
.icon-overcast:before {
content: "\e9da"
}
.icon-package:before {
content: "\e9db"
}
.icon-pajamas:before {
content: "\e9dc"
}
.icon-paragliding:before {
content: "\e9dd"
}
.icon-parilka:before {
content: "\e9de"
}
.icon-parking:before {
content: "\e9df"
}
.icon-partlycloudy:before {
content: "\e9e0"
}
.icon-people:before {
content: "\e9e1"
}
.icon-phone1:before {
content: "\e9e2"
}
.icon-phone2:before {
content: "\e9e3"
}
.icon-phone3:before {
content: "\e9e4"
}
.icon-phone4:before {
content: "\e9e5"
}
.icon-phone5:before {
content: "\e9e6"
}
.icon-photocamera1:before {
content: "\e9e7"
}
.icon-photocamera2:before {
content: "\e9e8"
}
.icon-photocamera3:before {
content: "\e9e9"
}
.icon-pillow-one:before {
content: "\e9ea"
}
.icon-pinterest:before {
content: "\e9eb"
}
.icon-plates:before {
content: "\e9ec"
}
.icon-Playground:before {
content: "\e9ed"
}
.icon-pool:before {
content: "\e9ee"
}
.icon-porter:before {
content: "\e9ef"
}
.icon-present:before {
content: "\e9f0"
}
.icon-print:before {
content: "\e9f1"
}
.icon-projector:before {
content: "\e9f2"
}
.icon-pyramid:before {
content: "\e9f3"
}
.icon-qiwi:before {
content: "\e9f4"
}
.icon-rain:before {
content: "\e9f5"
}
.icon-ramp:before {
content: "\e9f6"
}
.icon-razor:before {
content: "\e9f7"
}
.icon-refrigerator:before {
content: "\e9f8"
}
.icon-restaurant:before {
content: "\e9f9"
}
.icon-RetailOn-site:before {
content: "\e9fa"
}
.icon-reverse:before {
content: "\e9fb"
}
.icon-review1:before {
content: "\e9fc"
}
.icon-rink:before {
content: "\e9fd"
}
.icon-rollerblade:before {
content: "\e9fe"
}
.icon-RooftopLounge:before {
content: "\e9ff"
}
.icon-roomservice:before {
content: "\ea00"
}
.icon-rouble-sans:before {
content: "\ea01"
}
.icon-rouble-serif:before {
content: "\ea02"
}
.icon-safe:before {
content: "\ea03"
}
.icon-sauna:before {
content: "\ea04"
}
.icon-sauna-hot:before {
content: "\ea05"
}
.icon-seating-banket:before {
content: "\ea06"
}
.icon-seating-banquet:before {
content: "\ea07"
}
.icon-seating-cabinet:before {
content: "\ea08"
}
.icon-seating-furshet:before {
content: "\ea09"
}
.icon-seating-klass:before {
content: "\ea0a"
}
.icon-seating-p:before {
content: "\ea0b"
}
.icon-seating-perimeter:before {
content: "\ea0c"
}
.icon-seating-roundtable:before {
content: "\ea0d"
}
.icon-seating-t:before {
content: "\ea0e"
}
.icon-seating-theater:before {
content: "\ea0f"
}
.icon-seating-ustyle:before {
content: "\ea10"
}
.icon-setting:before {
content: "\ea11"
}
.icon-shashlik:before {
content: "\ea12"
}
.icon-shell:before {
content: "\ea13"
}
.icon-shield:before {
content: "\ea14"
}
.icon-shoes2:before {
content: "\ea15"
}
.icon-shootingrange:before {
content: "\ea16"
}
.icon-shower:before {
content: "\ea17"
}
.icon-ShuttleServicetoMetro:before {
content: "\ea18"
}
.icon-ski-slope:before {
content: "\ea19"
}
.icon-skype:before {
content: "\ea1a"
}
.icon-slippers:before {
content: "\ea1b"
}
.icon-Smoke-freeLiving:before {
content: "\ea1c"
}
.icon-smokeman:before {
content: "\ea1d"
}
.icon-snow:before {
content: "\ea1e"
}
.icon-snowmobile:before {
content: "\ea1f"
}
.icon-soccerball:before {
content: "\ea20"
}
.icon-solarium:before {
content: "\ea21"
}
.icon-spa:before {
content: "\ea22"
}
.icon-speech:before {
content: "\ea23"
}
.icon-sport-2:before {
content: "\ea24"
}
.icon-stairs:before {
content: "\ea25"
}
.icon-star:before {
content: "\ea26"
}
.icon-storm:before {
content: "\ea27"
}
.icon-stroller:before {
content: "\ea28"
}
.icon-SubwayAccessible:before {
content: "\ea29"
}
.icon-suitcase:before {
content: "\ea2a"
}
.icon-sunbed:before {
content: "\ea2b"
}
.icon-swing:before {
content: "\ea2c"
}
.icon-tablet:before {
content: "\ea2d"
}
.icon-target:before {
content: "\ea2e"
}
.icon-taxi:before {
content: "\ea2f"
}
.icon-teapot:before {
content: "\ea30"
}
.icon-telegram:before {
content: "\ea31"
}
.icon-tennis-court:before {
content: "\ea32"
}
.icon-tennissmall:before {
content: "\ea33"
}
.icon-terrenkur:before {
content: "\ea34"
}
.icon-theater:before {
content: "\ea35"
}
.icon-threads:before {
content: "\ea36"
}
.icon-tires:before {
content: "\ea37"
}
.icon-tlstart:before {
content: "\ea38"
}
.icon-tlstart2:before {
content: "\ea39"
}
.icon-tooth:before {
content: "\ea3a"
}
.icon-towel:before {
content: "\ea3b"
}
.icon-train:before {
content: "\ea3c"
}
.icon-train-2:before {
content: "\ea3d"
}
.icon-trampoline:before {
content: "\ea3e"
}
.icon-travelline:before {
content: "\ea3f"
}
.icon-tripadvisor:before {
content: "\ea40"
}
.icon-triplearrow:before {
content: "\ea41"
}
.icon-tubing:before {
content: "\ea42"
}
.icon-tubing2:before {
content: "\ea43"
}
.icon-tv:before {
content: "\ea44"
}
.icon-tv2:before {
content: "\ea45"
}
.icon-twitter:before {
content: "\ea46"
}
.icon-umbrella:before {
content: "\ea47"
}
.icon-umbrellaandchair:before {
content: "\ea48"
}
.icon-Valet-DryCleaningService:before {
content: "\ea49"
}
.icon-valve:before {
content: "\ea4a"
}
.icon-viber:before {
content: "\ea4b"
}
.icon-viber2:before {
content: "\ea4c"
}
.icon-vk:before {
content: "\ea4d"
}
.icon-vk-new:before {
content: "\ea4e"
}
.icon-volleyball:before {
content: "\ea4f"
}
.icon-walking:before {
content: "\ea50"
}
.icon-wallet:before {
content: "\ea51"
}
.icon-warm:before {
content: "\ea52"
}
.icon-warmflooring:before {
content: "\ea53"
}
.icon-washingmachine:before {
content: "\ea54"
}
.icon-watch:before {
content: "\ea55"
}
.icon-wc:before {
content: "\ea56"
}
.icon-webcam:before {
content: "\ea57"
}
.icon-wedding1:before {
content: "\ea58"
}
.icon-wedding2:before {
content: "\ea59"
}
.icon-WelcomePackage:before {
content: "\ea5a"
}
.icon-whatsapp:before {
content: "\ea5b"
}
.icon-whatsapp2:before {
content: "\ea5c"
}
.icon-wifi:before {
content: "\ea5d"
}
.icon-wififree:before {
content: "\ea5e"
}
.icon-worktable:before {
content: "\ea5f"
}
.icon-youtube1:before {
content: "\ea60"
}
.icon-youtube2:before {
content: "\ea61"
}
.icon-ZipCar:before {
content: "\ea62"
}
.icon-rest-menu:before {
content: "\ea63"
}
@font-face {
font-family: 'starticons';
font-display: auto;
src: url(../fonts/starticons.eot);
src: url(../fonts/starticons.eot) format("embedded-opentype"), url(../fonts/starticons.svg) format("svg"), url(../fonts/starticons.woff) format("woff"), url(../fonts/starticons.ttf) format("truetype");
font-weight: 400;
font-style: normal
}
@font-face {
font-family: '<NAME>';
font-display: auto;
font-style: normal;
font-weight: 400;
src: url(../fonts/franklin-gothic-demi.eot) format("embedded-opentype"), local("Franklin Gothic Demi"), local("FranklinGothicDemi-Regular"), url(../fonts/franklin-gothic-demi.woff) format("woff"), url(../fonts/franklin-gothic-demi.ttf) format("truetype")
}
.slick-list, .slick-slider {
position: relative;
display: block
}
.slick-slider {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent
}
.slick-list {
overflow: hidden;
margin: 0;
padding: 0
}
.slick-list:focus {
outline: none
}
.slick-list.dragging {
cursor: pointer;
cursor: hand
}
.slick-slider .slick-list, .slick-slider .slick-track {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block
}
.slick-track:after, .slick-track:before {
content: "";
display: table
}
.slick-track:after {
clear: both
}
.slick-loading .slick-track {
visibility: hidden
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none
}
[dir=rtl] .slick-slide {
float: right
}
.slick-slide.dragging img {
pointer-events: none
}
.slick-initialized .slick-slide {
display: block
}
.slick-loading .slick-slide {
visibility: hidden
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent
}
.slick-arrow.slick-hidden {
display: none
}
.logo {
background: #fff;
max-width: 160px;
height: 120px;
padding: 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;
min-width: 120px
}
.logo_of-header {
min-height: 110px;
height: auto
}
.logo__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
z-index: 5;
height: 100%;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo__image {
width: 100%;
background: 0 0;
display: block;
z-index: 10;
margin: auto;
max-height: 100%;
max-width: 100%
}
.logo__image_in_footer {
margin: 0;
height: 40px;
padding: 0
}
.logo_small {
background: 0 0;
height: auto;
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.logo_resize {
padding: 60px 10px 0;
min-width: 60px;
width: 100%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo_resize .logo__image {
width: auto;
max-width: 100%;
max-height: 60px
}
@media screen and (max-width: 768px) {
.logo {
max-width: 180px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.logo {
max-width: 180px
}
.logo_resize {
padding: 10px;
max-width: 130px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo_resize .logo__image {
width: auto;
max-width: 100%;
max-height: 60px
}
}
.header {
color: #fff;
background-color: rgba(0, 0, 0, .7);
position: relative;
height: auto;
z-index: 10;
top: 0;
left: 0
}
.header + .slider.slider_main {
margin-top: -120px
}
.header + .slider.slider_main.slider_fixed {
margin-top: 0
}
.header + section > div[class*=__container] {
border-top: none
}
.header, .header__container, .header__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%
}
.header__container {
position: relative;
height: 100%
}
.header__content {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.header__title {
margin: 0;
font-size: 24px
}
.header__link {
text-decoration: none;
color: #fff
}
.header__link:hover {
text-decoration: underline
}
.header__bar {
background: rgba(71, 71, 71, .8);
width: 100%;
height: 60px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0 20px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.header__navigation {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
position: relative
}
.header__menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
position: relative
}
.header_fixed {
position: fixed;
left: 0;
top: -60px
}
.header_fixed .header__bar {
visibility: hidden
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 120px
}
@media screen and (max-width: 480px) {
.header + .slider.slider_main {
margin-top: 0
}
.header__bar {
background: #474747
}
.header__menu, .header__navigation {
position: static
}
.header__title {
font-size: 18px
}
.header_fixed {
position: static;
left: 0;
top: 0
}
.header_fixed .header__bar {
visibility: visible
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 0
}
}
@media screen and (max-height: 750px) {
.header + .slider.slider_main {
margin-top: 0
}
.header_fixed {
position: static;
left: 0;
top: 0
}
.header_fixed .header__bar {
visibility: visible
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 0
}
}
.slider__item {
outline: 0
}
.slider__item-image {
width: 100%;
height: 320px
}
.slider__dot {
background-color: #fff;
outline: 0;
width: 15px;
height: 15px;
display: block;
border: none;
cursor: pointer;
padding: 0
}
.slider_main {
position: relative;
margin-top: -120px
}
.slider_main, .slider_main .slider__list {
width: 100%;
height: 100%
}
.slider_main .slider__item {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
float: left;
display: none
}
.slider_main .slider__item:first-child {
display: block;
opacity: 0
}
.slider_main .slider__item:last-child {
display: block;
opacity: 1
}
.slider_main .slider__item-image {
height: 100%;
top: 0;
left: 0;
position: absolute;
background-size: cover;
background-position: center center;
background-repeat: no-repeat
}
.slider_category .slider__item {
width: 50%;
float: left;
position: relative;
margin: 0 15px
}
.slider_category, .slider_category .slider__item-content {
position: relative
}
.slider_category .slider__item-image {
border-radius: 5px
}
.slider_category .slider__item-overlay {
color: #fff;
height: 120px;
width: 100%;
position: absolute;
bottom: 0;
left: 0
}
.slider_category .slider__item-overlay_special-offer {
background-color: rgba(0, 0, 0, .7);
height: auto;
padding: 15px 25px 18px
}
@media screen and (max-width: 1179px) {
.slider_main .slick-dots {
left: 41%
}
.slider_category .slider__item-overlay {
bottom: -60px
}
.slider_category .slider__item-overlay_special-offer {
bottom: 0
}
}
@media screen and (max-width: 1180px) {
.slider_main .slick-dots {
left: 41%
}
.slider_category .slider__item-overlay {
bottom: -60px
}
.slider_category .slider__item-overlay_special-offer {
bottom: 0
}
.slider_rooms .slider__item-overlay {
padding: 0
}
}
@media screen and (max-width: 768px) {
.slider_main .slick-dots {
display: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.slider_main {
height: auto;
margin-top: 0
}
.slider_main .button-anchor {
display: block
}
.slider_main .slider__list {
height: 100vw;
max-height: 530px
}
.slider_category .slider__item {
margin: 0 15px 20px
}
.slider_category, .slider_category .slider__item-content {
position: relative
}
.slider_category .slider__item-image {
border-radius: 5px
}
.slider_category .slider__item-overlay {
background-color: rgba(0, 0, 0, .7);
height: auto;
bottom: 0;
padding-bottom: 20px;
border-radius: 0 0 5px 5px
}
.slider_category .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.slider_category .slick-dots li {
margin: 0 12.5px 10px
}
}
.slick-slider_main .slick-list, .slick-slider_main .slick-track {
height: 100%
}
.slick-slider_main .slick-slide {
display: block;
opacity: 1
}
.slick-slider_main .slick-dots {
position: absolute;
left: 50%;
top: 160px;
-webkit-transform: translateX(-37.5%);
transform: translateX(-37.5%);
z-index: 1
}
.slick-slider_main .slick-dots li {
margin: 0 27.5px 10px;
float: left
}
.slick-slider_main .slick-dots li button {
padding: 0 !important
}
.slick-slider_category .slick-active .slider__dot, .slick-slider_main .slick-active .slider__dot {
background-color: #ffa220;
border: none;
-webkit-box-shadow: none;
box-shadow: none
}
.slick-slider_category .slick-list {
margin-bottom: 25px
}
.slick-slider_category .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.slick-slider_category .slick-dots li {
margin: 15px 20px 0
}
@media screen and (max-width: 1180px) {
.slick-slider_main .slick-dots {
left: 41%
}
}
@media screen and (max-width: 768px), screen and (max-height: 750px) {
.slick-slider_main .slick-dots {
visibility: hidden;
display: inline
}
.slick-slider_category .slick-list {
margin-bottom: 15px
}
.slick-slider_category .slick-dots li {
margin: 15px 10px 0
}
}
.footer {
color: #fff;
border-top: 1px solid #ffa220;
background-color: rgba(0, 0, 0, .7);
width: 100%;
position: fixed;
z-index: 3;
bottom: 0;
left: 0;
display: none
}
.footer__container {
position: relative
}
.footer__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
font-size: 14px;
line-height: 16px
}
.footer__item {
margin: 10px 10px 11px;
max-width: 300px;
width: auto
}
.footer__item_counters {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 14px
}
.footer__item .copyright {
margin: 0 10px 10px 11px
}
.footer__link_main-site {
display: none;
text-decoration: none;
font-size: 12px;
color: #ffa220;
-webkit-box-shadow: inset 0 -1px 0 0 rgba(255, 162, 32, .75);
box-shadow: inset 0 -1px 0 0 rgba(255, 162, 32, .75);
margin: 3px 0 0 15px
}
.footer__link_main-site:hover {
-webkit-box-shadow: none;
box-shadow: none
}
.footer_fixed {
position: fixed
}
.footer_visible {
display: block !important
}
@media screen and (max-width: 768px) {
.footer__list {
padding: 0 15px;
-ms-flex-line-pack: justify;
align-content: space-between
}
.footer__item_counters {
margin-right: 15px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.footer {
background-color: #000;
height: auto;
position: static
}
.footer__list {
padding: 28px 5px 27px;
-ms-flex-line-pack: justify;
align-content: space-between
}
.footer__item_counters {
display: none
}
.footer__link_main-site {
display: inline-block
}
}
.menu {
position: relative;
font-size: 14px;
width: 100%
}
.menu_visible {
visibility: visible
}
.menu__list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.menu__items, .menu__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.menu__items_with-padding {
padding-right: 60px
}
.menu__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-decoration: none;
padding: 0 20px
}
.menu__link:active, .menu__link:hover {
color: #f89100;
cursor: pointer
}
.menu__item {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-decoration: none;
text-align: center;
font-weight: 700;
text-transform: uppercase;
height: 50px
}
.menu__item:first-child {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto
}
.menu__item_current {
background-color: #ffa220
}
.menu__item_last-row {
-webkit-box-flex: inherit;
-ms-flex: inherit;
flex: inherit
}
.menu__item_booking-button {
background-color: #f89100;
color: #fff;
cursor: pointer
}
.menu__item_booking-button:hover {
background-color: #ff9d13
}
.menu__item_booking-button .menu__link:active, .menu__item_booking-button .menu__link:hover {
color: #fff
}
@media screen and (max-width: 1180px) {
.menu {
width: 320px;
position: absolute;
z-index: 11;
left: 0;
top: 60px;
visibility: hidden
}
.menu__list {
background-color: #000;
display: none
}
.menu__items, .menu__list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.menu__items_with-padding {
padding-right: 0
}
.menu__item {
border-right: none;
border-top: 1px solid rgba(255, 255, 255, .25)
}
.menu__link {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding: 0 10px
}
.menu_visible {
visibility: visible
}
.menu_visible .menu__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.menu_visible .menu__item {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
text-align: left
}
}
@media screen and (max-width: 480px) {
.menu {
top: 120px
}
.menu__list {
background-color: #000
}
.menu__item {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
text-align: left
}
}
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none) {
.menu .menu__item:nth-child(2) {
min-width: 85px
}
}
.button {
background-color: #f89100;
color: #fff;
text-align: center;
cursor: pointer;
text-transform: uppercase;
font-weight: 700
}
.button__title {
padding: 0 0 0 8px
}
.button_lang {
background-color: transparent;
height: 50px;
width: 60px;
line-height: 50px;
vertical-align: middle
}
.button_menu {
background-color: #000;
height: 60px;
line-height: 60px;
width: 120px;
display: none
}
.button_menu .icon-menu1 {
padding-right: 8px;
font-size: 18px;
display: inline-block;
min-width: 26px
}
.button_booking {
height: 60px;
line-height: 60px;
min-width: 200px;
padding: 0 15px;
position: relative;
z-index: 10;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.button_booking .icon-bell {
text-align: center
}
.button_anchor, .button_on_footer {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button_anchor {
background-color: #ffa220;
height: 50px;
width: 50px
}
.button_anchor .icon-arrow5 {
color: #fff;
font-size: 18px;
position: absolute;
top: 16px;
left: 16px
}
.button_anchor.button_anchor_map {
position: absolute;
z-index: 3;
margin: 0 0 0 -25px;
top: 0;
left: 50%;
visibility: visible;
opacity: 1;
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.button_on_footer {
position: absolute;
z-index: 2;
margin: -50px 0 0 -25px;
left: 50%;
visibility: hidden;
opacity: 0
}
.button_room, .button_visa {
text-decoration: none;
border-radius: 3px
}
.button_room, .button_room:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.button_room {
-ms-flex-item-align: end;
align-self: flex-end;
font-size: 16px;
padding: 12px 18px;
color: #fff;
background-color: #f89100
}
.button_room:hover {
background-color: #ff9d13
}
.button_visa {
background: #fff;
color: #000;
padding: 12px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
line-height: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
min-width: 290px
}
.button_visa:hover {
background: #fff;
-webkit-transition: all .5s ease-in;
transition: all .5s ease-in
}
.button_common, .button_common:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.button_common {
background: #f89100;
color: #fff;
text-decoration: none;
margin: 5px;
border-radius: 3px;
padding: 12px 18px;
display: inline-block;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
box-shadow: 0 1px 1px rgba(0, 0, 0, .3)
}
.button_common:hover {
background: #ff9d13
}
.button_vertical-margins {
margin: 15px 0
}
.button_switched-colors {
color: #f89100;
background: #fff
}
.button_switched-colors:hover {
background: #f2f2f2
}
.button_under-description {
margin-left: 0;
margin-top: 15px
}
.button_visible {
visibility: visible;
opacity: 1;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button_small {
margin: 15px 0;
font-size: 14px;
padding: 8px 15px
}
@media screen and (max-width: 1180px) {
.button_menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding-left: 15px
}
.button_lang {
height: 60px;
line-height: 60px
}
}
@media screen and (max-width: 768px) {
.button_menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding-left: 15px;
min-width: 60px
}
.button_menu .icon-menu1 {
padding-right: 4px
}
.button_booking {
width: 60px;
min-width: 60px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.button_room {
padding: 12px 7px
}
}
.provider_style_primary {
background: #fff;
color: #000
}
.provider_style_complementary {
background: #474747;
color: #fff
}
.provider_visa_page .provider__container {
max-width: 800px
}
.provider__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 0 73px;
text-align: left
}
.provider__container_with_padding {
padding: 52px 15px 73px
}
.provider__title {
margin-bottom: 35px;
padding: 0 15px
}
.provider__information {
margin-top: 10px;
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
}
.provider__description {
margin: 0 15px;
width: 50%;
line-height: 24px;
-webkit-box-flex: 1;
-ms-flex: 1 1 290px;
flex: 1 1 290px;
word-wrap: break-word
}
.provider__more_info_link {
color: #f89100;
text-decoration: underline
}
.lang__link a, .provider__more_info_link:hover {
text-decoration: none
}
.provider__image {
position: relative;
margin: 5px 15px 15px;
min-width: 290px;
-webkit-box-flex: 1;
-ms-flex: 1 2 290px;
flex: 1 2 290px;
height: 100%
}
.provider__image-background {
border-radius: 5px;
width: 100%;
height: 320px;
background-size: cover;
background-position: center;
background-repeat: no-repeat
}
@media screen and (max-width: 1180px) {
.provider__image-background {
height: 240px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.provider__image-background {
height: 240px
}
}
.rooms_style_primary {
background: #fff;
color: #000
}
.rooms_style_complementary {
background: #474747;
color: #fff
}
.rooms__title {
text-align: left;
margin-bottom: 47px;
padding: 0 15px
}
.rooms__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 0;
text-align: center
}
.room {
border-radius: 5px;
height: 320px;
background-size: cover;
background-repeat: no-repeat;
background-position: center
}
.room__title {
font-size: 24px;
background-color: rgba(0, 0, 0, .7);
border-radius: 0 0 5px 5px;
position: absolute;
bottom: 0;
width: 100%;
min-height: 60px;
padding: 17px 0 79px 29px;
color: inherit;
margin-bottom: 0;
text-align: left
}
.room__booking {
position: absolute;
bottom: 20px;
left: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.room__text {
margin-left: 30px;
font-size: 18px
}
.room__price {
font-size: 24px;
font-weight: 700
}
.room__stay-time {
margin-left: -4px
}
@media screen and (max-width: 1180px) {
.room {
height: 240px
}
.room__title {
margin-bottom: 60px;
padding-bottom: 19px
}
.room__booking {
bottom: 0;
left: 0
}
.room__stay-time {
display: none
}
.room__text {
color: #fff
}
}
@media screen and (max-width: 768px) {
.room__text {
color: #fff
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.room {
height: 240px
}
.room__text {
font-size: 14px;
color: #fff
}
.room__price {
font-size: 20px
}
.room__title {
position: static;
background: 0 0;
font-size: 22px;
margin-bottom: 0
}
.room__booking {
position: absolute;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
text-align: center;
bottom: -60px
}
}
.page {
background: #fff
}
.lang, .lang__list {
position: absolute;
width: 60px
}
.lang {
right: 0;
bottom: 0
}
.lang__list {
color: #fff;
background-color: rgba(0, 0, 0, .7);
display: none
}
.lang__list_visible {
display: block;
width: auto;
right: 0
}
.lang__items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
float: right
}
.lang__item, .lang__item:hover {
-webkit-transition: ease .3s;
transition: ease .3s
}
.lang__item {
float: left;
text-decoration: none;
text-align: center;
line-height: 60px
}
.lang__item:hover {
background: rgba(71, 71, 71, .8)
}
.lang__item_current {
background: rgba(71, 71, 71, .8);
color: #fff
}
.lang__link {
display: block;
width: 60px;
text-decoration: none;
min-height: 60px;
text-transform: uppercase
}
.lang__link:hover {
color: #fff;
cursor: pointer
}
.lang_country-code {
margin-right: 5px
}
.lang__flag {
width: 24px;
height: 24px;
display: inline-block;
margin: 0 5px 0 0;
vertical-align: middle
}
.lang__flag_ru {
background: url(../img/flags_big/ru.png) 50% no-repeat
}
.lang__flag_en {
background: url(../img/flags_big/en.png) 50% no-repeat
}
.lang__flag_fr {
background: url(../img/flags_big/fr.png) 50% no-repeat
}
.lang__flag_de {
background: url(../img/flags_big/de.png) 50% no-repeat
}
.lang__flag_es {
background: url(../img/flags_big/es.png) 50% no-repeat
}
.lang__flag_zh {
background: url(../img/flags_big/cn.png) 50% no-repeat
}
.lang__flag_cs {
background: url(../img/flags_big/cz.png) 50% no-repeat
}
.lang__flag_it {
background: url(../img/flags_big/it.png) 50% no-repeat
}
.lang__flag_ja {
background: url(../img/flags_big/jp.png) 50% no-repeat
}
.lang__flag_kk {
background: url(../img/flags_big/kz.png) 50% no-repeat
}
.lang__flag_ko {
background: url(../img/flags_big/kr.png) 50% no-repeat
}
.lang__flag_pl {
background: url(../img/flags_big/pl.png) 50% no-repeat
}
.lang__flag_uk {
background: url(../img/flags_big/ua.png) 50% no-repeat
}
.lang__flag_bg {
background: url(../img/flags_big/bg.png) 50% no-repeat
}
.lang__flag_ro {
background: url(../img/flags_big/ro.png) 50% no-repeat
}
.lang__flag_ka {
background: url(../img/flags_big/ka.png) 50% no-repeat
}
.lang__flag_fi {
background: url(../img/flags_big/fi.png) 50% no-repeat
}
.lang__flag_id {
background: url(../img/flags_big/id.png) 50% no-repeat
}
.lang__flag_lv {
background: url(../img/flags_big/lv.png) 50% no-repeat
}
.lang__flag_et {
background: url(../img/flags_big/ee.png) 50% no-repeat
}
.lang__flag_hy {
background: url(../img/flags_big/am.png) 50% no-repeat
}
.lang__flag_tr {
background: url(../img/flags_big/tr.png) 50% no-repeat
}
.lang__flag_el {
background: url(../img/flags_big/gr.png) 50% no-repeat
}
.lang__flag_az {
background: url(../img/flags_big/az.png) 50% no-repeat
}
.lang__icon_arrow:before {
font-size: 10px
}
.search-form {
min-height: 80px
}
.search-form__container {
background-color: #f89100;
visibility: visible;
opacity: 0;
-webkit-transition: opacity .5s ease-in;
transition: opacity .5s ease-in;
width: 100%
}
.search-form__container_state_visible {
opacity: 1;
-webkit-transition: opacity 1s ease-in;
transition: opacity 1s ease-in
}
.search-form__link {
visibility: hidden
}
.search-form_on_main_slider {
width: 50%;
max-width: 600px;
height: 0;
background: 0 0;
position: absolute;
left: 50%;
top: 180px
}
.search-form_on_main_slider .search-form__container {
width: 280px;
height: auto;
position: relative;
z-index: 5;
left: -100%;
margin-left: 15px;
overflow-y: auto
}
.search-form_page_inner {
width: 100%;
min-height: 80px
}
.search-form_page_inner_with_promo {
min-height: 100px
}
@media screen and (max-width: 768px) {
.search-form_page_inner {
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
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.search-form_on_main_slider {
width: 100%;
max-width: none;
position: static;
height: auto
}
.search-form_on_main_slider .search-form__container {
width: 100%;
left: 0;
margin-left: 0;
position: static;
min-height: 80px
}
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
#tl-search-form-inner {
width: 800px;
margin: 0 auto
}
}
@media screen and (max-width: 768px) {
#tl-search-form-inner {
display: none
}
}
.address__container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-width: 500px
}
.address__coordinates {
font-size: .875em;
line-height: 1.5;
margin-left: 40px;
margin-top: 15px
}
.address__coordinates-title {
font-weight: 700;
line-height: 20px
}
.address__icon {
color: #ffa220;
font-size: 24px;
margin-left: 3px
}
.address_footer .address__text {
margin-left: 15px;
line-height: 21px;
text-decoration: none
}
.address__link, .address_footer .address__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.address_footer .address__link {
max-width: 500px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.address__remark {
margin-left: 40px;
margin-top: 15px;
font-size: .875em
}
.address__link {
text-decoration: none;
cursor: pointer;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.address__link:hover {
color: #f89100
}
.address__text {
margin-left: 15px;
line-height: 21px
}
@media screen and (max-width: 768px) {
.address_footer {
display: none
}
.address__container_apartment {
max-width: 320px;
margin-left: 0
}
}
.phone {
padding-right: 10px
}
.phone__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px;
-ms-flex-item-align: baseline;
align-self: baseline
}
.phone__number {
font-weight: 700
}
.phone__description {
font-size: .875em;
display: block
}
.phone__text {
line-height: 20px;
margin-left: 15px
}
.phone__list {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.phone__item {
margin-bottom: 15px;
max-width: 320px;
width: 100%
}
.phone__item .phone__icon {
visibility: hidden
}
.email__item:first-child .email__icon, .phone__item:first-child .phone__icon {
visibility: visible
}
.phone__item:last-of-type {
margin-bottom: 0
}
.phone__link {
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.phone__link:hover {
color: #f89100
}
.phone_header .phone__text {
font-size: 16px;
font-weight: 700
}
.phone_header:hover {
color: #f89100;
text-decoration: none;
-webkit-transition: color .3s ease;
transition: color .3s ease;
cursor: pointer
}
@media screen and (max-width: 768px) {
.phone_header {
display: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.phone__item {
width: 100%;
max-width: 320px
}
/*.phone_header {*/
/* display: none*/
/*}*/
}
.weather__link {
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.weather__icon {
font-size: 38px;
margin-top: 9px;
margin-right: 7px
}
.weather__temperature {
font-size: 20px;
font-weight: 700;
margin-top: 2px
}
.weather__state {
font-size: 12px;
font-weight: 400;
margin-left: 3px;
margin-top: 4px
}
.copyright__official {
font-size: 12px;
margin-top: 6px;
margin-left: 15px
}
.societal {
max-width: 450px
}
.societal__item, .societal__list {
margin: 0;
vertical-align: middle;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.societal__item {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 30px;
height: 30px;
text-decoration: none;
margin: 0 5px;
border-radius: 50%;
line-height: 30px;
text-align: center
}
.societal__item, .societal__item:hover {
-webkit-transition: ease .5s;
transition: ease .5s
}
.societal__item_vk-2020 {
color: #2787f5;
background: #fff
}
.societal__item_vk-2020:hover {
color: #58a2f7
}
.societal__item_fb {
background: #46639f
}
.societal__item_fb:hover {
background: #5f7cb9
}
.societal__item_twitter {
background: #289ff3
}
.societal__item_twitter:hover {
background: #58b5f6
}
.societal__item_instagram {
background: #0f5787
}
.societal__item_instagram:hover {
background: #1475b5
}
.societal__item_odnoklassiki {
background: #f2720d
}
.societal__item_odnoklassiki:hover {
background: #f58e3d
}
.societal__item_googleplus {
background: #dd4e41
}
.societal__item_googleplus:hover {
background: #e5766c
}
.societal__item_youtube2 {
background: red
}
.societal__item_youtube2:hover {
background: #f33
}
.societal__icon:before {
font-size: 18px
}
.contacts {
width: 100%;
padding: 0;
font-size: 16px
}
.contacts_style_primary {
background: #fff;
color: #000
}
.contacts_style_complementary {
background: #474747;
color: #fff
}
.contacts_with_padding {
padding-bottom: 150px
}
.contacts__title {
margin-bottom: 45px;
padding: 0 15px
}
.contacts__container {
max-width: 1180px;
color: inherit;
min-width: 320px;
margin: 0 auto;
position: relative;
padding: 50px 0
}
.contacts__container_type_horizontal .contacts__item {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.contacts__container_custom {
padding-bottom: 0
}
.contacts__description-text {
padding: 0 15px
}
.contacts__item, .contacts__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contacts__list {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
max-width: 100%
}
.contacts__item {
width: 363.33333px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 0 15px 20px
}
.contacts__item_apartment {
text-align: left;
margin-bottom: 0;
margin-top: 30px
}
.contacts__item_email {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.contacts__item:last-child {
margin-bottom: 0
}
@media screen and (max-width: 1180px) {
.contacts__item {
width: 226px;
min-width: 270px
}
}
@media screen and (max-width: 768px) {
.contacts__item {
width: 195px;
min-width: 250px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.contacts__item {
max-width: 320px
}
}
@media screen and (max-width: 480px) {
.contacts {
font-size: 14px
}
.contacts__item {
width: 100%
}
.contacts_with_padding {
padding-bottom: 0
}
}
.email {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.email__mail {
text-decoration: underline
}
.email__description {
font-size: .875em;
display: block
}
.email__item {
margin-bottom: 15px
}
.email__item .email__icon {
visibility: hidden
}
.email__item:last-child {
margin-bottom: 0
}
.email__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px;
vertical-align: middle
}
.email__text {
line-height: 21px;
margin-left: 15px
}
.email__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
vertical-align: middle
}
.email__link, .email__link:hover .email__mail {
text-decoration: none
}
.map {
border-top: 1px solid #ffa220;
width: 100%;
position: relative
}
.map.style-primary {
background: #fff;
color: #000
}
.map.style-complementary {
background: #474747;
color: #fff
}
.map_with-padding {
padding: 0 15px
}
.map__container {
height: 500px;
width: 100%
}
.map_inner {
border-top: none
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.map__container {
height: 320px
}
}
.services_style_primary {
background: #fff;
color: #000
}
.services_style_complementary {
background: #474747;
color: #fff
}
.services_hotel {
border-top: none
}
.services_top {
padding-bottom: 10px
}
.services_top .services__container {
padding-bottom: 0
}
.services__title {
text-align: left
}
.services__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 53px 15px 48px
}
.services__item, .services__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.services__list {
padding-top: 23px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.services__item {
margin-bottom: 30px;
width: 360px;
position: relative;
height: 50px;
color: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: left
}
.services__item-name {
line-height: 23px
}
.services__item-icon {
max-width: 60px;
padding: 0 20px 0 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.services__item-icon:before {
color: #ffa220
}
.services__item-svg {
width: 40px;
height: 40px
}
.services__description, .table {
line-height: 1.5
}
.table {
width: 100%;
margin: 16px 0;
border-bottom: 1px solid #dedede
}
.table__item, .table__value {
border-top: 1px solid #dedede
}
.table__item {
font-weight: 700;
padding: 5px 20px 5px 0
}
.table__value {
padding: 15px 0;
line-height: 30px
}
.photos {
margin: 0 5px;
min-height: 700px
}
.photos__list {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.photos__item {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
padding: 10px
}
.photos__image {
max-width: 370px;
max-height: 320px
}
.photos__groups-list {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.photos__group {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
padding: 10px
}
.photos__group__item {
text-decoration: none;
display: none;
position: relative
}
.paid-service__gallery:first-child, .photos__group__item:first-child {
display: block
}
.photos__group-title {
text-align: center
}
.photos__separation-line {
margin: 35px 10px;
background: rgba(71, 71, 71, .8);
width: auto;
height: 2px
}
.photos__item-overlay {
position: absolute;
max-width: 370px;
left: 0;
background-color: rgba(0, 0, 0, .7);
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
color: #fff;
height: 70px;
bottom: 1px
}
.photos__item-overlay_title {
display: block;
width: 82%;
padding-left: 25px;
font-size: 24px;
bottom: 0;
margin: auto 0;
color: inherit;
text-align: left
}
.photos__gallery-icon {
color: #fff;
display: block;
font-size: 20px;
position: absolute;
bottom: 15px;
right: 15px;
padding: 8px;
border-radius: 5px
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.photos__groups-list, .photos__list {
margin: 0 15px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.photos__group {
padding: 0
}
.photos__image {
width: 100%;
max-height: 570px
}
}
.paid-service {
margin: 50px 0
}
.paid-service__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
margin: 0 0 40px
}
.paid-service__info {
width: 80%
}
.paid-service__photo {
width: 270px;
max-width: 270px;
height: 160px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.paid-service__name {
font-family: "<NAME>", Roboto, Verdana, "Open Sans", sans-serif;
font-size: 24px
}
.paid-service__name-link {
color: #f89100;
text-decoration: none
}
.paid-service__description {
margin: 20px 0 10px;
line-height: 1.5;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word
}
.paid-service__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
.paid-service__gallery-icon {
background-color: rgba(0, 0, 0, .7);
color: #fff;
font-size: 20px;
position: absolute;
bottom: 15px;
right: 15px;
padding: 8px;
border-radius: 5px
}
.paid-service__gallery {
display: none
}
@media screen and (max-width: 480px) {
.paid-service__item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.paid-service__photo-item {
width: 100%;
margin: 0 0 20px
}
.paid-service__info {
width: 100%
}
.paid-service__photo {
width: 100%;
max-width: 100%
}
}
.link {
color: #f89100;
font-size: 16px;
text-decoration: underline
}
.link:hover {
text-decoration: none
}
.link_unstyled {
color: inherit;
font-size: inherit;
text-decoration: inherit
}
#tl-search-form #search-form-container .sf-submit-button-container.sf-submit-button-link-container .sfl-submit-button.sfl-submit-button-link span {
background-color: #00f !important
}
.visa {
background: #f89100;
color: #fff;
margin: 0;
width: 100%;
padding: 15px 0;
min-height: 100px
}
.visa__container {
margin: 0 auto;
max-width: 1200px;
min-width: 320px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.visa__title {
width: 100%;
min-width: 320px;
font-size: 30px;
margin: 15px 0;
padding: 0 15px;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto
}
.visa__info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%
}
.visa__description, .visa__link {
min-width: 320px;
margin: 15px 0;
padding: 0 15px;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto
}
.visa__description {
line-height: 18px;
width: 400px;
max-width: 100%
}
.visa__link {
width: 320px;
max-width: 340px
}
.visa__logo {
min-width: 70px;
width: 70px;
height: 34px
}
.visa__get {
padding: 0 0 0 14px;
line-height: 18px;
text-align: left;
-ms-flex-item-align: center;
align-self: center
}
@media screen and (max-width: 1180px) {
.visa__container {
margin: 0 auto;
max-width: 1180px
}
}
@media screen and (max-width: 768px) {
.visa__description, .visa__title {
width: 100%;
max-width: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.visa__title {
font-size: 30px
}
.visa__description, .visa__title {
width: 100%;
max-width: none
}
.visa__link {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: auto;
max-width: 300px
}
}
.remainder {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 20px;
width: 100%
}
.remainder__description {
line-height: 20px;
margin-bottom: 15px;
font-size: .815em
}
.remainder__icon {
margin: 0 15px 0 1px;
font-size: 24px;
color: #ffa220
}
.remainder__button {
background-color: #f89100;
text-align: center;
cursor: pointer;
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
padding: 13px 27px;
display: inline-block;
border-radius: 5px;
color: #fff;
font-size: 16px
}
.remainder__button:hover {
background-color: #ff9d13
}
.booking__description {
margin: 5px 15px 15px
}
.booking__description ul {
list-style-type: disc;
margin: 0 0 30px 50px
}
.booking__description li {
margin-top: 5px
}
.booking-online {
display: none;
margin: 0;
width: 100%;
min-height: 100px
}
.booking-online__container {
margin: 0 auto;
max-width: 1200px;
min-width: 320px;
padding: 50px 15px;
border-top: 1px solid #f89100
}
.booking-online__title {
margin-bottom: 10px
}
.booking-online__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.booking-online__description {
margin: 15px 0;
-webkit-box-flex: .9;
-ms-flex: .9 1;
flex: .9 1;
min-width: 600px
}
.booking-online__link {
margin: 15px 0
}
@media screen and (max-width: 768px) {
.booking-online__description {
min-width: 0;
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto
}
}
body, html {
height: 100%;
margin: 0
}
.error {
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.error_404 .error__image {
background: url(../img/man-404.gif) no-repeat;
background-size: contain
}
.error_500 {
position: fixed;
width: 100%;
height: 100%;
z-index: 10000;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, .75)
}
.error_500 .error__image {
background: url(../img/man-500.gif) no-repeat;
background-size: contain
}
.error_500 .error__message {
padding-right: 0
}
.error_500 .error__container {
min-height: 420px;
padding-top: 20px
}
.error__container {
position: relative;
width: 100%;
max-width: 1000px;
min-height: 380px;
overflow: hidden;
margin: auto;
background-color: #fff
}
.error__image {
position: absolute;
width: 100%;
height: 380px;
min-width: 650px
}
.error__message {
padding-right: 85px;
margin: 49px 0 0 400px;
position: relative;
z-index: 10
}
.error__header {
text-transform: uppercase;
font-family: '<NAME>', Arial, sans-serif;
font-size: 40px;
margin: 0;
line-height: 48px
}
.error__text {
font-family: "Open Sans", sans-serif;
font-size: 16px;
line-height: 30px;
margin-top: 15px
}
.error__buttons {
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-top: 30px;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.error__button {
font-family: 'Open Sans', sans-serif;
text-decoration: none;
text-transform: uppercase;
font-weight: 700;
width: 240px;
height: 40px;
text-align: center;
line-height: 40px;
border-radius: 5px;
margin: 0 6px 15px 0;
-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .25);
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .25)
}
.error__button, .error__button:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.error__button_booking {
color: #fff;
background-color: #f89100
}
.error__button_booking:hover {
background: #ff9d13
}
.error__button_goto_main {
color: #f89100;
background-color: #fff
}
.error__button_goto_main:hover {
background: #f2f2f2
}
@media screen and (max-width: 768px) {
.error__image {
position: static
}
.error__message {
margin: 0;
padding: 0 30px
}
.error__buttons {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.error__button {
margin-right: 15px
}
.error__header {
font-size: 30px
}
.error__text {
font-size: 14px
}
.error_500 .error__image {
height: 300px
}
.error_500 .error__container {
min-height: 360px;
padding-top: 0
}
}
.reputation {
position: relative;
width: 280px;
height: auto
}
.reputation_without_slider {
margin: 20px auto;
max-width: 240px;
width: 100%
}
.reputation_on_main_slider {
left: -100%;
z-index: 2;
top: 20px;
margin-left: 15px;
min-height: 110px
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.reputation_on_main_slider {
top: 0;
left: 0;
margin: 20px auto;
width: 80%;
max-width: 280px
}
}
.reviews-widget {
min-height: 800px
}
.special-offers_style_primary {
background: #fff;
color: #000
}
.special-offers_style_complementary {
background: #474747;
color: #fff
}
.special-offers_slider {
background: #d47c00;
color: #fff
}
.special-offers_slider .special-offers__container {
padding: 52px 0
}
.special-offers_slider .special-offers__title {
padding: 0 15px
}
.special-offers__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.special-offers__title {
text-align: left;
margin-bottom: 47px
}
.special-offer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.special-offer:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.special-offer_slider-item {
border-radius: 5px;
height: 320px;
background-size: cover;
display: block;
overflow: hidden
}
.special-offer_slider-item:hover .special-offer__text {
max-height: 150px;
display: block;
-webkit-transition: max-height .5s ease-in;
transition: max-height .5s ease-in
}
.special-offer__info {
text-align: left;
width: 80%
}
.special-offer__name {
font-size: 24px;
margin-bottom: 20px
}
.special-offer__image {
max-width: 270px;
width: 270px;
margin: 0 30px 0 0;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.special-offer__description {
line-height: 24px
}
.loyalty-program-item__description ul, .news-item__description ul, .special-offer__description ul, .vacancy__description ul {
list-style-type: disc;
margin-left: 50px
}
.special-offer__short-description {
font-weight: 700
}
.special-offer__title {
position: static;
text-align: left;
font-size: 24px;
margin-bottom: 4px
}
.special-offer__button-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.special-offer__text {
text-align: left;
overflow: hidden;
max-height: 0;
-webkit-transition: max-height .5s ease-out;
transition: max-height .5s ease-out
}
@media screen and (max-width: 1180px) {
.special-offer_slider-item {
height: 240px
}
}
@media screen and (max-width: 768px) {
.special-offer {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.special-offer_slider-item:hover .special-offer__text {
display: none
}
.special-offer__image {
width: 100%;
max-width: 100%;
margin: 0 0 20px
}
}
.hotel-rewards {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 15px;
white-space: normal
}
.hotel-rewards__item {
margin: 20px 20px 0 0
}
.hotel-rewards__link {
display: block
}
.hotel-rewards__image {
width: 120px;
height: 120px;
display: block;
-o-object-fit: contain;
object-fit: contain
}
.payment-methods {
background: #fff;
color: #000
}
.payment-methods__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.payment-methods_footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background: 0 0;
color: inherit
}
.payment-methods__wrap {
margin-bottom: 30px
}
.payment-methods__text {
text-align: left
}
.payment-methods__title {
text-align: left;
margin-bottom: 47px
}
.payment-methods__list, .payment-methods__subtitle {
text-align: left
}
.payment-methods__icon {
font-size: 20px;
margin-right: 10px;
color: #ffa220
}
.payment-methods__link {
text-decoration: none;
margin-bottom: 1px;
border-bottom: 1px solid #fff
}
.payment-methods__link:hover {
border-bottom: none
}
.payment-method {
margin-bottom: 40px
}
.payment-method:last-child {
margin-bottom: 0
}
.payment-method__name {
font-size: 24px;
margin-bottom: 10px
}
.payment-method__description {
line-height: 1.5;
margin-bottom: 10px
}
.payment-method__images {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 20px
}
.payment-method__image {
margin-right: 30px
}
.payment-method__image:last-child {
margin-right: 0
}
.payment-method__img {
max-height: 250px;
min-width: 100%
}
.cookie-notification {
background: #fff;
color: #000;
font-family: "Open Sans", "PT Sans", Tahoma, Helvetica, sans-serif;
font-size: 12px;
max-height: 0;
opacity: 0;
overflow: hidden
}
.cookie-notification_short {
max-height: 80px;
opacity: 1;
border-bottom: 1px solid rgba(0, 0, 0, .7);
-webkit-transition-duration: .5s;
transition-duration: .5s
}
.cookie-notification_full {
max-height: 400px;
-webkit-transition-duration: 1s;
transition-duration: 1s
}
.cookie-notification_full .cookie-notification__full-info {
display: block
}
.cookie-notification_full .cookie-notification__more-info {
display: none
}
.cookie-notification_hidden {
max-height: 0;
opacity: 0;
border-bottom: none;
-webkit-transition-duration: .5s;
transition-duration: .5s
}
.cookie-notification__container {
max-width: 1220px;
padding: 0 10px;
margin: 0 auto
}
.cookie-notification__document-link, .cookie-notification__more-info {
color: #f89100;
text-decoration: underline;
cursor: pointer
}
.cookie-notification__document-link:hover, .cookie-notification__more-info:hover {
text-decoration: none
}
.cookie-notification__full-info {
display: none
}
.cookie-notification__text {
margin-top: 10px;
line-height: 1.8
}
.cookie-notification__text_short {
margin: 11px 0
}
.cookie-notification__text_marketing {
font-weight: 700
}
@media screen and (max-width: 768px) {
.cookie-notification_full .cookie-notification__text {
margin-top: 5px;
line-height: 1.5
}
.cookie-notification__text_short {
line-height: 1.5;
max-width: 670px
}
}
.radiobutton__wrap {
margin-top: 6px
}
.radiobutton__additional-info {
font-size: .9em
}
.radiobutton__input {
vertical-align: bottom
}
.messenger__list {
margin-top: 20px
}
.messenger__item {
padding-right: 10px;
margin-bottom: 15px
}
.messenger__item:last-child {
margin-bottom: 0
}
.loyalty-program-item__description strong, .messenger__phone, .news-item__description strong, .vacancy__description strong {
font-weight: 700
}
.messenger__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-decoration: none;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.messenger__link:hover {
color: #f89100
}
.messenger__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px
}
.messenger__text {
line-height: 20px;
margin-left: 15px
}
.presentation__video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.presentation__icon:before, .restaurants__icon:before {
font-size: 30px;
line-height: 1;
vertical-align: top
}
.restaurants__menu-link:hover {
color: #ffa72c
}
.restaurants_style_primary {
background: #fff;
color: #000
}
.restaurants__menu-container {
width: 100%
}
.restaurants__menu-mobile-container {
display: none
}
.restaurants__container {
max-width: 1180px;
min-width: 340px;
margin: 0 auto;
padding: 52px 0 73px;
text-align: left
}
.restaurants__title {
margin-bottom: 35px;
padding: 0 15px
}
.restaurants__information {
margin-top: 10px;
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
}
.restaurants__description {
margin: 0 15px;
width: 50%;
line-height: 24px;
-webkit-box-flex: 1;
-ms-flex: 1 1 290px;
flex: 1 1 290px;
word-wrap: break-word
}
.restaurants__wrap {
margin-top: 10px;
width: 100%;
-webkit-box-flex: 1;
-ms-flex: 1 1;
flex: 1 1;
max-width: 590px;
min-width: 350px
}
.restaurants__menu-link {
display: none;
color: #f89100;
font-weight: 700;
padding: 0 15px;
text-decoration: none
}
.restaurants__gallery:first-child, .restaurants__menu-link:first-child {
display: block
}
.restaurants__menu-item, .restaurants__menu-name {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.restaurants__menu-item {
margin: 5px 15px;
text-align: left
}
.restaurants__menu-name {
margin-left: 10px;
line-height: 1.3;
text-decoration: underline
}
.restaurants__icon {
color: #ffa220;
float: left;
padding-right: 10px
}
.restaurants__gallery-icon {
background-color: rgba(0, 0, 0, .7);
color: #fff;
font-size: 20px;
position: absolute;
top: 78%;
right: 40px;
padding: 8px;
border-radius: 5px
}
.restaurants__gallery {
display: none
}
.restaurants__image-menu-block {
position: relative;
margin: 5px 15px 15px;
min-width: 290px;
-webkit-box-flex: 1;
-ms-flex: 1 2 290px;
flex: 1 2 290px;
height: 100%
}
.restaurants__image-block {
position: relative;
width: 100%
}
.restaurants__photo {
border-radius: 5px;
width: 100%;
max-width: 100%;
height: 320px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
@media screen and (max-width: 639px) {
.restaurants__menu-container {
display: none
}
.restaurants__menu-mobile-container {
display: block;
width: 100%
}
}
.presentation__wrap {
width: 100%;
min-width: 350px;
-webkit-box-flex: 1;
-ms-flex: 1 1;
flex: 1 1;
max-width: 590px
}
.presentation__video {
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
margin: 5px 15px 15px;
overflow: hidden;
border-radius: 5px
}
.presentation__item {
margin: 5px 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.presentation__icon {
color: #ffa220
}
.presentation__link {
color: #f89100;
font-weight: 700;
padding: 0 15px
}
.presentation__link:hover {
color: #ffa72c
}
.qr-code__image {
position: relative;
display: block;
margin-top: 30px;
margin-left: 40px;
height: 160px;
width: 160px
}
@media screen and (max-width: 480px) {
.qr-code__image {
margin-top: 20px
}
}
.news_style_primary {
background: #fff;
color: #000
}
.news_style_complementary {
background: #474747;
color: #fff
}
.news_slider {
background: #d47c00;
color: #fff
}
.news_slider .special-offers__container {
padding: 52px 0
}
.news_slider .special-offers__title {
padding: 0 15px
}
.news__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.news__title {
text-align: left;
margin-bottom: 47px
}
.news-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.news-item:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.news-item__info {
text-align: left;
width: 100%
}
.news-item__title {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.news-item__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.news-item__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.loyalty-program-item__description em, .news-item__description em, .vacancy__description em {
font-style: italic
}
.loyalty-program-item__description ol, .news-item__description ol, .vacancy__description ol {
list-style-type: decimal;
margin-left: 50px
}
.news-item__publish-date {
margin: 0 0 25px;
font-size: 14px
}
.news-item__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.news-item__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.news-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.news-item__photo {
max-width: 100%
}
.news-item__photo-item {
width: 100%;
margin: 0 0 20px
}
}
.collapsible-button {
font-size: 16px;
cursor: pointer;
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content
}
.collapsible-button .icon-arrow {
display: inline-block;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
float: left;
margin: -5px 10px 0 0
}
.collapsible-button_opened .icon-arrow {
-webkit-animation-name: rotate-up;
animation-name: rotate-up
}
@-webkit-keyframes rotate-up {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
to {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
}
@keyframes rotate-up {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
to {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
}
.collapsible-button .icon-arrow:before {
font-size: 25px
}
.collapsible-button_collapse .icon-arrow {
-webkit-animation-name: rotate-down;
animation-name: rotate-down
}
@-webkit-keyframes rotate-down {
0% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg)
}
to {
-webkit-transform: rotate(0);
transform: rotate(0)
}
}
@keyframes rotate-down {
0% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg)
}
to {
-webkit-transform: rotate(0);
transform: rotate(0)
}
}
.collapsible-button__text {
float: left;
text-align: left
}
@media screen and (max-width: 480px) {
.collapsible-button {
font-size: 14px
}
}
.vacancies_style_primary {
background: #fff;
color: #000
}
.vacancies_style_complementary {
background: #474747;
color: #fff
}
.vacancies_slider {
background: #d47c00;
color: #fff
}
.vacancies_slider .special-offers__container {
padding: 52px 0
}
.vacancies_slider .special-offers__title {
padding: 0 15px
}
.vacancies__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.vacancies__title {
text-align: left;
margin-bottom: 47px
}
.vacancy {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.vacancy:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.vacancy__info {
text-align: left;
width: 100%
}
.vacancy__name {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.vacancy__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.vacancy__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.vacancy__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.vacancy__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.vacancy {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.vacancy__photo {
max-width: 100%
}
.vacancy__photo-item {
width: 100%;
margin: 0 0 20px
}
}
.loyalty-program_style_primary {
background: #fff;
color: #000
}
.loyalty-program_style_complementary {
background: #474747;
color: #fff
}
.loyalty-program_slider {
background: #d47c00;
color: #fff
}
.loyalty-program_slider .special-offers__container {
padding: 52px 0
}
.loyalty-program_slider .special-offers__title {
padding: 0 15px
}
.loyalty-program__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.loyalty-program__title {
text-align: left;
margin-bottom: 47px
}
.loyalty-program-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.loyalty-program-item:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.loyalty-program-item__info {
text-align: left;
width: 100%
}
.loyalty-program-item__name {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.loyalty-program-item__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.loyalty-program-item__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.loyalty-program-item__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.loyalty-program-item__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.loyalty-program-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.loyalty-program-item__photo {
max-width: 100%
}
.loyalty-program-item__photo-item {
width: 100%;
margin: 0 0 20px
}
} | public/css/style.css | body, h1, h2, h3, h4, h5, h6, html {
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline
}
.slick-slide img, 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:after, blockquote:before, q:after, q:before {
content: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
b {
font-weight: 700
}
a {
color: inherit
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box
}
*, :after, :before {
-webkit-box-sizing: inherit;
box-sizing: inherit
}
body, html {
width: 100%
}
body {
font-family: "Open Sans", "PT Sans", Tahoma, Helvetica, sans-serif;
font-size: 16px
}
body.page .footer {
position: static;
margin-top: 50px
}
body.page .footer_fixed {
position: fixed
}
body #tl-booking-form {
max-width: 1180px;
margin: 0 auto;
min-height: 700px
}
.slick-slide.slick-loading img, body .tl-analytics {
display: none
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-family: "Franklin Gothic Demi", Roboto, Verdana, "Open Sans", sans-serif
}
.h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 25px
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 25px
}
.h1, h1 {
font-size: 48px
}
.h2, h2 {
font-size: 40px
}
@media screen and (max-width: 480px) {
.h1, .h2, h1, h2 {
font-size: 30px
}
body {
font-size: 14px
}
}
p {
line-height: 1.5
}
.text-with-nl {
white-space: pre-line
}
.no-wrap {
white-space: nowrap
}
.clearfix:after, .clearfix:before {
content: '';
display: table;
clear: both
}
.svgstore-item {
fill: #f89100
}
#theme-icons {
height: 0;
width: 0;
display: none;
visibility: hidden
}
[class*=" icon-"]:before, [class^=icon-]:before {
font-family: "starticons";
font-style: normal;
speak: none;
font-weight: 400;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-rendering: optimizeLegibility
}
.icon-d:before {
content: "\e900"
}
.icon-d1:before {
content: "\e901"
}
.icon-mans1:before {
content: "\e902"
}
.icon-mans:before {
content: "\e903"
}
.icon-hours:before {
content: "\e904"
}
.icon-AccessControlledCommunity:before {
content: "\e905"
}
.icon-adapter:before {
content: "\e906"
}
.icon-airplane:before {
content: "\e907"
}
.icon-alarm:before {
content: "\e908"
}
.icon-alcove:before {
content: "\e909"
}
.icon-ambulance:before {
content: "\e90a"
}
.icon-aqua-aerobics:before {
content: "\e90b"
}
.icon-arms:before {
content: "\e90c"
}
.icon-arrow1:before {
content: "\e90d"
}
.icon-arrow1_down:before {
content: "\e90e"
}
.icon-arrow1_left:before {
content: "\e90f"
}
.icon-arrow1_up:before {
content: "\e910"
}
.icon-arrow2:before {
content: "\e911"
}
.icon-arrow3:before {
content: "\e912"
}
.icon-arrow3_left:before {
content: "\e913"
}
.icon-arrow4:before {
content: "\e914"
}
.icon-arrow4_left:before {
content: "\e915"
}
.icon-arrow5:before {
content: "\e916"
}
.icon-arrow6:before {
content: "\e917"
}
.icon-arrow6_left:before {
content: "\e918"
}
.icon-atm:before {
content: "\e919"
}
.icon-audiocenter:before {
content: "\e91a"
}
.icon-autowash:before {
content: "\e91b"
}
.icon-baby-carriages:before {
content: "\e91c"
}
.icon-badewanne:before {
content: "\e91d"
}
.icon-ball:before {
content: "\e91e"
}
.icon-bar:before {
content: "\e91f"
}
.icon-barbershop:before {
content: "\e920"
}
.icon-basketball:before {
content: "\e921"
}
.icon-bathrobe:before {
content: "\e922"
}
.icon-beach:before {
content: "\e923"
}
.icon-bed:before {
content: "\e924"
}
.icon-bed2:before {
content: "\e925"
}
.icon-bell:before {
content: "\e926"
}
.icon-benches-lantern:before {
content: "\e927"
}
.icon-bicycle:before {
content: "\e928"
}
.icon-BikeTrailAccess:before {
content: "\e929"
}
.icon-billiards:before {
content: "\e92a"
}
.icon-Billiards2:before {
content: "\e92b"
}
.icon-binoculars:before {
content: "\e92c"
}
.icon-birthday-cake:before {
content: "\e92d"
}
.icon-book:before {
content: "\e92e"
}
.icon-bottle:before {
content: "\e92f"
}
.icon-bus:before {
content: "\e930"
}
.icon-BusinessCenter:before {
content: "\e931"
}
.icon-businesscentre:before {
content: "\e932"
}
.icon-businessman:before {
content: "\e933"
}
.icon-cake:before {
content: "\e934"
}
.icon-calendar1:before {
content: "\e935"
}
.icon-calendar2:before {
content: "\e936"
}
.icon-calendar3:before {
content: "\e937"
}
.icon-calendar4:before {
content: "\e938"
}
.icon-calendar5:before {
content: "\e939"
}
.icon-calendar6:before {
content: "\e93a"
}
.icon-car:before {
content: "\e93b"
}
.icon-car2:before {
content: "\e93c"
}
.icon-carpet-covering:before {
content: "\e93d"
}
.icon-casino_1:before {
content: "\e93e"
}
.icon-casino_2:before {
content: "\e93f"
}
.icon-casino_3:before {
content: "\e940"
}
.icon-CatFriendly:before {
content: "\e941"
}
.icon-cctv:before {
content: "\e942"
}
.icon-check:before {
content: "\e943"
}
.icon-chess:before {
content: "\e944"
}
.icon-chinese:before {
content: "\e945"
}
.icon-church:before {
content: "\e946"
}
.icon-clear:before {
content: "\e947"
}
.icon-cloche:before {
content: "\e948"
}
.icon-close:before {
content: "\e949"
}
.icon-cloudy:before {
content: "\e94a"
}
.icon-clown:before {
content: "\e94b"
}
.icon-cocktail:before {
content: "\e94c"
}
.icon-coffeemaker:before {
content: "\e94d"
}
.icon-concierge:before {
content: "\e94e"
}
.icon-conditioner:before {
content: "\e94f"
}
.icon-conference:before {
content: "\e950"
}
.icon-ConferenceRoom:before {
content: "\e951"
}
.icon-cooking:before {
content: "\e952"
}
.icon-cosmetics:before {
content: "\e953"
}
.icon-cot:before {
content: "\e954"
}
.icon-cow:before {
content: "\e955"
}
.icon-creditcard:before {
content: "\e956"
}
.icon-cripple:before {
content: "\e957"
}
.icon-cross-country-skiing:before {
content: "\e958"
}
.icon-cruise:before {
content: "\e959"
}
.icon-cup:before {
content: "\e95a"
}
.icon-currencyexchange:before {
content: "\e95b"
}
.icon-depositbox:before {
content: "\e95c"
}
.icon-desk-2:before {
content: "\e95d"
}
.icon-discount:before {
content: "\e95e"
}
.icon-display:before {
content: "\e95f"
}
.icon-document:before {
content: "\e960"
}
.icon-document2:before {
content: "\e961"
}
.icon-DogFriendly:before {
content: "\e962"
}
.icon-DogPark:before {
content: "\e963"
}
.icon-double-bed-2:before {
content: "\e964"
}
.icon-douche:before {
content: "\e965"
}
.icon-drink:before {
content: "\e966"
}
.icon-drink-machine:before {
content: "\e967"
}
.icon-drop:before {
content: "\e968"
}
.icon-duck:before {
content: "\e969"
}
.icon-duck-2:before {
content: "\e96a"
}
.icon-electric-range:before {
content: "\e96b"
}
.icon-elevator:before {
content: "\e96c"
}
.icon-eng:before {
content: "\e96d"
}
.icon-esp:before {
content: "\e96e"
}
.icon-euro:before {
content: "\e96f"
}
.icon-euro-serif:before {
content: "\e970"
}
.icon-EventRoom:before {
content: "\e971"
}
.icon-family:before {
content: "\e972"
}
.icon-faq:before {
content: "\e973"
}
.icon-fax1:before {
content: "\e974"
}
.icon-fax2:before {
content: "\e975"
}
.icon-fb:before {
content: "\e976"
}
.icon-feeder:before {
content: "\e977"
}
.icon-fireplacee:before {
content: "\e978"
}
.icon-fish:before {
content: "\e979"
}
.icon-flatTV:before {
content: "\e97a"
}
.icon-flickr:before {
content: "\e97b"
}
.icon-flower:before {
content: "\e97c"
}
.icon-fousquare:before {
content: "\e97d"
}
.icon-fruits:before {
content: "\e97e"
}
.icon-gallery:before {
content: "\e97f"
}
.icon-GarageParking:before {
content: "\e980"
}
.icon-googleplus:before {
content: "\e981"
}
.icon-gym:before {
content: "\e982"
}
.icon-gym-bike:before {
content: "\e983"
}
.icon-hairdryer:before {
content: "\e984"
}
.icon-hanger:before {
content: "\e985"
}
.icon-hanger-2:before {
content: "\e986"
}
.icon-heating:before {
content: "\e987"
}
.icon-HighSpeed:before {
content: "\e988"
}
.icon-home1:before {
content: "\e989"
}
.icon-home2:before {
content: "\e98a"
}
.icon-home3:before {
content: "\e98b"
}
.icon-home4:before {
content: "\e98c"
}
.icon-home5:before {
content: "\e98d"
}
.icon-home6:before {
content: "\e98e"
}
.icon-hoover:before {
content: "\e98f"
}
.icon-horse:before {
content: "\e990"
}
.icon-HotTub:before {
content: "\e991"
}
.icon-hygiene:before {
content: "\e992"
}
.icon-icq:before {
content: "\e993"
}
.icon-IndoorPool:before {
content: "\e994"
}
.icon-inmap:before {
content: "\e995"
}
.icon-inmap1:before {
content: "\e996"
}
.icon-inmap2:before {
content: "\e997"
}
.icon-inmap3:before {
content: "\e998"
}
.icon-inmap4:before {
content: "\e999"
}
.icon-inmap5:before {
content: "\e99a"
}
.icon-inmap6:before {
content: "\e99b"
}
.icon-inmap7:before {
content: "\e99c"
}
.icon-instagram:before {
content: "\e99d"
}
.icon-instagram2:before {
content: "\e99e"
}
.icon-internet:before {
content: "\e99f"
}
.icon-iPod:before {
content: "\e9a0"
}
.icon-iron:before {
content: "\e9a1"
}
.icon-ivisa:before {
content: "\e9a2"
}
.icon-jacuzzi:before {
content: "\e9a3"
}
.icon-keys:before {
content: "\e9a4"
}
.icon-keys2:before {
content: "\e9a5"
}
.icon-kidgirl:before {
content: "\e9a6"
}
.icon-kitchen-furniture:before {
content: "\e9a7"
}
.icon-krug:before {
content: "\e9a8"
}
.icon-kvadrik:before {
content: "\e9a9"
}
.icon-vk-2020:before {
content: "\e9aa"
}
.icon-lj:before {
content: "\e9ab"
}
.icon-lounge:before {
content: "\e9ac"
}
.icon-magnifier1:before {
content: "\e9ad"
}
.icon-magnifier2:before {
content: "\e9ae"
}
.icon-magnifier3:before {
content: "\e9af"
}
.icon-magnifier4:before {
content: "\e9b0"
}
.icon-MaidServiceAvailable:before {
content: "\e9b1"
}
.icon-mail1:before {
content: "\e9b2"
}
.icon-mail2:before {
content: "\e9b3"
}
.icon-mail3:before {
content: "\e9b4"
}
.icon-mail4:before {
content: "\e9b5"
}
.icon-mail5:before {
content: "\e9b6"
}
.icon-mail6:before {
content: "\e9b7"
}
.icon-makeup-mirror:before {
content: "\e9b8"
}
.icon-man:before {
content: "\e9b9"
}
.icon-manbuysticket:before {
content: "\e9ba"
}
.icon-manOk:before {
content: "\e9bb"
}
.icon-man-roof:before {
content: "\e9bc"
}
.icon-man-with-racket:before {
content: "\e9bd"
}
.icon-mariornament:before {
content: "\e9be"
}
.icon-massage:before {
content: "\e9bf"
}
.icon-matrioshka:before {
content: "\e9c0"
}
.icon-meal:before {
content: "\e9c1"
}
.icon-medicine:before {
content: "\e9c2"
}
.icon-menu1:before {
content: "\e9c3"
}
.icon-menu2:before {
content: "\e9c4"
}
.icon-metro:before {
content: "\e9c5"
}
.icon-metro2:before {
content: "\e9c6"
}
.icon-MetroAccessible:before {
content: "\e9c7"
}
.icon-microphone:before {
content: "\e9c8"
}
.icon-microwave:before {
content: "\e9c9"
}
.icon-mineralwater:before {
content: "\e9ca"
}
.icon-minibus:before {
content: "\e9cb"
}
.icon-moneypay:before {
content: "\e9cc"
}
.icon-moneyterminal:before {
content: "\e9cd"
}
.icon-monitor:before {
content: "\e9ce"
}
.icon-MovieTheater:before {
content: "\e9cf"
}
.icon-museum2:before {
content: "\e9d0"
}
.icon-music:before {
content: "\e9d1"
}
.icon-mute:before {
content: "\e9d2"
}
.icon-newspaper:before {
content: "\e9d3"
}
.icon-nightstand:before {
content: "\e9d4"
}
.icon-NoPetsPermitted:before {
content: "\e9d5"
}
.icon-nosmoke:before {
content: "\e9d6"
}
.icon-notdisturb:before {
content: "\e9d7"
}
.icon-odnoklassiki:before {
content: "\e9d8"
}
.icon-OutdoorGrillingArea:before {
content: "\e9d9"
}
.icon-overcast:before {
content: "\e9da"
}
.icon-package:before {
content: "\e9db"
}
.icon-pajamas:before {
content: "\e9dc"
}
.icon-paragliding:before {
content: "\e9dd"
}
.icon-parilka:before {
content: "\e9de"
}
.icon-parking:before {
content: "\e9df"
}
.icon-partlycloudy:before {
content: "\e9e0"
}
.icon-people:before {
content: "\e9e1"
}
.icon-phone1:before {
content: "\e9e2"
}
.icon-phone2:before {
content: "\e9e3"
}
.icon-phone3:before {
content: "\e9e4"
}
.icon-phone4:before {
content: "\e9e5"
}
.icon-phone5:before {
content: "\e9e6"
}
.icon-photocamera1:before {
content: "\e9e7"
}
.icon-photocamera2:before {
content: "\e9e8"
}
.icon-photocamera3:before {
content: "\e9e9"
}
.icon-pillow-one:before {
content: "\e9ea"
}
.icon-pinterest:before {
content: "\e9eb"
}
.icon-plates:before {
content: "\e9ec"
}
.icon-Playground:before {
content: "\e9ed"
}
.icon-pool:before {
content: "\e9ee"
}
.icon-porter:before {
content: "\e9ef"
}
.icon-present:before {
content: "\e9f0"
}
.icon-print:before {
content: "\e9f1"
}
.icon-projector:before {
content: "\e9f2"
}
.icon-pyramid:before {
content: "\e9f3"
}
.icon-qiwi:before {
content: "\e9f4"
}
.icon-rain:before {
content: "\e9f5"
}
.icon-ramp:before {
content: "\e9f6"
}
.icon-razor:before {
content: "\e9f7"
}
.icon-refrigerator:before {
content: "\e9f8"
}
.icon-restaurant:before {
content: "\e9f9"
}
.icon-RetailOn-site:before {
content: "\e9fa"
}
.icon-reverse:before {
content: "\e9fb"
}
.icon-review1:before {
content: "\e9fc"
}
.icon-rink:before {
content: "\e9fd"
}
.icon-rollerblade:before {
content: "\e9fe"
}
.icon-RooftopLounge:before {
content: "\e9ff"
}
.icon-roomservice:before {
content: "\ea00"
}
.icon-rouble-sans:before {
content: "\ea01"
}
.icon-rouble-serif:before {
content: "\ea02"
}
.icon-safe:before {
content: "\ea03"
}
.icon-sauna:before {
content: "\ea04"
}
.icon-sauna-hot:before {
content: "\ea05"
}
.icon-seating-banket:before {
content: "\ea06"
}
.icon-seating-banquet:before {
content: "\ea07"
}
.icon-seating-cabinet:before {
content: "\ea08"
}
.icon-seating-furshet:before {
content: "\ea09"
}
.icon-seating-klass:before {
content: "\ea0a"
}
.icon-seating-p:before {
content: "\ea0b"
}
.icon-seating-perimeter:before {
content: "\ea0c"
}
.icon-seating-roundtable:before {
content: "\ea0d"
}
.icon-seating-t:before {
content: "\ea0e"
}
.icon-seating-theater:before {
content: "\ea0f"
}
.icon-seating-ustyle:before {
content: "\ea10"
}
.icon-setting:before {
content: "\ea11"
}
.icon-shashlik:before {
content: "\ea12"
}
.icon-shell:before {
content: "\ea13"
}
.icon-shield:before {
content: "\ea14"
}
.icon-shoes2:before {
content: "\ea15"
}
.icon-shootingrange:before {
content: "\ea16"
}
.icon-shower:before {
content: "\ea17"
}
.icon-ShuttleServicetoMetro:before {
content: "\ea18"
}
.icon-ski-slope:before {
content: "\ea19"
}
.icon-skype:before {
content: "\ea1a"
}
.icon-slippers:before {
content: "\ea1b"
}
.icon-Smoke-freeLiving:before {
content: "\ea1c"
}
.icon-smokeman:before {
content: "\ea1d"
}
.icon-snow:before {
content: "\ea1e"
}
.icon-snowmobile:before {
content: "\ea1f"
}
.icon-soccerball:before {
content: "\ea20"
}
.icon-solarium:before {
content: "\ea21"
}
.icon-spa:before {
content: "\ea22"
}
.icon-speech:before {
content: "\ea23"
}
.icon-sport-2:before {
content: "\ea24"
}
.icon-stairs:before {
content: "\ea25"
}
.icon-star:before {
content: "\ea26"
}
.icon-storm:before {
content: "\ea27"
}
.icon-stroller:before {
content: "\ea28"
}
.icon-SubwayAccessible:before {
content: "\ea29"
}
.icon-suitcase:before {
content: "\ea2a"
}
.icon-sunbed:before {
content: "\ea2b"
}
.icon-swing:before {
content: "\ea2c"
}
.icon-tablet:before {
content: "\ea2d"
}
.icon-target:before {
content: "\ea2e"
}
.icon-taxi:before {
content: "\ea2f"
}
.icon-teapot:before {
content: "\ea30"
}
.icon-telegram:before {
content: "\ea31"
}
.icon-tennis-court:before {
content: "\ea32"
}
.icon-tennissmall:before {
content: "\ea33"
}
.icon-terrenkur:before {
content: "\ea34"
}
.icon-theater:before {
content: "\ea35"
}
.icon-threads:before {
content: "\ea36"
}
.icon-tires:before {
content: "\ea37"
}
.icon-tlstart:before {
content: "\ea38"
}
.icon-tlstart2:before {
content: "\ea39"
}
.icon-tooth:before {
content: "\ea3a"
}
.icon-towel:before {
content: "\ea3b"
}
.icon-train:before {
content: "\ea3c"
}
.icon-train-2:before {
content: "\ea3d"
}
.icon-trampoline:before {
content: "\ea3e"
}
.icon-travelline:before {
content: "\ea3f"
}
.icon-tripadvisor:before {
content: "\ea40"
}
.icon-triplearrow:before {
content: "\ea41"
}
.icon-tubing:before {
content: "\ea42"
}
.icon-tubing2:before {
content: "\ea43"
}
.icon-tv:before {
content: "\ea44"
}
.icon-tv2:before {
content: "\ea45"
}
.icon-twitter:before {
content: "\ea46"
}
.icon-umbrella:before {
content: "\ea47"
}
.icon-umbrellaandchair:before {
content: "\ea48"
}
.icon-Valet-DryCleaningService:before {
content: "\ea49"
}
.icon-valve:before {
content: "\ea4a"
}
.icon-viber:before {
content: "\ea4b"
}
.icon-viber2:before {
content: "\ea4c"
}
.icon-vk:before {
content: "\ea4d"
}
.icon-vk-new:before {
content: "\ea4e"
}
.icon-volleyball:before {
content: "\ea4f"
}
.icon-walking:before {
content: "\ea50"
}
.icon-wallet:before {
content: "\ea51"
}
.icon-warm:before {
content: "\ea52"
}
.icon-warmflooring:before {
content: "\ea53"
}
.icon-washingmachine:before {
content: "\ea54"
}
.icon-watch:before {
content: "\ea55"
}
.icon-wc:before {
content: "\ea56"
}
.icon-webcam:before {
content: "\ea57"
}
.icon-wedding1:before {
content: "\ea58"
}
.icon-wedding2:before {
content: "\ea59"
}
.icon-WelcomePackage:before {
content: "\ea5a"
}
.icon-whatsapp:before {
content: "\ea5b"
}
.icon-whatsapp2:before {
content: "\ea5c"
}
.icon-wifi:before {
content: "\ea5d"
}
.icon-wififree:before {
content: "\ea5e"
}
.icon-worktable:before {
content: "\ea5f"
}
.icon-youtube1:before {
content: "\ea60"
}
.icon-youtube2:before {
content: "\ea61"
}
.icon-ZipCar:before {
content: "\ea62"
}
.icon-rest-menu:before {
content: "\ea63"
}
@font-face {
font-family: 'starticons';
font-display: auto;
src: url(../fonts/starticons.eot);
src: url(../fonts/starticons.eot) format("embedded-opentype"), url(../fonts/starticons.svg) format("svg"), url(../fonts/starticons.woff) format("woff"), url(../fonts/starticons.ttf) format("truetype");
font-weight: 400;
font-style: normal
}
@font-face {
font-family: '<NAME>';
font-display: auto;
font-style: normal;
font-weight: 400;
src: url(../fonts/franklin-gothic-demi.eot) format("embedded-opentype"), local("Franklin Gothic Demi"), local("FranklinGothicDemi-Regular"), url(../fonts/franklin-gothic-demi.woff) format("woff"), url(../fonts/franklin-gothic-demi.ttf) format("truetype")
}
.slick-list, .slick-slider {
position: relative;
display: block
}
.slick-slider {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent
}
.slick-list {
overflow: hidden;
margin: 0;
padding: 0
}
.slick-list:focus {
outline: none
}
.slick-list.dragging {
cursor: pointer;
cursor: hand
}
.slick-slider .slick-list, .slick-slider .slick-track {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block
}
.slick-track:after, .slick-track:before {
content: "";
display: table
}
.slick-track:after {
clear: both
}
.slick-loading .slick-track {
visibility: hidden
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none
}
[dir=rtl] .slick-slide {
float: right
}
.slick-slide.dragging img {
pointer-events: none
}
.slick-initialized .slick-slide {
display: block
}
.slick-loading .slick-slide {
visibility: hidden
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent
}
.slick-arrow.slick-hidden {
display: none
}
.logo {
background: #fff;
max-width: 160px;
height: 120px;
padding: 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;
min-width: 120px
}
.logo_of-header {
min-height: 110px;
height: auto
}
.logo__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
z-index: 5;
height: 100%;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo__image {
width: 100%;
background: 0 0;
display: block;
z-index: 10;
margin: auto;
max-height: 100%;
max-width: 100%
}
.logo__image_in_footer {
margin: 0;
height: 40px;
padding: 0
}
.logo_small {
background: 0 0;
height: auto;
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.logo_resize {
padding: 60px 10px 0;
min-width: 60px;
width: 100%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo_resize .logo__image {
width: auto;
max-width: 100%;
max-height: 60px
}
@media screen and (max-width: 768px) {
.logo {
max-width: 180px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.logo {
max-width: 180px
}
.logo_resize {
padding: 10px;
max-width: 130px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.logo_resize .logo__image {
width: auto;
max-width: 100%;
max-height: 60px
}
}
.header {
color: #fff;
background-color: rgba(0, 0, 0, .7);
position: relative;
height: auto;
z-index: 10;
top: 0;
left: 0
}
.header + .slider.slider_main {
margin-top: -120px
}
.header + .slider.slider_main.slider_fixed {
margin-top: 0
}
.header + section > div[class*=__container] {
border-top: none
}
.header, .header__container, .header__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%
}
.header__container {
position: relative;
height: 100%
}
.header__content {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.header__title {
margin: 0;
font-size: 24px
}
.header__link {
text-decoration: none;
color: #fff
}
.header__link:hover {
text-decoration: underline
}
.header__bar {
background: rgba(71, 71, 71, .8);
width: 100%;
height: 60px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0 20px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.header__navigation {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
position: relative
}
.header__menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
position: relative
}
.header_fixed {
position: fixed;
left: 0;
top: -60px
}
.header_fixed .header__bar {
visibility: hidden
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 120px
}
@media screen and (max-width: 480px) {
.header + .slider.slider_main {
margin-top: 0
}
.header__bar {
background: #474747
}
.header__menu, .header__navigation {
position: static
}
.header__title {
font-size: 18px
}
.header_fixed {
position: static;
left: 0;
top: 0
}
.header_fixed .header__bar {
visibility: visible
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 0
}
}
@media screen and (max-height: 750px) {
.header + .slider.slider_main {
margin-top: 0
}
.header_fixed {
position: static;
left: 0;
top: 0
}
.header_fixed .header__bar {
visibility: visible
}
.header_fixed + div:not(.slider), .header_fixed + section {
margin-top: 0
}
}
.slider__item {
outline: 0
}
.slider__item-image {
width: 100%;
height: 320px
}
.slider__dot {
background-color: #fff;
outline: 0;
width: 15px;
height: 15px;
display: block;
border: none;
cursor: pointer;
padding: 0
}
.slider_main {
position: relative;
margin-top: -120px
}
.slider_main, .slider_main .slider__list {
width: 100%;
height: 100%
}
.slider_main .slider__item {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
float: left;
display: none
}
.slider_main .slider__item:first-child {
display: block;
opacity: 0
}
.slider_main .slider__item:last-child {
display: block;
opacity: 1
}
.slider_main .slider__item-image {
height: 100%;
top: 0;
left: 0;
position: absolute;
background-size: cover;
background-position: center center;
background-repeat: no-repeat
}
.slider_category .slider__item {
width: 50%;
float: left;
position: relative;
margin: 0 15px
}
.slider_category, .slider_category .slider__item-content {
position: relative
}
.slider_category .slider__item-image {
border-radius: 5px
}
.slider_category .slider__item-overlay {
color: #fff;
height: 120px;
width: 100%;
position: absolute;
bottom: 0;
left: 0
}
.slider_category .slider__item-overlay_special-offer {
background-color: rgba(0, 0, 0, .7);
height: auto;
padding: 15px 25px 18px
}
@media screen and (max-width: 1179px) {
.slider_main .slick-dots {
left: 41%
}
.slider_category .slider__item-overlay {
bottom: -60px
}
.slider_category .slider__item-overlay_special-offer {
bottom: 0
}
}
@media screen and (max-width: 1180px) {
.slider_main .slick-dots {
left: 41%
}
.slider_category .slider__item-overlay {
bottom: -60px
}
.slider_category .slider__item-overlay_special-offer {
bottom: 0
}
.slider_rooms .slider__item-overlay {
padding: 0
}
}
@media screen and (max-width: 768px) {
.slider_main .slick-dots {
display: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.slider_main {
height: auto;
margin-top: 0
}
.slider_main .button-anchor {
display: block
}
.slider_main .slider__list {
height: 100vw;
max-height: 530px
}
.slider_category .slider__item {
margin: 0 15px 20px
}
.slider_category, .slider_category .slider__item-content {
position: relative
}
.slider_category .slider__item-image {
border-radius: 5px
}
.slider_category .slider__item-overlay {
background-color: rgba(0, 0, 0, .7);
height: auto;
bottom: 0;
padding-bottom: 20px;
border-radius: 0 0 5px 5px
}
.slider_category .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.slider_category .slick-dots li {
margin: 0 12.5px 10px
}
}
.slick-slider_main .slick-list, .slick-slider_main .slick-track {
height: 100%
}
.slick-slider_main .slick-slide {
display: block;
opacity: 1
}
.slick-slider_main .slick-dots {
position: absolute;
left: 50%;
top: 160px;
-webkit-transform: translateX(-37.5%);
transform: translateX(-37.5%);
z-index: 1
}
.slick-slider_main .slick-dots li {
margin: 0 27.5px 10px;
float: left
}
.slick-slider_main .slick-dots li button {
padding: 0 !important
}
.slick-slider_category .slick-active .slider__dot, .slick-slider_main .slick-active .slider__dot {
background-color: #ffa220;
border: none;
-webkit-box-shadow: none;
box-shadow: none
}
.slick-slider_category .slick-list {
margin-bottom: 25px
}
.slick-slider_category .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.slick-slider_category .slick-dots li {
margin: 15px 20px 0
}
@media screen and (max-width: 1180px) {
.slick-slider_main .slick-dots {
left: 41%
}
}
@media screen and (max-width: 768px), screen and (max-height: 750px) {
.slick-slider_main .slick-dots {
visibility: hidden;
display: inline
}
.slick-slider_category .slick-list {
margin-bottom: 15px
}
.slick-slider_category .slick-dots li {
margin: 15px 10px 0
}
}
.footer {
color: #fff;
border-top: 1px solid #ffa220;
background-color: rgba(0, 0, 0, .7);
width: 100%;
position: fixed;
z-index: 3;
bottom: 0;
left: 0;
display: none
}
.footer__container {
position: relative
}
.footer__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0;
font-size: 14px;
line-height: 16px
}
.footer__item {
margin: 10px 10px 11px;
max-width: 300px;
width: auto
}
.footer__item_counters {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 14px
}
.footer__item .copyright {
margin: 0 10px 10px 11px
}
.footer__link_main-site {
display: none;
text-decoration: none;
font-size: 12px;
color: #ffa220;
-webkit-box-shadow: inset 0 -1px 0 0 rgba(255, 162, 32, .75);
box-shadow: inset 0 -1px 0 0 rgba(255, 162, 32, .75);
margin: 3px 0 0 15px
}
.footer__link_main-site:hover {
-webkit-box-shadow: none;
box-shadow: none
}
.footer_fixed {
position: fixed
}
.footer_visible {
display: block !important
}
@media screen and (max-width: 768px) {
.footer__list {
padding: 0 15px;
-ms-flex-line-pack: justify;
align-content: space-between
}
.footer__item_counters {
margin-right: 15px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.footer {
background-color: #000;
height: auto;
position: static
}
.footer__list {
padding: 28px 5px 27px;
-ms-flex-line-pack: justify;
align-content: space-between
}
.footer__item_counters {
display: none
}
.footer__link_main-site {
display: inline-block
}
}
.menu {
position: relative;
font-size: 14px;
width: 100%
}
.menu_visible {
visibility: visible
}
.menu__list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.menu__items, .menu__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.menu__items_with-padding {
padding-right: 60px
}
.menu__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-decoration: none;
padding: 0 20px
}
.menu__link:active, .menu__link:hover {
color: #f89100;
cursor: pointer
}
.menu__item {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-decoration: none;
text-align: center;
font-weight: 700;
text-transform: uppercase;
height: 50px
}
.menu__item:first-child {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto
}
.menu__item_current {
background-color: #ffa220
}
.menu__item_last-row {
-webkit-box-flex: inherit;
-ms-flex: inherit;
flex: inherit
}
.menu__item_booking-button {
background-color: #f89100;
color: #fff;
cursor: pointer
}
.menu__item_booking-button:hover {
background-color: #ff9d13
}
.menu__item_booking-button .menu__link:active, .menu__item_booking-button .menu__link:hover {
color: #fff
}
@media screen and (max-width: 1180px) {
.menu {
width: 320px;
position: absolute;
z-index: 11;
left: 0;
top: 60px;
visibility: hidden
}
.menu__list {
background-color: #000;
display: none
}
.menu__items, .menu__list {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.menu__items_with-padding {
padding-right: 0
}
.menu__item {
border-right: none;
border-top: 1px solid rgba(255, 255, 255, .25)
}
.menu__link {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding: 0 10px
}
.menu_visible {
visibility: visible
}
.menu_visible .menu__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.menu_visible .menu__item {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
text-align: left
}
}
@media screen and (max-width: 480px) {
.menu {
top: 120px
}
.menu__list {
background-color: #000
}
.menu__item {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
text-align: left
}
}
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none) {
.menu .menu__item:nth-child(2) {
min-width: 85px
}
}
.button {
background-color: #f89100;
color: #fff;
text-align: center;
cursor: pointer;
text-transform: uppercase;
font-weight: 700
}
.button__title {
padding: 0 0 0 8px
}
.button_lang {
background-color: transparent;
height: 50px;
width: 60px;
line-height: 50px;
vertical-align: middle
}
.button_menu {
background-color: #000;
height: 60px;
line-height: 60px;
width: 120px;
display: none
}
.button_menu .icon-menu1 {
padding-right: 8px;
font-size: 18px;
display: inline-block;
min-width: 26px
}
.button_booking {
height: 60px;
line-height: 60px;
min-width: 200px;
padding: 0 15px;
position: relative;
z-index: 10;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.button_booking .icon-bell {
text-align: center
}
.button_anchor, .button_on_footer {
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button_anchor {
background-color: #ffa220;
height: 50px;
width: 50px
}
.button_anchor .icon-arrow5 {
color: #fff;
font-size: 18px;
position: absolute;
top: 16px;
left: 16px
}
.button_anchor.button_anchor_map {
position: absolute;
z-index: 3;
margin: 0 0 0 -25px;
top: 0;
left: 50%;
visibility: visible;
opacity: 1;
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
.button_on_footer {
position: absolute;
z-index: 2;
margin: -50px 0 0 -25px;
left: 50%;
visibility: hidden;
opacity: 0
}
.button_room, .button_visa {
text-decoration: none;
border-radius: 3px
}
.button_room, .button_room:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.button_room {
-ms-flex-item-align: end;
align-self: flex-end;
font-size: 16px;
padding: 12px 18px;
color: #fff;
background-color: #f89100
}
.button_room:hover {
background-color: #ff9d13
}
.button_visa {
background: #fff;
color: #000;
padding: 12px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
line-height: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
min-width: 290px
}
.button_visa:hover {
background: #fff;
-webkit-transition: all .5s ease-in;
transition: all .5s ease-in
}
.button_common, .button_common:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.button_common {
background: #f89100;
color: #fff;
text-decoration: none;
margin: 5px;
border-radius: 3px;
padding: 12px 18px;
display: inline-block;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
box-shadow: 0 1px 1px rgba(0, 0, 0, .3)
}
.button_common:hover {
background: #ff9d13
}
.button_vertical-margins {
margin: 15px 0
}
.button_switched-colors {
color: #f89100;
background: #fff
}
.button_switched-colors:hover {
background: #f2f2f2
}
.button_under-description {
margin-left: 0;
margin-top: 15px
}
.button_visible {
visibility: visible;
opacity: 1;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease
}
.button_small {
margin: 15px 0;
font-size: 14px;
padding: 8px 15px
}
@media screen and (max-width: 1180px) {
.button_menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding-left: 15px
}
.button_lang {
height: 60px;
line-height: 60px
}
}
@media screen and (max-width: 768px) {
.button_menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding-left: 15px;
min-width: 60px
}
.button_menu .icon-menu1 {
padding-right: 4px
}
.button_booking {
width: 60px;
min-width: 60px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.button_room {
padding: 12px 7px
}
}
.provider_style_primary {
background: #fff;
color: #000
}
.provider_style_complementary {
background: #474747;
color: #fff
}
.provider_visa_page .provider__container {
max-width: 800px
}
.provider__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 0 73px;
text-align: left
}
.provider__container_with_padding {
padding: 52px 15px 73px
}
.provider__title {
margin-bottom: 35px;
padding: 0 15px
}
.provider__information {
margin-top: 10px;
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
}
.provider__description {
margin: 0 15px;
width: 50%;
line-height: 24px;
-webkit-box-flex: 1;
-ms-flex: 1 1 290px;
flex: 1 1 290px;
word-wrap: break-word
}
.provider__more_info_link {
color: #f89100;
text-decoration: underline
}
.lang__link a, .provider__more_info_link:hover {
text-decoration: none
}
.provider__image {
position: relative;
margin: 5px 15px 15px;
min-width: 290px;
-webkit-box-flex: 1;
-ms-flex: 1 2 290px;
flex: 1 2 290px;
height: 100%
}
.provider__image-background {
border-radius: 5px;
width: 100%;
height: 320px;
background-size: cover;
background-position: center;
background-repeat: no-repeat
}
@media screen and (max-width: 1180px) {
.provider__image-background {
height: 240px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.provider__image-background {
height: 240px
}
}
.rooms_style_primary {
background: #fff;
color: #000
}
.rooms_style_complementary {
background: #474747;
color: #fff
}
.rooms__title {
text-align: left;
margin-bottom: 47px;
padding: 0 15px
}
.rooms__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 0;
text-align: center
}
.room {
border-radius: 5px;
height: 320px;
background-size: cover;
background-repeat: no-repeat;
background-position: center
}
.room__title {
font-size: 24px;
background-color: rgba(0, 0, 0, .7);
border-radius: 0 0 5px 5px;
position: absolute;
bottom: 0;
width: 100%;
min-height: 60px;
padding: 17px 0 79px 29px;
color: inherit;
margin-bottom: 0;
text-align: left
}
.room__booking {
position: absolute;
bottom: 20px;
left: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.room__text {
margin-left: 30px;
font-size: 18px
}
.room__price {
font-size: 24px;
font-weight: 700
}
.room__stay-time {
margin-left: -4px
}
@media screen and (max-width: 1180px) {
.room {
height: 240px
}
.room__title {
margin-bottom: 60px;
padding-bottom: 19px
}
.room__booking {
bottom: 0;
left: 0
}
.room__stay-time {
display: none
}
.room__text {
color: #fff
}
}
@media screen and (max-width: 768px) {
.room__text {
color: #fff
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.room {
height: 240px
}
.room__text {
font-size: 14px;
color: #fff
}
.room__price {
font-size: 20px
}
.room__title {
position: static;
background: 0 0;
font-size: 22px;
margin-bottom: 0
}
.room__booking {
position: absolute;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
text-align: center;
bottom: -60px
}
}
.page {
background: #fff
}
.lang, .lang__list {
position: absolute;
width: 60px
}
.lang {
right: 0;
bottom: 0
}
.lang__list {
color: #fff;
background-color: rgba(0, 0, 0, .7);
display: none
}
.lang__list_visible {
display: block;
width: auto;
right: 0
}
.lang__items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
float: right
}
.lang__item, .lang__item:hover {
-webkit-transition: ease .3s;
transition: ease .3s
}
.lang__item {
float: left;
text-decoration: none;
text-align: center;
line-height: 60px
}
.lang__item:hover {
background: rgba(71, 71, 71, .8)
}
.lang__item_current {
background: rgba(71, 71, 71, .8);
color: #fff
}
.lang__link {
display: block;
width: 60px;
text-decoration: none;
min-height: 60px;
text-transform: uppercase
}
.lang__link:hover {
color: #fff;
cursor: pointer
}
.lang_country-code {
margin-right: 5px
}
.lang__flag {
width: 24px;
height: 24px;
display: inline-block;
margin: 0 5px 0 0;
vertical-align: middle
}
.lang__flag_ru {
background: url(../img/flags_big/ru.png) 50% no-repeat
}
.lang__flag_en {
background: url(../img/flags_big/en.png) 50% no-repeat
}
.lang__flag_fr {
background: url(../img/flags_big/fr.png) 50% no-repeat
}
.lang__flag_de {
background: url(../img/flags_big/de.png) 50% no-repeat
}
.lang__flag_es {
background: url(../img/flags_big/es.png) 50% no-repeat
}
.lang__flag_zh {
background: url(../img/flags_big/cn.png) 50% no-repeat
}
.lang__flag_cs {
background: url(../img/flags_big/cz.png) 50% no-repeat
}
.lang__flag_it {
background: url(../img/flags_big/it.png) 50% no-repeat
}
.lang__flag_ja {
background: url(../img/flags_big/jp.png) 50% no-repeat
}
.lang__flag_kk {
background: url(../img/flags_big/kz.png) 50% no-repeat
}
.lang__flag_ko {
background: url(../img/flags_big/kr.png) 50% no-repeat
}
.lang__flag_pl {
background: url(../img/flags_big/pl.png) 50% no-repeat
}
.lang__flag_uk {
background: url(../img/flags_big/ua.png) 50% no-repeat
}
.lang__flag_bg {
background: url(../img/flags_big/bg.png) 50% no-repeat
}
.lang__flag_ro {
background: url(../img/flags_big/ro.png) 50% no-repeat
}
.lang__flag_ka {
background: url(../img/flags_big/ka.png) 50% no-repeat
}
.lang__flag_fi {
background: url(../img/flags_big/fi.png) 50% no-repeat
}
.lang__flag_id {
background: url(../img/flags_big/id.png) 50% no-repeat
}
.lang__flag_lv {
background: url(../img/flags_big/lv.png) 50% no-repeat
}
.lang__flag_et {
background: url(../img/flags_big/ee.png) 50% no-repeat
}
.lang__flag_hy {
background: url(../img/flags_big/am.png) 50% no-repeat
}
.lang__flag_tr {
background: url(../img/flags_big/tr.png) 50% no-repeat
}
.lang__flag_el {
background: url(../img/flags_big/gr.png) 50% no-repeat
}
.lang__flag_az {
background: url(../img/flags_big/az.png) 50% no-repeat
}
.lang__icon_arrow:before {
font-size: 10px
}
.search-form {
min-height: 80px
}
.search-form__container {
background-color: #f89100;
visibility: visible;
opacity: 0;
-webkit-transition: opacity .5s ease-in;
transition: opacity .5s ease-in;
width: 100%
}
.search-form__container_state_visible {
opacity: 1;
-webkit-transition: opacity 1s ease-in;
transition: opacity 1s ease-in
}
.search-form__link {
visibility: hidden
}
.search-form_on_main_slider {
width: 50%;
max-width: 600px;
height: 0;
background: 0 0;
position: absolute;
left: 50%;
top: 180px
}
.search-form_on_main_slider .search-form__container {
width: 280px;
height: auto;
position: relative;
z-index: 5;
left: -100%;
margin-left: 15px;
overflow-y: auto
}
.search-form_page_inner {
width: 100%;
min-height: 80px
}
.search-form_page_inner_with_promo {
min-height: 100px
}
@media screen and (max-width: 768px) {
.search-form_page_inner {
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
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.search-form_on_main_slider {
width: 100%;
max-width: none;
position: static;
height: auto
}
.search-form_on_main_slider .search-form__container {
width: 100%;
left: 0;
margin-left: 0;
position: static;
min-height: 80px
}
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
#tl-search-form-inner {
width: 800px;
margin: 0 auto
}
}
@media screen and (max-width: 768px) {
#tl-search-form-inner {
display: none
}
}
.address__container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-width: 500px
}
.address__coordinates {
font-size: .875em;
line-height: 1.5;
margin-left: 40px;
margin-top: 15px
}
.address__coordinates-title {
font-weight: 700;
line-height: 20px
}
.address__icon {
color: #ffa220;
font-size: 24px;
margin-left: 3px
}
.address_footer .address__text {
margin-left: 15px;
line-height: 21px;
text-decoration: none
}
.address__link, .address_footer .address__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.address_footer .address__link {
max-width: 500px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.address__remark {
margin-left: 40px;
margin-top: 15px;
font-size: .875em
}
.address__link {
text-decoration: none;
cursor: pointer;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.address__link:hover {
color: #f89100
}
.address__text {
margin-left: 15px;
line-height: 21px
}
@media screen and (max-width: 768px) {
.address_footer {
display: none
}
.address__container_apartment {
max-width: 320px;
margin-left: 0
}
}
.phone {
padding-right: 10px
}
.phone__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px;
-ms-flex-item-align: baseline;
align-self: baseline
}
.phone__number {
font-weight: 700
}
.phone__description {
font-size: .875em;
display: block
}
.phone__text {
line-height: 20px;
margin-left: 15px
}
.phone__list {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.phone__item {
margin-bottom: 15px;
max-width: 320px;
width: 100%
}
.phone__item .phone__icon {
visibility: hidden
}
.email__item:first-child .email__icon, .phone__item:first-child .phone__icon {
visibility: visible
}
.phone__item:last-of-type {
margin-bottom: 0
}
.phone__link {
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.phone__link:hover {
color: #f89100
}
.phone_header .phone__text {
font-size: 16px;
font-weight: 700
}
.phone_header:hover {
color: #f89100;
text-decoration: none;
-webkit-transition: color .3s ease;
transition: color .3s ease;
cursor: pointer
}
@media screen and (max-width: 768px) {
.phone_header {
display: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.phone__item {
width: 100%;
max-width: 320px
}
/*.phone_header {*/
/* display: none*/
/*}*/
}
.weather__link {
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.weather__icon {
font-size: 38px;
margin-top: 9px;
margin-right: 7px
}
.weather__temperature {
font-size: 20px;
font-weight: 700;
margin-top: 2px
}
.weather__state {
font-size: 12px;
font-weight: 400;
margin-left: 3px;
margin-top: 4px
}
.copyright__official {
font-size: 12px;
margin-top: 6px;
margin-left: 15px
}
.societal {
max-width: 450px
}
.societal__item, .societal__list {
margin: 0;
vertical-align: middle;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.societal__item {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 30px;
height: 30px;
text-decoration: none;
margin: 0 5px;
border-radius: 50%;
line-height: 30px;
text-align: center
}
.societal__item, .societal__item:hover {
-webkit-transition: ease .5s;
transition: ease .5s
}
.societal__item_vk-2020 {
color: #2787f5;
background: #fff
}
.societal__item_vk-2020:hover {
color: #58a2f7
}
.societal__item_fb {
background: #46639f
}
.societal__item_fb:hover {
background: #5f7cb9
}
.societal__item_twitter {
background: #289ff3
}
.societal__item_twitter:hover {
background: #58b5f6
}
.societal__item_instagram {
background: #0f5787
}
.societal__item_instagram:hover {
background: #1475b5
}
.societal__item_odnoklassiki {
background: #f2720d
}
.societal__item_odnoklassiki:hover {
background: #f58e3d
}
.societal__item_googleplus {
background: #dd4e41
}
.societal__item_googleplus:hover {
background: #e5766c
}
.societal__item_youtube2 {
background: red
}
.societal__item_youtube2:hover {
background: #f33
}
.societal__icon:before {
font-size: 18px
}
.contacts {
width: 100%;
padding: 0;
font-size: 16px
}
.contacts_style_primary {
background: #fff;
color: #000
}
.contacts_style_complementary {
background: #474747;
color: #fff
}
.contacts_with_padding {
padding-bottom: 150px
}
.contacts__title {
margin-bottom: 45px;
padding: 0 15px
}
.contacts__container {
max-width: 1180px;
color: inherit;
min-width: 320px;
margin: 0 auto;
position: relative;
padding: 50px 0
}
.contacts__container_type_horizontal .contacts__item {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.contacts__container_custom {
padding-bottom: 0
}
.contacts__description-text {
padding: 0 15px
}
.contacts__item, .contacts__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.contacts__list {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
max-width: 100%
}
.contacts__item {
width: 363.33333px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 0 15px 20px
}
.contacts__item_apartment {
text-align: left;
margin-bottom: 0;
margin-top: 30px
}
.contacts__item_email {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.contacts__item:last-child {
margin-bottom: 0
}
@media screen and (max-width: 1180px) {
.contacts__item {
width: 226px;
min-width: 270px
}
}
@media screen and (max-width: 768px) {
.contacts__item {
width: 195px;
min-width: 250px
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.contacts__item {
max-width: 320px
}
}
@media screen and (max-width: 480px) {
.contacts {
font-size: 14px
}
.contacts__item {
width: 100%
}
.contacts_with_padding {
padding-bottom: 0
}
}
.email {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.email__mail {
text-decoration: underline
}
.email__description {
font-size: .875em;
display: block
}
.email__item {
margin-bottom: 15px
}
.email__item .email__icon {
visibility: hidden
}
.email__item:last-child {
margin-bottom: 0
}
.email__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px;
vertical-align: middle
}
.email__text {
line-height: 21px;
margin-left: 15px
}
.email__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
vertical-align: middle
}
.email__link, .email__link:hover .email__mail {
text-decoration: none
}
.map {
border-top: 1px solid #ffa220;
width: 100%;
position: relative
}
.map.style-primary {
background: #fff;
color: #000
}
.map.style-complementary {
background: #474747;
color: #fff
}
.map_with-padding {
padding: 0 15px
}
.map__container {
height: 500px;
width: 100%
}
.map_inner {
border-top: none
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.map__container {
height: 320px
}
}
.services_style_primary {
background: #fff;
color: #000
}
.services_style_complementary {
background: #474747;
color: #fff
}
.services_hotel {
border-top: none
}
.services_top {
padding-bottom: 10px
}
.services_top .services__container {
padding-bottom: 0
}
.services__title {
text-align: left
}
.services__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 53px 15px 48px
}
.services__item, .services__list {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.services__list {
padding-top: 23px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.services__item {
margin-bottom: 30px;
width: 360px;
position: relative;
height: 50px;
color: inherit;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: left
}
.services__item-name {
line-height: 23px
}
.services__item-icon {
max-width: 60px;
padding: 0 20px 0 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.services__item-icon:before {
color: #ffa220
}
.services__item-svg {
width: 40px;
height: 40px
}
.services__description, .table {
line-height: 1.5
}
.table {
width: 100%;
margin: 16px 0;
border-bottom: 1px solid #dedede
}
.table__item, .table__value {
border-top: 1px solid #dedede
}
.table__item {
font-weight: 700;
padding: 5px 20px 5px 0
}
.table__value {
padding: 15px 0;
line-height: 30px
}
.photos {
margin: 0 5px;
min-height: 700px
}
.photos__list {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.photos__item {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
padding: 10px
}
.photos__image {
max-width: 370px;
max-height: 320px
}
.photos__groups-list {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.photos__group {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
padding: 10px
}
.photos__group__item {
text-decoration: none;
display: none;
position: relative
}
.paid-service__gallery:first-child, .photos__group__item:first-child {
display: block
}
.photos__group-title {
text-align: center
}
.photos__separation-line {
margin: 35px 10px;
background: rgba(71, 71, 71, .8);
width: auto;
height: 2px
}
.photos__item-overlay {
position: absolute;
max-width: 370px;
left: 0;
background-color: rgba(0, 0, 0, .7);
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
color: #fff;
height: 70px;
bottom: 1px
}
.photos__item-overlay_title {
display: block;
width: 82%;
padding-left: 25px;
font-size: 24px;
bottom: 0;
margin: auto 0;
color: inherit;
text-align: left
}
.photos__gallery-icon {
color: #fff;
display: block;
font-size: 20px;
position: absolute;
bottom: 15px;
right: 15px;
padding: 8px;
border-radius: 5px
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.photos__groups-list, .photos__list {
margin: 0 15px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.photos__group {
padding: 0
}
.photos__image {
width: 100%;
max-height: 570px
}
}
.paid-service {
margin: 50px 0
}
.paid-service__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
margin: 0 0 40px
}
.paid-service__info {
width: 80%
}
.paid-service__photo {
width: 270px;
max-width: 270px;
height: 160px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.paid-service__name {
font-family: "<NAME>", Roboto, Verdana, "Open Sans", sans-serif;
font-size: 24px
}
.paid-service__name-link {
color: #f89100;
text-decoration: none
}
.paid-service__description {
margin: 20px 0 10px;
line-height: 1.5;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word
}
.paid-service__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
.paid-service__gallery-icon {
background-color: rgba(0, 0, 0, .7);
color: #fff;
font-size: 20px;
position: absolute;
bottom: 15px;
right: 15px;
padding: 8px;
border-radius: 5px
}
.paid-service__gallery {
display: none
}
@media screen and (max-width: 480px) {
.paid-service__item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.paid-service__photo-item {
width: 100%;
margin: 0 0 20px
}
.paid-service__info {
width: 100%
}
.paid-service__photo {
width: 100%;
max-width: 100%
}
}
.link {
color: #f89100;
font-size: 16px;
text-decoration: underline
}
.link:hover {
text-decoration: none
}
.link_unstyled {
color: inherit;
font-size: inherit;
text-decoration: inherit
}
#tl-search-form #search-form-container .sf-submit-button-container.sf-submit-button-link-container .sfl-submit-button.sfl-submit-button-link span {
background-color: #00f !important
}
.visa {
background: #f89100;
color: #fff;
margin: 0;
width: 100%;
padding: 15px 0;
min-height: 100px
}
.visa__container {
margin: 0 auto;
max-width: 1200px;
min-width: 320px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.visa__title {
width: 100%;
min-width: 320px;
font-size: 30px;
margin: 15px 0;
padding: 0 15px;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto
}
.visa__info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%
}
.visa__description, .visa__link {
min-width: 320px;
margin: 15px 0;
padding: 0 15px;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto
}
.visa__description {
line-height: 18px;
width: 400px;
max-width: 100%
}
.visa__link {
width: 320px;
max-width: 340px
}
.visa__logo {
min-width: 70px;
width: 70px;
height: 34px
}
.visa__get {
padding: 0 0 0 14px;
line-height: 18px;
text-align: left;
-ms-flex-item-align: center;
align-self: center
}
@media screen and (max-width: 1180px) {
.visa__container {
margin: 0 auto;
max-width: 1180px
}
}
@media screen and (max-width: 768px) {
.visa__description, .visa__title {
width: 100%;
max-width: none
}
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.visa__title {
font-size: 30px
}
.visa__description, .visa__title {
width: 100%;
max-width: none
}
.visa__link {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: auto;
max-width: 300px
}
}
.remainder {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 20px;
width: 100%
}
.remainder__description {
line-height: 20px;
margin-bottom: 15px;
font-size: .815em
}
.remainder__icon {
margin: 0 15px 0 1px;
font-size: 24px;
color: #ffa220
}
.remainder__button {
background-color: #f89100;
text-align: center;
cursor: pointer;
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
padding: 13px 27px;
display: inline-block;
border-radius: 5px;
color: #fff;
font-size: 16px
}
.remainder__button:hover {
background-color: #ff9d13
}
.booking__description {
margin: 5px 15px 15px
}
.booking__description ul {
list-style-type: disc;
margin: 0 0 30px 50px
}
.booking__description li {
margin-top: 5px
}
.booking-online {
display: none;
margin: 0;
width: 100%;
min-height: 100px
}
.booking-online__container {
margin: 0 auto;
max-width: 1200px;
min-width: 320px;
padding: 50px 15px;
border-top: 1px solid #f89100
}
.booking-online__title {
margin-bottom: 10px
}
.booking-online__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.booking-online__description {
margin: 15px 0;
-webkit-box-flex: .9;
-ms-flex: .9 1;
flex: .9 1;
min-width: 600px
}
.booking-online__link {
margin: 15px 0
}
@media screen and (max-width: 768px) {
.booking-online__description {
min-width: 0;
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto
}
}
body, html {
height: 100%;
margin: 0
}
.error {
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.error_404 .error__image {
background: url(../img/man-404.gif) no-repeat;
background-size: contain
}
.error_500 {
position: fixed;
width: 100%;
height: 100%;
z-index: 10000;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, .75)
}
.error_500 .error__image {
background: url(../img/man-500.gif) no-repeat;
background-size: contain
}
.error_500 .error__message {
padding-right: 0
}
.error_500 .error__container {
min-height: 420px;
padding-top: 20px
}
.error__container {
position: relative;
width: 100%;
max-width: 1000px;
min-height: 380px;
overflow: hidden;
margin: auto;
background-color: #fff
}
.error__image {
position: absolute;
width: 100%;
height: 380px;
min-width: 650px
}
.error__message {
padding-right: 85px;
margin: 49px 0 0 400px;
position: relative;
z-index: 10
}
.error__header {
text-transform: uppercase;
font-family: '<NAME>', Arial, sans-serif;
font-size: 40px;
margin: 0;
line-height: 48px
}
.error__text {
font-family: "Open Sans", sans-serif;
font-size: 16px;
line-height: 30px;
margin-top: 15px
}
.error__buttons {
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-top: 30px;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.error__button {
font-family: 'Open Sans', sans-serif;
text-decoration: none;
text-transform: uppercase;
font-weight: 700;
width: 240px;
height: 40px;
text-align: center;
line-height: 40px;
border-radius: 5px;
margin: 0 6px 15px 0;
-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .25);
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .25)
}
.error__button, .error__button:hover {
-webkit-transition: background-color .1s ease-in;
transition: background-color .1s ease-in
}
.error__button_booking {
color: #fff;
background-color: #f89100
}
.error__button_booking:hover {
background: #ff9d13
}
.error__button_goto_main {
color: #f89100;
background-color: #fff
}
.error__button_goto_main:hover {
background: #f2f2f2
}
@media screen and (max-width: 768px) {
.error__image {
position: static
}
.error__message {
margin: 0;
padding: 0 30px
}
.error__buttons {
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.error__button {
margin-right: 15px
}
.error__header {
font-size: 30px
}
.error__text {
font-size: 14px
}
.error_500 .error__image {
height: 300px
}
.error_500 .error__container {
min-height: 360px;
padding-top: 0
}
}
.reputation {
position: relative;
width: 280px;
height: auto
}
.reputation_without_slider {
margin: 20px auto;
max-width: 240px;
width: 100%
}
.reputation_on_main_slider {
left: -100%;
z-index: 2;
top: 20px;
margin-left: 15px;
min-height: 110px
}
@media screen and (max-width: 480px), screen and (max-height: 750px) {
.reputation_on_main_slider {
top: 0;
left: 0;
margin: 20px auto;
width: 80%;
max-width: 280px
}
}
.reviews-widget {
min-height: 800px
}
.special-offers_style_primary {
background: #fff;
color: #000
}
.special-offers_style_complementary {
background: #474747;
color: #fff
}
.special-offers_slider {
background: #d47c00;
color: #fff
}
.special-offers_slider .special-offers__container {
padding: 52px 0
}
.special-offers_slider .special-offers__title {
padding: 0 15px
}
.special-offers__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.special-offers__title {
text-align: left;
margin-bottom: 47px
}
.special-offer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.special-offer:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.special-offer_slider-item {
border-radius: 5px;
height: 320px;
background-size: cover;
display: block;
overflow: hidden
}
.special-offer_slider-item:hover .special-offer__text {
max-height: 150px;
display: block;
-webkit-transition: max-height .5s ease-in;
transition: max-height .5s ease-in
}
.special-offer__info {
text-align: left;
width: 80%
}
.special-offer__name {
font-size: 24px;
margin-bottom: 20px
}
.special-offer__image {
max-width: 270px;
width: 270px;
margin: 0 30px 0 0;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.special-offer__description {
line-height: 24px
}
.loyalty-program-item__description ul, .news-item__description ul, .special-offer__description ul, .vacancy__description ul {
list-style-type: disc;
margin-left: 50px
}
.special-offer__short-description {
font-weight: 700
}
.special-offer__title {
position: static;
text-align: left;
font-size: 24px;
margin-bottom: 4px
}
.special-offer__button-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.special-offer__text {
text-align: left;
overflow: hidden;
max-height: 0;
-webkit-transition: max-height .5s ease-out;
transition: max-height .5s ease-out
}
@media screen and (max-width: 1180px) {
.special-offer_slider-item {
height: 240px
}
}
@media screen and (max-width: 768px) {
.special-offer {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.special-offer_slider-item:hover .special-offer__text {
display: none
}
.special-offer__image {
width: 100%;
max-width: 100%;
margin: 0 0 20px
}
}
.hotel-rewards {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 15px;
white-space: normal
}
.hotel-rewards__item {
margin: 20px 20px 0 0
}
.hotel-rewards__link {
display: block
}
.hotel-rewards__image {
width: 120px;
height: 120px;
display: block;
-o-object-fit: contain;
object-fit: contain
}
.payment-methods {
background: #fff;
color: #000
}
.payment-methods__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.payment-methods_footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background: 0 0;
color: inherit
}
.payment-methods__wrap {
margin-bottom: 30px
}
.payment-methods__text {
text-align: left
}
.payment-methods__title {
text-align: left;
margin-bottom: 47px
}
.payment-methods__list, .payment-methods__subtitle {
text-align: left
}
.payment-methods__icon {
font-size: 20px;
margin-right: 10px;
color: #ffa220
}
.payment-methods__link {
text-decoration: none;
margin-bottom: 1px;
border-bottom: 1px solid #fff
}
.payment-methods__link:hover {
border-bottom: none
}
.payment-method {
margin-bottom: 40px
}
.payment-method:last-child {
margin-bottom: 0
}
.payment-method__name {
font-size: 24px;
margin-bottom: 10px
}
.payment-method__description {
line-height: 1.5;
margin-bottom: 10px
}
.payment-method__images {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 20px
}
.payment-method__image {
margin-right: 30px
}
.payment-method__image:last-child {
margin-right: 0
}
.payment-method__img {
max-height: 250px;
min-width: 100%
}
.cookie-notification {
background: #fff;
color: #000;
font-family: "Open Sans", "PT Sans", Tahoma, Helvetica, sans-serif;
font-size: 12px;
max-height: 0;
opacity: 0;
overflow: hidden
}
.cookie-notification_short {
max-height: 80px;
opacity: 1;
border-bottom: 1px solid rgba(0, 0, 0, .7);
-webkit-transition-duration: .5s;
transition-duration: .5s
}
.cookie-notification_full {
max-height: 400px;
-webkit-transition-duration: 1s;
transition-duration: 1s
}
.cookie-notification_full .cookie-notification__full-info {
display: block
}
.cookie-notification_full .cookie-notification__more-info {
display: none
}
.cookie-notification_hidden {
max-height: 0;
opacity: 0;
border-bottom: none;
-webkit-transition-duration: .5s;
transition-duration: .5s
}
.cookie-notification__container {
max-width: 1220px;
padding: 0 10px;
margin: 0 auto
}
.cookie-notification__document-link, .cookie-notification__more-info {
color: #f89100;
text-decoration: underline;
cursor: pointer
}
.cookie-notification__document-link:hover, .cookie-notification__more-info:hover {
text-decoration: none
}
.cookie-notification__full-info {
display: none
}
.cookie-notification__text {
margin-top: 10px;
line-height: 1.8
}
.cookie-notification__text_short {
margin: 11px 0
}
.cookie-notification__text_marketing {
font-weight: 700
}
@media screen and (max-width: 768px) {
.cookie-notification_full .cookie-notification__text {
margin-top: 5px;
line-height: 1.5
}
.cookie-notification__text_short {
line-height: 1.5;
max-width: 670px
}
}
.radiobutton__wrap {
margin-top: 6px
}
.radiobutton__additional-info {
font-size: .9em
}
.radiobutton__input {
vertical-align: bottom
}
.messenger__list {
margin-top: 20px
}
.messenger__item {
padding-right: 10px;
margin-bottom: 15px
}
.messenger__item:last-child {
margin-bottom: 0
}
.loyalty-program-item__description strong, .messenger__phone, .news-item__description strong, .vacancy__description strong {
font-weight: 700
}
.messenger__link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-decoration: none;
-webkit-transition: color .2s ease;
transition: color .2s ease
}
.messenger__link:hover {
color: #f89100
}
.messenger__icon {
color: #ffa220;
font-size: 24px;
margin-left: 2px
}
.messenger__text {
line-height: 20px;
margin-left: 15px
}
.presentation__video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.presentation__icon:before, .restaurants__icon:before {
font-size: 30px;
line-height: 1;
vertical-align: top
}
.restaurants__menu-link:hover {
color: #ffa72c
}
.restaurants_style_primary {
background: #fff;
color: #000
}
.restaurants__menu-container {
width: 100%
}
.restaurants__menu-mobile-container {
display: none
}
.restaurants__container {
max-width: 1180px;
min-width: 340px;
margin: 0 auto;
padding: 52px 0 73px;
text-align: left
}
.restaurants__title {
margin-bottom: 35px;
padding: 0 15px
}
.restaurants__information {
margin-top: 10px;
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
}
.restaurants__description {
margin: 0 15px;
width: 50%;
line-height: 24px;
-webkit-box-flex: 1;
-ms-flex: 1 1 290px;
flex: 1 1 290px;
word-wrap: break-word
}
.restaurants__wrap {
margin-top: 10px;
width: 100%;
-webkit-box-flex: 1;
-ms-flex: 1 1;
flex: 1 1;
max-width: 590px;
min-width: 350px
}
.restaurants__menu-link {
display: none;
color: #f89100;
font-weight: 700;
padding: 0 15px;
text-decoration: none
}
.restaurants__gallery:first-child, .restaurants__menu-link:first-child {
display: block
}
.restaurants__menu-item, .restaurants__menu-name {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.restaurants__menu-item {
margin: 5px 15px;
text-align: left
}
.restaurants__menu-name {
margin-left: 10px;
line-height: 1.3;
text-decoration: underline
}
.restaurants__icon {
color: #ffa220;
float: left;
padding-right: 10px
}
.restaurants__gallery-icon {
background-color: rgba(0, 0, 0, .7);
color: #fff;
font-size: 20px;
position: absolute;
top: 78%;
right: 40px;
padding: 8px;
border-radius: 5px
}
.restaurants__gallery {
display: none
}
.restaurants__image-menu-block {
position: relative;
margin: 5px 15px 15px;
min-width: 290px;
-webkit-box-flex: 1;
-ms-flex: 1 2 290px;
flex: 1 2 290px;
height: 100%
}
.restaurants__image-block {
position: relative;
width: 100%
}
.restaurants__photo {
border-radius: 5px;
width: 100%;
max-width: 100%;
height: 320px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
@media screen and (max-width: 639px) {
.restaurants__menu-container {
display: none
}
.restaurants__menu-mobile-container {
display: block;
width: 100%
}
}
.presentation__wrap {
width: 100%;
min-width: 350px;
-webkit-box-flex: 1;
-ms-flex: 1 1;
flex: 1 1;
max-width: 590px
}
.presentation__video {
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
margin: 5px 15px 15px;
overflow: hidden;
border-radius: 5px
}
.presentation__item {
margin: 5px 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.presentation__icon {
color: #ffa220
}
.presentation__link {
color: #f89100;
font-weight: 700;
padding: 0 15px
}
.presentation__link:hover {
color: #ffa72c
}
.qr-code__image {
position: relative;
display: block;
margin-top: 30px;
margin-left: 40px;
height: 160px;
width: 160px
}
@media screen and (max-width: 480px) {
.qr-code__image {
margin-top: 20px
}
}
.news_style_primary {
background: #fff;
color: #000
}
.news_style_complementary {
background: #474747;
color: #fff
}
.news_slider {
background: #d47c00;
color: #fff
}
.news_slider .special-offers__container {
padding: 52px 0
}
.news_slider .special-offers__title {
padding: 0 15px
}
.news__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.news__title {
text-align: left;
margin-bottom: 47px
}
.news-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.news-item:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.news-item__info {
text-align: left;
width: 100%
}
.news-item__title {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.news-item__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.news-item__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.loyalty-program-item__description em, .news-item__description em, .vacancy__description em {
font-style: italic
}
.loyalty-program-item__description ol, .news-item__description ol, .vacancy__description ol {
list-style-type: decimal;
margin-left: 50px
}
.news-item__publish-date {
margin: 0 0 25px;
font-size: 14px
}
.news-item__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.news-item__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.news-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.news-item__photo {
max-width: 100%
}
.news-item__photo-item {
width: 100%;
margin: 0 0 20px
}
}
.collapsible-button {
font-size: 16px;
cursor: pointer;
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content
}
.collapsible-button .icon-arrow {
display: inline-block;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
float: left;
margin: -5px 10px 0 0
}
.collapsible-button_opened .icon-arrow {
-webkit-animation-name: rotate-up;
animation-name: rotate-up
}
@-webkit-keyframes rotate-up {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
to {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
}
@keyframes rotate-up {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
to {
-webkit-transform: rotate(180deg);
transform: rotate(180deg)
}
}
.collapsible-button .icon-arrow:before {
font-size: 25px
}
.collapsible-button_collapse .icon-arrow {
-webkit-animation-name: rotate-down;
animation-name: rotate-down
}
@-webkit-keyframes rotate-down {
0% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg)
}
to {
-webkit-transform: rotate(0);
transform: rotate(0)
}
}
@keyframes rotate-down {
0% {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg)
}
to {
-webkit-transform: rotate(0);
transform: rotate(0)
}
}
.collapsible-button__text {
float: left;
text-align: left
}
@media screen and (max-width: 480px) {
.collapsible-button {
font-size: 14px
}
}
.vacancies_style_primary {
background: #fff;
color: #000
}
.vacancies_style_complementary {
background: #474747;
color: #fff
}
.vacancies_slider {
background: #d47c00;
color: #fff
}
.vacancies_slider .special-offers__container {
padding: 52px 0
}
.vacancies_slider .special-offers__title {
padding: 0 15px
}
.vacancies__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.vacancies__title {
text-align: left;
margin-bottom: 47px
}
.vacancy {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.vacancy:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.vacancy__info {
text-align: left;
width: 100%
}
.vacancy__name {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.vacancy__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.vacancy__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.vacancy__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.vacancy__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.vacancy {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.vacancy__photo {
max-width: 100%
}
.vacancy__photo-item {
width: 100%;
margin: 0 0 20px
}
}
.loyalty-program_style_primary {
background: #fff;
color: #000
}
.loyalty-program_style_complementary {
background: #474747;
color: #fff
}
.loyalty-program_slider {
background: #d47c00;
color: #fff
}
.loyalty-program_slider .special-offers__container {
padding: 52px 0
}
.loyalty-program_slider .special-offers__title {
padding: 0 15px
}
.loyalty-program__container {
max-width: 1180px;
min-width: 320px;
margin: 0 auto;
padding: 52px 15px 40px;
text-align: center
}
.loyalty-program__title {
text-align: left;
margin-bottom: 47px
}
.loyalty-program-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
background-repeat: no-repeat;
background-position: center;
background-size: cover
}
.loyalty-program-item:not(:last-child) {
padding: 0 0 60px;
border-bottom: 1px solid #ffa220;
margin: 0 0 60px
}
.loyalty-program-item__info {
text-align: left;
width: 100%
}
.loyalty-program-item__name {
font-size: 24px;
margin-bottom: 30px;
word-break: break-word;
text-align: left
}
.loyalty-program-item__photo {
max-width: 270px;
width: 270px;
height: 180px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: rgba(248, 145, 0, .05)
}
.loyalty-program-item__description {
word-break: break-word;
margin-bottom: 20px;
overflow: hidden;
max-height: -webkit-max-content;
max-height: -moz-max-content;
max-height: max-content
}
.loyalty-program-item__photo-item {
margin: 0 30px 0 0;
display: block;
position: relative;
height: 100%
}
@media screen and (max-width: 768px) {
.loyalty-program-item__photo {
min-width: 270px;
width: 100%
}
}
@media screen and (max-width: 480px) {
.loyalty-program-item {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.loyalty-program-item__photo {
max-width: 100%
}
.loyalty-program-item__photo-item {
width: 100%;
margin: 0 0 20px
}
} | 0.527317 | 0.150934 |
.mission {
font-size: 20px;
padding: 50px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
color: black;
background: rgba(5, 133, 172, 0.8); }
.mission h2 {
color: white; }
.mission ul {
text-align: left;
color: white;
padding: 10px;
margin: 0px;
list-style-type: square;
margin-left: 20px; }
.mission ul li {
padding: 5px; }
.image-info {
display: flex;
justify-content: space-around;
flex-wrap: wrap; }
.news-bar {
margin-top: 20px;
width: 25%;
min-width: 250px; }
.new-projects {
margin-top: 200px;
width: 30%;
min-width: 350px; }
.ind-article {
display: flex;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
color: white; }
.ind-article:hover {
color: orange;
box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.5); }
.ind-article:hover .top-bar {
background: black; }
.top-bar {
background-color: #696969;
height: 5px;
width: 100%;
opacity: 1; }
.image-box {
margin-top: 5px;
padding: 0px;
width: 100%;
height: auto; }
.image-box img {
width: 100%;
height: auto;
margin-top: 0px;
padding-top: 0px; }
.news-box {
margin: 0px;
padding: 0px;
width: 100%; }
.news-box p {
padding: 5px 20px;
font-family: sans-serif;
font-size: 20px; }
.ind-project {
display: flex;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
color: white; }
.ind-project:hover {
transition-delay: 100ms;
box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.8);
color: orange; }
.ind-project:hover .top-bar {
background-color: black; }
.top-bar {
background-color: orangered;
height: 5px;
width: 100%;
opacity: 1; }
.project-container {
height: 85%; }
.name {
width: 100%;
font-family: sans-serif;
font-size: 14px;
font-weight: 700;
padding: 3px;
margin-top: 1px; }
.project-title {
border-bottom: 2px solid #dce1e1;
padding: 5px;
margin-top: 2px; }
.project-title:hover {
border-bottom: 1px solid #1dc0c0;
padding: 5px; }
.project-title a {
font-size: 20px;
font-weight: 600;
color: #008cff;
padding-bottom: 5px;
text-decoration: none;
margin-top: 0px; }
.project-title a:hover {
color: #1dc0c0; }
.description {
margin: 0px;
padding: 0px;
width: 100%; }
.description p {
margin: 0px;
margin-top: 0px;
padding: 10px 20px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 14px; }
.people-involved {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: left;
width: 100%;
border-top: 2px solid #dce1e1;
margin-bottom: 0px; }
.people-involved img {
width: 30px;
height: 30px;
border-radius: 50%;
padding: 5px; }
@media screen and (max-width: 600px) {
.news-bar {
width: 90%;
margin: 0px auto; }
.new-projects {
width: 90%;
margin: 0px auto; } }
/*# sourceMappingURL=index.css.map */ | public/css/index.css | .mission {
font-size: 20px;
padding: 50px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
color: black;
background: rgba(5, 133, 172, 0.8); }
.mission h2 {
color: white; }
.mission ul {
text-align: left;
color: white;
padding: 10px;
margin: 0px;
list-style-type: square;
margin-left: 20px; }
.mission ul li {
padding: 5px; }
.image-info {
display: flex;
justify-content: space-around;
flex-wrap: wrap; }
.news-bar {
margin-top: 20px;
width: 25%;
min-width: 250px; }
.new-projects {
margin-top: 200px;
width: 30%;
min-width: 350px; }
.ind-article {
display: flex;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
color: white; }
.ind-article:hover {
color: orange;
box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.5); }
.ind-article:hover .top-bar {
background: black; }
.top-bar {
background-color: #696969;
height: 5px;
width: 100%;
opacity: 1; }
.image-box {
margin-top: 5px;
padding: 0px;
width: 100%;
height: auto; }
.image-box img {
width: 100%;
height: auto;
margin-top: 0px;
padding-top: 0px; }
.news-box {
margin: 0px;
padding: 0px;
width: 100%; }
.news-box p {
padding: 5px 20px;
font-family: sans-serif;
font-size: 20px; }
.ind-project {
display: flex;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
color: white; }
.ind-project:hover {
transition-delay: 100ms;
box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.8);
color: orange; }
.ind-project:hover .top-bar {
background-color: black; }
.top-bar {
background-color: orangered;
height: 5px;
width: 100%;
opacity: 1; }
.project-container {
height: 85%; }
.name {
width: 100%;
font-family: sans-serif;
font-size: 14px;
font-weight: 700;
padding: 3px;
margin-top: 1px; }
.project-title {
border-bottom: 2px solid #dce1e1;
padding: 5px;
margin-top: 2px; }
.project-title:hover {
border-bottom: 1px solid #1dc0c0;
padding: 5px; }
.project-title a {
font-size: 20px;
font-weight: 600;
color: #008cff;
padding-bottom: 5px;
text-decoration: none;
margin-top: 0px; }
.project-title a:hover {
color: #1dc0c0; }
.description {
margin: 0px;
padding: 0px;
width: 100%; }
.description p {
margin: 0px;
margin-top: 0px;
padding: 10px 20px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 14px; }
.people-involved {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: left;
width: 100%;
border-top: 2px solid #dce1e1;
margin-bottom: 0px; }
.people-involved img {
width: 30px;
height: 30px;
border-radius: 50%;
padding: 5px; }
@media screen and (max-width: 600px) {
.news-bar {
width: 90%;
margin: 0px auto; }
.new-projects {
width: 90%;
margin: 0px auto; } }
/*# sourceMappingURL=index.css.map */ | 0.555194 | 0.104204 |
body {
background:#CCC;
font-family: 'Lucida Grande';
font-size: 11px;
margin:25px;
}
a {
text-decoration:none;
font-weight:bold;
color:#000;
}
a:hover {
text-decoration:underline;
}
a img {
border:none;
}
h1 {
color:#333;
margin:0 0 .5em;
font-size:20px;
}
h1 a {
color:#000;
text-decoration:none;
}
h2 {
font-size:13px;
margin:1em 0 .5em;
}
#page {
margin: 0;
margin-bottom: 10px;
padding:15px 0;
}
fieldset {
border: none;
}
label {
display:block;
font-weight:bold;
margin:.5em 0 0;
}
#spinner {
float: right;
margin: 10px;
}
#photos, h1 {
margin-left:230px;
}
#photos img {
border: 5px solid #FFF;
margin: 0 10px 10px 0;
}
#albums, #admin, #recent_posts {
float:left;
clear:left;
width: 210px;
}
#albums ul, #admin ul {
margin:0;
padding:0;
clear:both;
}
#albums ul li, #admin ul li {
margin:5px 5px 5px 0;
background:#666;
list-style-type:none;
width:210px;
}
#albums img, #admin img {
vertical-align:middle;
}
#albums a, #admin a, #image_destroy a {
color:#FFF;
padding:5px;
text-decoration:none;
display:block;
}
#albums a:hover, #admin a:hover {
background-color:#000;
}
.album-active {
background:#000 !important;
}
#image_destroy a:hover {
background-color: #900;
}
.image_destroy_active {
background:#900 !important;
}
#lightbox{
background-color:#eee;
padding: 10px;
border-bottom: 2px solid #666;
border-right: 2px solid #666;
}
#lightboxDetails{
font-size: 0.8em;
padding-top: 0.4em;
}
#lightboxCaption{ float: left; }
#keyboardMsg{ float: right; }
#closeButton{ top: 5px; right: 5px; }
#lightbox img{ border: none; clear: both;}
#overlay img{ border: none; }
#overlay{ background-image: url(../images/overlay.png); }
* html #overlay{
background-color: #333;
back\ground-color: transparent;
background-image: url(../images/blank.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png", sizingMethod="scale");
}
#login {
position:absolute;
top:50%;
left:50%;
margin: -100px -100px;
background: #AAA;
padding:20px;
border:5px solid #333;
}
#signup_link {
text-align:right;
}
#footer {
margin-top:100px;
text-align:center;
}
#login_link a {
color:#333;
}
#login_link a:hover {
background:none;
}
.fieldWithErrors {
border-left:6px solid #900;
padding-left:2px;
}
.fieldWithErrors+label {
margin-top:0;
}
#errorExplanation {
width:100%;
margin:10px 0 20px;
background:#FCC;
}
#errorExplanation h2 {
text-align: left;
font-weight: bold;
padding: .25em .25em .25em 35px;
font-size: 12px;
background:#C66 url(../images/alert.gif) no-repeat 10px 50%;
color: #fff;
border-top:3px solid #900;
border-bottom:3px solid #900;
margin-top:0;
}
#errorExplanation p {
color: #333;
margin-bottom: 0;
padding: .5em 1em;
font-size:11px;
font-weight:bold;
}
#errorExplanation ul {
margin-left:30px;
padding:0 0 20px;
}
.flash {
width:100%;
margin:10px 0 20px;
}
#flashError {
background:#C00;
}
#flashError h2 {
background:#C66 url(../images/alert.gif) no-repeat 10px 50%;
color: #fff;
border-top:3px solid #900;
border-bottom:3px solid #900;
}
#flashNotice {
background:#FFC;
}
#flashNotice h2 {
background:#FFC url(../images/notice.png) no-repeat 10px 50%;
color: #333;
border-top:3px solid #FF0;
border-bottom:3px solid #FF0;
}
.flash h2 {
text-align: left;
font-weight: bold;
padding: .25em .25em .25em 35px;
font-size: 12px;
margin-top:0;
}
.flash p {
color: #333;
margin-bottom: 0;
padding: .5em 1em;
font-size:11px;
font-weight:bold;
}
.flash ul {
margin-left:30px;
padding:0 0 20px;
} | public/stylesheets/gallery.css | body {
background:#CCC;
font-family: 'Lucida Grande';
font-size: 11px;
margin:25px;
}
a {
text-decoration:none;
font-weight:bold;
color:#000;
}
a:hover {
text-decoration:underline;
}
a img {
border:none;
}
h1 {
color:#333;
margin:0 0 .5em;
font-size:20px;
}
h1 a {
color:#000;
text-decoration:none;
}
h2 {
font-size:13px;
margin:1em 0 .5em;
}
#page {
margin: 0;
margin-bottom: 10px;
padding:15px 0;
}
fieldset {
border: none;
}
label {
display:block;
font-weight:bold;
margin:.5em 0 0;
}
#spinner {
float: right;
margin: 10px;
}
#photos, h1 {
margin-left:230px;
}
#photos img {
border: 5px solid #FFF;
margin: 0 10px 10px 0;
}
#albums, #admin, #recent_posts {
float:left;
clear:left;
width: 210px;
}
#albums ul, #admin ul {
margin:0;
padding:0;
clear:both;
}
#albums ul li, #admin ul li {
margin:5px 5px 5px 0;
background:#666;
list-style-type:none;
width:210px;
}
#albums img, #admin img {
vertical-align:middle;
}
#albums a, #admin a, #image_destroy a {
color:#FFF;
padding:5px;
text-decoration:none;
display:block;
}
#albums a:hover, #admin a:hover {
background-color:#000;
}
.album-active {
background:#000 !important;
}
#image_destroy a:hover {
background-color: #900;
}
.image_destroy_active {
background:#900 !important;
}
#lightbox{
background-color:#eee;
padding: 10px;
border-bottom: 2px solid #666;
border-right: 2px solid #666;
}
#lightboxDetails{
font-size: 0.8em;
padding-top: 0.4em;
}
#lightboxCaption{ float: left; }
#keyboardMsg{ float: right; }
#closeButton{ top: 5px; right: 5px; }
#lightbox img{ border: none; clear: both;}
#overlay img{ border: none; }
#overlay{ background-image: url(../images/overlay.png); }
* html #overlay{
background-color: #333;
back\ground-color: transparent;
background-image: url(../images/blank.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png", sizingMethod="scale");
}
#login {
position:absolute;
top:50%;
left:50%;
margin: -100px -100px;
background: #AAA;
padding:20px;
border:5px solid #333;
}
#signup_link {
text-align:right;
}
#footer {
margin-top:100px;
text-align:center;
}
#login_link a {
color:#333;
}
#login_link a:hover {
background:none;
}
.fieldWithErrors {
border-left:6px solid #900;
padding-left:2px;
}
.fieldWithErrors+label {
margin-top:0;
}
#errorExplanation {
width:100%;
margin:10px 0 20px;
background:#FCC;
}
#errorExplanation h2 {
text-align: left;
font-weight: bold;
padding: .25em .25em .25em 35px;
font-size: 12px;
background:#C66 url(../images/alert.gif) no-repeat 10px 50%;
color: #fff;
border-top:3px solid #900;
border-bottom:3px solid #900;
margin-top:0;
}
#errorExplanation p {
color: #333;
margin-bottom: 0;
padding: .5em 1em;
font-size:11px;
font-weight:bold;
}
#errorExplanation ul {
margin-left:30px;
padding:0 0 20px;
}
.flash {
width:100%;
margin:10px 0 20px;
}
#flashError {
background:#C00;
}
#flashError h2 {
background:#C66 url(../images/alert.gif) no-repeat 10px 50%;
color: #fff;
border-top:3px solid #900;
border-bottom:3px solid #900;
}
#flashNotice {
background:#FFC;
}
#flashNotice h2 {
background:#FFC url(../images/notice.png) no-repeat 10px 50%;
color: #333;
border-top:3px solid #FF0;
border-bottom:3px solid #FF0;
}
.flash h2 {
text-align: left;
font-weight: bold;
padding: .25em .25em .25em 35px;
font-size: 12px;
margin-top:0;
}
.flash p {
color: #333;
margin-bottom: 0;
padding: .5em 1em;
font-size:11px;
font-weight:bold;
}
.flash ul {
margin-left:30px;
padding:0 0 20px;
} | 0.273769 | 0.07836 |
.bx-chevron-down:before {
content: "\e9ac";
}
*, ::after, ::before {
box-sizing: border-box;
}
body {
font-family: "Open Sans", sans-serif;
color: #444444;
}
a {
color: #5846f9;
text-decoration: none;
}
a:hover {
color: #8577fb;
text-decoration: none;
}
section {
padding: 100px 0;
overflow: hidden;
}
.section-title {
text-align: center;
padding-bottom: 30px;
}
.section-title h2 {
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
.section-title h2::after {
content: '';
position: absolute;
display: block;
width: 50px;
height: 3px;
background: #5846f9;
bottom: 0;
left: calc(50% - 25px);
}
.section-title p {
margin-bottom: 0;
}
h2 {
font-family: "Poppins", sans-serif;
}
.faq {
background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}
.faq .section-title h2, .faq .section-title p {
color: #fff;
}
.faq .section-title h2::after {
background: rgba(255, 255, 255, 0.6);
}
.faq .faq-list {
padding: 0 100px;
}
.faq .faq-list ul {
padding: 0;
list-style: none;
}
.faq .faq-list li + li {
margin-top: 15px;
}
.faq .faq-list li {
padding: 30px;
background: #fff;
border-radius: 5px;
position: relative;
}
.faq .faq-list a {
display: block;
position: relative;
font-family: "Roboto", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 500;
padding: 0 30px;
outline: none;
cursor: pointer;
}
.faq .faq-list .icon-help {
font-size: 24px;
position: absolute;
right: 0;
left: 20px;
color: #8577fb;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.faq .faq-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
display: none;
}
.faq .faq-list a.collapsed {
color: #2c4964;
}
.faq .faq-list a.collapsed:hover {
color: #5846f9;
}
.faq .faq-list a.collapsed .icon-show {
display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
display: none;
}
@media (max-width: 1200px) {
.faq .faq-list {
padding: 0;
}
} | public/css/style.css | .bx-chevron-down:before {
content: "\e9ac";
}
*, ::after, ::before {
box-sizing: border-box;
}
body {
font-family: "Open Sans", sans-serif;
color: #444444;
}
a {
color: #5846f9;
text-decoration: none;
}
a:hover {
color: #8577fb;
text-decoration: none;
}
section {
padding: 100px 0;
overflow: hidden;
}
.section-title {
text-align: center;
padding-bottom: 30px;
}
.section-title h2 {
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
.section-title h2::after {
content: '';
position: absolute;
display: block;
width: 50px;
height: 3px;
background: #5846f9;
bottom: 0;
left: calc(50% - 25px);
}
.section-title p {
margin-bottom: 0;
}
h2 {
font-family: "Poppins", sans-serif;
}
.faq {
background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}
.faq .section-title h2, .faq .section-title p {
color: #fff;
}
.faq .section-title h2::after {
background: rgba(255, 255, 255, 0.6);
}
.faq .faq-list {
padding: 0 100px;
}
.faq .faq-list ul {
padding: 0;
list-style: none;
}
.faq .faq-list li + li {
margin-top: 15px;
}
.faq .faq-list li {
padding: 30px;
background: #fff;
border-radius: 5px;
position: relative;
}
.faq .faq-list a {
display: block;
position: relative;
font-family: "Roboto", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 500;
padding: 0 30px;
outline: none;
cursor: pointer;
}
.faq .faq-list .icon-help {
font-size: 24px;
position: absolute;
right: 0;
left: 20px;
color: #8577fb;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.faq .faq-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
display: none;
}
.faq .faq-list a.collapsed {
color: #2c4964;
}
.faq .faq-list a.collapsed:hover {
color: #5846f9;
}
.faq .faq-list a.collapsed .icon-show {
display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
display: none;
}
@media (max-width: 1200px) {
.faq .faq-list {
padding: 0;
}
} | 0.631253 | 0.115886 |
1. Fonts
2. Reset
3. Global
4. Main Header
5. Main Slider
6. Who We Are
7. Recent Causes
8. How To Contribute
9. Call to Action
10. Latest Events
11. Sponsors Style One
12. News Section
13. Main Footer
14. Fun Facts Section
15. Products Section
16. Who We Are
17. What We Think
18. Sponsors Style Two
19. Our Team
20. Causes
21. Single Cause
22. Events
23. Single Event
24. Donate
25. Become VOlunteer
26. FAQs
27. 404 Page
28. Gallery
29. Sidebar
30. Sidebar Widgets
31. Shop
32. Shop Single
33. Shopping Cart
34. Contact Us
35. Map Section
**********************************************/
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i|Raleway:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery.fancybox.css');
@import url('jquery.mCustomScrollbar.min.css');
@import url('jquery.bootstrap-touchspin.css');
/***
====================================================================
Reset
====================================================================
***/
* {
margin:0px;
padding:0px;
border:none;
outline:none;
}
/***
====================================================================
Global Settings
====================================================================
***/
body {
font-family: 'Lato', sans-serif;
font-size:14px;
color:#555555;
line-height:1.7em;
font-weight:400;
background:#ffffff;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
a{
text-decoration:none;
cursor:pointer;
color:#000;
}
a:hover,a:focus,a:visited{
text-decoration:none;
outline:none;
}
h1,h2,h3,h4,h5,h6 {
position:relative;
font-family: 'Lato', sans-serif;
font-weight:normal;
margin:0px;
background:none;
line-height:1.6em;
}
input,button,select,textarea{
font-family: 'Lato', sans-serif;
}
p{
position:relative;
line-height:1.8em;
}
.strike-through{
text-decoration:line-through;
}
.auto-container{
position:static;
max-width:1200px;
padding:0px 15px;
margin:0 auto;
}
.medium-container{
max-width:850px;
}
.page-wrapper{
position:relative;
margin:0 auto;
width:100%;
min-width:300px;
}
ul,li{
list-style:none;
padding:0px;
margin:0px;
}
.theme-btn{
display:inline-block;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.centered{
text-align:center;
}
.btn-style-one{
position:relative;
padding:9px 40px;
line-height:24px;
text-transform:uppercase;
background:none;
color:#ffffff !important;
border:2px solid #ffffff;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-one:hover{
background:#ffffff;
color:#fbad18 !important;
}
.btn-style-two{
position:relative;
padding:9px 40px;
line-height:24px;
text-transform:uppercase;
background:#fbad18;
color:#ffffff !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-two:hover{
background:#222222;
color:#ffffff !important;
border-color:#222222;
}
.btn-style-three{
position:relative;
padding:8px 30px;
line-height:24px;
text-transform:uppercase;
background:#fbad18;
color:#ffffff !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-three:hover{
background:#222222;
color:#ffffff !important;
border-color:#222222;
}
.btn-style-four{
position:relative;
padding:8px 30px;
line-height:24px;
text-transform:uppercase;
background:none;
color:#222222 !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-four:hover{
background:#fbad18;
color:#ffffff !important;
}
.theme-btn .icon-left{
padding-right:10px;
}
.theme-btn .icon-right{
padding-left:10px;
}
.theme_color{
color:#fbad18;
}
.light-font{
font-weight:300;
}
.regular-font{
font-weight:400;
}
.semibold-font{
font-weight:600;
}
.bold-font{
font-weight:700;
}
.ex-bold-font{
font-weight:800;
}
.heavy-font{
font-weight:900;
}
.bg-lightgrey{
background-color:#f7f7f7 !important;
}
.no-bg{
background:none !important;
}
.text-uppercase{
text-transform:uppercase !important;
}
.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.GIF);}
img{
display:inline-block;
max-width:100%;
height:auto;
}
/***
====================================================================
Scroll To Top style
====================================================================
***/
.scroll-to-top{
position:fixed;
bottom:15px;
right:15px;
width:40px;
height:40px;
color:#ffffff;
font-size:13px;
text-transform:uppercase;
line-height:38px;
text-align:center;
z-index:100;
cursor:pointer;
border-radius:50%;
background:#0a0a0a;
display:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.scroll-to-top:hover{
color:#ffffff;
background:#fbad18;
}
/***
====================================================================
Main Header style
====================================================================
***/
.main-header{
position:relative;
left:0px;
top:0px;
z-index:999;
width:100%;
background:#ffffff;
}
.main-header .auto-container{
position:relative;
}
.main-header .header-top{
position:relative;
background:#222222;
color:#ffffff;
padding:0px 0px;
}
.main-header .header-top .top-left{
position:relative;
float:left;
}
.main-header .header-top .top-left ul li{
position:relative;
display:inline-block;
line-height:24px;
padding-left:25px;
margin-right:40px;
color:#ffffff;
}
.main-header .header-top .top-left ul li .icon{
position:absolute;
left:0px;
top:1px;
font-size:14px;
line-height:24px;
}
.main-header .header-top .top-left ul li a:hover{
color:#fff;
}
.main-header .header-top .top-left ul li a{
position:relative;
color:#ffffff;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-header .header-top .top-left ul li a:hover{
color:#fbad18;
}
.main-header .header-top .top-right{
position:relative;
float:right;
}
.header-top .social-icon{
position:relative;
}
.header-top .social-icon a{
position: relative;
display: inline-block;
text-align: center;
margin-left: 20px;
line-height: 24px;
font-size: 13px;
color: #ffffff;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.header-top .social-icon a:hover{
color:#fbad18;
}
.main-header .main-box{
position:relative;
padding:0px 0px;
left:0px;
top:0px;
width:100%;
background:#ffffff;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header.fixed-header .main-box{
position:fixed;
border-bottom:1px solid #e0e0e0;
padding:0px 0px;
z-index:999;
opacity:1;
visibility:visible;
-ms-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-op-animation-name: fadeInDown;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-ms-animation-duration: 500ms;
-moz-animation-duration: 500ms;
-op-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-ms-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-op-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-ms-animation-iteration-count: 1;
-moz-animation-iteration-count: 1;
-op-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.main-header .main-box .outer-container{
position:relative;
}
.main-header .main-box .logo-box{
position: absolute;
padding: 15px 0px;
z-index: 10;
height: 169px;
width: 100px;
top: -3px;
left: -63px;
}
.fixed-header .main-box .logo-box{
padding:5px 0px;
}
.main-header .main-box .logo-box .logo img{
display:inline-block;
max-width:100%;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header .nav-toggler{
position:absolute;
right:0px;
top:50%;
margin-top:-18px;
display:none;
}
.main-header .nav-toggler button{
position:relative;
display:block;
height:36px;
width:42px;
background:#fbad18;
color:#ffffff;
text-align:center;
font-size:16px;
line-height:34px;
border:1px solid #fbad18;
border-radius:3px;
font-weight:normal;
}
.main-header .nav-outer{
position:relative;
right: -73px;
}
.main-menu{
position:relative;
font-family: 'Lato', sans-serif;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navbar-collapse{
padding:0px;
}
.main-menu .navigation{
position:relative;
margin:0px;
}
.main-menu .navigation > li{
position:relative;
display:inline-block;
padding:20px 0px;
margin-left:28px;
}
.fixed-header .main-menu .navigation > li{
padding:10px 0px;
}
.main-menu .navigation > li > a{
position:relative;
display:block;
padding:20px 0px;
color:#fbad18;
text-align:center;
line-height:30px;
text-transform:lowercase;
letter-spacing:0px;
font-weight:500;
opacity:1;
font-size:17px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
/*.main-menu .navigation > li.dropdown > a{
padding-right:15px;
}
.main-menu .navigation > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f107";
position:absolute;
right:0px;
top:16px;
width:10px;
height:30px;
display:block;
line-height:30px;
font-size:14px;
font-weight:normal;
}*/
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a{
color:#000;
opacity:1;
}
.main-menu .navigation > li:hover > a:before,
.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li.current-menu-item > a:before{
width:100%;
}
.main-menu .navigation > li > ul{
position:absolute;
left:0px;
top:120%;
width:220px;
padding:0px;
z-index:100;
display:none;
background:#ffffff;
border-top:3px solid #222222;
transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(0,0,0,0.10);
}
.main-menu .navigation > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > a{
position:relative;
display:block;
padding:10px 15px;
line-height:24px;
font-weight:400;
font-size:13px;
text-transform:capitalize;
color:#272727;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li:hover > a{
color:#ffffff;
background:#fbad18;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:10px;
width:10px;
height:20px;
display:block;
color:#253d4a;
line-height:20px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li > ul > li > ul{
position:absolute;
left:100%;
top:20px;
width:220px;
padding:0px;
z-index:100;
display:none;
background:#ffffff;
border-top:3px solid #222222;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(0,0,0,0.10);
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > ul > li > a{
position:relative;
display:block;
padding:10px 15px;
line-height:24px;
font-weight:400;
font-size:13px;
text-transform:capitalize;
color:#272727;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a{
color:#ffffff;
background:#fbad18;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:11px;
width:10px;
height:20px;
display:block;
color:#272727;
line-height:20px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:0;
transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
position:absolute;
right:10px;
top:6px;
width:34px;
height:30px;
border:1px solid #ffffff;
background:url(../images/icons/submenu-icon.png) center center no-repeat;
background-size:20px;
cursor:pointer;
z-index:5;
display:none;
}
/***
====================================================================
Hidden Sidebar style
====================================================================
***/
.hidden-bar{
position: fixed;
top: 0;
width: 305px;
height: 100%;
background: #272727;
z-index: 9999;
transition: all 700ms ease;
-webkit-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
-moz-transition: all 700ms ease;
}
.hidden-bar .mCSB_inside > .mCSB_container{
margin-right:0px;
}
.hidden-bar.right-align {
right: -400px;
}
.hidden-bar.right-align.visible-sidebar{
right:0px;
}
.hidden-bar.right-align .hidden-bar-closer {
left: 0px;
}
.hidden-bar.left-align {
left: -400px;
}
.hidden-bar.left-align.visible-sidebar {
left: 0px;
}
.hidden-bar.left-align .hidden-bar-closer {
right: -20px;
}
.hidden-bar .hidden-bar-closer {
width: 40px;
height: 40px;
position: absolute;
top: 0;
background: rgba(255,255,255,0.80);
color: #272727;
border-radius: 2px;
text-align: center;
line-height: 38px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
z-index: 999999;
}
.hidden-bar .hidden-bar-closer:hover {
background: #fbad18;
}
.hidden-bar .hidden-bar-closer:hover .btn {
color: #ffffff;
}
.hidden-bar .hidden-bar-closer .btn {
background-color: transparent;
border: none;
outline: none;
font-size: 14px;
}
.hidden-bar .social-icons {
text-align: center;
margin: 50px 0px 30px;
}
.hidden-bar .social-icons ul {
font-size: 0;
margin-left: -5px;
margin-right: -5px;
}
.hidden-bar .social-icons ul li {
display: inline-block;
padding: 0 5px;
}
.hidden-bar .social-icons ul li a {
display: block;
width: 36px;
height: 36px;
font-size: 16px;
line-height: 36px;
text-align: center;
background: #fbad18;
color: #ffffff;
border-radius: 5px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.hidden-bar .social-icons ul li a:hover {
background: #ffffff;
color:#fbad18;
}
.hidden-bar-wrapper {
height: 100%;
}
.hidden-bar .logo {
padding: 30px 0px;
background: #272727;
}
.hidden-bar .logo img{
display:inline-block;
max-width:100%;
}
.hidden-bar .side-menu {
background-color: transparent;
padding: 0;
font-size:13px;
letter-spacing:1px;
}
.hidden-bar .side-menu ul li ul a {
background: transparent;
}
.hidden-bar .side-menu ul li ul li ul li a {
background: transparent;
}
.hidden-bar .side-menu a.current {
color: #fff;
}
.hidden-bar .side-menu li.current > a {
color: #fff;
}
.hidden-bar .side-menu ul li a {
background: transparent;
color: #ffffff;
display: block;
font-weight: 500;
text-transform: uppercase;
border-top: 1px solid rgba(255,255,255,0.30);
border-bottom: 1px solid rgba(255,255,255,0.30);
padding: 10px 15px 10px 20px;
position: relative;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.hidden-bar .side-menu ul li a:hover,
.hidden-bar .side-menu ul > li.current > a,
.hidden-bar .side-menu ul > li > ul > li.current > a {
background: rgba(255,255,255,0.10);
color: #ffffff;
}
.hidden-bar .side-menu ul li a .btn.expander {
background: none;
color: #ffffff;
border: 1px solid rgba(255,255,255,0.80);
padding: 5px 10px;
font-size: 14px;
border-radius: 0px;
position: absolute;
top: 6px;
right: 20px;
outline: none;
}
/***
====================================================================
Main Slider style
====================================================================
***/
.main-slider{
position:relative;
z-index:10;
}
.main-slider .tp-caption{
z-index:5 ;
}
.main-slider .text{
font-weight:400;
line-height:1.8em;
color:#ffffff;
font-size:20px;
}
.main-slider h2{
font-size:48px;
color:#ffffff;
font-weight:700;
text-transform:uppercase;
line-height:1.3em;
letter-spacing:2px;
font-family: 'Raleway', sans-serif;
}
.main-slider .btn-style-one,
.main-slider .btn-style-two{
border-width:2px !important;
}
.main-slider .tp-bullets.preview3 .bullet{
background:none !important;
width:10px !important;
height:10px !important;
border:2px solid #ffffff!important;
border-radius:50%!important;
margin:0px 7px;
}
.main-slider .tp-bullets.preview3 .bullet:hover,
.main-slider .tp-bullets.preview3 .bullet.selected{
background:#ffffff !important;
}
.main-slider .tparrows.preview3,
.main-slider .tparrows.preview3{
background:none !important;
width:54px !important;
overflow:hidden;
margin-top:0px !important;
height:54px !important;
}
.main-slider .tparrows.preview3::after{
top:0px;
background:rgba(0,0,0,0);
color:#ffffff;
font-size:22px;
height:54px !important;
line-height:52px;
width:50px !important;
border:2px solid #ffffff;
padding:0px;
border-radius:2px;
}
.main-slider .tparrows.tp-leftarrow.preview3::after{
content: '\f104';
font-family:'FontAwesome';
}
.main-slider .tparrows.tp-rightarrow.preview3::after{
content: '\f105';
font-family:'FontAwesome';
}
.main-slider .tparrows.preview3.tp-leftarrow{
left:30px !important;
}
.main-slider .tparrows.preview3.tp-rightarrow{
right:30px !important;
}
.main-slider .tparrows.preview3:hover::after{
background:#fbad18;
border-color:#fbad18;
}
.main-slider .tparrows.preview3 .tp-arr-iwrapper{
visibility:hidden;
opacity:0;
display:none;
}
.main-slider .tp-bannertimer{
display:none !important;
}
/***
====================================================================
Section Title
====================================================================
***/
.sec-title{
position:relative;
margin-bottom:40px;
}
.sec-title.centered{
text-align:center;
}
.sec-title h2{
font-family:'Raleway',sans-serif;
font-size:36px;
font-weight:700;
letter-spacing:1px;
color:#222222;
text-transform:uppercase;
line-height:1.4em;
}
.sec-title .separator{
position:relative;
display:block;
width:100%;
height:30px;
background:url(../images/icons/separator-one.png) left bottom no-repeat;
}
.sec-title.centered .separator{
background-position: center bottom;
}
.sec-title .desc-text{
position:relative;
line-height:1.8em;
padding-top:20px;
}
.sec-title.centered .desc-text{
max-width:860px;
margin:0 auto;
}
/***
====================================================================
Who We Are
====================================================================
***/
.who-we-are{
position:relative;
padding:120px 0px 80px;
}
.who-we-are .image-column,
.who-we-are .content-column{
position:relative;
margin-bottom:40px;
}
.who-we-are .image-column .image-box{
position:relative;
display:block;
}
.who-we-are .image-column img{
display:block;
width:100%;
}
.who-we-are .content-column .inner{
position:relative;
padding-left:20px;
}
.who-we-are .content-column h3{
font-size:24px;
line-height:1.3em;
font-weight:700;
margin-bottom:15px;
color:#fbad18;
}
.who-we-are .content-column .strong-text{
font-size:16px;
font-weight:700;
line-height:1.8em;
margin-bottom:15px;
color:#222222;
}
.who-we-are .content-column .text{
font-size:14px;
line-height:1.8em;
margin-bottom:30px;
color:#555555;
}
/***
====================================================================
Tabs Box / Tabs Syle One
====================================================================
***/
.tabs-box{
position:relative;
}
.tabs-box .tab-buttons,
.tabs-box .tabs-content{
position:relative;
}
.tabs-style-one .tab-buttons{
text-align:center;
margin-bottom:50px;
}
.tabs-style-one .tab-buttons .tab-btn{
position:relative;
display:inline-block;
line-height:30px;
padding:0px 0px 22px 35px;
margin:0px 25px;
text-transform:uppercase;
color:#222222;
font-weight:500;
cursor:pointer;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.tabs-style-one .tab-buttons .tab-btn:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:20px;
background:url(../images/icons/separator-one.png) center bottom no-repeat;
opacity:0;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.tabs-style-one .tab-buttons .tab-btn .icon{
position:absolute;
left:0px;
top:0px;
display:inline-block;
font-size:24px;
line-height:30px;
padding-right:5px;
}
.tabs-style-one .tab-buttons .tab-btn.active-btn{
color:#fbad18;
}
.tabs-style-one .tab-buttons .tab-btn.active-btn:after{
opacity:1;
}
.tabs-box .tabs-content .tab{
display:none;
}
.tabs-box .tabs-content .active-tab{
display:block;
}
/***
====================================================================
Recent Causes
====================================================================
***/
.recent-causes-section{
position:relative;
padding:100px 0px 70px;
background:#f7f7f7;
}
.default-cause-box{
position:relative;
margin-bottom:30px;
}
.default-cause-box .inner-box{
position:relative;
display:block;
text-align:center;
background:#ffffff;
border:1px solid #e0e0e0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-cause-box .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.default-cause-box .image-box{
position:relative;
}
.default-cause-box .image-box img{
display:block;
width:100%;
}
.default-cause-box .inner-box .progress-box{
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:5px;
}
.default-cause-box .inner-box .progress-box .bar{
position:relative;
width:100%;
height:5px;
background:rgba(204,204,204,0.60);
}
.default-cause-box .inner-box .progress-box .bar-inner{
position:relative;
display:block;
width:0px;
height:5px;
background:#fbad18;
-webkit-transition:all 1500ms ease;
-ms-transition:all 1500ms ease;
-o-transition:all 1500ms ease;
-moz-transition:all 1500ms ease;
transition:all 1500ms ease;
}
.default-cause-box .inner-box .progress-box .count-text{
position:absolute;
right:0px;
margin-right:-23px;
bottom:15px;
width:46px;
height:26px;
background:#fbad18;
color:#ffffff;
line-height:26px;
font-size:13px;
font-weight:600;
border-radius:2px;
opacity:0;
-webkit-transition:all 1000ms ease;
-ms-transition:all 1000ms ease;
-o-transition:all 1000ms ease;
-moz-transition:all 1000ms ease;
transition:all 1000ms ease;
}
.default-cause-box .inner-box .progress-box .bar-inner.counted .count-text{
opacity:1;
}
.default-cause-box .inner-box .progress-box .count-text:after{
content:'';
position:absolute;
left:50%;
margin-left:-4px;
top:100%;
border:4px solid transparent;
border-top:5px solid #fbad18;
}
.default-cause-box .inner-box .lower-content{
position:relative;
padding:25px;
}
.default-cause-box .inner-box .cause-donation-info{
font-weight:500;
font-size:16px;
line-height:24px;
color:#aaaaaa;
}
.default-cause-box .inner-box .cause-donation-info .total{
color:#fbad18;
}
.default-cause-box .inner-box .separator{
position:relative;
display:block;
width:100%;
margin:0px;
height:50px;
background:url(../images/icons/separator-two.png) center center no-repeat;
}
.default-cause-box .inner-box h3{
font-size:16px;
font-weight:500;
margin-bottom:7px;
color:#222222;
}
.default-cause-box .inner-box h3 a{
color:#222222;
}
.default-cause-box .inner-box h3 a:hover{
color:#fbad18;
}
.default-cause-box .inner-box .text{
line-height:1.8em;
margin-bottom:20px;
}
.default-cause-box .inner-box .theme-btn{
margin:0px 5px 10px;
padding-left:24px;
padding-right:24px;
min-width:140px;
text-align:center;
}
.cause-box-two{
position:relative;
margin-bottom:50px;
}
.cause-box-two .inner-box{
position:relative;
display:block;
background:#ffffff;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.cause-box-two .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.cause-box-two .image-box{
position:relative;
}
.cause-box-two .image-box img{
display:block;
width:100%;
}
.cause-box-two .inner-box .progress-box{
position:absolute;
left:0px;
bottom:0px;
width:100%;
text-align:center;
height:5px;
}
.cause-box-two .inner-box .progress-box .bar{
position:relative;
width:100%;
height:5px;
background:rgba(204,204,204,0.60);
}
.cause-box-two .inner-box .progress-box .bar-inner{
position:relative;
display:block;
width:0px;
height:5px;
background:#fbad18;
-webkit-transition:all 1500ms ease;
-ms-transition:all 1500ms ease;
-o-transition:all 1500ms ease;
-moz-transition:all 1500ms ease;
transition:all 1500ms ease;
}
.cause-box-two .inner-box .progress-box .count-text{
position:absolute;
right:0px;
margin-right:-23px;
bottom:15px;
width:46px;
height:26px;
background:#fbad18;
color:#ffffff;
line-height:26px;
font-size:13px;
font-weight:600;
border-radius:2px;
opacity:0;
-webkit-transition:all 1000ms ease;
-ms-transition:all 1000ms ease;
-o-transition:all 1000ms ease;
-moz-transition:all 1000ms ease;
transition:all 1000ms ease;
}
.cause-box-two .inner-box .progress-box .bar-inner.counted .count-text{
opacity:1;
}
.cause-box-two .inner-box .progress-box .count-text:after{
content:'';
position:absolute;
left:50%;
margin-left:-4px;
top:100%;
border:4px solid transparent;
border-top:5px solid #fbad18;
}
.cause-box-two .inner-box .lower-content{
position:relative;
background:#fafafa;
padding:20px 20px 25px;
}
.cause-box-two .inner-box .post-header{
position:relative;
padding-bottom:15px;
margin-bottom:20px;
border-bottom:1px solid #e0e0e0;
}
.cause-box-two .inner-box h3{
font-size:16px;
font-weight:500;
margin-bottom:5px;
color:#222222;
}
.cause-box-two .inner-box h3 a{
color:#222222;
}
.cause-box-two .inner-box h3 a:hover{
color:#fbad18;
}
.cause-box-two .inner-box .cause-donation-info{
font-weight:500;
font-size:14px;
line-height:22px;
color:#aaaaaa;
}
.cause-box-two .inner-box .cause-donation-info .total{
color:#fbad18;
}
.cause-box-two .inner-box .post-header .theme-btn{
margin-top:7px;
}
.cause-box-two .inner-box .text{
line-height:1.7em;
}
/***
====================================================================
How To Contribute
====================================================================
***/
.how-to-contribute{
position:relative;
padding:120px 0px 120px;
}
.how-to-contribute.style-two{
padding:120px 0px 90px;
}
.how-to-contribute .sec-title .desc-text{
max-width:650px;
padding-bottom:20px;
}
.how-to-contribute .outer-box{
position:relative;
max-width:820px;
margin:0 auto;
}
.how-to-contribute .outer-box:after{
content:'';
position:absolute;
left:50%;
top:5%;
border-left:1px solid #e0e0e0;
height:90%;
}
.how-to-contribute .contribute-block{
position:relative;
min-height:80px;
margin-bottom:80px;
z-index:1;
}
.how-to-contribute .contribute-block:last-child{
margin:0px;
}
.how-to-contribute .contribute-block .inner{
position:relative;
float:left;
width:50%;
}
.how-to-contribute .contribute-block:nth-child(even) .inner{
float:right;
}
.how-to-contribute .contribute-block .inner .inner-box{
position:relative;
max-width:410px;
padding-right:110px;
text-align:right;
}
.how-to-contribute .contribute-block:nth-child(even) .inner .inner-box{
padding-right:0px;
padding-left:110px;
text-align:left;
}
.how-to-contribute .contribute-block .icon-box{
position:absolute;
right:-42px;
top:50%;
margin-top:-40px;
line-height:80px;
width:84px;
height:80px;
text-align:center;
font-size:56px;
color:#e0e0e0;
background:#ffffff;
}
.how-to-contribute .contribute-block:nth-child(even) .icon-box{
right:auto;
left:-42px;
}
.how-to-contribute .contribute-block .count{
color:#fbad18;
line-height:1.4em;
font-size:18px;
}
.how-to-contribute .contribute-block h3{
color:#222222;
font-size:18px;
line-height:1.4em;
font-weight:600;
margin-bottom:5px;
}
.contribute-block-two{
position:relative;
text-align:center;
margin-bottom:30px;
}
.contribute-block-two .inner-box{
position:relative;
padding:50px 30px;
border:1px solid #f0f0f0;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two .inner-box .icon-box{
position:relative;
font-size:48px;
line-height:1em;
color:#999999;
margin-bottom:30px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two h3{
color:#222222;
font-size:18px;
line-height:1.4em;
font-weight:500;
margin-bottom:10px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two .inner-box:hover h3,
.contribute-block-two .inner-box:hover .icon-box{
color:#ffffff;
}
.contribute-block-two .text{
font-size:14px;
line-height:1.7em;
margin-bottom:20px;
}
.contribute-block-two .inner-box:hover{
color:#ffffff;
background:#fbad18;
border-color:#fbad18;
}
.contribute-block-two .inner-box:hover .btn-style-two{
color:#222222 !important;
background:#ffffff !important;
border-color:#ffffff;
}
/***
====================================================================
Call TO Action
====================================================================
***/
.call-to-action{
position:relative;
padding:80px 0px;
color:#ffffff;
text-align:center;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.call-to-action:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.call-to-action .auto-container{
position:relative;
z-index:1;
}
.call-to-action .sec-title h2,
.call-to-action .sec-title .desc-text{
color:#ffffff;
}
.call-to-action .links .theme-btn{
margin:0px 12px 10px;
}
/***
====================================================================
Latest Events
====================================================================
***/
.latest-events{
position:relative;
padding:120px 0px 90px;
}
.latest-events.style-two{
padding:80px 0px 50px;
background:#f7f7f7;
}
.latest-events .image-column,
.latest-events .content-column{
position:relative;
margin-bottom:30px;
}
.latest-events .image-column img{
display:block;
width:100%;
}
.latest-events .medium-title{
position:relative;
margin-bottom:15px;
color:#fbad18;
font-weight:500;
font-size:16px;
}
.latest-events .where-we-active{
margin-bottom:20px;
}
.upcoming-events .event-box{
position:relative;
}
.upcoming-events .event-box .inner{
position:relative;
padding-left:145px;
min-height:140px;
}
.upcoming-events .event-box .image-box{
position:absolute;
left:0px;
top:0px;
width:140px;
height:140px;
}
.upcoming-events .event-box .image-box img{
display:block;
width:100%;
}
.upcoming-events .event-box .slide-content{
position:relative;
padding:14px 20px;
background:#f7f7f7;
}
.style-two .upcoming-events .event-box .slide-content{
background:#ffffff;
}
.upcoming-events .event-box h4{
font-size:16px;
font-weight:500;
color:#222222;
margin-bottom:5px;
}
.upcoming-events .event-box h4 a{
color:#222222;
}
.upcoming-events .event-box .text{
margin-bottom:10px;
line-height:1.7em;
}
.upcoming-events .event-box .post-meta{
position:relative;
}
.upcoming-events .event-box .post-meta li{
position:relative;
display:inline-block;
margin-right:20px;
color:#fbad18;
font-size:13px;
line-height:24px;
font-weight:500;
}
.upcoming-events .event-box .post-meta li a{
color:#fbad18;
}
.upcoming-events .event-box .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.upcoming-events .owl-controls{
padding:0px;
margin:0px;
}
.upcoming-events .owl-theme .owl-controls .owl-dots{
display:none !important;
}
.upcoming-events .owl-theme .owl-controls .owl-nav{
position:absolute;
right:0px;
top:-40px;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]{
position:relative;
display:inline-block;
padding:0px;
margin:0px;
font-size:18px;
background:none !important;
color:#aaaaaa;
margin-left:10px;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover{
color:#fbad18;
}
/***
====================================================================
Sponsors Section
====================================================================
***/
.sponsors-section{
position:relative;
padding:80px 0px;
color:#ffffff;
text-align:center;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.sponsors-section:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.sponsors-section .auto-container{
position:relative;
z-index:1;
}
.sponsors-section .sec-title h2,
.sponsors-section .sec-title .desc-text{
color:#ffffff;
}
.sponsors-section .slide-item img{
opacity:0.80;
width: auto;
max-width:100%;
display:inline-block;
border:2px solid transparent;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.sponsors-section .slide-item img:hover{
opacity:1;
border-color:#fbad18;
}
.sponsors-section .owl-controls{
display:none !important;
}
/***
====================================================================
Sponsors Section Two
====================================================================
***/
.sponsors-section-two{
position:relative;
padding:100px 0px;
text-align:center;
}
.sponsors-section-two .slide-item{
margin:5px;
}
.sponsors-section-two .slide-item img{
width: auto;
max-width:100%;
display:inline-block;
border:1px solid #e0e0e0;
-webkit-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
-moz-filter:grayscale(100%);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.sponsors-section-two .slide-item img:hover{
opacity:1;
-webkit-filter:grayscale(0%);
-ms-filter:grayscale(0%);
-o-filter:grayscale(0%);
-moz-filter:grayscale(0%);
-webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-ms-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-o-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-moz-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
}
.sponsors-section-two .owl-controls{
display:none !important;
}
/***
====================================================================
News Section
====================================================================
***/
.news-section{
position:relative;
padding:120px 0px 100px;
}
.news-section > .auto-container > .row{
margin:0px -7px;
}
.news-section > .auto-container > .row .column{
padding:0px 7px;
}
.news-section .sec-title .desc-text{
max-width:650px;
}
.news-style-one{
position:relative;
margin-bottom:20px;
}
.news-style-one .inner-box{
position:relative;
display:block;
}
.news-style-one .image-box{
position:relative;
display:block;
}
.news-style-one .image-box img{
display:block;
width:100%;
}
.news-style-one .image-box .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
opacity:0;
background:rgba(10,10,10,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-one .image-box .overlay-link .icon{
position:absolute;
left:50%;
top:50%;
margin-left:-25px;
margin-top:-25px;
width:50px;
height:50px;
line-height:50px;
text-align:center;
color:#ffffff;
font-size:16px;
border-radius:50%;
background:rgba(250,111,28,1);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-one:hover .image-box .overlay-link{
opacity:1;
}
.news-style-one .post-meta{
position:relative;
padding:10px 0px;
line-height:24px;
font-size:13px;
border-bottom:1px solid #e0e0e0;
}
.news-style-one .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-one .post-meta a:hover{
color:#222222;
}
.news-style-one .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-one .lower-content{
position:relative;
padding:15px 0px 0px;
}
.news-style-one .lower-content h3{
font-size:15px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.news-style-one .lower-content h3 a{
color:#222222;
}
.news-style-one .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-two{
position:relative;
margin-bottom:14px;
}
.news-style-two .inner-box{
position:relative;
display:block;
padding-left:220px;
min-height:172px;
background:#f7f7f7;
}
.news-style-two .image-box{
position:absolute;
left:0px;
top:0px;
width:220px;
display:block;
}
.news-style-two .image-box img{
display:block;
width:100%;
}
.news-style-two .image-box .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
opacity:0;
background:rgba(10,10,10,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-two .image-box .overlay-link .icon{
position:absolute;
left:50%;
top:50%;
margin-left:-20px;
margin-top:-20px;
width:40px;
height:40px;
line-height:40px;
text-align:center;
color:#ffffff;
font-size:14px;
border-radius:50%;
background:rgba(250,111,28,1);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-two:hover .image-box .overlay-link{
opacity:1;
}
.news-style-two .post-meta{
position:relative;
margin-bottom:10px;
line-height:24px;
font-size:13px;
}
.news-style-two .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-two .post-meta a:hover{
color:#222222;
}
.news-style-two .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-two .lower-content{
position:relative;
padding:15px 20px;
}
.news-style-two .lower-content h3{
font-size:13px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.news-style-two .lower-content h3 a{
color:#222222;
}
.news-style-two .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-three{
position:relative;
margin-bottom:50px;
}
.news-style-three .inner-box{
position:relative;
display:block;
}
.news-style-three .image-box{
position:relative;
display:block;
}
.news-style-three iframe{
display:block;
width:100%;
}
.news-style-three .image-box img{
display:block;
width:100%;
}
.news-style-three .post-header{
position:relative;
margin-bottom:15px;
}
.news-style-three .post-meta{
position:relative;
line-height:24px;
font-size:14px;
}
.news-style-three .post-info{
position:relative;
font-size:13px;
}
.news-style-three .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-three .post-meta a:hover{
color:#222222;
}
.news-style-three .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-three .lower-content{
position:relative;
background:#fafafa;
padding:20px 25px 30px;
}
.news-style-three .lower-content h3{
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:5px;
}
.news-style-three .lower-content h3 a{
color:#222222;
}
.news-style-three .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-three .lower-content .text{
position:relative;
line-height:1.7em;
margin-bottom:20px;
}
.news-style-three .lower-content .read-more{
position:relative;
display:inline-block;
text-transform:uppercase;
font-size:13px;
color:#555555;
font-weight:600;
}
.news-style-three .lower-content .read-more .fa{
padding-left:5px;
font-weight:normal;
}
.news-style-three .lower-content .read-more:hover{
color:#fbad18;
}
/***
====================================================================
Main Footer
====================================================================
***/
.main-footer{
position:relative;
background-color:#222222;
background-size:cover;
background-repeat:no-repeat;
background-position:left center;
color:#ffffff;
}
.main-footer a,
.main-footer input,
.main-footer textarea{
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-footer .auto-container{
position:relative;
z-index:1;
}
.main-footer .widgets-section{
position:relative;
padding:70px 0px 40px;
}
.main-footer .footer-column{
position:relative;
}
.main-footer .footer-widget{
position:relative;
margin-bottom:30px;
}
.main-footer .footer-logo{
position:relative;
margin-bottom:5px;
}
.main-footer .footer-logo img{
display:block;
max-width:100%;
}
.main-footer .footer-column h2{
font-size:16px;
font-weight:500;
text-transform:uppercase;
margin-bottom:20px;
padding:12px 0px 25px;
color:#fbad18;
}
.main-footer .about-widget .text{
margin-bottom:30px;
line-height:1.7em;
}
.main-footer .about-widget .text p{
margin-bottom:15px;
}
.main-footer .about-widget .text .more-link{
color:#fbad18;
}
.main-footer .posts-widget .widget-content{
margin-left:-10px;
}
.main-footer .posts-widget h2{
margin-left:-10px;
}
.main-footer .posts-widget .post{
position:relative;
min-height:55px;
padding-left:100px;
margin-bottom:20px;
}
.main-footer .posts-widget .post:last-child{
margin-bottom:0px;
}
.main-footer .posts-widget .post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:55px;
}
.main-footer .posts-widget .post .post-thumb .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgb(251, 173, 24);
color:#ffffff;
opacity:0;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.main-footer .posts-widget .post:hover .post-thumb .overlay-link{
opacity:1;
}
.main-footer .posts-widget .post .post-thumb .overlay-link span{
position:absolute;
left:50%;
top:50%;
text-align:center;
width:30px;
margin-left:-15px;
margin-top:-15px;
line-height:30px;
font-size:16px;
}
.main-footer .posts-widget .post .post-thumb img{
display:block;
width:100%;
}
.main-footer .posts-widget .post .desc-text{
position:relative;
font-size:14px;
color:#ffffff;
line-height:1.8em;
margin-bottom:0px;
}
.main-footer .posts-widget .post .desc-text a{
color:#ffffff;
}
.main-footer .posts-widget .post .time{
color:#aaaaaa;
line-height:24px;
}
.main-footer .links-widget .list li{
position:relative;
margin-bottom:7px;
}
.main-footer .links-widget .list li a{
position:relative;
display:inline-block;
line-height:24px;
color:#ffffff;
text-transform:capitalize;
}
.main-footer .links-widget .list li a:hover{
color:#fbad18;
}
.main-footer .newsletter-widget{
position:relative;
}
.main-footer .newsletter-widget .text{
line-height:1.8em;
margin-bottom:10px;
}
.main-footer .contact-info{
position:relative;
margin-bottom:25px;
}
.main-footer .contact-info li{
position:relative;
padding:0px;
margin-bottom:5px;
line-height:22px;
}
.newsletter-one{
position:relative;
}
.newsletter-one h4{
font-size:14px;
font-weight:500;
margin-bottom:15px;
}
.newsletter-one .form-group{
position:relative;
margin-bottom:0px;
}
.newsletter-one .form-group input[type="text"],
.newsletter-one .form-group input[type="email"],
.newsletter-one .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:12px 15px;
background:#ffffff;
color:#333333;
height:48px;
font-size:13px;
border:1px solid rgba(255,255,255,0.10);
border-radius:2px;
-moz-transition:all 0.5s ease;
-webkit-transition:all 0.5s ease;
-ms-transition:all 0.5s ease;
-o-transition:all 0.5s ease;
transition:all 0.5s ease;
}
.newsletter-one .form-group input[type="text"]:focus,
.newsletter-one .form-group input[type="email"]:focus,
.newsletter-one .form-group textarea:focus{
border-color:#fbad18;
}
.newsletter-one .form-group button{
position:absolute;
right:0px;
top:0px;
display:block;
width:50px;
height:48px;
text-align:center;
margin:0px;
padding:12px 5px;
line-height:24px;
font-size:16px;
text-transform:uppercase;
font-weight:400;
background:#fbad18;
color:#ffffff;
letter-spacing:1px;
border-radius:0px 2px 2px 0px;
}
.newsletter-one .form-group button:hover,
.newsletter-one .form-group input:focus + button{
background:#6bcff6;
}
.main-footer .social-links a{
position:relative;
display:inline-block;
margin-right:5px;
text-align:center;
width:30px;
height:30px;
border:2px solid #ffffff;
line-height:26px;
font-size:14px;
color:#ffffff;
}
.main-footer .social-links a:hover{
background:#02b0e8;
border-color:#02b0e8;
}
.main-footer .footer-bottom{
position:relative;
padding:6px 0px;
line-height:24px;
text-align:center;
font-size:14px;
color:#ffffff;
background:#fbad18;
}
/***
====================================================================
Fun Facts Section
====================================================================
***/
.fun-facts-section{
position:relative;
padding:80px 0px 40px;
color:#ffffff;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.fun-facts-section:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.fun-facts-section .auto-container{
position:relative;
z-index:1;
}
.fun-facts-section .sec-title h2,
.fun-facts-section .sec-title .desc-text{
color:#ffffff;
}
.fun-facts-section .fact-counter .counter-column{
position:relative;
margin-bottom:40px;
}
.fun-facts-section .fact-counter .counter-column .inner-box{
max-width:320px;
margin:0 auto;
}
.fun-facts-section .fact-counter .count-outer{
position:relative;
font-size:36px;
color:#ffffff;
font-weight:700;
margin-bottom:10px;
}
.fun-facts-section .fact-counter .count-outer .icon{
position:relative;
font-size:32px;
font-weight:400;
color:#fbad18;
line-height:40px;
}
.fun-facts-section .fact-counter .count-outer .count-text{
position:relative;
font-size:36px;
padding-left:20px;
color:#ffffff;
font-weight:700;
line-height:40px;
}
.fun-facts-section .fact-counter .counter-title{
position:relative;
font-size:14px;
color:#ffffff;
font-weight:500;
text-transform:uppercase;
margin-bottom:10px;
}
.fun-facts-section .fact-counter .separator{
position:relative;
display:block;
height:20px;
width:100%;
background:url(../images/icons/separator-three.png) left bottom no-repeat;
}
/***
====================================================================
Shop Section
====================================================================
***/
.shop-section{
position:relative;
padding:120px 0px 90px;
}
.shop-section .sec-title .desc-text{
max-width:650px;
}
.default-shop-item{
position:relative;
margin-bottom:30px;
}
.default-shop-item .inner-box{
position:relative;
text-align:center;
display:block;
border:1px solid #e0e0e0;
}
.default-shop-item .image-box{
position:relative;
overflow:hidden;
}
.default-shop-item .image-box img{
display:block;
width:100%;
}
.default-shop-item .inner-box .prod-options{
position:absolute;
left:-50px;
top:50%;
margin-top:-45px;
transition:all 500ms ease;
}
.default-shop-item .inner-box:hover .prod-options{
left:0px;
}
.default-shop-item .inner-box .prod-options .option-btn{
position:relative;
display:block;
width:40px;
height:40px;
line-height:40px;
text-align:center;
font-size:16px;
color:#ffffff;
background:#fbad18;
margin-bottom:5px;
border-radius:0px;
transition:all 300ms ease;
}
.default-shop-item .inner-box .prod-options .option-btn:hover{
background:#222222;
}
.default-shop-item .lower-content{
position:relative;
padding:15px 20px;
background:#f7f7f7;
}
.default-shop-item .lower-content h3{
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.default-shop-item .lower-content h3 a{
color:#222222;
}
.default-shop-item .lower-content h3 a:hover{
color:#fbad18;
}
.default-shop-item .lower-content .price{
margin-bottom:7px;
font-weight:600;
}
.default-shop-item .lower-content .price-txt{
display:inline-block;
line-height:24px;
padding:3px 15px;
color:#ffffff;
background:#fbad18;
border-radius:2px;
}
.default-shop-item .lower-content .rating{
font-size:12px;
color:#fbad18;
line-height:24px;
}
.default-shop-item .lower-content .rating .fa{
display:inline-block;
margin:0px 2px;
}
.shop-section .items-sorting{
position:relative;
margin-bottom:20px;
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:10px;
}
.shop-section .items-sorting .results-column h4{
font-size:14px;
font-weight:600;
color:#6b6b6b;
line-height:24px;
padding:10px 0px;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:9px 15px 9px;
height:44px;
font-size:14px;
border:1px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.png) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.shop-section .items-sorting select option{
text-indent:15px;
}
.shop-section .items-sorting select:focus{
border-color:#fbad18;
}
.shop-section .styled-pagination{
text-align:right;
}
.shop-section .styled-pagination ul li{
margin-right:0px;
margin-left:5px;
}
.fancybox-next span,
.fancybox-prev span{
background-image:none !important;
width:44px !important;
height:44px !important;
line-height:44px !important;
text-align:center;
}
.fancybox-next span:before,
.fancybox-prev span:before{
content:'';
position:absolute;
font-family: 'FontAwesome';
left:0px;
top:0px;
font-size:12px;
width:44px !important;
height:44px !important;
line-height:44px !important;
background-color:rgba(28,28,28,0.40) !important;
color:#ffffff;
visibility:visible;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.fancybox-next span:before{
content:'\f178';
}
.fancybox-prev span:before{
content:'\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before{
background-color:#ffffff !important;
color:#000000;
}
.fancybox-type-image .fancybox-close{
right:0px;
top:0px;
width:45px;
height:45px;
background:url(../images/icons/icon-cross.png) center center no-repeat;
background-color:rgba(17,17,17,0.50) !important;
}
.fancybox-type-image .fancybox-close:hover{
background-color:#000000 !important;
}
.fancybox-type-image .fancybox-skin{
padding:0px !important;
}
/***
====================================================================
Page Title Style
====================================================================
***/
.page-title{
position:relative;
padding:80px 0px;
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
text-align:center;
}
.page-title:before{
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
position:absolute;
background:rgba(9, 9, 9, 0.43);
}
.page-title .auto-container{
position:relative;
z-index:1;
}
.page-title h1{
position:relative;
font-size:36px;
font-weight:700;
color:#ffffff;
margin-bottom:10px;
line-height:1.4em;
text-transform:uppercase;
font-family:'Raleway',sans-serif;
}
.page-title .bread-crumb-outer{
position:relative;
display:inline-block;
padding:0px 40px;
}
.page-title .bread-crumb-outer:before{
content:'';
position:absolute;
left:0px;
top:50%;
margin-top:-0.5px;
width:30px;
border-top:1px solid #fbad18;
}
.page-title .bread-crumb-outer:after{
content:'';
position:absolute;
right:0px;
top:50%;
margin-top:-0.5px;
width:30px;
border-top:1px solid #fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li{
position:relative;
float:left;
margin-right:30px;
color:#ffffff;
line-height:24px;
}
.page-title .bread-crumb-outer .bread-crumb li:last-child{
margin-right:0px;
}
.page-title .bread-crumb-outer .bread-crumb li:after{
content:'\f101';
font-family: 'FontAwesome';
position:absolute;
right:-22px;
width:10px;
line-height:24px;
font-size:14px;
color:#fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li:last-child:after{
display:none;
}
.page-title .bread-crumb-outer .bread-crumb li a{
color:#ffffff;
}
.page-title .bread-crumb-outer .bread-crumb li a:hover{
color:#fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li.active{
color:#fbad18;
}
/***
====================================================================
About Us Section
====================================================================
***/
.about-us-section{
position:relative;
padding:30px 0px 10px;
}
.about-us-section .content-box{
position:relative;
padding:35px 0px;
margin-bottom:50px;
}
.about-us-section .content-box:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
border:10px solid #f9f9f9;
}
.about-us-section .content-column .inner-box{
position:relative;
padding:0px 60px;
}
.about-us-section .content-box .strong-text{
font-weight:700;
color:#fbad18;
}
.about-us-section .content-box p{
margin-bottom:20px;
line-height:1.7em;
}
.about-us-section .content-box p:last-child{
margin-bottom:0px;
}
.about-us-section .image-column img{
display:block;
width:100%;
}
.default-icon-column{
position:relative;
margin-bottom:30px;
}
.default-icon-column .inner-box{
position:relative;
display:block;
max-width:80%;
margin:0 auto;
text-align:center;
}
.default-icon-column .icon-box{
position:relative;
line-height:1em;
font-size:36px;
color:#fbad18;
margin-bottom:15px;
}
.default-icon-column h3{
position:relative;
font-size:14px;
font-weight:600;
color:#222222;
text-transform:uppercase;
}
.default-icon-column .separator{
position:relative;
height:40px;
display:block;
width:100%;
background:url(../images/icons/separator-two.png) center center no-repeat;
}
.default-icon-column .text{
line-height:1.7em;
}
/***
====================================================================
What We Think
====================================================================
***/
.what-we-think{
position:relative;
padding:30px 0px 40px;
background:#fafafa;
}
.what-we-think .content-column{
position:relative;
}
.what-we-think .image-column{
position:relative;
margin-bottom:40px;
}
.what-we-think .image-column img{
display:block;
width:100%;
}
.what-we-think .content-column h3{
font-size:18px;
color:#222222;
font-weight:500;
text-transform:uppercase;
margin-bottom:15px;
}
.what-we-think .content-column .text{
position:relative;
margin-bottom:30px;
}
.what-we-think .content-column .feature-box{
position:relative;
float:left;
width:100%;
margin:0px;
min-height: 155px;
padding:20px 15px;
text-align:center;
font-weight:600;
font-size:14px;
color:#aaaaaa;
border:5px solid #edeaea;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.what-we-think .content-column .feature-box:hover{
border-color:#fbad18;
}
.what-we-think .content-column .feature-box .count{
display:block;
font-size:30px;
line-height:1em;
color:#fbad18;
margin-bottom:5px;
}
/***
====================================================================
Team Section
====================================================================
***/
.team-section{
position:relative;
padding:120px 0px 90px;
}
.default-team-member{
position:relative;
margin-bottom:30px;
}
.default-team-member .inner-box{
position:relative;
display:block;
background:#fcfcfc;
border:1px solid #f0f0f0;
}
.default-team-member .inner-box .content-column{
position:relative;
float:left;
width:50%;
text-align:center;
}
.default-team-member .inner-box .content-column:after{
content:'';
position:absolute;
left:100%;
top:50%;
margin-top:-12px;
border:12px solid transparent;
border-left:12px solid #fcfcfc;
}
.default-team-member.alternate .inner-box .content-column:after{
left:auto;
right:100%;
border:12px solid transparent;
border-right:12px solid #fcfcfc;
}
.default-team-member .inner-box .image-column{
position:relative;
float:right;
width:50%;
}
.default-team-member .inner-box .image-column img{
position:relative;
display:block;
width:100%;
height:auto;
}
.default-team-member.alternate .inner-box .content-column{
float:right;
}
.default-team-member.alternate .inner-box .image-column{
float:left;
}
.default-team-member .content-column .inner{
position:relative;
padding:50px 30px 20px;
}
.default-team-member .inner-box h3{
position:relative;
font-size:16px;
font-weight:500;
color:#222222;
padding-bottom:25px;
margin-bottom:10px;
background:url(../images/icons/beat-separator-one.png) center bottom no-repeat;
}
.default-team-member .inner-box .text{
position:relative;
color:#555555;
margin-bottom:20px;
}
.default-team-member .inner-box .social-links a{
position:relative;
display:inline-block;
font-size:13px;
color:#aaaaaa;
line-height:24px;
margin:0px 8px;
}
.default-team-member .inner-box .social-links a:hover{
color:#fbad18;
}
/***
====================================================================
404 Section
====================================================================
***/
.error-section{
position:relative;
text-align:center;
padding:100px 0px;
}
.error-image{
position:relative;
}
.error-image img{
position:relative;
max-width:100%;
display:inline-block;
}
.error-section h3{
position:relative;
font-size:15px;
margin-bottom:25px;
font-weight:500;
}
.error-section .btn-box{
position:relative;
}
.error-section .btn-box a{
position:relative;
padding:10px 30px;
font-weight:600;
font-size:13px;
}
.error-section .btn-box a span{
padding-right:10px;
}
/***
====================================================================
Sidebar
====================================================================
***/
.sidebar-page-container{
position:relative;
padding:100px 0px 70px;
}
.sidebar-page-container .content-side{
margin-bottom:30px;
padding-right:55px;
}
.sidebar-page-container .sidebar{
margin-left:-30px;
margin-bottom:30px;
}
.sidebar-title{
position:relative;
margin-bottom:20px;
padding-bottom:22px;
}
.sidebar-title:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) left bottom no-repeat;
}
.sidebar-title h3{
position:relative;
font-size:16px;
color:#222222;
font-weight:500;
line-height:1.4em;
text-transform:uppercase;
}
.sidebar .sidebar-widget{
position:relative;
margin-bottom:40px;
}
.sidebar .search-box .form-group{
position:relative;
margin:0px;
}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
position:relative;
line-height:26px;
padding:10px 30px 10px 15px;
border:1px solid #e0e0e0;
height:48px;
background:#ffffff;
color:#1a1a1a;
display:block;
width:100%;
border-radius:2px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sidebar .search-box .form-group input:focus{
border-color:#fbad18;
}
.sidebar .search-box .form-group button{
position:absolute;
right:0px;
top:0px;
height:48px;
width:50px;
line-height:48px;
text-align:center;
display:block;
font-size:14px;
color:#ffffff;
background:#fbad18;
border-radius:0px 2px 2px 0px;
}
.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover{
color:#ffffff;
}
.sidebar .recent-posts .post{
position:relative;
padding-bottom:20px;
margin-bottom:25px;
border-bottom:1px solid #f0f0f0;
}
.sidebar .recent-posts .post:last-child{
margin-bottom:0px;
padding-bottom:0px;
border-bottom:none;
}
.sidebar .recent-posts .post .post-thumb{
position:relative;
margin-bottom:12px;
}
.sidebar .recent-posts .post .post-thumb img{
display:block;
width:100%;
}
.sidebar .recent-posts .post .desc-text{
position:relative;
font-size:14px;
color:#555555;
line-height:1.6em;
}
.sidebar .recent-posts .post h4{
position:relative;
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:5px;
}
.sidebar .recent-posts .post h4 a{
color:#1f1f1f;
}
.sidebar .recent-posts .post h4 a:hover{
color:#fbad18;
}
.sidebar .recent-events .post{
position:relative;
min-height:60px;
padding-left:110px;
margin-bottom:20px;
}
.sidebar .recent-events .post:last-child{
margin-bottom:0px;
}
.sidebar .recent-events .post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:90px;
}
.sidebar .recent-events .post .post-thumb img{
display:block;
width:100%;
}
.sidebar .recent-events .post .desc-text{
position:relative;
font-size:14px;
color:#555555;
line-height:1.6em;
}
.sidebar .recent-events .post h4{
position:relative;
font-size:15px;
line-height:1.5em;
color:#222222;
font-weight:500;
top:-5px;
}
.sidebar .recent-events .post h4 a{
color:#1f1f1f;
}
.sidebar .recent-events .post h4 a:hover{
color:#fbad18;
}
.sidebar .recent-events .post .post-meta{
position:relative;
margin-top:-2px;
}
.sidebar .recent-events .post .post-meta li{
position:relative;
display:block;
color:#fbad18;
font-size:13px;
line-height:20px;
font-weight:500;
}
.sidebar .recent-events .post .post-meta li a{
color:#fbad18;
}
.sidebar .recent-events .post .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.sidebar .popular-tags a{
position:relative;
display:inline-block;
line-height:24px;
padding:6px 15px;
margin:0px 5px 7px 0px;
background:#fbad18;
color:#ffffff;
font-size:14px;
font-weight:400;
border-radius:2px;
text-transform:capitalize;
text-align:center;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.sidebar .popular-tags a:hover{
background-color:#222222;
}
.sidebar .list{
position:relative;
}
.sidebar .list li{
position:relative;
margin-bottom:5px;
}
.sidebar .list li a:before{
content: "\f105";
font-family: 'FontAwesome';
position:absolute;
left:0px;
top:0;
display:block;
font-size:14px;
line-height:24px;
}
.sidebar .list li a{
position:relative;
display:block;
color:#555555;
font-size:14px;
font-weight:400;
line-height:24px;
padding:0px 0px 0px 15px;
}
.sidebar .list li a:hover{
color:#fbad18;
}
.sidebar .text-widget{
position:relative;
color:#555555;
}
.sidebar .text-widget .text p{
margin-bottom:15px;
}
.sidebar .text-widget .text p:last-child{
margin-bottom:0px;
}
.sidebar .recent-gallery{
position:relative;
}
.sidebar .recent-gallery .images-outer{
position:relative;
margin:0px -6px;
}
.sidebar .recent-gallery .images-outer .gallery-post{
position:relative;
float:left;
width:33.333%;
padding:0px 6px;
margin-bottom:12px;
transition:all 300ms ease;
}
.sidebar .recent-gallery .images-outer .gallery-post img{
display:block;
width:100%;
transition:all 300ms ease;
}
.sidebar .recent-gallery .images-outer .gallery-post img:hover{
opacity:0.70;
}
/***
====================================================================
Comments Area
====================================================================
***/
.blog-details .comments-area{
position:relative;
margin-bottom:50px;
}
.blog-details .comments-area .comment-box{
position:relative;
border-bottom:1px solid #e0e0e0;
}
.blog-details .comments-area .comment{
position:relative;
padding:0px;
margin-bottom:50px;
}
.blog-details .comments-area .comment .comment-inner{
position:relative;
padding-left:100px;
min-height:80px;
}
.blog-details .comments-area .comment .comment-content{
position:relative;
}
.blog-details .comments-area .comment .author-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
}
.blog-details .comments-area .comment .author-thumb img{
width:100%;
display:block;
}
.blog-details .comments-area .comment .comment-header{
position:relative;
font-size:13px;
color:#999999;
margin-bottom:5px;
}
.blog-details .comments-area .comment .comment-header strong{
color:#222222;
font-size:17px;
font-weight:500;
padding-right:30px;
}
.blog-details .comments-area .comment .text{
line-height:1.7em;
}
.blog-details .comments-area .comment .reply-btn{
position:absolute;
right:0px;
top:-5px;
font-size:12px;
color:#ffffff;
background:#fbad18;
padding:4px 15px;
line-height:20px;
border-radius:2px;
text-transform:uppercase;
}
.blog-details .comments-area .comment .reply-btn:hover{
background:#222222;
}
.blog-details .comment-form .form-group{
margin-bottom:20px;
}
.blog-details .comment-form .btn-style-three{
padding:8px 35px;
}
.blog-details .comment-form textarea{
height:140px;
}
/***
====================================================================
Styled Pagination
====================================================================
***/
.styled-pagination{
position:relative;
}
.styled-pagination li{
position:relative;
display:inline-block;
margin-right:5px;
}
.styled-pagination li a{
position:relative;
display:block;
line-height:24px;
padding:8px 5px;
font-size:14px;
text-transform:capitalize;
min-width:42px;
border:1px solid #e0e0e0;
background:none;
color:#121212;
font-weight:500;
text-align:center;
border-radius:2px;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
}
.styled-pagination li a:hover,
.styled-pagination li a.active{
color:#ffffff;
background:#fbad18;
border-color:#fbad18;
}
/***
====================================================================
Cause Details
====================================================================
***/
.cause-details{
position:relative;
padding:100px 0px;
}
.cause-details .cause-box-two{
margin:0px;
}
.cause-details .cause-box-two .inner-box,
.cause-details .cause-box-two .inner-box:hover{
box-shadow:none !important;
}
.cause-details .cause-box-two .lower-content{
background:none;
padding:20px 0px;
}
.cause-details .cause-box-two .more-info{
margin-bottom:20px;
}
.cause-details .cause-post-controls{
position:relative;
border-top:1px solid #e0e0e0;
padding:30px 0px 0px;
text-align:right;
}
.cause-details .cause-post-controls a{
position:relative;
display:inline-block;
margin-left:7px;
min-width:42px;
min-height:42px;
line-height:24px;
padding:8px 10px;
text-align:center;
border:1px solid #e0e0e0;
border-radius:2px;
color:#999999;
font-size:14px;
}
.cause-details .cause-post-controls a:hover{
color:#555555;
border-color:#555555;
}
/***
====================================================================
Donate Now
====================================================================
***/
.donate-now{
position:relative;
padding:120px 0px 70px;
}
.default-title{
position:relative;
margin-bottom:20px;
padding-bottom:22px;
}
.default-title:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) left bottom no-repeat;
}
.default-title h3{
position:relative;
font-size:17px;
color:#222222;
font-weight:500;
line-height:1.4em;
text-transform:uppercase;
}
.donate-now .left-column{
position:relative;
margin-bottom:30px;
}
.donate-now .right-column{
position:relative;
margin-bottom:30px;
}
.donate-now .select-amount{
position:relative;
}
.donate-now .select-box{
position:relative;
float:left;
width:60px;
text-align:center;
margin:0px 20px 10px 0px;
}
.donate-now .input-box{
position:relative;
float:left;
width:200px;
}
.donate-now .select-box input[type="radio"]{
left:0px;
top:0px;
visibility:hidden;
position:absolute;
opacity:0;
}
.donate-now .select-box label{
display:block;
line-height:22px;
padding:10px 10px;
text-align:center;
font-size:14px;
font-weight:500;
color:#555555;
border:1px solid #e0e0e0;
cursor:pointer;
border-radius:2px;
transition:all 500ms ease;
}
.donate-now .select-box input[type="radio"]:checked+label{
background:#fbad18;
border-color:#fbad18;
color:#ffffff;
}
.default-form .form-group{
position:relative;
margin-bottom:20px;
}
.default-form .form-group .field-label{
display:block;
line-height:24px;
margin-bottom:10px;
color:#222222;
font-weight:500;
font-size:14px;
}
.default-form .form-group .field-label sup,
.default-form .form-group .field-label .req{
color:#ff0000;
font-size:14px;
padding-left:5px;
}
.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form input[type="tel"],
.default-form input[type="url"],
.default-form select,
.default-form textarea{
display:block;
width:100%;
line-height:22px;
height:44px;
font-size:13px;
border:1px solid #e0e0e0;
padding:10px 15px;
background-color:#ffffff;
color:#222222;
border-radius:2px;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.default-form select{
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:#ffffff url(../images/icons/icon-select.png) right center no-repeat;
}
.default-form textarea{
height:92px;
resize:none;
}
.become-volunteer .default-form textarea{
height:160px;
}
.default-form select option{
text-indent:15px;
}
.default-form input:focus,
.default-form select:focus,
.default-form textarea:focus{
border-color:#fbad18;
}
.default-form input.error,
.default-form select.error,
.default-form textarea.error{
border-color:#ff0000 !important;
}
.default-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:12px;
color:#ff0000;
font-weight:500;
}
/***
====================================================================
FAQs Section
====================================================================
***/
.faqs-section{
position:relative;
padding:120px 0px 90px;
}
.faqs-section .title-box{
position:relative;
margin-bottom:20px;
}
.faqs-section .title-box h3{
font-size:16px;
font-weight:500;
text-transform:uppercase;
color:#222222;
}
.faqs-section .column{
position:relative;
margin-bottom:30px;
}
.accordion-box{
position:relative;
}
.accordion-box .block{
position:relative;
margin-bottom:8px;
border-radius:2px;
border:1px solid #f0f0f0;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block.active-block{
border-color:#fbad18;
}
.accordion-box .block .acc-btn{
position:relative;
font-size:15px;
margin-bottom:0px;
cursor:pointer;
background:none;
line-height:26px;
padding:12px 10px 12px 40px;
overflow:hidden;
font-weight:500;
color:#222222;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block .acc-btn.active{
color:#fbad18;
}
.accordion-box .block .icon-outer{
position:absolute;
left:15px;
top:10px;
width:20px;
height:30px;
line-height:30px;
font-size:16px;
color:#222222;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block .icon-outer .icon{
position:absolute;
left:0px;
top:0;
width:100%;
height:30px;
line-height:30px;
font-size:16px;
font-weight:normal;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}
.accordion-box .block .icon-outer .icon-plus{
opacity:1;
}
.accordion-box .block .icon-outer .icon-minus{
opacity:0;
}
.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
opacity:1;
}
.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
opacity:0;
}
.accordion-box .block .acc-btn.active .icon-outer{
color:#fbad18;
}
.accordion-box .block .acc-content{
position:relative;
display:none;
}
.accordion-box .block .acc-content.current{
display:block;
}
.accordion-box .block .content{
position:relative;
font-size:14px;
padding:0px 40px 15px;
color:#555555;
}
.accordion-box .block .content p{
margin-bottom:20px;
line-height:1.7em;
}
.accordion-box .block .content p:last-child{
margin-bottom:0px;
}
.faqs-section .video-box{
position:relative;
width:100%;
margin-bottom:30px;
}
.faqs-section .video-box iframe{
display:block;
width:100%;
}
.faqs-section .info-box{
position:relative;
padding:65px 50px;
text-align:center;
background:#f7f7f7;
}
.faqs-section .info-box h4{
font-size:16px;
margin-bottom:12px;
}
.faqs-section .info-box h4 a{
color:#222222;
font-weight:700;
}
.faqs-section .info-box .text{
margin-bottom:20px;
}
/***
====================================================================
Gallery Sections
====================================================================
***/
.gallery-section{
position:relative;
padding:120px 0px;
}
.gallery-section .filters{
position:relative;
text-align:center;
margin-bottom:40px;
}
.gallery-section .filters li{
position:relative;
display:inline-block;
padding:0px 0px 25px;
line-height:24px;
color:#555555;
cursor:pointer;
text-transform:uppercase;
font-size:13px;
font-weight:500;
margin:0px 15px 10px;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.gallery-section .filters li:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) center bottom no-repeat;
-webkit-transform:scale(0,1);
-ms-transform:scale(0,1);
-o-transform:scale(0,1);
-moz-transform:scale(0,1);
transform:scale(0,1);
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.gallery-section .filters li.active{
color:#fbad18;
}
.gallery-section .filters li.active:after{
-webkit-transform:scale(1);
-ms-transform:scale(1);
-o-transform:scale(1);
-moz-transform:scale(1);
transform:scale(1);
}
.default-portfolio-item{
position:relative;
margin-bottom:30px;
}
.default-portfolio-item.mix{
display:none;
}
.default-portfolio-item .inner-box{
position:relative;
width:100%;
overflow:hidden;
}
.default-portfolio-item .image-box{
position:relative;
display:block;
}
.default-portfolio-item .image-box img{
position:relative;
display:block;
width:100%;
}
.default-portfolio-item .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
text-align:center;
color:#ffffff;
outline:1px solid #ffffff;
outline-offset:-12px;
background:rgba(10,10,10,0.60);
opacity:0;
-webkit-transition:all 700ms ease;
-ms-transition:all 700ms ease;
-o-transition:all 700ms ease;
transition:all 700ms ease;
-webkit-transform:translate(-100%,0%);
-ms-transform:translate(-100%,0%);
-o-transform:translate(-100%,0%);
-moz-transform:translate(-100%,0%);
transform:translate(-100%,0%);
}
.default-portfolio-item .inner-box:hover .overlay-box{
opacity:1;
-webkit-transform:translate(0%);
-ms-transform:translate(0%);
-o-transform:translate(0%);
-moz-transform:translate(0%);
transform:translate(0%);
}
.default-portfolio-item .overlay-inner{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:table;
vertical-align:middle;
padding:10px 30px;
}
.default-portfolio-item .overlay-inner .content{
position:relative;
display:table-cell;
vertical-align:middle;
}
.default-portfolio-item .overlay-inner h3{
font-size:16px;
color:#ffffff;
font-weight:500;
text-transform:uppercase;
margin-bottom:15px;
}
.default-portfolio-item .overlay-inner h3 a{
color:#ffffff;
}
.default-portfolio-item .overlay-inner h3 a:hover{
color:#fbad18;
}
.default-portfolio-item .overlay-inner .image-link{
position:relative;
display:inline-block;
font-size:16px;
color:#ffffff;
width:46px;
height:46px;
border:1px solid #ffffff;
margin:0px 5px;
line-height:44px;
border-radius:50%;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.default-portfolio-item .overlay-inner .image-link .icon{
position:relative;
}
.default-portfolio-item .overlay-inner .image-link:hover{
background:#fbad18;
border-color:#fbad18;
}
.gallery-section .load-more{
position:relative;
padding-top:20px;
}
/***
====================================================================
Volunteer Section
====================================================================
***/
.volunteer-section{
position:relative;
padding:100px 0px 60px;
}
.volunteer-section .content-column{
position:relative;
margin-bottom:40px;
}
.volunteer-section .content-column .bold-text{
font-size:16px;
font-weight:500;
color:#fbad18;
margin-bottom:20px;
}
.volunteer-section .content-column .image-box{
display:block;
margin-bottom:20px;
}
.volunteer-section .content-column .image-box img{
display:block;
width:100%;
}
.volunteer-section .content-column .text{
line-height:1.7em;
}
.volunteer-section .how-to-column{
position:relative;
}
.volunteer-section .how-to-column .inner-box{
position:relative;
padding-left:50px;
}
.volunteer-section .info-block{
position:relative;
margin-bottom:40px;
}
.volunteer-section .info-block .inner{
position:relative;
padding-left:110px;
min-height:80px;
}
.volunteer-section .info-block .icon-box{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
line-height:80px;
font-size:32px;
color:#ffffff;
background:#fbad18;
text-align:center;
overflow:hidden;
}
.volunteer-section .info-block .icon-box .left-top-span{
position:absolute;
left:0px;
top:0px;
border:12px solid transparent;
border-top:12px solid #ffffff;
border-left:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .right-top-span{
position:absolute;
right:0px;
top:0px;
border:12px solid transparent;
border-top:12px solid #ffffff;
border-right:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .left-bottom-span{
position:absolute;
left:0px;
bottom:0px;
border:12px solid transparent;
border-bottom:12px solid #ffffff;
border-left:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .right-bottom-span{
position:absolute;
right:0px;
bottom:0px;
border:12px solid transparent;
border-bottom:12px solid #ffffff;
border-right:12px solid #ffffff;
}
.volunteer-section .info-block h4{
font-size:16px;
line-height:1.3em;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:10px;
}
.volunteer-section .info-block .text{
line-height:1.7em;
}
/***
====================================================================
Become Volunteer Section
====================================================================
***/
.become-volunteer{
position:relative;
padding:80px 0px 60px;
background:#f7f7f7;
}
.normal-title{
position:relative;
margin-bottom:20px;
}
.normal-title h3{
font-size:18px;
text-transform:uppercase;
font-weight:500;
color:#222222;
}
.normal-title h3 strong{
font-weight:700;
}
/***
====================================================================
Events Section
====================================================================
***/
.events-section{
position:relative;
}
.default-event-box{
position:relative;
margin-bottom:50px;
}
.default-event-box .inner-box{
position:relative;
display:block;
background:#ffffff;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-event-box .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.default-event-box .image-box{
position:relative;
}
.default-event-box .image-box img{
display:block;
width:100%;
}
.default-event-box .inner-box .lower-content{
position:relative;
background:#fafafa;
padding:25px 30px;
}
.default-event-box .inner-box .post-header{
position:relative;
margin-bottom:15px;
}
.default-event-box .inner-box h3{
font-size:17px;
font-weight:500;
color:#222222;
}
.default-event-box .inner-box h3 a{
color:#222222;
}
.default-event-box .inner-box h3 a:hover{
color:#fbad18;
}
.default-event-box .post-meta{
position:relative;
}
.default-event-box .post-meta li{
position:relative;
display:inline-block;
margin-right:20px;
color:#fbad18;
font-size:13px;
line-height:24px;
font-weight:500;
}
.default-event-box .post-meta li a{
color:#fbad18;
}
.default-event-box .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.default-event-box .inner-box .post-header .date-box{
position:relative;
display:inline-block;
margin-left:5px;
min-width:50px;
font-size:12px;
text-transform:uppercase;
text-align:center;
line-height:24px;
padding:12px 5px;
font-weight:600;
color:#ffffff;
background:#fbad18;
}
.default-event-box .inner-box .text{
line-height:1.7em;
margin-bottom:20px;
}
.default-event-box .inner-box .link-box{
text-align:right;
}
.default-event-box .inner-box .link-box a{
display:inline-block;
color:#aaaaaa;
font-weight:500;
}
.default-event-box .inner-box .link-box a .fa{
padding-right:5px;
color:#fbad18;
}
.default-event-box .inner-box .link-box a:hover{
color:#fbad18;
}
/***
====================================================================
Event Details
====================================================================
***/
.event-details{
position:relative;
padding:100px 0px;
}
.event-details .default-event-box{
margin:0px;
}
.event-details .default-event-box .inner-box,
.event-details .default-event-box .inner-box:hover{
box-shadow:none !important;
}
.event-details .default-event-box .lower-content{
background:none;
padding:20px 0px;
}
.event-details .default-event-box .post-header{
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
margin-bottom:20px;
}
.event-details .default-event-box .post-header h3{
margin:10px 0px 5px;
}
.event-details .default-event-box .text p{
margin-bottom:15px;
}
.event-details .post-options{
position:relative;
padding-top:10px;
}
.event-details .post-options .share-it{
text-align:right;
padding-top:8px;
}
.event-details .post-options .share-it a{
display:inline-block;
line-height:28px;
width:30px;
height:30px;
margin-left:5px;
font-size:13px;
text-align:center;
border:1px solid #e0e0e0;
color:#cccccc;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.event-details .post-options .share-it a:hover{
background:#02b0e8;
color:#ffffff;
border-color:#02b0e8;
}
/***
====================================================================
Countdown style
====================================================================
***/
.time-counter{
position:relative;
}
.time-counter .time-countdown{
position:relative;
}
.time-counter .time-countdown .counter-column{
position:relative;
display:inline-block;
margin:0px 0px 0px 15px;
min-width:50px;
color:#222222;
background:#ffffff;
font-size:13px;
line-height:30px;
text-transform:capitalize;
text-align:center;
}
.time-counter .time-countdown .counter-column .count{
position:relative;
display:block;
font-size:18px;
line-height:30px;
padding:10px 10px;
background:#fbad18;
color:#ffffff;
font-style:normal;
letter-spacing:1px;
font-weight:700;
border-radius:2px;
}
/***
====================================================================
Blog Details
====================================================================
***/
.blog-details{
position:relative;
padding:100px 0px;
}
.blog-details .news-style-three .lower-content{
background:none;
padding:20px 0px;
}
.blog-details .news-style-three .post-header{
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
margin-bottom:20px;
}
.blog-details .news-style-three .text p{
margin-bottom:15px;
}
.blog-details .post-bottom{
position:relative;
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
}
.blog-details .post-bottom .tags{
font-weight:500;
color:#222222;
}
.blog-details .post-bottom .tags a{
position:relative;
display:inline-block;
font-size:13px;
padding:5px 10px;
margin-left:5px;
color:#ffffff;
line-height:20px;
background:#fbad18;
border-radius:2px;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-details .post-bottom .tags a:hover{
background:#222222;
}
.blog-details .post-bottom .share-it{
text-align:right;
font-weight:500;
color:#222222;
text-transform:uppercase;
}
.blog-details .post-bottom .share-it a{
display:inline-block;
line-height:28px;
width:30px;
height:30px;
margin-left:5px;
font-size:13px;
text-align:center;
border:1px solid #e0e0e0;
color:#cccccc;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-details .post-bottom .share-it a:hover{
background:#02b0e8;
color:#ffffff;
border-color:#02b0e8;
}
/***
====================================================================
Contact Section
====================================================================
***/
.contact-section{
position:relative;
padding:100px 0px 70px;
}
.contact-section .column{
position:relative;
margin-bottom:30px;
}
.contact-section .info-column .info-box{
position:relative;
text-align:center;
display:table;
width:100%;
height:170px;
padding:20px;
margin-bottom:30px;
border:1px solid #e0e0e0;
border-radius:3px;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.contact-section .info-column .info-box:hover{
border-color:#fbad18;
}
.contact-section .info-column:first-child .info-box{
height:370px;
}
.contact-section .info-column .info-box .inner{
position:relative;
display:table-cell;
vertical-align:middle;
}
.contact-section .info-column .info-box .icon{
position:relative;
font-size:32px;
line-height:1em;
color:#fbad18;
margin-bottom:15px;
}
.contact-section .info-column .info-box h4{
font-size:16px;
font-weight:500;
color:#222222;
margin-bottom:0px;
}
.contact-section .contact-form .form-group{
margin-bottom:15px;
}
.contact-section .contact-form .form-group textarea{
height:150px;
}
/***
====================================================================
Map Section
====================================================================
***/
.map-section{
position:relative;
}
.map-canvas{
position:relative;
left:0px;
top:0px;
width:100%;
}
.map-canvas .map-data{
text-align:center;
font-size:13px;
font-weight:400;
}
.map-canvas .map-data h6{
text-transform:uppercase;
font-size:14px;
font-weight:600;
text-align:center;
margin-bottom:5px;
color:#181818;
}
/***
====================================================================
Products Details style
====================================================================
***/
.shop-single{
position:relative;
padding:120px 0px 100px;
}
.product-details .basic-details{
position:relative;
margin-bottom:50px;
}
.product-details .image-column,
.product-details .info-column{
margin-bottom:20px;
}
.product-details .image-column .image-box{
border:1px solid #e0e0e0;
background:#ffffff;
}
.product-details .info-column{
position:relative;
}
.product-details .image-column .image-box img{
position:relative;
display:block;
width:100%;
}
.product-details .basic-details .details-header{
position:relative;
margin-bottom:20px;
}
.product-details .basic-details .details-header h4{
font-size:18px;
font-weight:500;
margin:0px 0px;
line-height:1.4em;
color:#222222;
margin-bottom:5px;
}
.product-details .basic-details .details-header h4 a{
color:#333333;
}
.product-details .basic-details .details-header .rating{
font-size:14px;
color:#fbad18;
margin-bottom:5px;
}
.product-details .basic-details .details-header .rating .fa{
display:inline-block;
margin-right:2px;
}
.product-details .basic-details .details-header .rating .txt{
font-size:14px;
padding-right:15px;
font-weight:500;
color:#222222;
text-transform:uppercase;
}
.product-details .basic-details .details-header .item-price{
font-size:18px;
font-weight:600;
color:#222222;
line-height:24px;
letter-spacing:1px;
}
.product-details .basic-details .text{
margin-bottom:25px;
line-height:1.6em;
}
.product-details .basic-details .text p{
margin-bottom:15px;
}
.product-details .basic-details .item-categories{
margin:0px 0px 30px;
font-size:13px;
}
.product-details .basic-details .item-categories a{
position:relative;
color:#fbad18;
text-transform:uppercase;
}
.product-details .basic-details .availablity{
position:relative;
line-height:32px;
margin-bottom:5px;
font-size:13px;
font-weight:500;
color:#222222;
}
.product-details .basic-details .availablity strong{
font-size:14px;
letter-spacing:2px;
color:#fbad18;
font-weight:600;
text-transform:uppercase;
}
.quantity-spinner{
position:relative;
display:block;
width:150px;
}
.product-details .quantity-spinner{
margin-bottom:20px;
float:left;
margin-right:20px;
}
.quantity-spinner input{
position:relative;
display:block;
width:45px;
line-height:24px;
padding:9px 10px;
margin:0px 53px;
font-weight:500;
height:42px;
border:1px solid #e0e0e0;
text-align:center;
border-radius:2px;
}
.quantity-spinner .minus{
position:absolute;
left:0px;
top:0px;
width:45px;
height:42px;
line-height:22px;
padding:10px 10px;
text-align:center;
background:#ffffff;
font-weight:400;
color:#555555;
font-size:16px;
border:1px solid #e0e0e0;
z-index:1;
}
.quantity-spinner .plus{
position:absolute;
right:0px;
top:0px;
width:45px;
height:42px;
line-height:22px;
padding:10px 10px;
text-align:center;
font-weight:400;
background:#ffffff;
color:#555555;
font-size:16px;
border:1px solid #e0e0e0;
z-index:1;
}
.product-details .basic-details .item-quantity .field-label{
float:left;
font-weight:700;
font-size:14px;
line-height:32px;
display:inline-block;
padding-right:20px;
}
.product-details .basic-details .theme-btn{
padding:8px 30px;
margin-right:10px;
margin-bottom:10px;
}
.product-details .basic-details .theme-btn .icon{
font-size:16px;
font-weight:normal;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.product-info-tabs{
position:relative;
margin-bottom:70px;
}
.prod-tabs{
position:relative;
}
.prod-tabs .tab-btns{
position:relative;
top:1px;
z-index:1;
}
.prod-tabs .tab-btns .tab-btn{
position:relative;
float:left;
font-size:14px;
color:#222222;
text-transform:capitalize;
font-weight:500;
padding:10px 40px;
line-height:24px;
border:1px solid #f0f0f0;
background:#f0f0f0;
cursor:pointer;
}
.prod-tabs .tab-btns .tab-btn.active-btn{
background:#ffffff;
}
.prod-tabs .tabs-container{
position:relative;
border:1px solid #f0f0f0;
}
.prod-tabs .tabs-container .tab{
position:relative;
padding:30px 30px;
display:none;
}
.prod-tabs .tabs-container .tab.active-tab{
display:block;
}
.prod-tabs .tabs-container .tab p,
.prod-tabs .tabs-container .tab h2,
.prod-tabs .tabs-container .tab h3,
.prod-tabs .tabs-container .tab h4,
.prod-tabs .tabs-container .tab h5,
.prod-tabs .tabs-container .tab h6{
margin-bottom:15px;
}
.prod-tabs .tabs-container .tab h3{
font-size:16px;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:15px;
}
.prod-tabs .tabs-container .tab h4{
font-size:14px;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:15px;
}
.prod-tabs .reviews-container{
position:relative;
}
.prod-tabs .reviews-container .review-box{
position:relative;
margin-bottom:30px;
padding-left:100px;
min-height:100px;
}
.prod-tabs .reviews-container .rev-thumb{
position:absolute;
left:0px;
top:0px;
width:82px;
height:82px;
border:1px solid #e0e0e0;
background:#ffffff;
border-radius:3px;
}
.prod-tabs .reviews-container .rev-thumb img{
display:block;
width:80px;
height:80px;
border-radius:3px;
}
.prod-tabs .reviews-container .rev-content{
position:relative;
padding:15px;
border:1px solid #e0e0e0;
background:#ffffff;
}
.prod-tabs .reviews-container .rating{
color:#ff9c01;
font-size:13px;
}
.prod-tabs .reviews-container .rating .fa{
margin-right:1px;
}
.prod-tabs .reviews-container .rev-info{
font-size:12px;
letter-spacing:1px;
margin-bottom:10px;
}
.prod-tabs .reviews-container .rev-text{
font-size:14px;
}
.prod-tabs .add-review{
position:relative;
margin:30px 0px 20px;
font-size:14px;
}
.prod-tabs .add-review .rating{
position:relative;
padding-top:8px;
}
.prod-tabs .add-review .rating .rate-box{
position:relative;
display:inline-block;
margin-right:10px;
font-size:14px;
color:#555555;
}
.prod-tabs .add-review .rating .rate-box:hover,
.prod-tabs .add-review .rating .rate-box:focus,
.prod-tabs .add-review .rating .rate-box:active{
color:#fbad18;
}
.prod-tabs .add-review label{
position:relative;
display:block;
font-size:14px;
margin-bottom:5px;
font-weight:400;
color:#303030;
}
.prod-tabs .add-review h3{
margin-bottom:20px;
}
.prod-tabs .add-review .form-group{
position:relative;
margin-bottom:20px;
}
.prod-tabs .add-review .form-group input[type="text"],
.prod-tabs .add-review .form-group input[type="password"],
.prod-tabs .add-review .form-group input[type="tel"],
.prod-tabs .add-review .form-group input[type="email"],
.prod-tabs .add-review .form-group select{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:9px 15px;
color:#222222;
border:1px solid #e0e0e0;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.prod-tabs .add-review .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:8px 15px;
color:#222222;
border:1px solid #e0e0e0;
height:150px;
resize:none;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.prod-tabs .add-review button{
padding:8px 35px;
}
/***
====================================================================
Cart Section style
====================================================================
***/
.cart-section{
position:relative;
padding:120px 0px;
}
.cart-outer{
position:relative;
margin-bottom:50px;
}
.cart-outer .table-outer{
position:relative;
width:100%;
overflow-x:auto;
}
.cart-outer .cart-table{
width:100%;
min-width:900px;
}
.cart-table .cart-header{
position:relative;
width:100%;
text-transform:uppercase;
font-size:14px;
font-weight:500;
background:#fafafa;
color:#222222;
}
.cart-table thead tr{
position:relative;
width:100%;
}
.cart-table thead tr th{
line-height:24px;
padding:16px 30px;
min-width:120px;
font-weight:500;
font-size:14px;
}
.cart-table tbody tr td{
line-height:24px;
padding:20px 30px;
min-width:120px;
}
.cart-table tbody tr td .prod-image{
position:relative;
width:118px;
}
.cart-table tbody tr .prod-thumb{
padding-left:0px;
}
.cart-table tbody tr td .prod-image img{
display:block;
max-width:100%;
}
.cart-table tbody tr td .prod-image .remove-item{
position:absolute;
right:-5px;
top:-5px;
width:20px;
height:20px;
line-height:18px;
font-size:10px;
color:#ffffff;
background:#222222;
border-radius:50%;
text-align:center;
}
.cart-table tbody tr td .prod-image .remove-item:hover{
background:#fbad18;
}
.cart-table tbody tr td h4{
font-size:14px;
color:#222222;
font-weight:500;
text-transform:uppercase;
}
.cart-table tbody tr td .rating{
font-size:13px;
color:#fbad18;
}
.cart-table tbody tr td .rating .fa{
display:inline-block;
margin-right:3px;
font-weight:normal;
}
.cart-table tbody tr{
border-bottom:1px solid #e0e0e0;
}
.cart-table tbody tr:last-child{
border-bottom:none;
}
.cart-table tbody tr td{
vertical-align:middle;
}
.cart-table tbody tr td .quantity-spinner{
position:relative;
}
.cart-section .price-calculator{
position:relative;
}
.cart-section .coupon-panel{
position:relative;
padding:15px 30px;
line-height:26px;
background:#fafafa;
color:#222222;
cursor:pointer;
}
.cart-section .coupon-panel .icon{
position:absolute;
right:30px;
top:50%;
margin-top:-13px;
line-height:26px;
}
.cart-section .coupon-panel .fa{
font-size:16px;
}
.cart-section .coupon-panel .up{
display:none;
}
.cart-section .coupon-panel.active-panel .up{
display:block;
}
.cart-section .coupon-panel.active-panel .down{
display:none;
}
.cart-section .coupon-outer,
.cart-section .coupon-outer .apply-coupon{
position:relative;
}
.cart-section .coupon-content{
position:relative;
padding:20px 30px;
background:#f0f0f0;
display:none;
}
.cart-section .coupon-outer .form-group{
position:relative;
margin:0px;
padding-right:170px;
width:400px;
max-width:100%;
}
.cart-section .coupon-outer .form-group input[type="text"]{
display:block;
line-height:24px;
padding:9px 15px;
border:1px solid #e0e0e0;
height:44px;
border-radius:2px;
width:100%;
background:#ffffff;
}
.cart-section .coupon-outer .form-group .theme-btn{
position:absolute;
right:0px;
top:0px;
padding:8px 10px;
font-size:13px;
width:160px;
text-align:center;
}
.cart-section .price-calculator{
position:relative;
text-align:right;
}
.cart-section .price-calculator .totals-table{
margin-bottom:20px;
}
.cart-section .price-calculator .totals-table li{
margin-bottom:5px;
}
.cart-section .price-calculator .totals-table li .col{
position:relative;
float:left;
width:60%;
line-height:24px;
}
.cart-section .price-calculator .totals-table li .bold-text{
font-weight:500;
color:#222222;
width:40%;
}
.cart-section .cart-options .theme-btn{
display:block;
margin:0px 0 10px;
}
a.zt-button.color-blue {
background-color: rgb(255, 235, 59);
border: 1px solid #fff;
color: #353535;
}
.w3-btn, .w3-btn:link, .w3-btn:visited {
color: #FFFFFF;
background-color: #4CAF50;
}
.blue {
color:#2196F3;
}
.center {
text-align: center;
padding-top: 10px;
font-weight: 900;
}
.width{
width:100%;
height:100%;
}
.how{
position: relative;
padding: 0px 0px 55px;
}
.left{
right:-450px;
}
@media (min-width: 768px) {
.navbar-nav.navbar-center {
position: absolute;
left: 50%;
top: 40px;
}
}
.navleft {
float: right!important;
margin-right: 60px;
margin-top: 36px;
}
.navbarright {
float: right!important;
text-align: right;
margin-top: 30px;
}
.af {
display: inline-block;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
margin-left: 15px;
}
.igm
{
display: inline-block;
max-width: 100%;
height: auto;
margin-left:8px;
}
.iph
{
margin-left:92px;
}
.iph1
{
margin-right:-70px;
}
:hover, :focus {
color: none;
}
.nav>li>a:focus, .nav>li>a:hover {
text-decoration: none;
background-color:transparent !important;
}
.btn {
display: inline-block;
padding: 9px 22px;
margin-bottom: 0;
font-size: 20px;
font-weight: 600;
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;
left: -90px !important;
top: -8px;
}
#login-dp{
min-width: 300px;
padding: 14px 14px 0;
overflow:hidden;
background-color:rgb(255, 255, 255);
border-color: #5ca2bf;
border-width: medium;
}
#login-dp .help-block{
font-size:12px
}
#login-dp .bottom{
background-color:rgba(255,255,255,.8);
border-top:1px solid #ddd;
clear:both;
padding:14px;
}
#login-dp .social-buttons{
margin:12px 0
}
#login-dp .social-buttons a{
width: 49%;
}
#login-dp .form-group {
margin-bottom: 10px;
}
.btn-fb{
color: #fff;
background-color:#3b5998;
}
.btn-fb:hover{
color: #fff;
background-color:#496ebc
}
.btn-tw{
color: #fff;
background-color:#55acee;
}
.btn-tw:hover{
color: #fff;
background-color:#59b5fa;
}
@media(max-width:768px){
#login-dp{
background-color: inherit;
color: #fff;
}
#login-dp .bottom{
background-color: inherit;
border-top:0 none;
}
}
.iph2
{
font-weight: 600;
margin-left: 13px;
}
.dp {
min-height:35px;
}
.form-control {
display: block;
width: 150px;
height: 30px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #ffffff;
background-color: #5ca2bf;
background-image: none;
border: 1px solid #e2e8f1;
/* border-radius: 5px; */
-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;
}
.bnt{
float: right;
border: 2px solid #5ca2bf;
background: #ffffff;
width: 70px;
border-radius: 7px;
}
.open>a:focus, .nav .open>a:hover {
background-color: #5ca2bf;
border-color: #337ab7;
color: white;
}
.clr
{
color:#5ca2bf
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
background-color: #5ca2bf;
border-color: #337ab7;
color: white;
padding: 10px;
}
.dropdown-menu {
margin:10px 0 0 !important;
}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-radius: 9px;
}
.fa {
display: inline-block;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
margin-left: 0px;
}
.panel-info>.panel-heading {
color: #ffffff;
background-color: #5ca2bf;
border-color: #bce8f1;
text-align: center;
font-size: 20px;
}
.panel-danger>.panel-heading {
color: #ffffff;
background-color: #ff6f69;
border-color: #ebccd1;
text-align: center;
font-size: 20px;
}
.panel-warning>.panel-heading {
color: #ffffff;
background-color: #ffcc5c;
border-color: #faebcc;
text-align: center;
font-size: 20px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid rgba(37, 28, 86, 0);
border-top-left-radius: 9px;
border-top-right-radius: 9px;
}
.rcb
{
background-color:rgba(92, 162, 191, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.rcb2
{
background-color: rgba(255, 111, 105, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.rcb3
{
background-color: rgba(255, 204, 92, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 15px !important;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.kfc {
height:450px;
padding-top: 60px;
}
h2.border-topp {
width: 100%;
margin: 0;
padding: 0;
text-align: center;
}
h2.border-topp:after {
display: inline-block;
margin: 0 0 8px 20px;
height: 36px;
content: " ";
text-shadow: none;
background-image: url("../../images/y2.png");
width: 425px;
}
h2.border-topp:before {
display: inline-block;
margin: 0 20px 8px 0;
height: 36px;
content: " ";
text-shadow: none;
background-image: url("../../images/y1.png");
width: 425px;
}
.btn-warning {
color: #fff;
background-color: #fbad18;
border-color: #eea236;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
margin-right: 26px;
}
.zo
{
width: 29.333333%;
left: 70px;
}
.om
{
position: inherit;
top: -16px;
left: -2px;
}
.btn-style-new
{
position: relative;
padding: 9px 40px;
line-height: 24px;
text-transform: uppercase;
background: #000;
color: #ffffff !important;
border:#000;
font-size: 13px;
font-weight: 600;
border-radius: 2px;
}
.tp-bullets {
bottom: 19% !important;
z-index: 1000;
position: absolute;
-ms-filter: "alpha(opacity=100)";
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-webkit-transition: opacity .2s ease-out;
-moz-transition: opacity .2s ease-out;
-o-transition: opacity .2s ease-out;
-ms-transition: opacity .2s ease-out;
-webkit-transform: translateZ(5px);
}
.z0 {
width: 29.333333%;
left: 220px;
}
.royal {
background-color: rgba(255, 111, 105, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height: 240px;
}
.royal2 {
background-color: rgba(255, 204, 92, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height: 225px;
}
.text-white{
color:#fff;
} | public/css/frontend/style.css | 1. Fonts
2. Reset
3. Global
4. Main Header
5. Main Slider
6. Who We Are
7. Recent Causes
8. How To Contribute
9. Call to Action
10. Latest Events
11. Sponsors Style One
12. News Section
13. Main Footer
14. Fun Facts Section
15. Products Section
16. Who We Are
17. What We Think
18. Sponsors Style Two
19. Our Team
20. Causes
21. Single Cause
22. Events
23. Single Event
24. Donate
25. Become VOlunteer
26. FAQs
27. 404 Page
28. Gallery
29. Sidebar
30. Sidebar Widgets
31. Shop
32. Shop Single
33. Shopping Cart
34. Contact Us
35. Map Section
**********************************************/
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i|Raleway:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery.fancybox.css');
@import url('jquery.mCustomScrollbar.min.css');
@import url('jquery.bootstrap-touchspin.css');
/***
====================================================================
Reset
====================================================================
***/
* {
margin:0px;
padding:0px;
border:none;
outline:none;
}
/***
====================================================================
Global Settings
====================================================================
***/
body {
font-family: 'Lato', sans-serif;
font-size:14px;
color:#555555;
line-height:1.7em;
font-weight:400;
background:#ffffff;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
a{
text-decoration:none;
cursor:pointer;
color:#000;
}
a:hover,a:focus,a:visited{
text-decoration:none;
outline:none;
}
h1,h2,h3,h4,h5,h6 {
position:relative;
font-family: 'Lato', sans-serif;
font-weight:normal;
margin:0px;
background:none;
line-height:1.6em;
}
input,button,select,textarea{
font-family: 'Lato', sans-serif;
}
p{
position:relative;
line-height:1.8em;
}
.strike-through{
text-decoration:line-through;
}
.auto-container{
position:static;
max-width:1200px;
padding:0px 15px;
margin:0 auto;
}
.medium-container{
max-width:850px;
}
.page-wrapper{
position:relative;
margin:0 auto;
width:100%;
min-width:300px;
}
ul,li{
list-style:none;
padding:0px;
margin:0px;
}
.theme-btn{
display:inline-block;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.centered{
text-align:center;
}
.btn-style-one{
position:relative;
padding:9px 40px;
line-height:24px;
text-transform:uppercase;
background:none;
color:#ffffff !important;
border:2px solid #ffffff;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-one:hover{
background:#ffffff;
color:#fbad18 !important;
}
.btn-style-two{
position:relative;
padding:9px 40px;
line-height:24px;
text-transform:uppercase;
background:#fbad18;
color:#ffffff !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-two:hover{
background:#222222;
color:#ffffff !important;
border-color:#222222;
}
.btn-style-three{
position:relative;
padding:8px 30px;
line-height:24px;
text-transform:uppercase;
background:#fbad18;
color:#ffffff !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-three:hover{
background:#222222;
color:#ffffff !important;
border-color:#222222;
}
.btn-style-four{
position:relative;
padding:8px 30px;
line-height:24px;
text-transform:uppercase;
background:none;
color:#222222 !important;
border:2px solid #fbad18;
font-size:13px;
font-weight:600;
border-radius:2px;
}
.btn-style-four:hover{
background:#fbad18;
color:#ffffff !important;
}
.theme-btn .icon-left{
padding-right:10px;
}
.theme-btn .icon-right{
padding-left:10px;
}
.theme_color{
color:#fbad18;
}
.light-font{
font-weight:300;
}
.regular-font{
font-weight:400;
}
.semibold-font{
font-weight:600;
}
.bold-font{
font-weight:700;
}
.ex-bold-font{
font-weight:800;
}
.heavy-font{
font-weight:900;
}
.bg-lightgrey{
background-color:#f7f7f7 !important;
}
.no-bg{
background:none !important;
}
.text-uppercase{
text-transform:uppercase !important;
}
.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.GIF);}
img{
display:inline-block;
max-width:100%;
height:auto;
}
/***
====================================================================
Scroll To Top style
====================================================================
***/
.scroll-to-top{
position:fixed;
bottom:15px;
right:15px;
width:40px;
height:40px;
color:#ffffff;
font-size:13px;
text-transform:uppercase;
line-height:38px;
text-align:center;
z-index:100;
cursor:pointer;
border-radius:50%;
background:#0a0a0a;
display:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.scroll-to-top:hover{
color:#ffffff;
background:#fbad18;
}
/***
====================================================================
Main Header style
====================================================================
***/
.main-header{
position:relative;
left:0px;
top:0px;
z-index:999;
width:100%;
background:#ffffff;
}
.main-header .auto-container{
position:relative;
}
.main-header .header-top{
position:relative;
background:#222222;
color:#ffffff;
padding:0px 0px;
}
.main-header .header-top .top-left{
position:relative;
float:left;
}
.main-header .header-top .top-left ul li{
position:relative;
display:inline-block;
line-height:24px;
padding-left:25px;
margin-right:40px;
color:#ffffff;
}
.main-header .header-top .top-left ul li .icon{
position:absolute;
left:0px;
top:1px;
font-size:14px;
line-height:24px;
}
.main-header .header-top .top-left ul li a:hover{
color:#fff;
}
.main-header .header-top .top-left ul li a{
position:relative;
color:#ffffff;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-header .header-top .top-left ul li a:hover{
color:#fbad18;
}
.main-header .header-top .top-right{
position:relative;
float:right;
}
.header-top .social-icon{
position:relative;
}
.header-top .social-icon a{
position: relative;
display: inline-block;
text-align: center;
margin-left: 20px;
line-height: 24px;
font-size: 13px;
color: #ffffff;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.header-top .social-icon a:hover{
color:#fbad18;
}
.main-header .main-box{
position:relative;
padding:0px 0px;
left:0px;
top:0px;
width:100%;
background:#ffffff;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header.fixed-header .main-box{
position:fixed;
border-bottom:1px solid #e0e0e0;
padding:0px 0px;
z-index:999;
opacity:1;
visibility:visible;
-ms-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-op-animation-name: fadeInDown;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-ms-animation-duration: 500ms;
-moz-animation-duration: 500ms;
-op-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-ms-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-op-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-ms-animation-iteration-count: 1;
-moz-animation-iteration-count: 1;
-op-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.main-header .main-box .outer-container{
position:relative;
}
.main-header .main-box .logo-box{
position: absolute;
padding: 15px 0px;
z-index: 10;
height: 169px;
width: 100px;
top: -3px;
left: -63px;
}
.fixed-header .main-box .logo-box{
padding:5px 0px;
}
.main-header .main-box .logo-box .logo img{
display:inline-block;
max-width:100%;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header .nav-toggler{
position:absolute;
right:0px;
top:50%;
margin-top:-18px;
display:none;
}
.main-header .nav-toggler button{
position:relative;
display:block;
height:36px;
width:42px;
background:#fbad18;
color:#ffffff;
text-align:center;
font-size:16px;
line-height:34px;
border:1px solid #fbad18;
border-radius:3px;
font-weight:normal;
}
.main-header .nav-outer{
position:relative;
right: -73px;
}
.main-menu{
position:relative;
font-family: 'Lato', sans-serif;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navbar-collapse{
padding:0px;
}
.main-menu .navigation{
position:relative;
margin:0px;
}
.main-menu .navigation > li{
position:relative;
display:inline-block;
padding:20px 0px;
margin-left:28px;
}
.fixed-header .main-menu .navigation > li{
padding:10px 0px;
}
.main-menu .navigation > li > a{
position:relative;
display:block;
padding:20px 0px;
color:#fbad18;
text-align:center;
line-height:30px;
text-transform:lowercase;
letter-spacing:0px;
font-weight:500;
opacity:1;
font-size:17px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
/*.main-menu .navigation > li.dropdown > a{
padding-right:15px;
}
.main-menu .navigation > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f107";
position:absolute;
right:0px;
top:16px;
width:10px;
height:30px;
display:block;
line-height:30px;
font-size:14px;
font-weight:normal;
}*/
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a{
color:#000;
opacity:1;
}
.main-menu .navigation > li:hover > a:before,
.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li.current-menu-item > a:before{
width:100%;
}
.main-menu .navigation > li > ul{
position:absolute;
left:0px;
top:120%;
width:220px;
padding:0px;
z-index:100;
display:none;
background:#ffffff;
border-top:3px solid #222222;
transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(0,0,0,0.10);
}
.main-menu .navigation > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > a{
position:relative;
display:block;
padding:10px 15px;
line-height:24px;
font-weight:400;
font-size:13px;
text-transform:capitalize;
color:#272727;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li:hover > a{
color:#ffffff;
background:#fbad18;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:10px;
width:10px;
height:20px;
display:block;
color:#253d4a;
line-height:20px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li > ul > li > ul{
position:absolute;
left:100%;
top:20px;
width:220px;
padding:0px;
z-index:100;
display:none;
background:#ffffff;
border-top:3px solid #222222;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(0,0,0,0.10);
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > ul > li > a{
position:relative;
display:block;
padding:10px 15px;
line-height:24px;
font-weight:400;
font-size:13px;
text-transform:capitalize;
color:#272727;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a{
color:#ffffff;
background:#fbad18;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:11px;
width:10px;
height:20px;
display:block;
color:#272727;
line-height:20px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:0;
transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
position:absolute;
right:10px;
top:6px;
width:34px;
height:30px;
border:1px solid #ffffff;
background:url(../images/icons/submenu-icon.png) center center no-repeat;
background-size:20px;
cursor:pointer;
z-index:5;
display:none;
}
/***
====================================================================
Hidden Sidebar style
====================================================================
***/
.hidden-bar{
position: fixed;
top: 0;
width: 305px;
height: 100%;
background: #272727;
z-index: 9999;
transition: all 700ms ease;
-webkit-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
-moz-transition: all 700ms ease;
}
.hidden-bar .mCSB_inside > .mCSB_container{
margin-right:0px;
}
.hidden-bar.right-align {
right: -400px;
}
.hidden-bar.right-align.visible-sidebar{
right:0px;
}
.hidden-bar.right-align .hidden-bar-closer {
left: 0px;
}
.hidden-bar.left-align {
left: -400px;
}
.hidden-bar.left-align.visible-sidebar {
left: 0px;
}
.hidden-bar.left-align .hidden-bar-closer {
right: -20px;
}
.hidden-bar .hidden-bar-closer {
width: 40px;
height: 40px;
position: absolute;
top: 0;
background: rgba(255,255,255,0.80);
color: #272727;
border-radius: 2px;
text-align: center;
line-height: 38px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
z-index: 999999;
}
.hidden-bar .hidden-bar-closer:hover {
background: #fbad18;
}
.hidden-bar .hidden-bar-closer:hover .btn {
color: #ffffff;
}
.hidden-bar .hidden-bar-closer .btn {
background-color: transparent;
border: none;
outline: none;
font-size: 14px;
}
.hidden-bar .social-icons {
text-align: center;
margin: 50px 0px 30px;
}
.hidden-bar .social-icons ul {
font-size: 0;
margin-left: -5px;
margin-right: -5px;
}
.hidden-bar .social-icons ul li {
display: inline-block;
padding: 0 5px;
}
.hidden-bar .social-icons ul li a {
display: block;
width: 36px;
height: 36px;
font-size: 16px;
line-height: 36px;
text-align: center;
background: #fbad18;
color: #ffffff;
border-radius: 5px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.hidden-bar .social-icons ul li a:hover {
background: #ffffff;
color:#fbad18;
}
.hidden-bar-wrapper {
height: 100%;
}
.hidden-bar .logo {
padding: 30px 0px;
background: #272727;
}
.hidden-bar .logo img{
display:inline-block;
max-width:100%;
}
.hidden-bar .side-menu {
background-color: transparent;
padding: 0;
font-size:13px;
letter-spacing:1px;
}
.hidden-bar .side-menu ul li ul a {
background: transparent;
}
.hidden-bar .side-menu ul li ul li ul li a {
background: transparent;
}
.hidden-bar .side-menu a.current {
color: #fff;
}
.hidden-bar .side-menu li.current > a {
color: #fff;
}
.hidden-bar .side-menu ul li a {
background: transparent;
color: #ffffff;
display: block;
font-weight: 500;
text-transform: uppercase;
border-top: 1px solid rgba(255,255,255,0.30);
border-bottom: 1px solid rgba(255,255,255,0.30);
padding: 10px 15px 10px 20px;
position: relative;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.hidden-bar .side-menu ul li a:hover,
.hidden-bar .side-menu ul > li.current > a,
.hidden-bar .side-menu ul > li > ul > li.current > a {
background: rgba(255,255,255,0.10);
color: #ffffff;
}
.hidden-bar .side-menu ul li a .btn.expander {
background: none;
color: #ffffff;
border: 1px solid rgba(255,255,255,0.80);
padding: 5px 10px;
font-size: 14px;
border-radius: 0px;
position: absolute;
top: 6px;
right: 20px;
outline: none;
}
/***
====================================================================
Main Slider style
====================================================================
***/
.main-slider{
position:relative;
z-index:10;
}
.main-slider .tp-caption{
z-index:5 ;
}
.main-slider .text{
font-weight:400;
line-height:1.8em;
color:#ffffff;
font-size:20px;
}
.main-slider h2{
font-size:48px;
color:#ffffff;
font-weight:700;
text-transform:uppercase;
line-height:1.3em;
letter-spacing:2px;
font-family: 'Raleway', sans-serif;
}
.main-slider .btn-style-one,
.main-slider .btn-style-two{
border-width:2px !important;
}
.main-slider .tp-bullets.preview3 .bullet{
background:none !important;
width:10px !important;
height:10px !important;
border:2px solid #ffffff!important;
border-radius:50%!important;
margin:0px 7px;
}
.main-slider .tp-bullets.preview3 .bullet:hover,
.main-slider .tp-bullets.preview3 .bullet.selected{
background:#ffffff !important;
}
.main-slider .tparrows.preview3,
.main-slider .tparrows.preview3{
background:none !important;
width:54px !important;
overflow:hidden;
margin-top:0px !important;
height:54px !important;
}
.main-slider .tparrows.preview3::after{
top:0px;
background:rgba(0,0,0,0);
color:#ffffff;
font-size:22px;
height:54px !important;
line-height:52px;
width:50px !important;
border:2px solid #ffffff;
padding:0px;
border-radius:2px;
}
.main-slider .tparrows.tp-leftarrow.preview3::after{
content: '\f104';
font-family:'FontAwesome';
}
.main-slider .tparrows.tp-rightarrow.preview3::after{
content: '\f105';
font-family:'FontAwesome';
}
.main-slider .tparrows.preview3.tp-leftarrow{
left:30px !important;
}
.main-slider .tparrows.preview3.tp-rightarrow{
right:30px !important;
}
.main-slider .tparrows.preview3:hover::after{
background:#fbad18;
border-color:#fbad18;
}
.main-slider .tparrows.preview3 .tp-arr-iwrapper{
visibility:hidden;
opacity:0;
display:none;
}
.main-slider .tp-bannertimer{
display:none !important;
}
/***
====================================================================
Section Title
====================================================================
***/
.sec-title{
position:relative;
margin-bottom:40px;
}
.sec-title.centered{
text-align:center;
}
.sec-title h2{
font-family:'Raleway',sans-serif;
font-size:36px;
font-weight:700;
letter-spacing:1px;
color:#222222;
text-transform:uppercase;
line-height:1.4em;
}
.sec-title .separator{
position:relative;
display:block;
width:100%;
height:30px;
background:url(../images/icons/separator-one.png) left bottom no-repeat;
}
.sec-title.centered .separator{
background-position: center bottom;
}
.sec-title .desc-text{
position:relative;
line-height:1.8em;
padding-top:20px;
}
.sec-title.centered .desc-text{
max-width:860px;
margin:0 auto;
}
/***
====================================================================
Who We Are
====================================================================
***/
.who-we-are{
position:relative;
padding:120px 0px 80px;
}
.who-we-are .image-column,
.who-we-are .content-column{
position:relative;
margin-bottom:40px;
}
.who-we-are .image-column .image-box{
position:relative;
display:block;
}
.who-we-are .image-column img{
display:block;
width:100%;
}
.who-we-are .content-column .inner{
position:relative;
padding-left:20px;
}
.who-we-are .content-column h3{
font-size:24px;
line-height:1.3em;
font-weight:700;
margin-bottom:15px;
color:#fbad18;
}
.who-we-are .content-column .strong-text{
font-size:16px;
font-weight:700;
line-height:1.8em;
margin-bottom:15px;
color:#222222;
}
.who-we-are .content-column .text{
font-size:14px;
line-height:1.8em;
margin-bottom:30px;
color:#555555;
}
/***
====================================================================
Tabs Box / Tabs Syle One
====================================================================
***/
.tabs-box{
position:relative;
}
.tabs-box .tab-buttons,
.tabs-box .tabs-content{
position:relative;
}
.tabs-style-one .tab-buttons{
text-align:center;
margin-bottom:50px;
}
.tabs-style-one .tab-buttons .tab-btn{
position:relative;
display:inline-block;
line-height:30px;
padding:0px 0px 22px 35px;
margin:0px 25px;
text-transform:uppercase;
color:#222222;
font-weight:500;
cursor:pointer;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.tabs-style-one .tab-buttons .tab-btn:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:20px;
background:url(../images/icons/separator-one.png) center bottom no-repeat;
opacity:0;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.tabs-style-one .tab-buttons .tab-btn .icon{
position:absolute;
left:0px;
top:0px;
display:inline-block;
font-size:24px;
line-height:30px;
padding-right:5px;
}
.tabs-style-one .tab-buttons .tab-btn.active-btn{
color:#fbad18;
}
.tabs-style-one .tab-buttons .tab-btn.active-btn:after{
opacity:1;
}
.tabs-box .tabs-content .tab{
display:none;
}
.tabs-box .tabs-content .active-tab{
display:block;
}
/***
====================================================================
Recent Causes
====================================================================
***/
.recent-causes-section{
position:relative;
padding:100px 0px 70px;
background:#f7f7f7;
}
.default-cause-box{
position:relative;
margin-bottom:30px;
}
.default-cause-box .inner-box{
position:relative;
display:block;
text-align:center;
background:#ffffff;
border:1px solid #e0e0e0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-cause-box .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.default-cause-box .image-box{
position:relative;
}
.default-cause-box .image-box img{
display:block;
width:100%;
}
.default-cause-box .inner-box .progress-box{
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:5px;
}
.default-cause-box .inner-box .progress-box .bar{
position:relative;
width:100%;
height:5px;
background:rgba(204,204,204,0.60);
}
.default-cause-box .inner-box .progress-box .bar-inner{
position:relative;
display:block;
width:0px;
height:5px;
background:#fbad18;
-webkit-transition:all 1500ms ease;
-ms-transition:all 1500ms ease;
-o-transition:all 1500ms ease;
-moz-transition:all 1500ms ease;
transition:all 1500ms ease;
}
.default-cause-box .inner-box .progress-box .count-text{
position:absolute;
right:0px;
margin-right:-23px;
bottom:15px;
width:46px;
height:26px;
background:#fbad18;
color:#ffffff;
line-height:26px;
font-size:13px;
font-weight:600;
border-radius:2px;
opacity:0;
-webkit-transition:all 1000ms ease;
-ms-transition:all 1000ms ease;
-o-transition:all 1000ms ease;
-moz-transition:all 1000ms ease;
transition:all 1000ms ease;
}
.default-cause-box .inner-box .progress-box .bar-inner.counted .count-text{
opacity:1;
}
.default-cause-box .inner-box .progress-box .count-text:after{
content:'';
position:absolute;
left:50%;
margin-left:-4px;
top:100%;
border:4px solid transparent;
border-top:5px solid #fbad18;
}
.default-cause-box .inner-box .lower-content{
position:relative;
padding:25px;
}
.default-cause-box .inner-box .cause-donation-info{
font-weight:500;
font-size:16px;
line-height:24px;
color:#aaaaaa;
}
.default-cause-box .inner-box .cause-donation-info .total{
color:#fbad18;
}
.default-cause-box .inner-box .separator{
position:relative;
display:block;
width:100%;
margin:0px;
height:50px;
background:url(../images/icons/separator-two.png) center center no-repeat;
}
.default-cause-box .inner-box h3{
font-size:16px;
font-weight:500;
margin-bottom:7px;
color:#222222;
}
.default-cause-box .inner-box h3 a{
color:#222222;
}
.default-cause-box .inner-box h3 a:hover{
color:#fbad18;
}
.default-cause-box .inner-box .text{
line-height:1.8em;
margin-bottom:20px;
}
.default-cause-box .inner-box .theme-btn{
margin:0px 5px 10px;
padding-left:24px;
padding-right:24px;
min-width:140px;
text-align:center;
}
.cause-box-two{
position:relative;
margin-bottom:50px;
}
.cause-box-two .inner-box{
position:relative;
display:block;
background:#ffffff;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.cause-box-two .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.cause-box-two .image-box{
position:relative;
}
.cause-box-two .image-box img{
display:block;
width:100%;
}
.cause-box-two .inner-box .progress-box{
position:absolute;
left:0px;
bottom:0px;
width:100%;
text-align:center;
height:5px;
}
.cause-box-two .inner-box .progress-box .bar{
position:relative;
width:100%;
height:5px;
background:rgba(204,204,204,0.60);
}
.cause-box-two .inner-box .progress-box .bar-inner{
position:relative;
display:block;
width:0px;
height:5px;
background:#fbad18;
-webkit-transition:all 1500ms ease;
-ms-transition:all 1500ms ease;
-o-transition:all 1500ms ease;
-moz-transition:all 1500ms ease;
transition:all 1500ms ease;
}
.cause-box-two .inner-box .progress-box .count-text{
position:absolute;
right:0px;
margin-right:-23px;
bottom:15px;
width:46px;
height:26px;
background:#fbad18;
color:#ffffff;
line-height:26px;
font-size:13px;
font-weight:600;
border-radius:2px;
opacity:0;
-webkit-transition:all 1000ms ease;
-ms-transition:all 1000ms ease;
-o-transition:all 1000ms ease;
-moz-transition:all 1000ms ease;
transition:all 1000ms ease;
}
.cause-box-two .inner-box .progress-box .bar-inner.counted .count-text{
opacity:1;
}
.cause-box-two .inner-box .progress-box .count-text:after{
content:'';
position:absolute;
left:50%;
margin-left:-4px;
top:100%;
border:4px solid transparent;
border-top:5px solid #fbad18;
}
.cause-box-two .inner-box .lower-content{
position:relative;
background:#fafafa;
padding:20px 20px 25px;
}
.cause-box-two .inner-box .post-header{
position:relative;
padding-bottom:15px;
margin-bottom:20px;
border-bottom:1px solid #e0e0e0;
}
.cause-box-two .inner-box h3{
font-size:16px;
font-weight:500;
margin-bottom:5px;
color:#222222;
}
.cause-box-two .inner-box h3 a{
color:#222222;
}
.cause-box-two .inner-box h3 a:hover{
color:#fbad18;
}
.cause-box-two .inner-box .cause-donation-info{
font-weight:500;
font-size:14px;
line-height:22px;
color:#aaaaaa;
}
.cause-box-two .inner-box .cause-donation-info .total{
color:#fbad18;
}
.cause-box-two .inner-box .post-header .theme-btn{
margin-top:7px;
}
.cause-box-two .inner-box .text{
line-height:1.7em;
}
/***
====================================================================
How To Contribute
====================================================================
***/
.how-to-contribute{
position:relative;
padding:120px 0px 120px;
}
.how-to-contribute.style-two{
padding:120px 0px 90px;
}
.how-to-contribute .sec-title .desc-text{
max-width:650px;
padding-bottom:20px;
}
.how-to-contribute .outer-box{
position:relative;
max-width:820px;
margin:0 auto;
}
.how-to-contribute .outer-box:after{
content:'';
position:absolute;
left:50%;
top:5%;
border-left:1px solid #e0e0e0;
height:90%;
}
.how-to-contribute .contribute-block{
position:relative;
min-height:80px;
margin-bottom:80px;
z-index:1;
}
.how-to-contribute .contribute-block:last-child{
margin:0px;
}
.how-to-contribute .contribute-block .inner{
position:relative;
float:left;
width:50%;
}
.how-to-contribute .contribute-block:nth-child(even) .inner{
float:right;
}
.how-to-contribute .contribute-block .inner .inner-box{
position:relative;
max-width:410px;
padding-right:110px;
text-align:right;
}
.how-to-contribute .contribute-block:nth-child(even) .inner .inner-box{
padding-right:0px;
padding-left:110px;
text-align:left;
}
.how-to-contribute .contribute-block .icon-box{
position:absolute;
right:-42px;
top:50%;
margin-top:-40px;
line-height:80px;
width:84px;
height:80px;
text-align:center;
font-size:56px;
color:#e0e0e0;
background:#ffffff;
}
.how-to-contribute .contribute-block:nth-child(even) .icon-box{
right:auto;
left:-42px;
}
.how-to-contribute .contribute-block .count{
color:#fbad18;
line-height:1.4em;
font-size:18px;
}
.how-to-contribute .contribute-block h3{
color:#222222;
font-size:18px;
line-height:1.4em;
font-weight:600;
margin-bottom:5px;
}
.contribute-block-two{
position:relative;
text-align:center;
margin-bottom:30px;
}
.contribute-block-two .inner-box{
position:relative;
padding:50px 30px;
border:1px solid #f0f0f0;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two .inner-box .icon-box{
position:relative;
font-size:48px;
line-height:1em;
color:#999999;
margin-bottom:30px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two h3{
color:#222222;
font-size:18px;
line-height:1.4em;
font-weight:500;
margin-bottom:10px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.contribute-block-two .inner-box:hover h3,
.contribute-block-two .inner-box:hover .icon-box{
color:#ffffff;
}
.contribute-block-two .text{
font-size:14px;
line-height:1.7em;
margin-bottom:20px;
}
.contribute-block-two .inner-box:hover{
color:#ffffff;
background:#fbad18;
border-color:#fbad18;
}
.contribute-block-two .inner-box:hover .btn-style-two{
color:#222222 !important;
background:#ffffff !important;
border-color:#ffffff;
}
/***
====================================================================
Call TO Action
====================================================================
***/
.call-to-action{
position:relative;
padding:80px 0px;
color:#ffffff;
text-align:center;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.call-to-action:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.call-to-action .auto-container{
position:relative;
z-index:1;
}
.call-to-action .sec-title h2,
.call-to-action .sec-title .desc-text{
color:#ffffff;
}
.call-to-action .links .theme-btn{
margin:0px 12px 10px;
}
/***
====================================================================
Latest Events
====================================================================
***/
.latest-events{
position:relative;
padding:120px 0px 90px;
}
.latest-events.style-two{
padding:80px 0px 50px;
background:#f7f7f7;
}
.latest-events .image-column,
.latest-events .content-column{
position:relative;
margin-bottom:30px;
}
.latest-events .image-column img{
display:block;
width:100%;
}
.latest-events .medium-title{
position:relative;
margin-bottom:15px;
color:#fbad18;
font-weight:500;
font-size:16px;
}
.latest-events .where-we-active{
margin-bottom:20px;
}
.upcoming-events .event-box{
position:relative;
}
.upcoming-events .event-box .inner{
position:relative;
padding-left:145px;
min-height:140px;
}
.upcoming-events .event-box .image-box{
position:absolute;
left:0px;
top:0px;
width:140px;
height:140px;
}
.upcoming-events .event-box .image-box img{
display:block;
width:100%;
}
.upcoming-events .event-box .slide-content{
position:relative;
padding:14px 20px;
background:#f7f7f7;
}
.style-two .upcoming-events .event-box .slide-content{
background:#ffffff;
}
.upcoming-events .event-box h4{
font-size:16px;
font-weight:500;
color:#222222;
margin-bottom:5px;
}
.upcoming-events .event-box h4 a{
color:#222222;
}
.upcoming-events .event-box .text{
margin-bottom:10px;
line-height:1.7em;
}
.upcoming-events .event-box .post-meta{
position:relative;
}
.upcoming-events .event-box .post-meta li{
position:relative;
display:inline-block;
margin-right:20px;
color:#fbad18;
font-size:13px;
line-height:24px;
font-weight:500;
}
.upcoming-events .event-box .post-meta li a{
color:#fbad18;
}
.upcoming-events .event-box .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.upcoming-events .owl-controls{
padding:0px;
margin:0px;
}
.upcoming-events .owl-theme .owl-controls .owl-dots{
display:none !important;
}
.upcoming-events .owl-theme .owl-controls .owl-nav{
position:absolute;
right:0px;
top:-40px;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]{
position:relative;
display:inline-block;
padding:0px;
margin:0px;
font-size:18px;
background:none !important;
color:#aaaaaa;
margin-left:10px;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover{
color:#fbad18;
}
/***
====================================================================
Sponsors Section
====================================================================
***/
.sponsors-section{
position:relative;
padding:80px 0px;
color:#ffffff;
text-align:center;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.sponsors-section:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.sponsors-section .auto-container{
position:relative;
z-index:1;
}
.sponsors-section .sec-title h2,
.sponsors-section .sec-title .desc-text{
color:#ffffff;
}
.sponsors-section .slide-item img{
opacity:0.80;
width: auto;
max-width:100%;
display:inline-block;
border:2px solid transparent;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.sponsors-section .slide-item img:hover{
opacity:1;
border-color:#fbad18;
}
.sponsors-section .owl-controls{
display:none !important;
}
/***
====================================================================
Sponsors Section Two
====================================================================
***/
.sponsors-section-two{
position:relative;
padding:100px 0px;
text-align:center;
}
.sponsors-section-two .slide-item{
margin:5px;
}
.sponsors-section-two .slide-item img{
width: auto;
max-width:100%;
display:inline-block;
border:1px solid #e0e0e0;
-webkit-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
-moz-filter:grayscale(100%);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.sponsors-section-two .slide-item img:hover{
opacity:1;
-webkit-filter:grayscale(0%);
-ms-filter:grayscale(0%);
-o-filter:grayscale(0%);
-moz-filter:grayscale(0%);
-webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-ms-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-o-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
-moz-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
box-shadow:0px 0px 5px 0px rgba(0,0,0,0.10);
}
.sponsors-section-two .owl-controls{
display:none !important;
}
/***
====================================================================
News Section
====================================================================
***/
.news-section{
position:relative;
padding:120px 0px 100px;
}
.news-section > .auto-container > .row{
margin:0px -7px;
}
.news-section > .auto-container > .row .column{
padding:0px 7px;
}
.news-section .sec-title .desc-text{
max-width:650px;
}
.news-style-one{
position:relative;
margin-bottom:20px;
}
.news-style-one .inner-box{
position:relative;
display:block;
}
.news-style-one .image-box{
position:relative;
display:block;
}
.news-style-one .image-box img{
display:block;
width:100%;
}
.news-style-one .image-box .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
opacity:0;
background:rgba(10,10,10,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-one .image-box .overlay-link .icon{
position:absolute;
left:50%;
top:50%;
margin-left:-25px;
margin-top:-25px;
width:50px;
height:50px;
line-height:50px;
text-align:center;
color:#ffffff;
font-size:16px;
border-radius:50%;
background:rgba(250,111,28,1);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-one:hover .image-box .overlay-link{
opacity:1;
}
.news-style-one .post-meta{
position:relative;
padding:10px 0px;
line-height:24px;
font-size:13px;
border-bottom:1px solid #e0e0e0;
}
.news-style-one .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-one .post-meta a:hover{
color:#222222;
}
.news-style-one .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-one .lower-content{
position:relative;
padding:15px 0px 0px;
}
.news-style-one .lower-content h3{
font-size:15px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.news-style-one .lower-content h3 a{
color:#222222;
}
.news-style-one .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-two{
position:relative;
margin-bottom:14px;
}
.news-style-two .inner-box{
position:relative;
display:block;
padding-left:220px;
min-height:172px;
background:#f7f7f7;
}
.news-style-two .image-box{
position:absolute;
left:0px;
top:0px;
width:220px;
display:block;
}
.news-style-two .image-box img{
display:block;
width:100%;
}
.news-style-two .image-box .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
opacity:0;
background:rgba(10,10,10,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-two .image-box .overlay-link .icon{
position:absolute;
left:50%;
top:50%;
margin-left:-20px;
margin-top:-20px;
width:40px;
height:40px;
line-height:40px;
text-align:center;
color:#ffffff;
font-size:14px;
border-radius:50%;
background:rgba(250,111,28,1);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-style-two:hover .image-box .overlay-link{
opacity:1;
}
.news-style-two .post-meta{
position:relative;
margin-bottom:10px;
line-height:24px;
font-size:13px;
}
.news-style-two .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-two .post-meta a:hover{
color:#222222;
}
.news-style-two .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-two .lower-content{
position:relative;
padding:15px 20px;
}
.news-style-two .lower-content h3{
font-size:13px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.news-style-two .lower-content h3 a{
color:#222222;
}
.news-style-two .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-three{
position:relative;
margin-bottom:50px;
}
.news-style-three .inner-box{
position:relative;
display:block;
}
.news-style-three .image-box{
position:relative;
display:block;
}
.news-style-three iframe{
display:block;
width:100%;
}
.news-style-three .image-box img{
display:block;
width:100%;
}
.news-style-three .post-header{
position:relative;
margin-bottom:15px;
}
.news-style-three .post-meta{
position:relative;
line-height:24px;
font-size:14px;
}
.news-style-three .post-info{
position:relative;
font-size:13px;
}
.news-style-three .post-meta a{
color:#fbad18;
font-weight:500;
}
.news-style-three .post-meta a:hover{
color:#222222;
}
.news-style-three .post-meta .fa{
padding-right:3px;
font-weight:400;
}
.news-style-three .lower-content{
position:relative;
background:#fafafa;
padding:20px 25px 30px;
}
.news-style-three .lower-content h3{
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:5px;
}
.news-style-three .lower-content h3 a{
color:#222222;
}
.news-style-three .lower-content h3 a:hover{
color:#fbad18;
}
.news-style-three .lower-content .text{
position:relative;
line-height:1.7em;
margin-bottom:20px;
}
.news-style-three .lower-content .read-more{
position:relative;
display:inline-block;
text-transform:uppercase;
font-size:13px;
color:#555555;
font-weight:600;
}
.news-style-three .lower-content .read-more .fa{
padding-left:5px;
font-weight:normal;
}
.news-style-three .lower-content .read-more:hover{
color:#fbad18;
}
/***
====================================================================
Main Footer
====================================================================
***/
.main-footer{
position:relative;
background-color:#222222;
background-size:cover;
background-repeat:no-repeat;
background-position:left center;
color:#ffffff;
}
.main-footer a,
.main-footer input,
.main-footer textarea{
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-footer .auto-container{
position:relative;
z-index:1;
}
.main-footer .widgets-section{
position:relative;
padding:70px 0px 40px;
}
.main-footer .footer-column{
position:relative;
}
.main-footer .footer-widget{
position:relative;
margin-bottom:30px;
}
.main-footer .footer-logo{
position:relative;
margin-bottom:5px;
}
.main-footer .footer-logo img{
display:block;
max-width:100%;
}
.main-footer .footer-column h2{
font-size:16px;
font-weight:500;
text-transform:uppercase;
margin-bottom:20px;
padding:12px 0px 25px;
color:#fbad18;
}
.main-footer .about-widget .text{
margin-bottom:30px;
line-height:1.7em;
}
.main-footer .about-widget .text p{
margin-bottom:15px;
}
.main-footer .about-widget .text .more-link{
color:#fbad18;
}
.main-footer .posts-widget .widget-content{
margin-left:-10px;
}
.main-footer .posts-widget h2{
margin-left:-10px;
}
.main-footer .posts-widget .post{
position:relative;
min-height:55px;
padding-left:100px;
margin-bottom:20px;
}
.main-footer .posts-widget .post:last-child{
margin-bottom:0px;
}
.main-footer .posts-widget .post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:55px;
}
.main-footer .posts-widget .post .post-thumb .overlay-link{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgb(251, 173, 24);
color:#ffffff;
opacity:0;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.main-footer .posts-widget .post:hover .post-thumb .overlay-link{
opacity:1;
}
.main-footer .posts-widget .post .post-thumb .overlay-link span{
position:absolute;
left:50%;
top:50%;
text-align:center;
width:30px;
margin-left:-15px;
margin-top:-15px;
line-height:30px;
font-size:16px;
}
.main-footer .posts-widget .post .post-thumb img{
display:block;
width:100%;
}
.main-footer .posts-widget .post .desc-text{
position:relative;
font-size:14px;
color:#ffffff;
line-height:1.8em;
margin-bottom:0px;
}
.main-footer .posts-widget .post .desc-text a{
color:#ffffff;
}
.main-footer .posts-widget .post .time{
color:#aaaaaa;
line-height:24px;
}
.main-footer .links-widget .list li{
position:relative;
margin-bottom:7px;
}
.main-footer .links-widget .list li a{
position:relative;
display:inline-block;
line-height:24px;
color:#ffffff;
text-transform:capitalize;
}
.main-footer .links-widget .list li a:hover{
color:#fbad18;
}
.main-footer .newsletter-widget{
position:relative;
}
.main-footer .newsletter-widget .text{
line-height:1.8em;
margin-bottom:10px;
}
.main-footer .contact-info{
position:relative;
margin-bottom:25px;
}
.main-footer .contact-info li{
position:relative;
padding:0px;
margin-bottom:5px;
line-height:22px;
}
.newsletter-one{
position:relative;
}
.newsletter-one h4{
font-size:14px;
font-weight:500;
margin-bottom:15px;
}
.newsletter-one .form-group{
position:relative;
margin-bottom:0px;
}
.newsletter-one .form-group input[type="text"],
.newsletter-one .form-group input[type="email"],
.newsletter-one .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:12px 15px;
background:#ffffff;
color:#333333;
height:48px;
font-size:13px;
border:1px solid rgba(255,255,255,0.10);
border-radius:2px;
-moz-transition:all 0.5s ease;
-webkit-transition:all 0.5s ease;
-ms-transition:all 0.5s ease;
-o-transition:all 0.5s ease;
transition:all 0.5s ease;
}
.newsletter-one .form-group input[type="text"]:focus,
.newsletter-one .form-group input[type="email"]:focus,
.newsletter-one .form-group textarea:focus{
border-color:#fbad18;
}
.newsletter-one .form-group button{
position:absolute;
right:0px;
top:0px;
display:block;
width:50px;
height:48px;
text-align:center;
margin:0px;
padding:12px 5px;
line-height:24px;
font-size:16px;
text-transform:uppercase;
font-weight:400;
background:#fbad18;
color:#ffffff;
letter-spacing:1px;
border-radius:0px 2px 2px 0px;
}
.newsletter-one .form-group button:hover,
.newsletter-one .form-group input:focus + button{
background:#6bcff6;
}
.main-footer .social-links a{
position:relative;
display:inline-block;
margin-right:5px;
text-align:center;
width:30px;
height:30px;
border:2px solid #ffffff;
line-height:26px;
font-size:14px;
color:#ffffff;
}
.main-footer .social-links a:hover{
background:#02b0e8;
border-color:#02b0e8;
}
.main-footer .footer-bottom{
position:relative;
padding:6px 0px;
line-height:24px;
text-align:center;
font-size:14px;
color:#ffffff;
background:#fbad18;
}
/***
====================================================================
Fun Facts Section
====================================================================
***/
.fun-facts-section{
position:relative;
padding:80px 0px 40px;
color:#ffffff;
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center center;
}
.fun-facts-section:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:rgba(10,10,10,0.80);
}
.fun-facts-section .auto-container{
position:relative;
z-index:1;
}
.fun-facts-section .sec-title h2,
.fun-facts-section .sec-title .desc-text{
color:#ffffff;
}
.fun-facts-section .fact-counter .counter-column{
position:relative;
margin-bottom:40px;
}
.fun-facts-section .fact-counter .counter-column .inner-box{
max-width:320px;
margin:0 auto;
}
.fun-facts-section .fact-counter .count-outer{
position:relative;
font-size:36px;
color:#ffffff;
font-weight:700;
margin-bottom:10px;
}
.fun-facts-section .fact-counter .count-outer .icon{
position:relative;
font-size:32px;
font-weight:400;
color:#fbad18;
line-height:40px;
}
.fun-facts-section .fact-counter .count-outer .count-text{
position:relative;
font-size:36px;
padding-left:20px;
color:#ffffff;
font-weight:700;
line-height:40px;
}
.fun-facts-section .fact-counter .counter-title{
position:relative;
font-size:14px;
color:#ffffff;
font-weight:500;
text-transform:uppercase;
margin-bottom:10px;
}
.fun-facts-section .fact-counter .separator{
position:relative;
display:block;
height:20px;
width:100%;
background:url(../images/icons/separator-three.png) left bottom no-repeat;
}
/***
====================================================================
Shop Section
====================================================================
***/
.shop-section{
position:relative;
padding:120px 0px 90px;
}
.shop-section .sec-title .desc-text{
max-width:650px;
}
.default-shop-item{
position:relative;
margin-bottom:30px;
}
.default-shop-item .inner-box{
position:relative;
text-align:center;
display:block;
border:1px solid #e0e0e0;
}
.default-shop-item .image-box{
position:relative;
overflow:hidden;
}
.default-shop-item .image-box img{
display:block;
width:100%;
}
.default-shop-item .inner-box .prod-options{
position:absolute;
left:-50px;
top:50%;
margin-top:-45px;
transition:all 500ms ease;
}
.default-shop-item .inner-box:hover .prod-options{
left:0px;
}
.default-shop-item .inner-box .prod-options .option-btn{
position:relative;
display:block;
width:40px;
height:40px;
line-height:40px;
text-align:center;
font-size:16px;
color:#ffffff;
background:#fbad18;
margin-bottom:5px;
border-radius:0px;
transition:all 300ms ease;
}
.default-shop-item .inner-box .prod-options .option-btn:hover{
background:#222222;
}
.default-shop-item .lower-content{
position:relative;
padding:15px 20px;
background:#f7f7f7;
}
.default-shop-item .lower-content h3{
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:7px;
}
.default-shop-item .lower-content h3 a{
color:#222222;
}
.default-shop-item .lower-content h3 a:hover{
color:#fbad18;
}
.default-shop-item .lower-content .price{
margin-bottom:7px;
font-weight:600;
}
.default-shop-item .lower-content .price-txt{
display:inline-block;
line-height:24px;
padding:3px 15px;
color:#ffffff;
background:#fbad18;
border-radius:2px;
}
.default-shop-item .lower-content .rating{
font-size:12px;
color:#fbad18;
line-height:24px;
}
.default-shop-item .lower-content .rating .fa{
display:inline-block;
margin:0px 2px;
}
.shop-section .items-sorting{
position:relative;
margin-bottom:20px;
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:10px;
}
.shop-section .items-sorting .results-column h4{
font-size:14px;
font-weight:600;
color:#6b6b6b;
line-height:24px;
padding:10px 0px;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:9px 15px 9px;
height:44px;
font-size:14px;
border:1px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.png) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.shop-section .items-sorting select option{
text-indent:15px;
}
.shop-section .items-sorting select:focus{
border-color:#fbad18;
}
.shop-section .styled-pagination{
text-align:right;
}
.shop-section .styled-pagination ul li{
margin-right:0px;
margin-left:5px;
}
.fancybox-next span,
.fancybox-prev span{
background-image:none !important;
width:44px !important;
height:44px !important;
line-height:44px !important;
text-align:center;
}
.fancybox-next span:before,
.fancybox-prev span:before{
content:'';
position:absolute;
font-family: 'FontAwesome';
left:0px;
top:0px;
font-size:12px;
width:44px !important;
height:44px !important;
line-height:44px !important;
background-color:rgba(28,28,28,0.40) !important;
color:#ffffff;
visibility:visible;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.fancybox-next span:before{
content:'\f178';
}
.fancybox-prev span:before{
content:'\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before{
background-color:#ffffff !important;
color:#000000;
}
.fancybox-type-image .fancybox-close{
right:0px;
top:0px;
width:45px;
height:45px;
background:url(../images/icons/icon-cross.png) center center no-repeat;
background-color:rgba(17,17,17,0.50) !important;
}
.fancybox-type-image .fancybox-close:hover{
background-color:#000000 !important;
}
.fancybox-type-image .fancybox-skin{
padding:0px !important;
}
/***
====================================================================
Page Title Style
====================================================================
***/
.page-title{
position:relative;
padding:80px 0px;
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
text-align:center;
}
.page-title:before{
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
position:absolute;
background:rgba(9, 9, 9, 0.43);
}
.page-title .auto-container{
position:relative;
z-index:1;
}
.page-title h1{
position:relative;
font-size:36px;
font-weight:700;
color:#ffffff;
margin-bottom:10px;
line-height:1.4em;
text-transform:uppercase;
font-family:'Raleway',sans-serif;
}
.page-title .bread-crumb-outer{
position:relative;
display:inline-block;
padding:0px 40px;
}
.page-title .bread-crumb-outer:before{
content:'';
position:absolute;
left:0px;
top:50%;
margin-top:-0.5px;
width:30px;
border-top:1px solid #fbad18;
}
.page-title .bread-crumb-outer:after{
content:'';
position:absolute;
right:0px;
top:50%;
margin-top:-0.5px;
width:30px;
border-top:1px solid #fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li{
position:relative;
float:left;
margin-right:30px;
color:#ffffff;
line-height:24px;
}
.page-title .bread-crumb-outer .bread-crumb li:last-child{
margin-right:0px;
}
.page-title .bread-crumb-outer .bread-crumb li:after{
content:'\f101';
font-family: 'FontAwesome';
position:absolute;
right:-22px;
width:10px;
line-height:24px;
font-size:14px;
color:#fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li:last-child:after{
display:none;
}
.page-title .bread-crumb-outer .bread-crumb li a{
color:#ffffff;
}
.page-title .bread-crumb-outer .bread-crumb li a:hover{
color:#fbad18;
}
.page-title .bread-crumb-outer .bread-crumb li.active{
color:#fbad18;
}
/***
====================================================================
About Us Section
====================================================================
***/
.about-us-section{
position:relative;
padding:30px 0px 10px;
}
.about-us-section .content-box{
position:relative;
padding:35px 0px;
margin-bottom:50px;
}
.about-us-section .content-box:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
border:10px solid #f9f9f9;
}
.about-us-section .content-column .inner-box{
position:relative;
padding:0px 60px;
}
.about-us-section .content-box .strong-text{
font-weight:700;
color:#fbad18;
}
.about-us-section .content-box p{
margin-bottom:20px;
line-height:1.7em;
}
.about-us-section .content-box p:last-child{
margin-bottom:0px;
}
.about-us-section .image-column img{
display:block;
width:100%;
}
.default-icon-column{
position:relative;
margin-bottom:30px;
}
.default-icon-column .inner-box{
position:relative;
display:block;
max-width:80%;
margin:0 auto;
text-align:center;
}
.default-icon-column .icon-box{
position:relative;
line-height:1em;
font-size:36px;
color:#fbad18;
margin-bottom:15px;
}
.default-icon-column h3{
position:relative;
font-size:14px;
font-weight:600;
color:#222222;
text-transform:uppercase;
}
.default-icon-column .separator{
position:relative;
height:40px;
display:block;
width:100%;
background:url(../images/icons/separator-two.png) center center no-repeat;
}
.default-icon-column .text{
line-height:1.7em;
}
/***
====================================================================
What We Think
====================================================================
***/
.what-we-think{
position:relative;
padding:30px 0px 40px;
background:#fafafa;
}
.what-we-think .content-column{
position:relative;
}
.what-we-think .image-column{
position:relative;
margin-bottom:40px;
}
.what-we-think .image-column img{
display:block;
width:100%;
}
.what-we-think .content-column h3{
font-size:18px;
color:#222222;
font-weight:500;
text-transform:uppercase;
margin-bottom:15px;
}
.what-we-think .content-column .text{
position:relative;
margin-bottom:30px;
}
.what-we-think .content-column .feature-box{
position:relative;
float:left;
width:100%;
margin:0px;
min-height: 155px;
padding:20px 15px;
text-align:center;
font-weight:600;
font-size:14px;
color:#aaaaaa;
border:5px solid #edeaea;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.what-we-think .content-column .feature-box:hover{
border-color:#fbad18;
}
.what-we-think .content-column .feature-box .count{
display:block;
font-size:30px;
line-height:1em;
color:#fbad18;
margin-bottom:5px;
}
/***
====================================================================
Team Section
====================================================================
***/
.team-section{
position:relative;
padding:120px 0px 90px;
}
.default-team-member{
position:relative;
margin-bottom:30px;
}
.default-team-member .inner-box{
position:relative;
display:block;
background:#fcfcfc;
border:1px solid #f0f0f0;
}
.default-team-member .inner-box .content-column{
position:relative;
float:left;
width:50%;
text-align:center;
}
.default-team-member .inner-box .content-column:after{
content:'';
position:absolute;
left:100%;
top:50%;
margin-top:-12px;
border:12px solid transparent;
border-left:12px solid #fcfcfc;
}
.default-team-member.alternate .inner-box .content-column:after{
left:auto;
right:100%;
border:12px solid transparent;
border-right:12px solid #fcfcfc;
}
.default-team-member .inner-box .image-column{
position:relative;
float:right;
width:50%;
}
.default-team-member .inner-box .image-column img{
position:relative;
display:block;
width:100%;
height:auto;
}
.default-team-member.alternate .inner-box .content-column{
float:right;
}
.default-team-member.alternate .inner-box .image-column{
float:left;
}
.default-team-member .content-column .inner{
position:relative;
padding:50px 30px 20px;
}
.default-team-member .inner-box h3{
position:relative;
font-size:16px;
font-weight:500;
color:#222222;
padding-bottom:25px;
margin-bottom:10px;
background:url(../images/icons/beat-separator-one.png) center bottom no-repeat;
}
.default-team-member .inner-box .text{
position:relative;
color:#555555;
margin-bottom:20px;
}
.default-team-member .inner-box .social-links a{
position:relative;
display:inline-block;
font-size:13px;
color:#aaaaaa;
line-height:24px;
margin:0px 8px;
}
.default-team-member .inner-box .social-links a:hover{
color:#fbad18;
}
/***
====================================================================
404 Section
====================================================================
***/
.error-section{
position:relative;
text-align:center;
padding:100px 0px;
}
.error-image{
position:relative;
}
.error-image img{
position:relative;
max-width:100%;
display:inline-block;
}
.error-section h3{
position:relative;
font-size:15px;
margin-bottom:25px;
font-weight:500;
}
.error-section .btn-box{
position:relative;
}
.error-section .btn-box a{
position:relative;
padding:10px 30px;
font-weight:600;
font-size:13px;
}
.error-section .btn-box a span{
padding-right:10px;
}
/***
====================================================================
Sidebar
====================================================================
***/
.sidebar-page-container{
position:relative;
padding:100px 0px 70px;
}
.sidebar-page-container .content-side{
margin-bottom:30px;
padding-right:55px;
}
.sidebar-page-container .sidebar{
margin-left:-30px;
margin-bottom:30px;
}
.sidebar-title{
position:relative;
margin-bottom:20px;
padding-bottom:22px;
}
.sidebar-title:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) left bottom no-repeat;
}
.sidebar-title h3{
position:relative;
font-size:16px;
color:#222222;
font-weight:500;
line-height:1.4em;
text-transform:uppercase;
}
.sidebar .sidebar-widget{
position:relative;
margin-bottom:40px;
}
.sidebar .search-box .form-group{
position:relative;
margin:0px;
}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
position:relative;
line-height:26px;
padding:10px 30px 10px 15px;
border:1px solid #e0e0e0;
height:48px;
background:#ffffff;
color:#1a1a1a;
display:block;
width:100%;
border-radius:2px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sidebar .search-box .form-group input:focus{
border-color:#fbad18;
}
.sidebar .search-box .form-group button{
position:absolute;
right:0px;
top:0px;
height:48px;
width:50px;
line-height:48px;
text-align:center;
display:block;
font-size:14px;
color:#ffffff;
background:#fbad18;
border-radius:0px 2px 2px 0px;
}
.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover{
color:#ffffff;
}
.sidebar .recent-posts .post{
position:relative;
padding-bottom:20px;
margin-bottom:25px;
border-bottom:1px solid #f0f0f0;
}
.sidebar .recent-posts .post:last-child{
margin-bottom:0px;
padding-bottom:0px;
border-bottom:none;
}
.sidebar .recent-posts .post .post-thumb{
position:relative;
margin-bottom:12px;
}
.sidebar .recent-posts .post .post-thumb img{
display:block;
width:100%;
}
.sidebar .recent-posts .post .desc-text{
position:relative;
font-size:14px;
color:#555555;
line-height:1.6em;
}
.sidebar .recent-posts .post h4{
position:relative;
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:5px;
}
.sidebar .recent-posts .post h4 a{
color:#1f1f1f;
}
.sidebar .recent-posts .post h4 a:hover{
color:#fbad18;
}
.sidebar .recent-events .post{
position:relative;
min-height:60px;
padding-left:110px;
margin-bottom:20px;
}
.sidebar .recent-events .post:last-child{
margin-bottom:0px;
}
.sidebar .recent-events .post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:90px;
}
.sidebar .recent-events .post .post-thumb img{
display:block;
width:100%;
}
.sidebar .recent-events .post .desc-text{
position:relative;
font-size:14px;
color:#555555;
line-height:1.6em;
}
.sidebar .recent-events .post h4{
position:relative;
font-size:15px;
line-height:1.5em;
color:#222222;
font-weight:500;
top:-5px;
}
.sidebar .recent-events .post h4 a{
color:#1f1f1f;
}
.sidebar .recent-events .post h4 a:hover{
color:#fbad18;
}
.sidebar .recent-events .post .post-meta{
position:relative;
margin-top:-2px;
}
.sidebar .recent-events .post .post-meta li{
position:relative;
display:block;
color:#fbad18;
font-size:13px;
line-height:20px;
font-weight:500;
}
.sidebar .recent-events .post .post-meta li a{
color:#fbad18;
}
.sidebar .recent-events .post .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.sidebar .popular-tags a{
position:relative;
display:inline-block;
line-height:24px;
padding:6px 15px;
margin:0px 5px 7px 0px;
background:#fbad18;
color:#ffffff;
font-size:14px;
font-weight:400;
border-radius:2px;
text-transform:capitalize;
text-align:center;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.sidebar .popular-tags a:hover{
background-color:#222222;
}
.sidebar .list{
position:relative;
}
.sidebar .list li{
position:relative;
margin-bottom:5px;
}
.sidebar .list li a:before{
content: "\f105";
font-family: 'FontAwesome';
position:absolute;
left:0px;
top:0;
display:block;
font-size:14px;
line-height:24px;
}
.sidebar .list li a{
position:relative;
display:block;
color:#555555;
font-size:14px;
font-weight:400;
line-height:24px;
padding:0px 0px 0px 15px;
}
.sidebar .list li a:hover{
color:#fbad18;
}
.sidebar .text-widget{
position:relative;
color:#555555;
}
.sidebar .text-widget .text p{
margin-bottom:15px;
}
.sidebar .text-widget .text p:last-child{
margin-bottom:0px;
}
.sidebar .recent-gallery{
position:relative;
}
.sidebar .recent-gallery .images-outer{
position:relative;
margin:0px -6px;
}
.sidebar .recent-gallery .images-outer .gallery-post{
position:relative;
float:left;
width:33.333%;
padding:0px 6px;
margin-bottom:12px;
transition:all 300ms ease;
}
.sidebar .recent-gallery .images-outer .gallery-post img{
display:block;
width:100%;
transition:all 300ms ease;
}
.sidebar .recent-gallery .images-outer .gallery-post img:hover{
opacity:0.70;
}
/***
====================================================================
Comments Area
====================================================================
***/
.blog-details .comments-area{
position:relative;
margin-bottom:50px;
}
.blog-details .comments-area .comment-box{
position:relative;
border-bottom:1px solid #e0e0e0;
}
.blog-details .comments-area .comment{
position:relative;
padding:0px;
margin-bottom:50px;
}
.blog-details .comments-area .comment .comment-inner{
position:relative;
padding-left:100px;
min-height:80px;
}
.blog-details .comments-area .comment .comment-content{
position:relative;
}
.blog-details .comments-area .comment .author-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
}
.blog-details .comments-area .comment .author-thumb img{
width:100%;
display:block;
}
.blog-details .comments-area .comment .comment-header{
position:relative;
font-size:13px;
color:#999999;
margin-bottom:5px;
}
.blog-details .comments-area .comment .comment-header strong{
color:#222222;
font-size:17px;
font-weight:500;
padding-right:30px;
}
.blog-details .comments-area .comment .text{
line-height:1.7em;
}
.blog-details .comments-area .comment .reply-btn{
position:absolute;
right:0px;
top:-5px;
font-size:12px;
color:#ffffff;
background:#fbad18;
padding:4px 15px;
line-height:20px;
border-radius:2px;
text-transform:uppercase;
}
.blog-details .comments-area .comment .reply-btn:hover{
background:#222222;
}
.blog-details .comment-form .form-group{
margin-bottom:20px;
}
.blog-details .comment-form .btn-style-three{
padding:8px 35px;
}
.blog-details .comment-form textarea{
height:140px;
}
/***
====================================================================
Styled Pagination
====================================================================
***/
.styled-pagination{
position:relative;
}
.styled-pagination li{
position:relative;
display:inline-block;
margin-right:5px;
}
.styled-pagination li a{
position:relative;
display:block;
line-height:24px;
padding:8px 5px;
font-size:14px;
text-transform:capitalize;
min-width:42px;
border:1px solid #e0e0e0;
background:none;
color:#121212;
font-weight:500;
text-align:center;
border-radius:2px;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
}
.styled-pagination li a:hover,
.styled-pagination li a.active{
color:#ffffff;
background:#fbad18;
border-color:#fbad18;
}
/***
====================================================================
Cause Details
====================================================================
***/
.cause-details{
position:relative;
padding:100px 0px;
}
.cause-details .cause-box-two{
margin:0px;
}
.cause-details .cause-box-two .inner-box,
.cause-details .cause-box-two .inner-box:hover{
box-shadow:none !important;
}
.cause-details .cause-box-two .lower-content{
background:none;
padding:20px 0px;
}
.cause-details .cause-box-two .more-info{
margin-bottom:20px;
}
.cause-details .cause-post-controls{
position:relative;
border-top:1px solid #e0e0e0;
padding:30px 0px 0px;
text-align:right;
}
.cause-details .cause-post-controls a{
position:relative;
display:inline-block;
margin-left:7px;
min-width:42px;
min-height:42px;
line-height:24px;
padding:8px 10px;
text-align:center;
border:1px solid #e0e0e0;
border-radius:2px;
color:#999999;
font-size:14px;
}
.cause-details .cause-post-controls a:hover{
color:#555555;
border-color:#555555;
}
/***
====================================================================
Donate Now
====================================================================
***/
.donate-now{
position:relative;
padding:120px 0px 70px;
}
.default-title{
position:relative;
margin-bottom:20px;
padding-bottom:22px;
}
.default-title:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) left bottom no-repeat;
}
.default-title h3{
position:relative;
font-size:17px;
color:#222222;
font-weight:500;
line-height:1.4em;
text-transform:uppercase;
}
.donate-now .left-column{
position:relative;
margin-bottom:30px;
}
.donate-now .right-column{
position:relative;
margin-bottom:30px;
}
.donate-now .select-amount{
position:relative;
}
.donate-now .select-box{
position:relative;
float:left;
width:60px;
text-align:center;
margin:0px 20px 10px 0px;
}
.donate-now .input-box{
position:relative;
float:left;
width:200px;
}
.donate-now .select-box input[type="radio"]{
left:0px;
top:0px;
visibility:hidden;
position:absolute;
opacity:0;
}
.donate-now .select-box label{
display:block;
line-height:22px;
padding:10px 10px;
text-align:center;
font-size:14px;
font-weight:500;
color:#555555;
border:1px solid #e0e0e0;
cursor:pointer;
border-radius:2px;
transition:all 500ms ease;
}
.donate-now .select-box input[type="radio"]:checked+label{
background:#fbad18;
border-color:#fbad18;
color:#ffffff;
}
.default-form .form-group{
position:relative;
margin-bottom:20px;
}
.default-form .form-group .field-label{
display:block;
line-height:24px;
margin-bottom:10px;
color:#222222;
font-weight:500;
font-size:14px;
}
.default-form .form-group .field-label sup,
.default-form .form-group .field-label .req{
color:#ff0000;
font-size:14px;
padding-left:5px;
}
.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form input[type="tel"],
.default-form input[type="url"],
.default-form select,
.default-form textarea{
display:block;
width:100%;
line-height:22px;
height:44px;
font-size:13px;
border:1px solid #e0e0e0;
padding:10px 15px;
background-color:#ffffff;
color:#222222;
border-radius:2px;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.default-form select{
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:#ffffff url(../images/icons/icon-select.png) right center no-repeat;
}
.default-form textarea{
height:92px;
resize:none;
}
.become-volunteer .default-form textarea{
height:160px;
}
.default-form select option{
text-indent:15px;
}
.default-form input:focus,
.default-form select:focus,
.default-form textarea:focus{
border-color:#fbad18;
}
.default-form input.error,
.default-form select.error,
.default-form textarea.error{
border-color:#ff0000 !important;
}
.default-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:12px;
color:#ff0000;
font-weight:500;
}
/***
====================================================================
FAQs Section
====================================================================
***/
.faqs-section{
position:relative;
padding:120px 0px 90px;
}
.faqs-section .title-box{
position:relative;
margin-bottom:20px;
}
.faqs-section .title-box h3{
font-size:16px;
font-weight:500;
text-transform:uppercase;
color:#222222;
}
.faqs-section .column{
position:relative;
margin-bottom:30px;
}
.accordion-box{
position:relative;
}
.accordion-box .block{
position:relative;
margin-bottom:8px;
border-radius:2px;
border:1px solid #f0f0f0;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block.active-block{
border-color:#fbad18;
}
.accordion-box .block .acc-btn{
position:relative;
font-size:15px;
margin-bottom:0px;
cursor:pointer;
background:none;
line-height:26px;
padding:12px 10px 12px 40px;
overflow:hidden;
font-weight:500;
color:#222222;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block .acc-btn.active{
color:#fbad18;
}
.accordion-box .block .icon-outer{
position:absolute;
left:15px;
top:10px;
width:20px;
height:30px;
line-height:30px;
font-size:16px;
color:#222222;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.accordion-box .block .icon-outer .icon{
position:absolute;
left:0px;
top:0;
width:100%;
height:30px;
line-height:30px;
font-size:16px;
font-weight:normal;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}
.accordion-box .block .icon-outer .icon-plus{
opacity:1;
}
.accordion-box .block .icon-outer .icon-minus{
opacity:0;
}
.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
opacity:1;
}
.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
opacity:0;
}
.accordion-box .block .acc-btn.active .icon-outer{
color:#fbad18;
}
.accordion-box .block .acc-content{
position:relative;
display:none;
}
.accordion-box .block .acc-content.current{
display:block;
}
.accordion-box .block .content{
position:relative;
font-size:14px;
padding:0px 40px 15px;
color:#555555;
}
.accordion-box .block .content p{
margin-bottom:20px;
line-height:1.7em;
}
.accordion-box .block .content p:last-child{
margin-bottom:0px;
}
.faqs-section .video-box{
position:relative;
width:100%;
margin-bottom:30px;
}
.faqs-section .video-box iframe{
display:block;
width:100%;
}
.faqs-section .info-box{
position:relative;
padding:65px 50px;
text-align:center;
background:#f7f7f7;
}
.faqs-section .info-box h4{
font-size:16px;
margin-bottom:12px;
}
.faqs-section .info-box h4 a{
color:#222222;
font-weight:700;
}
.faqs-section .info-box .text{
margin-bottom:20px;
}
/***
====================================================================
Gallery Sections
====================================================================
***/
.gallery-section{
position:relative;
padding:120px 0px;
}
.gallery-section .filters{
position:relative;
text-align:center;
margin-bottom:40px;
}
.gallery-section .filters li{
position:relative;
display:inline-block;
padding:0px 0px 25px;
line-height:24px;
color:#555555;
cursor:pointer;
text-transform:uppercase;
font-size:13px;
font-weight:500;
margin:0px 15px 10px;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.gallery-section .filters li:after{
content:'';
position:absolute;
left:0px;
bottom:0px;
width:100%;
height:25px;
background:url(../images/icons/beat-separator-one.png) center bottom no-repeat;
-webkit-transform:scale(0,1);
-ms-transform:scale(0,1);
-o-transform:scale(0,1);
-moz-transform:scale(0,1);
transform:scale(0,1);
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.gallery-section .filters li.active{
color:#fbad18;
}
.gallery-section .filters li.active:after{
-webkit-transform:scale(1);
-ms-transform:scale(1);
-o-transform:scale(1);
-moz-transform:scale(1);
transform:scale(1);
}
.default-portfolio-item{
position:relative;
margin-bottom:30px;
}
.default-portfolio-item.mix{
display:none;
}
.default-portfolio-item .inner-box{
position:relative;
width:100%;
overflow:hidden;
}
.default-portfolio-item .image-box{
position:relative;
display:block;
}
.default-portfolio-item .image-box img{
position:relative;
display:block;
width:100%;
}
.default-portfolio-item .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
text-align:center;
color:#ffffff;
outline:1px solid #ffffff;
outline-offset:-12px;
background:rgba(10,10,10,0.60);
opacity:0;
-webkit-transition:all 700ms ease;
-ms-transition:all 700ms ease;
-o-transition:all 700ms ease;
transition:all 700ms ease;
-webkit-transform:translate(-100%,0%);
-ms-transform:translate(-100%,0%);
-o-transform:translate(-100%,0%);
-moz-transform:translate(-100%,0%);
transform:translate(-100%,0%);
}
.default-portfolio-item .inner-box:hover .overlay-box{
opacity:1;
-webkit-transform:translate(0%);
-ms-transform:translate(0%);
-o-transform:translate(0%);
-moz-transform:translate(0%);
transform:translate(0%);
}
.default-portfolio-item .overlay-inner{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:table;
vertical-align:middle;
padding:10px 30px;
}
.default-portfolio-item .overlay-inner .content{
position:relative;
display:table-cell;
vertical-align:middle;
}
.default-portfolio-item .overlay-inner h3{
font-size:16px;
color:#ffffff;
font-weight:500;
text-transform:uppercase;
margin-bottom:15px;
}
.default-portfolio-item .overlay-inner h3 a{
color:#ffffff;
}
.default-portfolio-item .overlay-inner h3 a:hover{
color:#fbad18;
}
.default-portfolio-item .overlay-inner .image-link{
position:relative;
display:inline-block;
font-size:16px;
color:#ffffff;
width:46px;
height:46px;
border:1px solid #ffffff;
margin:0px 5px;
line-height:44px;
border-radius:50%;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.default-portfolio-item .overlay-inner .image-link .icon{
position:relative;
}
.default-portfolio-item .overlay-inner .image-link:hover{
background:#fbad18;
border-color:#fbad18;
}
.gallery-section .load-more{
position:relative;
padding-top:20px;
}
/***
====================================================================
Volunteer Section
====================================================================
***/
.volunteer-section{
position:relative;
padding:100px 0px 60px;
}
.volunteer-section .content-column{
position:relative;
margin-bottom:40px;
}
.volunteer-section .content-column .bold-text{
font-size:16px;
font-weight:500;
color:#fbad18;
margin-bottom:20px;
}
.volunteer-section .content-column .image-box{
display:block;
margin-bottom:20px;
}
.volunteer-section .content-column .image-box img{
display:block;
width:100%;
}
.volunteer-section .content-column .text{
line-height:1.7em;
}
.volunteer-section .how-to-column{
position:relative;
}
.volunteer-section .how-to-column .inner-box{
position:relative;
padding-left:50px;
}
.volunteer-section .info-block{
position:relative;
margin-bottom:40px;
}
.volunteer-section .info-block .inner{
position:relative;
padding-left:110px;
min-height:80px;
}
.volunteer-section .info-block .icon-box{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
line-height:80px;
font-size:32px;
color:#ffffff;
background:#fbad18;
text-align:center;
overflow:hidden;
}
.volunteer-section .info-block .icon-box .left-top-span{
position:absolute;
left:0px;
top:0px;
border:12px solid transparent;
border-top:12px solid #ffffff;
border-left:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .right-top-span{
position:absolute;
right:0px;
top:0px;
border:12px solid transparent;
border-top:12px solid #ffffff;
border-right:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .left-bottom-span{
position:absolute;
left:0px;
bottom:0px;
border:12px solid transparent;
border-bottom:12px solid #ffffff;
border-left:12px solid #ffffff;
}
.volunteer-section .info-block .icon-box .right-bottom-span{
position:absolute;
right:0px;
bottom:0px;
border:12px solid transparent;
border-bottom:12px solid #ffffff;
border-right:12px solid #ffffff;
}
.volunteer-section .info-block h4{
font-size:16px;
line-height:1.3em;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:10px;
}
.volunteer-section .info-block .text{
line-height:1.7em;
}
/***
====================================================================
Become Volunteer Section
====================================================================
***/
.become-volunteer{
position:relative;
padding:80px 0px 60px;
background:#f7f7f7;
}
.normal-title{
position:relative;
margin-bottom:20px;
}
.normal-title h3{
font-size:18px;
text-transform:uppercase;
font-weight:500;
color:#222222;
}
.normal-title h3 strong{
font-weight:700;
}
/***
====================================================================
Events Section
====================================================================
***/
.events-section{
position:relative;
}
.default-event-box{
position:relative;
margin-bottom:50px;
}
.default-event-box .inner-box{
position:relative;
display:block;
background:#ffffff;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-event-box .inner-box:hover{
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.default-event-box .image-box{
position:relative;
}
.default-event-box .image-box img{
display:block;
width:100%;
}
.default-event-box .inner-box .lower-content{
position:relative;
background:#fafafa;
padding:25px 30px;
}
.default-event-box .inner-box .post-header{
position:relative;
margin-bottom:15px;
}
.default-event-box .inner-box h3{
font-size:17px;
font-weight:500;
color:#222222;
}
.default-event-box .inner-box h3 a{
color:#222222;
}
.default-event-box .inner-box h3 a:hover{
color:#fbad18;
}
.default-event-box .post-meta{
position:relative;
}
.default-event-box .post-meta li{
position:relative;
display:inline-block;
margin-right:20px;
color:#fbad18;
font-size:13px;
line-height:24px;
font-weight:500;
}
.default-event-box .post-meta li a{
color:#fbad18;
}
.default-event-box .post-meta li .icon{
font-weight:400;
padding-right:7px;
}
.default-event-box .inner-box .post-header .date-box{
position:relative;
display:inline-block;
margin-left:5px;
min-width:50px;
font-size:12px;
text-transform:uppercase;
text-align:center;
line-height:24px;
padding:12px 5px;
font-weight:600;
color:#ffffff;
background:#fbad18;
}
.default-event-box .inner-box .text{
line-height:1.7em;
margin-bottom:20px;
}
.default-event-box .inner-box .link-box{
text-align:right;
}
.default-event-box .inner-box .link-box a{
display:inline-block;
color:#aaaaaa;
font-weight:500;
}
.default-event-box .inner-box .link-box a .fa{
padding-right:5px;
color:#fbad18;
}
.default-event-box .inner-box .link-box a:hover{
color:#fbad18;
}
/***
====================================================================
Event Details
====================================================================
***/
.event-details{
position:relative;
padding:100px 0px;
}
.event-details .default-event-box{
margin:0px;
}
.event-details .default-event-box .inner-box,
.event-details .default-event-box .inner-box:hover{
box-shadow:none !important;
}
.event-details .default-event-box .lower-content{
background:none;
padding:20px 0px;
}
.event-details .default-event-box .post-header{
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
margin-bottom:20px;
}
.event-details .default-event-box .post-header h3{
margin:10px 0px 5px;
}
.event-details .default-event-box .text p{
margin-bottom:15px;
}
.event-details .post-options{
position:relative;
padding-top:10px;
}
.event-details .post-options .share-it{
text-align:right;
padding-top:8px;
}
.event-details .post-options .share-it a{
display:inline-block;
line-height:28px;
width:30px;
height:30px;
margin-left:5px;
font-size:13px;
text-align:center;
border:1px solid #e0e0e0;
color:#cccccc;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.event-details .post-options .share-it a:hover{
background:#02b0e8;
color:#ffffff;
border-color:#02b0e8;
}
/***
====================================================================
Countdown style
====================================================================
***/
.time-counter{
position:relative;
}
.time-counter .time-countdown{
position:relative;
}
.time-counter .time-countdown .counter-column{
position:relative;
display:inline-block;
margin:0px 0px 0px 15px;
min-width:50px;
color:#222222;
background:#ffffff;
font-size:13px;
line-height:30px;
text-transform:capitalize;
text-align:center;
}
.time-counter .time-countdown .counter-column .count{
position:relative;
display:block;
font-size:18px;
line-height:30px;
padding:10px 10px;
background:#fbad18;
color:#ffffff;
font-style:normal;
letter-spacing:1px;
font-weight:700;
border-radius:2px;
}
/***
====================================================================
Blog Details
====================================================================
***/
.blog-details{
position:relative;
padding:100px 0px;
}
.blog-details .news-style-three .lower-content{
background:none;
padding:20px 0px;
}
.blog-details .news-style-three .post-header{
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
margin-bottom:20px;
}
.blog-details .news-style-three .text p{
margin-bottom:15px;
}
.blog-details .post-bottom{
position:relative;
padding-bottom:20px;
border-bottom:1px solid #e0e0e0;
}
.blog-details .post-bottom .tags{
font-weight:500;
color:#222222;
}
.blog-details .post-bottom .tags a{
position:relative;
display:inline-block;
font-size:13px;
padding:5px 10px;
margin-left:5px;
color:#ffffff;
line-height:20px;
background:#fbad18;
border-radius:2px;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-details .post-bottom .tags a:hover{
background:#222222;
}
.blog-details .post-bottom .share-it{
text-align:right;
font-weight:500;
color:#222222;
text-transform:uppercase;
}
.blog-details .post-bottom .share-it a{
display:inline-block;
line-height:28px;
width:30px;
height:30px;
margin-left:5px;
font-size:13px;
text-align:center;
border:1px solid #e0e0e0;
color:#cccccc;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-details .post-bottom .share-it a:hover{
background:#02b0e8;
color:#ffffff;
border-color:#02b0e8;
}
/***
====================================================================
Contact Section
====================================================================
***/
.contact-section{
position:relative;
padding:100px 0px 70px;
}
.contact-section .column{
position:relative;
margin-bottom:30px;
}
.contact-section .info-column .info-box{
position:relative;
text-align:center;
display:table;
width:100%;
height:170px;
padding:20px;
margin-bottom:30px;
border:1px solid #e0e0e0;
border-radius:3px;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.contact-section .info-column .info-box:hover{
border-color:#fbad18;
}
.contact-section .info-column:first-child .info-box{
height:370px;
}
.contact-section .info-column .info-box .inner{
position:relative;
display:table-cell;
vertical-align:middle;
}
.contact-section .info-column .info-box .icon{
position:relative;
font-size:32px;
line-height:1em;
color:#fbad18;
margin-bottom:15px;
}
.contact-section .info-column .info-box h4{
font-size:16px;
font-weight:500;
color:#222222;
margin-bottom:0px;
}
.contact-section .contact-form .form-group{
margin-bottom:15px;
}
.contact-section .contact-form .form-group textarea{
height:150px;
}
/***
====================================================================
Map Section
====================================================================
***/
.map-section{
position:relative;
}
.map-canvas{
position:relative;
left:0px;
top:0px;
width:100%;
}
.map-canvas .map-data{
text-align:center;
font-size:13px;
font-weight:400;
}
.map-canvas .map-data h6{
text-transform:uppercase;
font-size:14px;
font-weight:600;
text-align:center;
margin-bottom:5px;
color:#181818;
}
/***
====================================================================
Products Details style
====================================================================
***/
.shop-single{
position:relative;
padding:120px 0px 100px;
}
.product-details .basic-details{
position:relative;
margin-bottom:50px;
}
.product-details .image-column,
.product-details .info-column{
margin-bottom:20px;
}
.product-details .image-column .image-box{
border:1px solid #e0e0e0;
background:#ffffff;
}
.product-details .info-column{
position:relative;
}
.product-details .image-column .image-box img{
position:relative;
display:block;
width:100%;
}
.product-details .basic-details .details-header{
position:relative;
margin-bottom:20px;
}
.product-details .basic-details .details-header h4{
font-size:18px;
font-weight:500;
margin:0px 0px;
line-height:1.4em;
color:#222222;
margin-bottom:5px;
}
.product-details .basic-details .details-header h4 a{
color:#333333;
}
.product-details .basic-details .details-header .rating{
font-size:14px;
color:#fbad18;
margin-bottom:5px;
}
.product-details .basic-details .details-header .rating .fa{
display:inline-block;
margin-right:2px;
}
.product-details .basic-details .details-header .rating .txt{
font-size:14px;
padding-right:15px;
font-weight:500;
color:#222222;
text-transform:uppercase;
}
.product-details .basic-details .details-header .item-price{
font-size:18px;
font-weight:600;
color:#222222;
line-height:24px;
letter-spacing:1px;
}
.product-details .basic-details .text{
margin-bottom:25px;
line-height:1.6em;
}
.product-details .basic-details .text p{
margin-bottom:15px;
}
.product-details .basic-details .item-categories{
margin:0px 0px 30px;
font-size:13px;
}
.product-details .basic-details .item-categories a{
position:relative;
color:#fbad18;
text-transform:uppercase;
}
.product-details .basic-details .availablity{
position:relative;
line-height:32px;
margin-bottom:5px;
font-size:13px;
font-weight:500;
color:#222222;
}
.product-details .basic-details .availablity strong{
font-size:14px;
letter-spacing:2px;
color:#fbad18;
font-weight:600;
text-transform:uppercase;
}
.quantity-spinner{
position:relative;
display:block;
width:150px;
}
.product-details .quantity-spinner{
margin-bottom:20px;
float:left;
margin-right:20px;
}
.quantity-spinner input{
position:relative;
display:block;
width:45px;
line-height:24px;
padding:9px 10px;
margin:0px 53px;
font-weight:500;
height:42px;
border:1px solid #e0e0e0;
text-align:center;
border-radius:2px;
}
.quantity-spinner .minus{
position:absolute;
left:0px;
top:0px;
width:45px;
height:42px;
line-height:22px;
padding:10px 10px;
text-align:center;
background:#ffffff;
font-weight:400;
color:#555555;
font-size:16px;
border:1px solid #e0e0e0;
z-index:1;
}
.quantity-spinner .plus{
position:absolute;
right:0px;
top:0px;
width:45px;
height:42px;
line-height:22px;
padding:10px 10px;
text-align:center;
font-weight:400;
background:#ffffff;
color:#555555;
font-size:16px;
border:1px solid #e0e0e0;
z-index:1;
}
.product-details .basic-details .item-quantity .field-label{
float:left;
font-weight:700;
font-size:14px;
line-height:32px;
display:inline-block;
padding-right:20px;
}
.product-details .basic-details .theme-btn{
padding:8px 30px;
margin-right:10px;
margin-bottom:10px;
}
.product-details .basic-details .theme-btn .icon{
font-size:16px;
font-weight:normal;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.product-info-tabs{
position:relative;
margin-bottom:70px;
}
.prod-tabs{
position:relative;
}
.prod-tabs .tab-btns{
position:relative;
top:1px;
z-index:1;
}
.prod-tabs .tab-btns .tab-btn{
position:relative;
float:left;
font-size:14px;
color:#222222;
text-transform:capitalize;
font-weight:500;
padding:10px 40px;
line-height:24px;
border:1px solid #f0f0f0;
background:#f0f0f0;
cursor:pointer;
}
.prod-tabs .tab-btns .tab-btn.active-btn{
background:#ffffff;
}
.prod-tabs .tabs-container{
position:relative;
border:1px solid #f0f0f0;
}
.prod-tabs .tabs-container .tab{
position:relative;
padding:30px 30px;
display:none;
}
.prod-tabs .tabs-container .tab.active-tab{
display:block;
}
.prod-tabs .tabs-container .tab p,
.prod-tabs .tabs-container .tab h2,
.prod-tabs .tabs-container .tab h3,
.prod-tabs .tabs-container .tab h4,
.prod-tabs .tabs-container .tab h5,
.prod-tabs .tabs-container .tab h6{
margin-bottom:15px;
}
.prod-tabs .tabs-container .tab h3{
font-size:16px;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:15px;
}
.prod-tabs .tabs-container .tab h4{
font-size:14px;
font-weight:500;
text-transform:uppercase;
color:#222222;
margin-bottom:15px;
}
.prod-tabs .reviews-container{
position:relative;
}
.prod-tabs .reviews-container .review-box{
position:relative;
margin-bottom:30px;
padding-left:100px;
min-height:100px;
}
.prod-tabs .reviews-container .rev-thumb{
position:absolute;
left:0px;
top:0px;
width:82px;
height:82px;
border:1px solid #e0e0e0;
background:#ffffff;
border-radius:3px;
}
.prod-tabs .reviews-container .rev-thumb img{
display:block;
width:80px;
height:80px;
border-radius:3px;
}
.prod-tabs .reviews-container .rev-content{
position:relative;
padding:15px;
border:1px solid #e0e0e0;
background:#ffffff;
}
.prod-tabs .reviews-container .rating{
color:#ff9c01;
font-size:13px;
}
.prod-tabs .reviews-container .rating .fa{
margin-right:1px;
}
.prod-tabs .reviews-container .rev-info{
font-size:12px;
letter-spacing:1px;
margin-bottom:10px;
}
.prod-tabs .reviews-container .rev-text{
font-size:14px;
}
.prod-tabs .add-review{
position:relative;
margin:30px 0px 20px;
font-size:14px;
}
.prod-tabs .add-review .rating{
position:relative;
padding-top:8px;
}
.prod-tabs .add-review .rating .rate-box{
position:relative;
display:inline-block;
margin-right:10px;
font-size:14px;
color:#555555;
}
.prod-tabs .add-review .rating .rate-box:hover,
.prod-tabs .add-review .rating .rate-box:focus,
.prod-tabs .add-review .rating .rate-box:active{
color:#fbad18;
}
.prod-tabs .add-review label{
position:relative;
display:block;
font-size:14px;
margin-bottom:5px;
font-weight:400;
color:#303030;
}
.prod-tabs .add-review h3{
margin-bottom:20px;
}
.prod-tabs .add-review .form-group{
position:relative;
margin-bottom:20px;
}
.prod-tabs .add-review .form-group input[type="text"],
.prod-tabs .add-review .form-group input[type="password"],
.prod-tabs .add-review .form-group input[type="tel"],
.prod-tabs .add-review .form-group input[type="email"],
.prod-tabs .add-review .form-group select{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:9px 15px;
color:#222222;
border:1px solid #e0e0e0;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.prod-tabs .add-review .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:8px 15px;
color:#222222;
border:1px solid #e0e0e0;
height:150px;
resize:none;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.prod-tabs .add-review button{
padding:8px 35px;
}
/***
====================================================================
Cart Section style
====================================================================
***/
.cart-section{
position:relative;
padding:120px 0px;
}
.cart-outer{
position:relative;
margin-bottom:50px;
}
.cart-outer .table-outer{
position:relative;
width:100%;
overflow-x:auto;
}
.cart-outer .cart-table{
width:100%;
min-width:900px;
}
.cart-table .cart-header{
position:relative;
width:100%;
text-transform:uppercase;
font-size:14px;
font-weight:500;
background:#fafafa;
color:#222222;
}
.cart-table thead tr{
position:relative;
width:100%;
}
.cart-table thead tr th{
line-height:24px;
padding:16px 30px;
min-width:120px;
font-weight:500;
font-size:14px;
}
.cart-table tbody tr td{
line-height:24px;
padding:20px 30px;
min-width:120px;
}
.cart-table tbody tr td .prod-image{
position:relative;
width:118px;
}
.cart-table tbody tr .prod-thumb{
padding-left:0px;
}
.cart-table tbody tr td .prod-image img{
display:block;
max-width:100%;
}
.cart-table tbody tr td .prod-image .remove-item{
position:absolute;
right:-5px;
top:-5px;
width:20px;
height:20px;
line-height:18px;
font-size:10px;
color:#ffffff;
background:#222222;
border-radius:50%;
text-align:center;
}
.cart-table tbody tr td .prod-image .remove-item:hover{
background:#fbad18;
}
.cart-table tbody tr td h4{
font-size:14px;
color:#222222;
font-weight:500;
text-transform:uppercase;
}
.cart-table tbody tr td .rating{
font-size:13px;
color:#fbad18;
}
.cart-table tbody tr td .rating .fa{
display:inline-block;
margin-right:3px;
font-weight:normal;
}
.cart-table tbody tr{
border-bottom:1px solid #e0e0e0;
}
.cart-table tbody tr:last-child{
border-bottom:none;
}
.cart-table tbody tr td{
vertical-align:middle;
}
.cart-table tbody tr td .quantity-spinner{
position:relative;
}
.cart-section .price-calculator{
position:relative;
}
.cart-section .coupon-panel{
position:relative;
padding:15px 30px;
line-height:26px;
background:#fafafa;
color:#222222;
cursor:pointer;
}
.cart-section .coupon-panel .icon{
position:absolute;
right:30px;
top:50%;
margin-top:-13px;
line-height:26px;
}
.cart-section .coupon-panel .fa{
font-size:16px;
}
.cart-section .coupon-panel .up{
display:none;
}
.cart-section .coupon-panel.active-panel .up{
display:block;
}
.cart-section .coupon-panel.active-panel .down{
display:none;
}
.cart-section .coupon-outer,
.cart-section .coupon-outer .apply-coupon{
position:relative;
}
.cart-section .coupon-content{
position:relative;
padding:20px 30px;
background:#f0f0f0;
display:none;
}
.cart-section .coupon-outer .form-group{
position:relative;
margin:0px;
padding-right:170px;
width:400px;
max-width:100%;
}
.cart-section .coupon-outer .form-group input[type="text"]{
display:block;
line-height:24px;
padding:9px 15px;
border:1px solid #e0e0e0;
height:44px;
border-radius:2px;
width:100%;
background:#ffffff;
}
.cart-section .coupon-outer .form-group .theme-btn{
position:absolute;
right:0px;
top:0px;
padding:8px 10px;
font-size:13px;
width:160px;
text-align:center;
}
.cart-section .price-calculator{
position:relative;
text-align:right;
}
.cart-section .price-calculator .totals-table{
margin-bottom:20px;
}
.cart-section .price-calculator .totals-table li{
margin-bottom:5px;
}
.cart-section .price-calculator .totals-table li .col{
position:relative;
float:left;
width:60%;
line-height:24px;
}
.cart-section .price-calculator .totals-table li .bold-text{
font-weight:500;
color:#222222;
width:40%;
}
.cart-section .cart-options .theme-btn{
display:block;
margin:0px 0 10px;
}
a.zt-button.color-blue {
background-color: rgb(255, 235, 59);
border: 1px solid #fff;
color: #353535;
}
.w3-btn, .w3-btn:link, .w3-btn:visited {
color: #FFFFFF;
background-color: #4CAF50;
}
.blue {
color:#2196F3;
}
.center {
text-align: center;
padding-top: 10px;
font-weight: 900;
}
.width{
width:100%;
height:100%;
}
.how{
position: relative;
padding: 0px 0px 55px;
}
.left{
right:-450px;
}
@media (min-width: 768px) {
.navbar-nav.navbar-center {
position: absolute;
left: 50%;
top: 40px;
}
}
.navleft {
float: right!important;
margin-right: 60px;
margin-top: 36px;
}
.navbarright {
float: right!important;
text-align: right;
margin-top: 30px;
}
.af {
display: inline-block;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
margin-left: 15px;
}
.igm
{
display: inline-block;
max-width: 100%;
height: auto;
margin-left:8px;
}
.iph
{
margin-left:92px;
}
.iph1
{
margin-right:-70px;
}
:hover, :focus {
color: none;
}
.nav>li>a:focus, .nav>li>a:hover {
text-decoration: none;
background-color:transparent !important;
}
.btn {
display: inline-block;
padding: 9px 22px;
margin-bottom: 0;
font-size: 20px;
font-weight: 600;
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;
left: -90px !important;
top: -8px;
}
#login-dp{
min-width: 300px;
padding: 14px 14px 0;
overflow:hidden;
background-color:rgb(255, 255, 255);
border-color: #5ca2bf;
border-width: medium;
}
#login-dp .help-block{
font-size:12px
}
#login-dp .bottom{
background-color:rgba(255,255,255,.8);
border-top:1px solid #ddd;
clear:both;
padding:14px;
}
#login-dp .social-buttons{
margin:12px 0
}
#login-dp .social-buttons a{
width: 49%;
}
#login-dp .form-group {
margin-bottom: 10px;
}
.btn-fb{
color: #fff;
background-color:#3b5998;
}
.btn-fb:hover{
color: #fff;
background-color:#496ebc
}
.btn-tw{
color: #fff;
background-color:#55acee;
}
.btn-tw:hover{
color: #fff;
background-color:#59b5fa;
}
@media(max-width:768px){
#login-dp{
background-color: inherit;
color: #fff;
}
#login-dp .bottom{
background-color: inherit;
border-top:0 none;
}
}
.iph2
{
font-weight: 600;
margin-left: 13px;
}
.dp {
min-height:35px;
}
.form-control {
display: block;
width: 150px;
height: 30px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #ffffff;
background-color: #5ca2bf;
background-image: none;
border: 1px solid #e2e8f1;
/* border-radius: 5px; */
-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;
}
.bnt{
float: right;
border: 2px solid #5ca2bf;
background: #ffffff;
width: 70px;
border-radius: 7px;
}
.open>a:focus, .nav .open>a:hover {
background-color: #5ca2bf;
border-color: #337ab7;
color: white;
}
.clr
{
color:#5ca2bf
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
background-color: #5ca2bf;
border-color: #337ab7;
color: white;
padding: 10px;
}
.dropdown-menu {
margin:10px 0 0 !important;
}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-radius: 9px;
}
.fa {
display: inline-block;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
margin-left: 0px;
}
.panel-info>.panel-heading {
color: #ffffff;
background-color: #5ca2bf;
border-color: #bce8f1;
text-align: center;
font-size: 20px;
}
.panel-danger>.panel-heading {
color: #ffffff;
background-color: #ff6f69;
border-color: #ebccd1;
text-align: center;
font-size: 20px;
}
.panel-warning>.panel-heading {
color: #ffffff;
background-color: #ffcc5c;
border-color: #faebcc;
text-align: center;
font-size: 20px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid rgba(37, 28, 86, 0);
border-top-left-radius: 9px;
border-top-right-radius: 9px;
}
.rcb
{
background-color:rgba(92, 162, 191, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.rcb2
{
background-color: rgba(255, 111, 105, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.rcb3
{
background-color: rgba(255, 204, 92, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height:225px;
}
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 15px !important;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.kfc {
height:450px;
padding-top: 60px;
}
h2.border-topp {
width: 100%;
margin: 0;
padding: 0;
text-align: center;
}
h2.border-topp:after {
display: inline-block;
margin: 0 0 8px 20px;
height: 36px;
content: " ";
text-shadow: none;
background-image: url("../../images/y2.png");
width: 425px;
}
h2.border-topp:before {
display: inline-block;
margin: 0 20px 8px 0;
height: 36px;
content: " ";
text-shadow: none;
background-image: url("../../images/y1.png");
width: 425px;
}
.btn-warning {
color: #fff;
background-color: #fbad18;
border-color: #eea236;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
margin-right: 26px;
}
.zo
{
width: 29.333333%;
left: 70px;
}
.om
{
position: inherit;
top: -16px;
left: -2px;
}
.btn-style-new
{
position: relative;
padding: 9px 40px;
line-height: 24px;
text-transform: uppercase;
background: #000;
color: #ffffff !important;
border:#000;
font-size: 13px;
font-weight: 600;
border-radius: 2px;
}
.tp-bullets {
bottom: 19% !important;
z-index: 1000;
position: absolute;
-ms-filter: "alpha(opacity=100)";
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
-webkit-transition: opacity .2s ease-out;
-moz-transition: opacity .2s ease-out;
-o-transition: opacity .2s ease-out;
-ms-transition: opacity .2s ease-out;
-webkit-transform: translateZ(5px);
}
.z0 {
width: 29.333333%;
left: 220px;
}
.royal {
background-color: rgba(255, 111, 105, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height: 240px;
}
.royal2 {
background-color: rgba(255, 204, 92, 0.4);
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
height: 225px;
}
.text-white{
color:#fff;
} | 0.234231 | 0.059757 |
.download-introduce {
position: relative
}
.download-introduce #focus-banner {
position: relative;
width: 100%;
line-height: 0;
padding: 0;
clear: both;
overflow: hidden
}
.download-introduce #focus-banner #focus-banner-list {
position: relative;
height: 520px
}
.download-introduce #focus-banner #focus-banner-list li {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 520px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
.download-introduce #focus-banner #focus-banner-list li.bannerbox1 {
background-color: #ff6422
}
.download-introduce #focus-banner #focus-banner-list li.bannerbox2 {
background-color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li:first-child {
opacity: 1;
-ms-filter: none;
filter: none
}
.download-introduce #focus-banner #focus-banner-list li.hidebanner {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
display: none
}
.download-introduce #focus-banner #focus-banner-list li.showbanner {
display: block;
opacity: 1;
-ms-filter: none;
filter: none
}
.download-introduce #focus-banner #focus-banner-list li.showbannerAnimation {
display: block;
-webkit-animation: showIn .5s linear 1 forwards;
-moz-animation: showIn .5s linear 1 forwards;
-o-animation: showIn .5s linear 1 forwards;
-ms-animation: showIn .5s linear 1 forwards;
animation: showIn .5s linear 1 forwards
}
.download-introduce #focus-banner #focus-banner-list li .banner-img {
height: 100%;
margin: 0 auto
}
.download-introduce #focus-banner #focus-banner-list li .banner-content {
position: absolute;
top: 0;
left: 50%;
width: 980px;
height: 100%;
margin-left: -450px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content.banner-content-mac {
margin-left: -373px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji {
float: left;
position: relative;
width: 360px;
height: 100%
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji img.banner-one {
position: absolute;
width: 360px;
height: 460px;
right: 0;
bottom: 0
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji img.banner-two {
position: absolute;
width: 467px;
height: 265px;
right: 0;
bottom: 135px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text {
float: left;
position: relative;
text-align: left;
width: 450px;
height: 100%
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family {
position: absolute;
width: 100%;
top: 140px;
left: 45px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family.vipkid-two-banner {
top: 115px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref {
position: relative;
display: inline-block;
width: 200px;
height: 52px;
line-height: 48px;
padding-left: 83px;
border: 2px solid #fff;
border-radius: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref img.deep-imgs,.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref img.orange-imgs {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download {
margin-bottom: 24px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover {
background-color: #fff;
color: #f85415
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover .iphone-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover .apple-orange-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download {
margin-left: 18px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover {
background-color: #fff;
color: #f85415
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover .android-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover .android-orange-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl {
display: inline-block;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover .ipd-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover .ipad-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl {
display: inline-block;
margin-right: 18px;
padding-left: 55px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover .android-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover .android-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl {
display: inline-block;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover .mac-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover .mac-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl {
display: inline-block;
padding-left: 67px;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover .windows-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover .window-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .all-small-img {
position: absolute;
top: 11px;
left: 46px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .android-small-dl {
position: absolute;
top: 11px;
left: 19px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .windows-small-dl {
position: absolute;
top: 11px;
left: 30px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family h2 {
font-size: 48px;
font-weight: 400;
color: #fff;
line-height: 62px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family h2 span {
font-size: 20px;
margin-left: 10px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.more {
display: inline-block;
margin: 5px 0;
font-size: 18px;
font-weight: 400;
color: #fff;
line-height: 28px;
margin-right: 10px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.desc {
display: inline-block;
margin: 5px 0;
font-size: 18px;
font-weight: 400;
color: #fff;
line-height: 28px;
cursor: pointer
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.deschover .ahovers {
font-size: 14px;
color: #ffc618
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.deschover .ahovers:hover {
color: #ffe185;
text-decoration: underline
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matters {
height: 17px;
line-height: 17px;
font-size: 12px;
color: #f5f4f8;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matters1 {
margin-bottom: 24px;
height: 17px;
line-height: 17px;
font-size: 12px;
color: #f5f4f8
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matter {
text-indent: 24px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .qr-code .code-img {
width: 100px;
display: inline-block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .qr-code .code-content {
color: #fff;
font-size: 14px;
line-height: 30px;
padding-left: 20px;
padding-top: 47px
}
.download-introduce #focus-banner ul#focus-bubble {
position: absolute;
width: 100%;
bottom: 20px;
z-index: 80;
text-align: center
}
.download-introduce #focus-banner ul#focus-bubble li {
display: inline-block;
padding: 10px 0;
cursor: pointer
}
.download-introduce #focus-banner ul#focus-bubble li span {
display: block;
width: 30px;
height: 5px;
margin: 0 4px;
background-color: rgba(0,0,0,.2)
}
.download-introduce #focus-banner ul#focus-bubble li.current span {
background-color: #fff
}
@-moz-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@-webkit-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@-o-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
.downloadcenter-info {
padding-bottom: 40px
}
.downloadcenter-info .recommend .product-list {
padding: 85px 15px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li {
padding: 0 15px 30px
}
.downloadcenter-info .recommend .product-list li .qrcode {
padding: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
-ms-transition: all .2s ease;
transition: all .2s ease
}
.downloadcenter-info .recommend .product-list li .qrcode:hover {
-webkit-transform: translate3d(0,-4px,0);
-moz-transform: translate3d(0,-4px,0);
-o-transform: translate3d(0,-4px,0);
-ms-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
-webkit-box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
background: #fff;
border-radius: 4px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img {
float: left;
width: 38%;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img.product-qrcode-img {
position: relative
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img img {
display: inline-block;
width: 150px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img p {
position: absolute;
width: 100px;
bottom: -50px;
left: 50%;
font-size: 12px;
margin-left: -50px;
padding: 10px 0;
color: #999;
font-weight: 400;
line-height: 24px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc {
float: left;
width: 62%;
padding-left: 20px;
padding-bottom: 6px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc h3 {
line-height: 30px;
padding-bottom: 10px;
color: #333;
font-size: 24px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc p {
height: 140px;
line-height: 1.6;
font-size: 14px;
color: #999;
word-wrap: break-word;
word-break: break-all;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list {
padding: 85px 15px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode {
padding: 30px 30px 18px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
-ms-transition: all .2s ease;
transition: all .2s ease
}
.downloadcenter-info .recommend-software .product-list li .qrcode:hover {
-webkit-transform: translate3d(0,-4px,0);
-moz-transform: translate3d(0,-4px,0);
-o-transform: translate3d(0,-4px,0);
-ms-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
-webkit-box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
background: #fff;
border-radius: 4px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img {
float: left;
width: 26%;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img.product-qrcode-img {
position: relative
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img img {
display: inline-block;
width: 94px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img p {
position: absolute;
width: 100px;
bottom: -50px;
left: 50%;
font-size: 12px;
margin-left: -50px;
padding: 10px 0;
color: #999;
font-weight: 400;
line-height: 24px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc {
float: left;
width: 74%;
padding-left: 20px;
padding-bottom: 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc h3 {
line-height: 30px;
padding-bottom: 10px;
color: #333;
font-size: 24px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc p {
height: 70px;
line-height: 1.6;
font-size: 14px;
color: #999;
word-wrap: break-word;
word-break: break-all;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download {
margin-left: 26%;
padding-left: 20px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download a {
display: inline-block;
margin-bottom: 12px;
width: 180px;
height: 48px;
line-height: 46px;
text-align: center;
color: #f85415;
font-size: 18px;
font-weight: 400;
outline: none;
border-radius: 26px;
border: 1px solid #ff6422;
cursor: pointer
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download a:hover {
color: #fff;
-webkit-box-shadow: 0 0 10px 0 rgba(255,103,26,.3),0 5px 10px 0 rgba(255,103,26,.6);
box-shadow: 0 0 10px 0 rgba(255,103,26,.3),0 5px 10px 0 rgba(255,103,26,.6);
background: #ff6422
} | static/dist/VIPKID_files/download.css | .download-introduce {
position: relative
}
.download-introduce #focus-banner {
position: relative;
width: 100%;
line-height: 0;
padding: 0;
clear: both;
overflow: hidden
}
.download-introduce #focus-banner #focus-banner-list {
position: relative;
height: 520px
}
.download-introduce #focus-banner #focus-banner-list li {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 520px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
.download-introduce #focus-banner #focus-banner-list li.bannerbox1 {
background-color: #ff6422
}
.download-introduce #focus-banner #focus-banner-list li.bannerbox2 {
background-color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li:first-child {
opacity: 1;
-ms-filter: none;
filter: none
}
.download-introduce #focus-banner #focus-banner-list li.hidebanner {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
display: none
}
.download-introduce #focus-banner #focus-banner-list li.showbanner {
display: block;
opacity: 1;
-ms-filter: none;
filter: none
}
.download-introduce #focus-banner #focus-banner-list li.showbannerAnimation {
display: block;
-webkit-animation: showIn .5s linear 1 forwards;
-moz-animation: showIn .5s linear 1 forwards;
-o-animation: showIn .5s linear 1 forwards;
-ms-animation: showIn .5s linear 1 forwards;
animation: showIn .5s linear 1 forwards
}
.download-introduce #focus-banner #focus-banner-list li .banner-img {
height: 100%;
margin: 0 auto
}
.download-introduce #focus-banner #focus-banner-list li .banner-content {
position: absolute;
top: 0;
left: 50%;
width: 980px;
height: 100%;
margin-left: -450px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content.banner-content-mac {
margin-left: -373px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji {
float: left;
position: relative;
width: 360px;
height: 100%
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji img.banner-one {
position: absolute;
width: 360px;
height: 460px;
right: 0;
bottom: 0
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-shouji img.banner-two {
position: absolute;
width: 467px;
height: 265px;
right: 0;
bottom: 135px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text {
float: left;
position: relative;
text-align: left;
width: 450px;
height: 100%
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family {
position: absolute;
width: 100%;
top: 140px;
left: 45px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family.vipkid-two-banner {
top: 115px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref {
position: relative;
display: inline-block;
width: 200px;
height: 52px;
line-height: 48px;
padding-left: 83px;
border: 2px solid #fff;
border-radius: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref img.deep-imgs,.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref img.orange-imgs {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download {
margin-bottom: 24px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover {
background-color: #fff;
color: #f85415
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover .iphone-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.iphone-download:hover .apple-orange-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download {
margin-left: 18px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover {
background-color: #fff;
color: #f85415
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover .android-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-download:hover .android-orange-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl {
display: inline-block;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover .ipd-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.ipad-dl:hover .ipad-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl {
display: inline-block;
margin-right: 18px;
padding-left: 55px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover .android-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.android-dl:hover .android-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl {
display: inline-block;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover .mac-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.mac-dl:hover .mac-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl {
display: inline-block;
padding-left: 67px;
margin-right: 18px;
margin-bottom: 23px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover {
background-color: #fff;
color: #5d3195
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover .windows-small-dl {
display: none
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref.windows-dl:hover .window-deep-img {
display: block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .all-small-img {
position: absolute;
top: 11px;
left: 46px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .android-small-dl {
position: absolute;
top: 11px;
left: 19px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .download-aHref .windows-small-dl {
position: absolute;
top: 11px;
left: 30px;
width: 26px;
height: 26px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family h2 {
font-size: 48px;
font-weight: 400;
color: #fff;
line-height: 62px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family h2 span {
font-size: 20px;
margin-left: 10px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.more {
display: inline-block;
margin: 5px 0;
font-size: 18px;
font-weight: 400;
color: #fff;
line-height: 28px;
margin-right: 10px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.desc {
display: inline-block;
margin: 5px 0;
font-size: 18px;
font-weight: 400;
color: #fff;
line-height: 28px;
cursor: pointer
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.deschover .ahovers {
font-size: 14px;
color: #ffc618
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.deschover .ahovers:hover {
color: #ffe185;
text-decoration: underline
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matters {
height: 17px;
line-height: 17px;
font-size: 12px;
color: #f5f4f8;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matters1 {
margin-bottom: 24px;
height: 17px;
line-height: 17px;
font-size: 12px;
color: #f5f4f8
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family p.matter {
text-indent: 24px
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .qr-code .code-img {
width: 100px;
display: inline-block
}
.download-introduce #focus-banner #focus-banner-list li .banner-content .banner-text .vipkid-family .qr-code .code-content {
color: #fff;
font-size: 14px;
line-height: 30px;
padding-left: 20px;
padding-top: 47px
}
.download-introduce #focus-banner ul#focus-bubble {
position: absolute;
width: 100%;
bottom: 20px;
z-index: 80;
text-align: center
}
.download-introduce #focus-banner ul#focus-bubble li {
display: inline-block;
padding: 10px 0;
cursor: pointer
}
.download-introduce #focus-banner ul#focus-bubble li span {
display: block;
width: 30px;
height: 5px;
margin: 0 4px;
background-color: rgba(0,0,0,.2)
}
.download-introduce #focus-banner ul#focus-bubble li.current span {
background-color: #fff
}
@-moz-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@-webkit-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@-o-keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
@keyframes showIn {
0% {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0)
}
to {
opacity: 1;
-ms-filter: none;
filter: none
}
}
.downloadcenter-info {
padding-bottom: 40px
}
.downloadcenter-info .recommend .product-list {
padding: 85px 15px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li {
padding: 0 15px 30px
}
.downloadcenter-info .recommend .product-list li .qrcode {
padding: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
-ms-transition: all .2s ease;
transition: all .2s ease
}
.downloadcenter-info .recommend .product-list li .qrcode:hover {
-webkit-transform: translate3d(0,-4px,0);
-moz-transform: translate3d(0,-4px,0);
-o-transform: translate3d(0,-4px,0);
-ms-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
-webkit-box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
background: #fff;
border-radius: 4px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img {
float: left;
width: 38%;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img.product-qrcode-img {
position: relative
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img img {
display: inline-block;
width: 150px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-img p {
position: absolute;
width: 100px;
bottom: -50px;
left: 50%;
font-size: 12px;
margin-left: -50px;
padding: 10px 0;
color: #999;
font-weight: 400;
line-height: 24px
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc {
float: left;
width: 62%;
padding-left: 20px;
padding-bottom: 6px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc h3 {
line-height: 30px;
padding-bottom: 10px;
color: #333;
font-size: 24px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend .product-list li .qrcode .qrcode-desc p {
height: 140px;
line-height: 1.6;
font-size: 14px;
color: #999;
word-wrap: break-word;
word-break: break-all;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list {
padding: 85px 15px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode {
padding: 30px 30px 18px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
-ms-transition: all .2s ease;
transition: all .2s ease
}
.downloadcenter-info .recommend-software .product-list li .qrcode:hover {
-webkit-transform: translate3d(0,-4px,0);
-moz-transform: translate3d(0,-4px,0);
-o-transform: translate3d(0,-4px,0);
-ms-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
-webkit-box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
box-shadow: 0 10px 15px 0 rgba(0,0,0,.06),0 15px 40px 0 rgba(0,0,0,.12);
background: #fff;
border-radius: 4px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img {
float: left;
width: 26%;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img.product-qrcode-img {
position: relative
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img img {
display: inline-block;
width: 94px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-img p {
position: absolute;
width: 100px;
bottom: -50px;
left: 50%;
font-size: 12px;
margin-left: -50px;
padding: 10px 0;
color: #999;
font-weight: 400;
line-height: 24px
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc {
float: left;
width: 74%;
padding-left: 20px;
padding-bottom: 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc h3 {
line-height: 30px;
padding-bottom: 10px;
color: #333;
font-size: 24px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .qrcode-desc p {
height: 70px;
line-height: 1.6;
font-size: 14px;
color: #999;
word-wrap: break-word;
word-break: break-all;
overflow: hidden
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download {
margin-left: 26%;
padding-left: 20px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download a {
display: inline-block;
margin-bottom: 12px;
width: 180px;
height: 48px;
line-height: 46px;
text-align: center;
color: #f85415;
font-size: 18px;
font-weight: 400;
outline: none;
border-radius: 26px;
border: 1px solid #ff6422;
cursor: pointer
}
.downloadcenter-info .recommend-software .product-list li .qrcode .btn-download a:hover {
color: #fff;
-webkit-box-shadow: 0 0 10px 0 rgba(255,103,26,.3),0 5px 10px 0 rgba(255,103,26,.6);
box-shadow: 0 0 10px 0 rgba(255,103,26,.3),0 5px 10px 0 rgba(255,103,26,.6);
background: #ff6422
} | 0.336113 | 0.162015 |
* {
margin: 0;
padding: 0;
}
body {
background-image: url('img/fundo.svg');
background-color: #0e1013;
}
body, h1, h2, p, ul, li, a {
margin: 0px;
padding: 0px;
color: #f5f5f5;
}
a{
text-decoration: none;
}
h1, p {
text-align: center;
font-family: 'Ubuntu Condensed', sans-serif;
}
h1 {
font-size: 37px;
}
p {
font-style: oblique;
}
.topnav {
width: 100%;
height: 100%;
background-image: linear-gradient(to right, black, rgb(68, 67, 67));
overflow: hidden;
font-family: 'Ubuntu Condensed', sans-serif;
}
.topnav a.active {
background-color: #253074;
color: white;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: 'Ubuntu Condensed', sans-serif;
}
a:hover {
cursor: pointer;
}
a:link {
color: white;
}
/* mouse over link */
.topnav .home:hover {
background-color: #253074;
color: white;
}
.topnav .sobre:hover {
background-color: #253074;
color: white;
}
.topnav .contato:hover {
background-color: #253074;
color: white;
}
/* selected link */
a:active {
color: #253074;
}
.titulo {
padding: 1.85rem;
background-color: #0e1013;
font-family: 'Ubuntu Condensed', sans-serif;
}
/*Social medias*/
.fundo {
color: grey;
}
ul {
position: relative;
display: flex;
transform-style: preserve-3d;
}
ul li {
position: relative;
list-style: none;
width: 60px;
height: 60px;
margin: 0 10px;
}
ul li:before {
content: '';
position: absolute;
bottom: -10;
left: 0;
width: 100%;
height: 10px;
background: #2a2a2a;
transform-origin: top;
transform: skewX(-41deg);
}
ul li:after {
content: '';
position: absolute;
top: 0;
left: -9px;
width: 9px;
height: 100%;
background: #2a2a2a;
transform-origin: right;
transform: skewY(-49deg);
}
ul li span {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex !important;
justify-content: center;
align-items: center;
background: #333;
color: rgba(255,255,255.0.2);
font-size: 30px !important;
transition: 0.2s;
}
ul li:hover span {
z-index: 1000;
transition: 0.5s;
color: #fff;
box-shadow: -1px 1px 1px rgba(0,0,0,0.05);
}
ul li:hover span:nth-child(5) {
transform: translate(40px, -40px);
opacity: 1;
}
ul li:hover span:nth-child(4) {
transform: translate(30px, -30px);
opacity: 0.8;
}
ul li:hover span:nth-child(3) {
transform: translate(20px, -20px);
opacity: 0.6;
}
ul li:hover span:nth-child(2) {
transform: translate(10px, -10px);
opacity: 0.4;
}
ul li:nth-child(1):hover span {
background: #3b5999;
}
ul li:nth-child(2):hover span {
background: #e4405f;
}
ul li:nth-child(3):hover span {
background: #55acee;
}
ul li:nth-child(4):hover span {
background: #0077b5;
}
ul li:nth-child(5):hover span {
background: #25d366;
}
.midias {
display: flex;
justify-content: center;
align-items: center;
min-height: 50vh;
}
.midias a {
color: #808080;
}
footer {
color: gray;
text-align: center;
font-family: 'Ubuntu Condensed', sans-serif;
font-size: 15px;
position: absolute;
bottom:0;
width:100%;
padding-bottom: 20px;
} | contato.css | * {
margin: 0;
padding: 0;
}
body {
background-image: url('img/fundo.svg');
background-color: #0e1013;
}
body, h1, h2, p, ul, li, a {
margin: 0px;
padding: 0px;
color: #f5f5f5;
}
a{
text-decoration: none;
}
h1, p {
text-align: center;
font-family: 'Ubuntu Condensed', sans-serif;
}
h1 {
font-size: 37px;
}
p {
font-style: oblique;
}
.topnav {
width: 100%;
height: 100%;
background-image: linear-gradient(to right, black, rgb(68, 67, 67));
overflow: hidden;
font-family: 'Ubuntu Condensed', sans-serif;
}
.topnav a.active {
background-color: #253074;
color: white;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: 'Ubuntu Condensed', sans-serif;
}
a:hover {
cursor: pointer;
}
a:link {
color: white;
}
/* mouse over link */
.topnav .home:hover {
background-color: #253074;
color: white;
}
.topnav .sobre:hover {
background-color: #253074;
color: white;
}
.topnav .contato:hover {
background-color: #253074;
color: white;
}
/* selected link */
a:active {
color: #253074;
}
.titulo {
padding: 1.85rem;
background-color: #0e1013;
font-family: 'Ubuntu Condensed', sans-serif;
}
/*Social medias*/
.fundo {
color: grey;
}
ul {
position: relative;
display: flex;
transform-style: preserve-3d;
}
ul li {
position: relative;
list-style: none;
width: 60px;
height: 60px;
margin: 0 10px;
}
ul li:before {
content: '';
position: absolute;
bottom: -10;
left: 0;
width: 100%;
height: 10px;
background: #2a2a2a;
transform-origin: top;
transform: skewX(-41deg);
}
ul li:after {
content: '';
position: absolute;
top: 0;
left: -9px;
width: 9px;
height: 100%;
background: #2a2a2a;
transform-origin: right;
transform: skewY(-49deg);
}
ul li span {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex !important;
justify-content: center;
align-items: center;
background: #333;
color: rgba(255,255,255.0.2);
font-size: 30px !important;
transition: 0.2s;
}
ul li:hover span {
z-index: 1000;
transition: 0.5s;
color: #fff;
box-shadow: -1px 1px 1px rgba(0,0,0,0.05);
}
ul li:hover span:nth-child(5) {
transform: translate(40px, -40px);
opacity: 1;
}
ul li:hover span:nth-child(4) {
transform: translate(30px, -30px);
opacity: 0.8;
}
ul li:hover span:nth-child(3) {
transform: translate(20px, -20px);
opacity: 0.6;
}
ul li:hover span:nth-child(2) {
transform: translate(10px, -10px);
opacity: 0.4;
}
ul li:nth-child(1):hover span {
background: #3b5999;
}
ul li:nth-child(2):hover span {
background: #e4405f;
}
ul li:nth-child(3):hover span {
background: #55acee;
}
ul li:nth-child(4):hover span {
background: #0077b5;
}
ul li:nth-child(5):hover span {
background: #25d366;
}
.midias {
display: flex;
justify-content: center;
align-items: center;
min-height: 50vh;
}
.midias a {
color: #808080;
}
footer {
color: gray;
text-align: center;
font-family: 'Ubuntu Condensed', sans-serif;
font-size: 15px;
position: absolute;
bottom:0;
width:100%;
padding-bottom: 20px;
} | 0.544559 | 0.132599 |
@import url('https://fonts.googleapis.com/css?family=Raleway:200,400,500,700&display=swap');
*{
padding : 0;
margin:0 ;
font-family :'Roboto', sans-serif;
}
html {
background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/b1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
font-family: 'Raleway', sans-serif;
font-size: 20px;
line-height: 28px;
word-spacing: 1px;
}
#About{height: 100vh}
header {
background-color:#000;
color: #fff;
padding: 45px 0px 45px;
position: sticky;
top: 0;
}
header h1{
margin-top: 10px;
font-size: 35px;
text-align: left;
margin-right: 50px;
color:#E9A983 ;
}
nav ul{
width: auto;
overflow: auto;
}
nav{
float: right;
margin-bottom: 30px;
}
nav ul li{
display: inline-block;
}
nav ul li a {
text-decoration: none;
color:#fff ;
font-size: 18px;
margin-right: 50px;
}
nav ul li:hover{
border: 1px solid #fff;
}
table, th, td {
border: 5px solid black;
padding: 8px;
margin: 2px;
border-collapse: separate;
border-style: double;
empty-cells: hide;
font-family: Arial, Helvetica, sans-serif;
color:rgb(112, 56, 4) ;
margin-left: 140px;
margin-top: 400px;
}
footer{
margin-top: 465px;
text-align: center;
color:rgb(250, 237, 225);
font-size: 15px;
}
#About pre{
margin-left: 210px;
margin-top: 180px;
font-size: 25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; color: rgb(252, 236, 113);
font-style: oblique;
}
.Branchs-list {
width: 19%;
padding: 15px 20px;
float: left;
margin-right: 10px;
text-align: center;
height: 300px;
font-size: 30px ;
margin-top: 18px;
margin: 70px;
color:rgb(15, 10, 7) ;
font-family: monospace
;}
.Branchs-list p iframe{
width: 200px;
height: 300px;
padding-top: 20px;
float: left;
border-radius: 20px;
}
.Branchs-list p iframe :hover{
border: 1px solid rgb(27, 25, 25);
}
#Gallery{
height: 100vh;
}
.Gallery-list img{
width: 20%;
padding: 5px 10px 5px 0;
float: right;
margin-right: 5px;
height: 300px;
margin-top: 48px;
margin: 90px 50px 50px 50px;
color:rgb(170, 117, 87) ;
border-radius: 20%
;}
#cookie table, td, th{
border: 2px solid black;
padding: 5px;
border-collapse: collapse;
}
#cookieForm{
border: #000;
background-color: #C28851;
} | css/style.css | @import url('https://fonts.googleapis.com/css?family=Raleway:200,400,500,700&display=swap');
*{
padding : 0;
margin:0 ;
font-family :'Roboto', sans-serif;
}
html {
background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/b1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
font-family: 'Raleway', sans-serif;
font-size: 20px;
line-height: 28px;
word-spacing: 1px;
}
#About{height: 100vh}
header {
background-color:#000;
color: #fff;
padding: 45px 0px 45px;
position: sticky;
top: 0;
}
header h1{
margin-top: 10px;
font-size: 35px;
text-align: left;
margin-right: 50px;
color:#E9A983 ;
}
nav ul{
width: auto;
overflow: auto;
}
nav{
float: right;
margin-bottom: 30px;
}
nav ul li{
display: inline-block;
}
nav ul li a {
text-decoration: none;
color:#fff ;
font-size: 18px;
margin-right: 50px;
}
nav ul li:hover{
border: 1px solid #fff;
}
table, th, td {
border: 5px solid black;
padding: 8px;
margin: 2px;
border-collapse: separate;
border-style: double;
empty-cells: hide;
font-family: Arial, Helvetica, sans-serif;
color:rgb(112, 56, 4) ;
margin-left: 140px;
margin-top: 400px;
}
footer{
margin-top: 465px;
text-align: center;
color:rgb(250, 237, 225);
font-size: 15px;
}
#About pre{
margin-left: 210px;
margin-top: 180px;
font-size: 25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; color: rgb(252, 236, 113);
font-style: oblique;
}
.Branchs-list {
width: 19%;
padding: 15px 20px;
float: left;
margin-right: 10px;
text-align: center;
height: 300px;
font-size: 30px ;
margin-top: 18px;
margin: 70px;
color:rgb(15, 10, 7) ;
font-family: monospace
;}
.Branchs-list p iframe{
width: 200px;
height: 300px;
padding-top: 20px;
float: left;
border-radius: 20px;
}
.Branchs-list p iframe :hover{
border: 1px solid rgb(27, 25, 25);
}
#Gallery{
height: 100vh;
}
.Gallery-list img{
width: 20%;
padding: 5px 10px 5px 0;
float: right;
margin-right: 5px;
height: 300px;
margin-top: 48px;
margin: 90px 50px 50px 50px;
color:rgb(170, 117, 87) ;
border-radius: 20%
;}
#cookie table, td, th{
border: 2px solid black;
padding: 5px;
border-collapse: collapse;
}
#cookieForm{
border: #000;
background-color: #C28851;
} | 0.36977 | 0.085595 |
@charset "utf-8";
/* CSS Document of News Container
* Author: <NAME> - ProfessionalIT
* Created in: 2010-08-20 */
.floatLeft { float: left; margin-right: 10px;}
.floatRight { float: right; }
.clear { clear: both; }
#page-wrap a { outline: none; }
#page-wrap { background: #fff; margin:3px 0px 20px 15px; min-height: 330px; padding: 0px; position: relative; width: 420px; }
#page-wrap ul { list-style: square inside; }
#page-wrap a, #page-wrap a:visited { color: #729dff; text-decoration: none; }
#page-wrap a:hover, #page-wrap a:active { color: white; }
#page-wrap blockquote { border-left: 20px solid #ccc; font-size: 14px; font-family: Georgia, serif; font-style: italic; margin-left: 20px; margin-top: 10px; padding: 0 20px;}
.slider-wrap { background-color: #fff; border: 03px solid #ccc; left: 0px; position: absolute; top: 0px; width: 419px; text-align: right; *height: 335px;}
.stripViewer .panelContainer .panel ul { margin: 0 15px 0 30px; text-align: left; }
.stripViewer { height: 285px; overflow: hidden; position: relative; width: 419px; margin-bottom: 05px; }
.stripViewer .panelContainer { left: 0; position: relative; top: 0; }
.stripViewer .panelContainer .panel { float: left; height: 100%; position: relative; width: 419px; }
.stripNavL, .stripNavR, .stripNav { display: none; }
.nav-thumb { border: 1px solid black; margin-right: 5px; height:40px; width:60px; }
#movers-row { margin: -43px 0 0 62px; }
#movers-row div { float: left; width: 20%; }
#movers-row div a.cross-link { float: right; }
.photo-meta-data { background: url(../images/transpBlack.png); color: #fff; height: 30px; margin-top: -50px; padding: 10px; position: relative; z-index: 9999; }
.photo-meta-data span { font-size: 13px; }
.cross-link { display: block; margin-top: -18px; position: relative; padding-top: 15px; width: 62px; z-index: 9999; *float:left; *margin-top: 25px;}
.active-thumb { background: transparent url(../images/icon-uparrowsmallwhite.png) top center no-repeat; }
#cross-link-ie { display: block; margin-top: -18px; position: relative; padding-top: 15px; width: 62px; z-index: 9999; *float:left; *margin-top: -14 px;} | cavalgada_do_mar/src/webapps/static/css/news.css | @charset "utf-8";
/* CSS Document of News Container
* Author: <NAME> - ProfessionalIT
* Created in: 2010-08-20 */
.floatLeft { float: left; margin-right: 10px;}
.floatRight { float: right; }
.clear { clear: both; }
#page-wrap a { outline: none; }
#page-wrap { background: #fff; margin:3px 0px 20px 15px; min-height: 330px; padding: 0px; position: relative; width: 420px; }
#page-wrap ul { list-style: square inside; }
#page-wrap a, #page-wrap a:visited { color: #729dff; text-decoration: none; }
#page-wrap a:hover, #page-wrap a:active { color: white; }
#page-wrap blockquote { border-left: 20px solid #ccc; font-size: 14px; font-family: Georgia, serif; font-style: italic; margin-left: 20px; margin-top: 10px; padding: 0 20px;}
.slider-wrap { background-color: #fff; border: 03px solid #ccc; left: 0px; position: absolute; top: 0px; width: 419px; text-align: right; *height: 335px;}
.stripViewer .panelContainer .panel ul { margin: 0 15px 0 30px; text-align: left; }
.stripViewer { height: 285px; overflow: hidden; position: relative; width: 419px; margin-bottom: 05px; }
.stripViewer .panelContainer { left: 0; position: relative; top: 0; }
.stripViewer .panelContainer .panel { float: left; height: 100%; position: relative; width: 419px; }
.stripNavL, .stripNavR, .stripNav { display: none; }
.nav-thumb { border: 1px solid black; margin-right: 5px; height:40px; width:60px; }
#movers-row { margin: -43px 0 0 62px; }
#movers-row div { float: left; width: 20%; }
#movers-row div a.cross-link { float: right; }
.photo-meta-data { background: url(../images/transpBlack.png); color: #fff; height: 30px; margin-top: -50px; padding: 10px; position: relative; z-index: 9999; }
.photo-meta-data span { font-size: 13px; }
.cross-link { display: block; margin-top: -18px; position: relative; padding-top: 15px; width: 62px; z-index: 9999; *float:left; *margin-top: 25px;}
.active-thumb { background: transparent url(../images/icon-uparrowsmallwhite.png) top center no-repeat; }
#cross-link-ie { display: block; margin-top: -18px; position: relative; padding-top: 15px; width: 62px; z-index: 9999; *float:left; *margin-top: -14 px;} | 0.535584 | 0.117775 |
.pageNavigate {
margin-top: 0.5rem;
margin-left: 2rem;
font-size: 20px;
font-weight: 500;
}
.mainTitle {
padding-left: 23%;
color: var(--darkblue);
font-family: var(--font-main-title);
margin-bottom: 1px;
}
.breadText {
padding-left: 23%;
margin-top: 16px;
margin-bottom: 40px;
font-size: 20px;
}
.test {
color: rgb(90, 116, 124);
}
.parentContainer {
background-color: rgb(255, 255, 255);
display: flex;
gap: 40px;
}
.leftContainer {
width: 17%;
gap: 40px;
display: flex;
flex-direction: column;
}
.rightContainer {
background-color: none;
width: 75%;
display: flex;
flex-direction: column;
gap: 40px;
}
.title {
font-size: 44px;
color: var(--darkblue);
font-family: var(--font-main-title);
}
.rightContainer img {
height: 40px;
margin-top: 2rem;
}
.stepOne {
background-color: var(--lighterblue);
border-radius: 0px 25px 25px 0px;
height: 107px;
}
.stepActive {
padding-left: 2rem;
margin-top: 0;
margin-bottom: 0;
padding-top: 1rem;
}
.active {
background-color: var(--blue);
border-radius: 0px 25px 25px 0px;
height: 107px;
}
.info {
background-color: var(--lighterblue);
border-radius: 25px;
padding-bottom: 3rem;
padding-left: 3rem;
width: 100%;
margin-left: 2rem;
}
.InfoType {
font-weight: 500;
}
.stepInfo {
padding-left: 2rem;
}
.step {
padding-left: 2rem;
margin-top: 0;
margin-bottom: 0;
padding-top: 1rem;
}
.inputField {
display: flex;
flex-direction: column;
}
.adress {
font-size: 28px;
}
.amentiesContainer {
display: flex;
gap: 2rem;
flex-direction: row;
width: 300px;
object-fit: fill;
}
.amentiesRow {
display: flex;
gap: 2rem;
flex-direction: row;
}
.amentiesItem {
width: 143px;
height: 143px;
background-color: rgb(255, 255, 255);
border-radius: 20px;
border: none;
margin-right: 57px;
margin-bottom: 40px;
font-size: 20px;
font-family: var(--font-titles);
cursor: pointer;
}
.amentiesItem p {
margin-top: 11px;
}
.save {
display: flex;
justify-content: space-between;
width: 100%;
padding-top: 4rem;
margin-left: 2rem;
}
.buttons {
width: 175px;
height: 68px;
background-color: rgb(212, 212, 212);
border-radius: 200px;
border: none;
cursor: pointer;
font-size: 20px;
font-weight: 500;
background-color: var(--darkblue);
color: white;
font-family: var(--font-titles);
cursor: pointer;
}
@media only screen and (min-width: 300px) and (max-width: 1024px) {
.pageNavigate {
margin-left: 20px;
}
.pageNavigate a {
font-size: 18px;
}
.leftContainer {
display: none;
}
.mainTitle {
padding-left: 16px;
font-size: 40px;
margin-left: 20px;
}
.save {
display: flex;
width: 100vw;
padding-top: 1.5rem;
flex-direction: column;
justify-content: center;
justify-self: center;
align-items: center;
gap: 1rem;
margin: 0;
}
.buttons {
width: 282px;
}
.title {
font-size: 32px;
}
.InfoType {
font-size: 18px;
font-weight: 500;
margin-bottom: 40px;
padding-right: 56px;
}
.breadText {
padding-left: 16px;
margin-left: 20px;
font-size: 18px;
padding-right: 46px;
}
.info {
margin-left: 20px;
padding-left: 16px;
padding-right: 16px;
width: 90vw;
}
.amentiesItem {
margin-right: 15px;
margin-left: 15px;
}
.amentiesItem p {
font-size: 18px;
font-family: var(--font-titles);
}
} | styles/StepTwo.module.css | .pageNavigate {
margin-top: 0.5rem;
margin-left: 2rem;
font-size: 20px;
font-weight: 500;
}
.mainTitle {
padding-left: 23%;
color: var(--darkblue);
font-family: var(--font-main-title);
margin-bottom: 1px;
}
.breadText {
padding-left: 23%;
margin-top: 16px;
margin-bottom: 40px;
font-size: 20px;
}
.test {
color: rgb(90, 116, 124);
}
.parentContainer {
background-color: rgb(255, 255, 255);
display: flex;
gap: 40px;
}
.leftContainer {
width: 17%;
gap: 40px;
display: flex;
flex-direction: column;
}
.rightContainer {
background-color: none;
width: 75%;
display: flex;
flex-direction: column;
gap: 40px;
}
.title {
font-size: 44px;
color: var(--darkblue);
font-family: var(--font-main-title);
}
.rightContainer img {
height: 40px;
margin-top: 2rem;
}
.stepOne {
background-color: var(--lighterblue);
border-radius: 0px 25px 25px 0px;
height: 107px;
}
.stepActive {
padding-left: 2rem;
margin-top: 0;
margin-bottom: 0;
padding-top: 1rem;
}
.active {
background-color: var(--blue);
border-radius: 0px 25px 25px 0px;
height: 107px;
}
.info {
background-color: var(--lighterblue);
border-radius: 25px;
padding-bottom: 3rem;
padding-left: 3rem;
width: 100%;
margin-left: 2rem;
}
.InfoType {
font-weight: 500;
}
.stepInfo {
padding-left: 2rem;
}
.step {
padding-left: 2rem;
margin-top: 0;
margin-bottom: 0;
padding-top: 1rem;
}
.inputField {
display: flex;
flex-direction: column;
}
.adress {
font-size: 28px;
}
.amentiesContainer {
display: flex;
gap: 2rem;
flex-direction: row;
width: 300px;
object-fit: fill;
}
.amentiesRow {
display: flex;
gap: 2rem;
flex-direction: row;
}
.amentiesItem {
width: 143px;
height: 143px;
background-color: rgb(255, 255, 255);
border-radius: 20px;
border: none;
margin-right: 57px;
margin-bottom: 40px;
font-size: 20px;
font-family: var(--font-titles);
cursor: pointer;
}
.amentiesItem p {
margin-top: 11px;
}
.save {
display: flex;
justify-content: space-between;
width: 100%;
padding-top: 4rem;
margin-left: 2rem;
}
.buttons {
width: 175px;
height: 68px;
background-color: rgb(212, 212, 212);
border-radius: 200px;
border: none;
cursor: pointer;
font-size: 20px;
font-weight: 500;
background-color: var(--darkblue);
color: white;
font-family: var(--font-titles);
cursor: pointer;
}
@media only screen and (min-width: 300px) and (max-width: 1024px) {
.pageNavigate {
margin-left: 20px;
}
.pageNavigate a {
font-size: 18px;
}
.leftContainer {
display: none;
}
.mainTitle {
padding-left: 16px;
font-size: 40px;
margin-left: 20px;
}
.save {
display: flex;
width: 100vw;
padding-top: 1.5rem;
flex-direction: column;
justify-content: center;
justify-self: center;
align-items: center;
gap: 1rem;
margin: 0;
}
.buttons {
width: 282px;
}
.title {
font-size: 32px;
}
.InfoType {
font-size: 18px;
font-weight: 500;
margin-bottom: 40px;
padding-right: 56px;
}
.breadText {
padding-left: 16px;
margin-left: 20px;
font-size: 18px;
padding-right: 46px;
}
.info {
margin-left: 20px;
padding-left: 16px;
padding-right: 16px;
width: 90vw;
}
.amentiesItem {
margin-right: 15px;
margin-left: 15px;
}
.amentiesItem p {
font-size: 18px;
font-family: var(--font-titles);
}
} | 0.565539 | 0.093637 |
.compare-holder {
background: #61bafc;
font-family: roboto;
position: fixed;
right: -50px;
top: 40%;
transform: rotate(-90deg);
border-radius: 4px 4px 0 0;
width: 140px;
text-align: center;
padding: 10px;
}
.product-wrapper {
border: 1px dashed #aaa;
margin-bottom: 10px;
padding: 10px;
height:125px;
}
.padding {
padding-top: 5px;
}
.compare-holder a { color: #fff }
.sideOpen .sideMenu {
right: 0;
}
.sideOpen .sideMenu:after {
-webkit-box-shadow: 0 0 60px 0 #111;
box-shadow: 0 0 60px 0 #111;
}
.sideTrigger {
float: right;
padding: 30px;
}
.closeTrigger{
border: 1px solid #ddd;
border-radius: 50%;
color: #ddd;
display: inline-block;
font-size: 31px;
font-weight: bold;
height: 30px;
line-height: 15px;
margin-bottom: 5px;
margin-top: 5px;
text-align: center;
text-decoration: none;
width: 30px;
margin-left: -15px;
}
.sideMenu:after {
content: "";
top: -10%;
left: 0;
height: 120%;
width: 150%;
z-index: -1;
position: absolute;
-webkit-box-shadow: 0 0 20px 0 #ccc;
box-shadow: 0 0 20px 0 #ccc;
}
.sideMenu {
position: fixed;
top: 0;
right: -320px;
height: 100%;
width: 260px;
background: #FFF;
-webkit-transition: all 400ms ease;
-moz-transition: all 400ms ease;
-ms-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
z-index: 999;
}
.compare-heading{
font-size:17px;
}
.remove-product{
border-radius: 0px;
border: none;
}
.compare-detail-heading{ background: #f2f2f2 none repeat scroll 0 0;
padding: 10px;
border: 1px solid #ddd;
color: #000;
font-size: 13px;
padding-left: 10px;
font-weight: 600;
}
.compare-detail-heading1{
color:#767676;
font-size:13px;
}
.compare-title{
margin-bottom: 10px;
overflow: hidden;
height: 31px;
margin-bottom:10px;
}
.compare-img{
max-height: 100px;
width: auto;
}
.closeTrigger i{ font-size: 12px; } | assets/v1/css/compare.css | .compare-holder {
background: #61bafc;
font-family: roboto;
position: fixed;
right: -50px;
top: 40%;
transform: rotate(-90deg);
border-radius: 4px 4px 0 0;
width: 140px;
text-align: center;
padding: 10px;
}
.product-wrapper {
border: 1px dashed #aaa;
margin-bottom: 10px;
padding: 10px;
height:125px;
}
.padding {
padding-top: 5px;
}
.compare-holder a { color: #fff }
.sideOpen .sideMenu {
right: 0;
}
.sideOpen .sideMenu:after {
-webkit-box-shadow: 0 0 60px 0 #111;
box-shadow: 0 0 60px 0 #111;
}
.sideTrigger {
float: right;
padding: 30px;
}
.closeTrigger{
border: 1px solid #ddd;
border-radius: 50%;
color: #ddd;
display: inline-block;
font-size: 31px;
font-weight: bold;
height: 30px;
line-height: 15px;
margin-bottom: 5px;
margin-top: 5px;
text-align: center;
text-decoration: none;
width: 30px;
margin-left: -15px;
}
.sideMenu:after {
content: "";
top: -10%;
left: 0;
height: 120%;
width: 150%;
z-index: -1;
position: absolute;
-webkit-box-shadow: 0 0 20px 0 #ccc;
box-shadow: 0 0 20px 0 #ccc;
}
.sideMenu {
position: fixed;
top: 0;
right: -320px;
height: 100%;
width: 260px;
background: #FFF;
-webkit-transition: all 400ms ease;
-moz-transition: all 400ms ease;
-ms-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
z-index: 999;
}
.compare-heading{
font-size:17px;
}
.remove-product{
border-radius: 0px;
border: none;
}
.compare-detail-heading{ background: #f2f2f2 none repeat scroll 0 0;
padding: 10px;
border: 1px solid #ddd;
color: #000;
font-size: 13px;
padding-left: 10px;
font-weight: 600;
}
.compare-detail-heading1{
color:#767676;
font-size:13px;
}
.compare-title{
margin-bottom: 10px;
overflow: hidden;
height: 31px;
margin-bottom:10px;
}
.compare-img{
max-height: 100px;
width: auto;
}
.closeTrigger i{ font-size: 12px; } | 0.37777 | 0.078113 |
body {
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active,
.btn-pp {
color: #ffffff;
background-color: #000080;
border-color: #000063;
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active,
.open .dropdown-toggle .btn-pp,
.close .dropdown-toggle .btn-pp {
color: #ffffff;
background-color: #000080;
border-color: #000080;
margin: auto;
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active {
background-color:#24248d;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px solid #ffffff;
border-right: 4px solid transparent;
border-bottom: 0 dotted;
border-left: 4px solid transparent;
content: "";
}
.btn-trans {
color: #000080;
background-color: #ffffff;
border-color: #ffffff;
}
.btn-trans:hover,
.btn-trans:focus,
.btn-trans:active,
.btn-trans.active,
.open .dropdown-toggle .btn-trans,
.btn-group .btn-trans {
color: #000080;
background-color: #ffffff;
border-color: #ffffff;
}
.btn-trans .btn-lg:hover,
.btn-trans .btn-lg:focus,
.btn-trans .btn-lg:active,
.btn-trans.active,
.btn-trans .btn-lg {
padding: 5px 5px;
font-size: 24px;
}
.btn-pill:hover,
.btn-pill:focus,
.btn-pill:active,
.btn-pill.active,
.btn-pill {
border-radius: 25px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 10px;
padding-top: 10px;
background: #ffffff;
border-color: #000080;
color: #000080;
}
.form-control:focus,
.form-control {
border-color: #000080;
color: #000080;
border-width: 2px;
height: 45px;
}
.form-control[readonly],
.form-control[disabled] {
background-color: #CCCCFF;
}
#txt-search {
width: 100%;
height: 45px;
margin-left: 15px;
}
.table > thead > tr > th {
padding-bottom: 15px;
padding-top: 0px;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #000080;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #000080;
color: #000080;
}
.table > tbody > tr > td {
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #000080;
vertical-align: middle;
color: #000080;
}
.btn-link-a > li > a {
color: #000080;
text-align: left;
}
.btn-link-a > li > a:hover,
.btn-link-a > li > a:focus {
color: #000080;
text-decoration: none;
background-color: #f5f5f5;
}
.dh {
color: #428bca;
text-align: left;
}
.modal-delete .modal-content {
border-width: 2px;
border-style: solid;
border-color: #d9534f;
}
.modal-delete .modal-header {
font-size: 24px;
background-color: #d9534f;
color: #ffffff;
}
.modal-main .modal-content {
border-width: 2px;
border-style: solid;
border-color: #000080;
}
.modal-main .modal-header {
font-size: 24px;
background-color: #000080;
color: #ffffff;
}
.btn-xlg {
font-size: 110px;
color: #d9534f;
text-align: center;
}
.btn-70px {
width: 70px;
}
.btn-90px {
width: 90px;
}
.btn-120px {
width: 120px;
}
.panel-role {
border-color: #ffffff;
width: 100%;
}
.panel-role > .panel-heading {
color: #333333;
background-color: #ffffff;
border-color: #ffffff;
}
.panel-role > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ffffff;
}
.panel-role > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #ffffff;
}
input,
select,
textarea {
max-width: 100%;
}
.dropdown-menu-right {
right: 0;
left: auto;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9;
}
.modal {
text-align: center;
padding: 0 !important;
}
.modal:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.row,
.col-lg-6 {
padding-left: 0px;
}
.control-label .ur {
font-size: 12px;
color: #000080;
}
.panel-blue {
font-size: 14px;
margin-top: 15px;
border-color: #000080;
border-width: 2px;
border-radius: 8px;
margin-bottom: -15px;
margin-right:15px;
}
.panel-blue > .panel-heading {
color: #ffffff;
border-top-left-radius: 5px;
border-top-left-radius: 5px;
background-color: #000080;
border-color: #000080;
font-size: 14px;
border-width: 3px;
}
.panel-blue > .panel-heading + .panel-collapse .panel-body {
border-top-color: #000080;
}
.panel-blue > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #000080;
}
.panel-blue > .panel-body {
height: 100%;
max-height: 200px;
padding-top: 20px;
padding-bottom: 20px;
}
.btn:focus {
outline: none;
}
.checkbox label:after {
content: '';
display: table;
clear: both;
}
.checkbox .cr {
position: relative;
display: inline-block;
border: 2px solid #000080;
border-radius: 5px;
width: 20px;
height: 20px;
float: left;
margin-right: 10px;
}
.checkbox .cr .cr-icon {
position: absolute;
font-size: 14px;
color: #000080;
line-height: 0;
top: 35%;
left: 8%;
}
.checkbox label input[type="checkbox"] {
display: none;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon {
transform: scale(3) rotateZ(-20deg);
opacity: 0;
transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled + .cr {
opacity: .5;
}
.modal-white .modal-dialog {
max-width: 60%;
width: 100%;
}
.modal-white .modal-content {
border-width: 1px;
border-style: solid;
border-color: #000080;
border-radius: 0px;
max-width: 100%;
width: 100%;
}
.modal-white .modal-header {
font-size: 24px;
padding-right:100px;
font-weight: bold;
background-color: #F5F5F5;
border-bottom: none;
color: #000080;
height: 60px;
}
.modal-white .modal-footer {
background-color: #F5F5F5;
border-top: none;
color: #000080;
height: 60px;
vertical-align: central;
}
#myTabs {
border-bottom: 1px solid #808080;
max-width: 100%;
width: 100%;
}
#my-table > tbody > tr:nth-child(odd) > td,
#my-table > tbody > tr:nth-child(odd) > th {
background-color: #C8BFE7;
}
#my-table > tbody > tr > td {
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #ffffff;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #ffffff;
vertical-align: middle;
color: #000080;
}
#btn-keluar {
background-color: #000080;
border: 1px solid #000080;
border-radius: 0px;
color: #ffffff;
margin: 0px;
width: 150px;
}
#myTabs {
border-bottom: 1px solid #c0c0d8;
}
#myTabs > li {
float: left;
width: 200px;
border-radius: 0px;
margin-right: -3px;
margin-left: 0px;
margin-bottom: -1px;
}
#myTabs > li > a {
margin-right: 2px;
text-align: center;
background: #ffffff;
color: #000080;
font-weight: bold;
line-height: 1.428571429;
border: 1px solid #c0c0d8;
border-radius: unset;
border-bottom-color: transparent;
outline:none;
padding-bottom:7px;
margin-top:11px;
padding-top:5px;
}
#myTabs > li > a:hover {
/*border-color: #c0c0d8 #c0c0d8 #c0c0d8;*/
background: #ffffff;
}
#myTabs > li.active > a,
#myTabs > li.active > a:hover,
#myTabs > li.active > a:focus {
color: #000080;
cursor: default;
background-color: #ffffff;
border: 1px solid #c0c0d8;
border-bottom-color: #ffffff;
border-top: 5px outset #000080;
outline:none;
}
#myTabs > li.active > a {
padding-bottom:10px;
margin-top:0px;
padding-top:10px;
}
#myTabs.nav-justified {
width: 100%;
border-bottom: 0;
}
#myTabs.nav-justified > li {
float: none;
}
#myTabs.nav-justified > li > a {
text-align: center;
}
@media (min-width: 768px) {
#myTabs.nav-justified > li {
display: table-cell;
width: 1%;
}
}
#myTabs.nav-justified > li > a {
margin-right: 0;
border-bottom: 1px solid #dddddd;
}
#myTabs.nav-justified > .active > a {
border-bottom-color: #ffffff;
}
.tab-content {
margin-top: 0px;
padding-top: 20px;
border-top-color: transparent;
border-bottom: 1px solid #c0c0d8;
border-left: 1px solid #c0c0d8;
border-right: 1px solid #c0c0d8;
}
.btn-prodet {
font-size:small;
width:55px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
padding-bottom:5px;
border-radius:0px;
} | ngxsis.MVC/Content/role.css | body {
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active,
.btn-pp {
color: #ffffff;
background-color: #000080;
border-color: #000063;
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active,
.open .dropdown-toggle .btn-pp,
.close .dropdown-toggle .btn-pp {
color: #ffffff;
background-color: #000080;
border-color: #000080;
margin: auto;
}
.btn-pp:hover,
.btn-pp:focus,
.btn-pp:active,
.btn-pp.active {
background-color:#24248d;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px solid #ffffff;
border-right: 4px solid transparent;
border-bottom: 0 dotted;
border-left: 4px solid transparent;
content: "";
}
.btn-trans {
color: #000080;
background-color: #ffffff;
border-color: #ffffff;
}
.btn-trans:hover,
.btn-trans:focus,
.btn-trans:active,
.btn-trans.active,
.open .dropdown-toggle .btn-trans,
.btn-group .btn-trans {
color: #000080;
background-color: #ffffff;
border-color: #ffffff;
}
.btn-trans .btn-lg:hover,
.btn-trans .btn-lg:focus,
.btn-trans .btn-lg:active,
.btn-trans.active,
.btn-trans .btn-lg {
padding: 5px 5px;
font-size: 24px;
}
.btn-pill:hover,
.btn-pill:focus,
.btn-pill:active,
.btn-pill.active,
.btn-pill {
border-radius: 25px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 10px;
padding-top: 10px;
background: #ffffff;
border-color: #000080;
color: #000080;
}
.form-control:focus,
.form-control {
border-color: #000080;
color: #000080;
border-width: 2px;
height: 45px;
}
.form-control[readonly],
.form-control[disabled] {
background-color: #CCCCFF;
}
#txt-search {
width: 100%;
height: 45px;
margin-left: 15px;
}
.table > thead > tr > th {
padding-bottom: 15px;
padding-top: 0px;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #000080;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #000080;
color: #000080;
}
.table > tbody > tr > td {
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #000080;
vertical-align: middle;
color: #000080;
}
.btn-link-a > li > a {
color: #000080;
text-align: left;
}
.btn-link-a > li > a:hover,
.btn-link-a > li > a:focus {
color: #000080;
text-decoration: none;
background-color: #f5f5f5;
}
.dh {
color: #428bca;
text-align: left;
}
.modal-delete .modal-content {
border-width: 2px;
border-style: solid;
border-color: #d9534f;
}
.modal-delete .modal-header {
font-size: 24px;
background-color: #d9534f;
color: #ffffff;
}
.modal-main .modal-content {
border-width: 2px;
border-style: solid;
border-color: #000080;
}
.modal-main .modal-header {
font-size: 24px;
background-color: #000080;
color: #ffffff;
}
.btn-xlg {
font-size: 110px;
color: #d9534f;
text-align: center;
}
.btn-70px {
width: 70px;
}
.btn-90px {
width: 90px;
}
.btn-120px {
width: 120px;
}
.panel-role {
border-color: #ffffff;
width: 100%;
}
.panel-role > .panel-heading {
color: #333333;
background-color: #ffffff;
border-color: #ffffff;
}
.panel-role > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ffffff;
}
.panel-role > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #ffffff;
}
input,
select,
textarea {
max-width: 100%;
}
.dropdown-menu-right {
right: 0;
left: auto;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9;
}
.modal {
text-align: center;
padding: 0 !important;
}
.modal:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.row,
.col-lg-6 {
padding-left: 0px;
}
.control-label .ur {
font-size: 12px;
color: #000080;
}
.panel-blue {
font-size: 14px;
margin-top: 15px;
border-color: #000080;
border-width: 2px;
border-radius: 8px;
margin-bottom: -15px;
margin-right:15px;
}
.panel-blue > .panel-heading {
color: #ffffff;
border-top-left-radius: 5px;
border-top-left-radius: 5px;
background-color: #000080;
border-color: #000080;
font-size: 14px;
border-width: 3px;
}
.panel-blue > .panel-heading + .panel-collapse .panel-body {
border-top-color: #000080;
}
.panel-blue > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #000080;
}
.panel-blue > .panel-body {
height: 100%;
max-height: 200px;
padding-top: 20px;
padding-bottom: 20px;
}
.btn:focus {
outline: none;
}
.checkbox label:after {
content: '';
display: table;
clear: both;
}
.checkbox .cr {
position: relative;
display: inline-block;
border: 2px solid #000080;
border-radius: 5px;
width: 20px;
height: 20px;
float: left;
margin-right: 10px;
}
.checkbox .cr .cr-icon {
position: absolute;
font-size: 14px;
color: #000080;
line-height: 0;
top: 35%;
left: 8%;
}
.checkbox label input[type="checkbox"] {
display: none;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon {
transform: scale(3) rotateZ(-20deg);
opacity: 0;
transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon {
transform: scale(1) rotateZ(0deg);
opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled + .cr {
opacity: .5;
}
.modal-white .modal-dialog {
max-width: 60%;
width: 100%;
}
.modal-white .modal-content {
border-width: 1px;
border-style: solid;
border-color: #000080;
border-radius: 0px;
max-width: 100%;
width: 100%;
}
.modal-white .modal-header {
font-size: 24px;
padding-right:100px;
font-weight: bold;
background-color: #F5F5F5;
border-bottom: none;
color: #000080;
height: 60px;
}
.modal-white .modal-footer {
background-color: #F5F5F5;
border-top: none;
color: #000080;
height: 60px;
vertical-align: central;
}
#myTabs {
border-bottom: 1px solid #808080;
max-width: 100%;
width: 100%;
}
#my-table > tbody > tr:nth-child(odd) > td,
#my-table > tbody > tr:nth-child(odd) > th {
background-color: #C8BFE7;
}
#my-table > tbody > tr > td {
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #ffffff;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #ffffff;
vertical-align: middle;
color: #000080;
}
#btn-keluar {
background-color: #000080;
border: 1px solid #000080;
border-radius: 0px;
color: #ffffff;
margin: 0px;
width: 150px;
}
#myTabs {
border-bottom: 1px solid #c0c0d8;
}
#myTabs > li {
float: left;
width: 200px;
border-radius: 0px;
margin-right: -3px;
margin-left: 0px;
margin-bottom: -1px;
}
#myTabs > li > a {
margin-right: 2px;
text-align: center;
background: #ffffff;
color: #000080;
font-weight: bold;
line-height: 1.428571429;
border: 1px solid #c0c0d8;
border-radius: unset;
border-bottom-color: transparent;
outline:none;
padding-bottom:7px;
margin-top:11px;
padding-top:5px;
}
#myTabs > li > a:hover {
/*border-color: #c0c0d8 #c0c0d8 #c0c0d8;*/
background: #ffffff;
}
#myTabs > li.active > a,
#myTabs > li.active > a:hover,
#myTabs > li.active > a:focus {
color: #000080;
cursor: default;
background-color: #ffffff;
border: 1px solid #c0c0d8;
border-bottom-color: #ffffff;
border-top: 5px outset #000080;
outline:none;
}
#myTabs > li.active > a {
padding-bottom:10px;
margin-top:0px;
padding-top:10px;
}
#myTabs.nav-justified {
width: 100%;
border-bottom: 0;
}
#myTabs.nav-justified > li {
float: none;
}
#myTabs.nav-justified > li > a {
text-align: center;
}
@media (min-width: 768px) {
#myTabs.nav-justified > li {
display: table-cell;
width: 1%;
}
}
#myTabs.nav-justified > li > a {
margin-right: 0;
border-bottom: 1px solid #dddddd;
}
#myTabs.nav-justified > .active > a {
border-bottom-color: #ffffff;
}
.tab-content {
margin-top: 0px;
padding-top: 20px;
border-top-color: transparent;
border-bottom: 1px solid #c0c0d8;
border-left: 1px solid #c0c0d8;
border-right: 1px solid #c0c0d8;
}
.btn-prodet {
font-size:small;
width:55px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
padding-bottom:5px;
border-radius:0px;
} | 0.284974 | 0.045649 |
@media only screen and (min-width: 768px) and (max-width: 1199px) {
.utf-banner-area-block.auto-height h1, .utf-banner-area-block.text-normal h1, .utf-banner-area-block.large-heading h1, .utf-banner-area-block.typed-text h1 {
font-size: 50px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.utf-about-area-item .right-info {
padding-left: 15px;
margin-top: 30px;
}
.utf-banner-area-block.navbar-transparent .content {
margin-top: 60px;
}
.copyright {
margin-bottom: 20px;
}
/* Portfolio */
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 50%;
}
.portfolio-details-area .right-info {
margin-top: 30px;
padding-left: 15px;
}
/* Contact */
.utf-contact-area .right-info {
margin-top: 40px;
padding-left: 15px;
}
/* Footer */
footer {
text-align: center;
line-height: inherit;
}
footer .text-left, footer .text-right {
text-align: center;
}
footer .logo {
margin-bottom: 20px;
}
footer.centerd .logo {
margin-bottom: 20px;
}
footer.centerd .copyright {
margin-top: 20px;
padding-top: 20px;
}
footer .copyright.border {
margin-top: 20px;
}
footer .menu {
margin-bottom: 20px;
}
footer p {
line-height: inherit;
}
footer.copyright-center .utf-footer-social {
margin-top: 20px;
}
footer.centerd .menu {
margin-bottom: 0;
}
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
/* Heading */
h1 {
font-size: 36px;
}
h2 {
font-size: 26px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
line-height: 1.5;
}
h5 {
font-size: 16px;
line-height: 1.4;
}
h6 {
font-size: 14px;
line-height: 1.4;
}
.bg-fixed {
background-attachment: fixed;
background-position: center right;
background-size: cover;
}
.utf-box-cell .content h3 {
font-size: 18px;
}
.default-padding {
padding-top: 50px;
padding-bottom: 50px;
}
.padding-xl {
padding-bottom: 50px;
padding-top: 50px;
}
.default-padding.bottom-less {
padding-bottom: 20px;
padding-top: 50px;
}
.default-padding-bottom {
padding-bottom: 50px;
}
.default-padding-top {
padding-top: 50px;
}
.default-padding.bottom-30 {
padding-bottom: 0;
padding-top: 50px;
}
.default-padding.bottom-20 {
padding-bottom: 20px;
padding-top: 50px;
}
.utf-page-heading {
padding: 50px 0;
}
nav.navbar .navbar-brand img.logo {
height: 35px;
}
.utf-site-heading {
margin-bottom: 30px;
}
.utf-site-heading.center-mobile {
text-align: center;
}
.utf-site-heading.center-mobile h2::before {
left: 50%;
margin-left: -10px;
}
.utf-site-heading.center-mobile h2::after {
left: 50%;
margin-left: -40px;
}
.carousel-shadow .utf-site-heading {
margin-bottom: 15px;
}
.copyright {
margin-bottom: 20px;
}
/* Breadcrumb */
.utf-page-heading h1 {
font-size: 36px;
line-height:44px;
}
/* Side Nav */
.side {
padding: 50px 30px;
width: 320px;
}
/* Banner */
.utf-banner-area-block.navbar-transparent .content {
margin-top: 60px;
}
.utf-banner-area-block.content-shadow .content {
padding: 30px;
}
.utf-banner-area-block, .utf-banner-area-block div {
height: auto;
}
.utf-banner-area-block .utf-box-cell {
padding: 100px 0 !important;
}
.utf-banner-area-block.text-normal h1 {
font-size: 36px;
line-height:44px;
margin-bottom: 20px;
}
.utf-banner-area-block.content-shadow h1 {
font-size: 36px;
line-height: 1.2;
}
.utf-banner-area-block.content-shadow h2 {
font-size: 24px;
font-weight: 700;
}
.utf-banner-area-block.heading-only h2 {
font-weight: 400;
line-height: 1.2;
}
.utf-banner-area-block.typed-text h1 {
font-size: 36px;
line-height: 1.2;
margin-bottom: 20px;
}
.utf-banner-area-block.typed-text a {
margin-top: 15px;
padding:10px 15px;
}
.utf-banner-area-block.large-heading h1 {
font-size: 36px;
line-height: 1.2;
margin-bottom: 20px;
}
.utf-banner-area-block.large-heading a, .utf-banner-area-block.typed-text a, .utf-banner-area-block.large-heading a, .utf-box-table a.btn {
margin-top: 15px;
padding:10px 15px;
}
.utf-banner-area-block.content-shadow.text-normal h1 {
font-size: 36px;
}
.utf-banner-area-block.auto-height h1 {
font-size: 40px;
line-height: 1.2;
margin-bottom: 15px !important;
}
.utf-portfolio-area-item.info-shadow .item-info{
padding:22px 20px;
}
/* About */
.utf-about-area-item .right-info {
padding-left: 15px;
margin-top: 30px;
}
.utf-about-area-item.about-us .left-info .thumb {
margin-bottom: 15px;
}
.utf-about-area-item.about-us .left-info .thumb:last-child {
margin-bottom: 0;
}
/* Services */
.utf-services-area .utf-services-carousel .item {
text-align: center;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav {
text-align: center;
}
/* Portfolio */
.utf-portfolio-area-item.default-padding {
padding-bottom: 35px;
}
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 100%;
}
.mix-item-menu {
text-align: center;
}
.mix-item-menu.text-left button, .mix-item-menu button {
margin-bottom: 10px;
}
.mix-item-menu.active-border button.active::after {
left: 50%;
margin-left: -15px;
}
.mix-item-menu.category-count button.active::after {
display: none;
}
.mix-item-menu.category-count button {
padding: 6px 20px;
margin-bottom:12px
}
.portfolio-details-area .right-info {
margin-top: 30px;
padding-left: 15px;
}
.related-projects .owl-dots {
margin-bottom: -15px;
}
.mix-item-menu.dots button::after {
display: none;
}
.mix-item-menu.dots button {
margin-bottom:10px;
}
/* Team */
.utf-team-area .utf-team-items .owl-dots {
margin-bottom: -15px;
margin-top: 10px !important;
}
/* Fun Factor */
.utf-fun-factor-area.bottom-less.default-padding {
padding-bottom: 15px;
}
.utf-fun-factor-area .item {
margin-bottom: 25px;
}
/* Clients */
.utf-clients-area .clients-items.utf-clients-carousel .owl-dots {
margin-bottom: -15px;
margin-top: 20px;
}
.utf-clients-area .clients-items .owl-nav .owl-prev, .utf-clients-area .clients-items .owl-nav .owl-next {
left: 0px;
}
.utf-clients-area .clients-items .owl-nav .owl-next {
left: auto;
right: 0px;
}
/* Contact */
.utf-contact-area .right-info {
margin-top: 40px;
padding-left: 15px;
}
.google-maps-area iframe {
height: 300px;
}
/* Error Page */
.utf-error-page-area h1 {
font-size: 120px;
line-height: 90px;
margin-bottom: 30px;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav .owl-prev {
left: -10px;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav .owl-next {
right: -10px;
}
/* Footer */
footer {
text-align: center;
line-height: inherit;
}
footer .text-left, footer .text-right {
text-align: center;
}
footer .logo {
margin-bottom: 20px;
}
footer.centerd .logo {
margin-bottom: 20px;
}
footer.centerd .copyright {
margin-top: 20px;
padding-top: 20px;
}
footer .copyright.border {
margin-top: 20px;
}
footer .menu li a::after {
display: none;
}
footer .menu {
margin-bottom: 20px;
}
footer .menu li a {
padding: 0 8px;
}
footer p {
line-height: inherit;
}
footer.copyright-center .utf-footer-social {
margin-top: 20px;
}
footer.centerd .menu {
margin-bottom: 0;
}
}
@media only screen and (min-width: 580px) and (max-width: 767px) {
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 50%;
}
} | TCB Work Html/assets/css/responsive.css | @media only screen and (min-width: 768px) and (max-width: 1199px) {
.utf-banner-area-block.auto-height h1, .utf-banner-area-block.text-normal h1, .utf-banner-area-block.large-heading h1, .utf-banner-area-block.typed-text h1 {
font-size: 50px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.utf-about-area-item .right-info {
padding-left: 15px;
margin-top: 30px;
}
.utf-banner-area-block.navbar-transparent .content {
margin-top: 60px;
}
.copyright {
margin-bottom: 20px;
}
/* Portfolio */
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 50%;
}
.portfolio-details-area .right-info {
margin-top: 30px;
padding-left: 15px;
}
/* Contact */
.utf-contact-area .right-info {
margin-top: 40px;
padding-left: 15px;
}
/* Footer */
footer {
text-align: center;
line-height: inherit;
}
footer .text-left, footer .text-right {
text-align: center;
}
footer .logo {
margin-bottom: 20px;
}
footer.centerd .logo {
margin-bottom: 20px;
}
footer.centerd .copyright {
margin-top: 20px;
padding-top: 20px;
}
footer .copyright.border {
margin-top: 20px;
}
footer .menu {
margin-bottom: 20px;
}
footer p {
line-height: inherit;
}
footer.copyright-center .utf-footer-social {
margin-top: 20px;
}
footer.centerd .menu {
margin-bottom: 0;
}
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
/* Heading */
h1 {
font-size: 36px;
}
h2 {
font-size: 26px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
line-height: 1.5;
}
h5 {
font-size: 16px;
line-height: 1.4;
}
h6 {
font-size: 14px;
line-height: 1.4;
}
.bg-fixed {
background-attachment: fixed;
background-position: center right;
background-size: cover;
}
.utf-box-cell .content h3 {
font-size: 18px;
}
.default-padding {
padding-top: 50px;
padding-bottom: 50px;
}
.padding-xl {
padding-bottom: 50px;
padding-top: 50px;
}
.default-padding.bottom-less {
padding-bottom: 20px;
padding-top: 50px;
}
.default-padding-bottom {
padding-bottom: 50px;
}
.default-padding-top {
padding-top: 50px;
}
.default-padding.bottom-30 {
padding-bottom: 0;
padding-top: 50px;
}
.default-padding.bottom-20 {
padding-bottom: 20px;
padding-top: 50px;
}
.utf-page-heading {
padding: 50px 0;
}
nav.navbar .navbar-brand img.logo {
height: 35px;
}
.utf-site-heading {
margin-bottom: 30px;
}
.utf-site-heading.center-mobile {
text-align: center;
}
.utf-site-heading.center-mobile h2::before {
left: 50%;
margin-left: -10px;
}
.utf-site-heading.center-mobile h2::after {
left: 50%;
margin-left: -40px;
}
.carousel-shadow .utf-site-heading {
margin-bottom: 15px;
}
.copyright {
margin-bottom: 20px;
}
/* Breadcrumb */
.utf-page-heading h1 {
font-size: 36px;
line-height:44px;
}
/* Side Nav */
.side {
padding: 50px 30px;
width: 320px;
}
/* Banner */
.utf-banner-area-block.navbar-transparent .content {
margin-top: 60px;
}
.utf-banner-area-block.content-shadow .content {
padding: 30px;
}
.utf-banner-area-block, .utf-banner-area-block div {
height: auto;
}
.utf-banner-area-block .utf-box-cell {
padding: 100px 0 !important;
}
.utf-banner-area-block.text-normal h1 {
font-size: 36px;
line-height:44px;
margin-bottom: 20px;
}
.utf-banner-area-block.content-shadow h1 {
font-size: 36px;
line-height: 1.2;
}
.utf-banner-area-block.content-shadow h2 {
font-size: 24px;
font-weight: 700;
}
.utf-banner-area-block.heading-only h2 {
font-weight: 400;
line-height: 1.2;
}
.utf-banner-area-block.typed-text h1 {
font-size: 36px;
line-height: 1.2;
margin-bottom: 20px;
}
.utf-banner-area-block.typed-text a {
margin-top: 15px;
padding:10px 15px;
}
.utf-banner-area-block.large-heading h1 {
font-size: 36px;
line-height: 1.2;
margin-bottom: 20px;
}
.utf-banner-area-block.large-heading a, .utf-banner-area-block.typed-text a, .utf-banner-area-block.large-heading a, .utf-box-table a.btn {
margin-top: 15px;
padding:10px 15px;
}
.utf-banner-area-block.content-shadow.text-normal h1 {
font-size: 36px;
}
.utf-banner-area-block.auto-height h1 {
font-size: 40px;
line-height: 1.2;
margin-bottom: 15px !important;
}
.utf-portfolio-area-item.info-shadow .item-info{
padding:22px 20px;
}
/* About */
.utf-about-area-item .right-info {
padding-left: 15px;
margin-top: 30px;
}
.utf-about-area-item.about-us .left-info .thumb {
margin-bottom: 15px;
}
.utf-about-area-item.about-us .left-info .thumb:last-child {
margin-bottom: 0;
}
/* Services */
.utf-services-area .utf-services-carousel .item {
text-align: center;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav {
text-align: center;
}
/* Portfolio */
.utf-portfolio-area-item.default-padding {
padding-bottom: 35px;
}
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 100%;
}
.mix-item-menu {
text-align: center;
}
.mix-item-menu.text-left button, .mix-item-menu button {
margin-bottom: 10px;
}
.mix-item-menu.active-border button.active::after {
left: 50%;
margin-left: -15px;
}
.mix-item-menu.category-count button.active::after {
display: none;
}
.mix-item-menu.category-count button {
padding: 6px 20px;
margin-bottom:12px
}
.portfolio-details-area .right-info {
margin-top: 30px;
padding-left: 15px;
}
.related-projects .owl-dots {
margin-bottom: -15px;
}
.mix-item-menu.dots button::after {
display: none;
}
.mix-item-menu.dots button {
margin-bottom:10px;
}
/* Team */
.utf-team-area .utf-team-items .owl-dots {
margin-bottom: -15px;
margin-top: 10px !important;
}
/* Fun Factor */
.utf-fun-factor-area.bottom-less.default-padding {
padding-bottom: 15px;
}
.utf-fun-factor-area .item {
margin-bottom: 25px;
}
/* Clients */
.utf-clients-area .clients-items.utf-clients-carousel .owl-dots {
margin-bottom: -15px;
margin-top: 20px;
}
.utf-clients-area .clients-items .owl-nav .owl-prev, .utf-clients-area .clients-items .owl-nav .owl-next {
left: 0px;
}
.utf-clients-area .clients-items .owl-nav .owl-next {
left: auto;
right: 0px;
}
/* Contact */
.utf-contact-area .right-info {
margin-top: 40px;
padding-left: 15px;
}
.google-maps-area iframe {
height: 300px;
}
/* Error Page */
.utf-error-page-area h1 {
font-size: 120px;
line-height: 90px;
margin-bottom: 30px;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav .owl-prev {
left: -10px;
}
.utf-services-area .utf-services-carousel.utf-services-items .owl-nav .owl-next {
right: -10px;
}
/* Footer */
footer {
text-align: center;
line-height: inherit;
}
footer .text-left, footer .text-right {
text-align: center;
}
footer .logo {
margin-bottom: 20px;
}
footer.centerd .logo {
margin-bottom: 20px;
}
footer.centerd .copyright {
margin-top: 20px;
padding-top: 20px;
}
footer .copyright.border {
margin-top: 20px;
}
footer .menu li a::after {
display: none;
}
footer .menu {
margin-bottom: 20px;
}
footer .menu li a {
padding: 0 8px;
}
footer p {
line-height: inherit;
}
footer.copyright-center .utf-footer-social {
margin-top: 20px;
}
footer.centerd .menu {
margin-bottom: 0;
}
}
@media only screen and (min-width: 580px) and (max-width: 767px) {
.utf-portfolio-area-item .utf-portfolio-items .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-2 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-3 .pf-item, .utf-portfolio-area-item .utf-portfolio-items.col-4 .pf-item, .utf-portfolio-area-item .utf-portfolio-items .pf-item.width {
width: 50%;
}
} | 0.177597 | 0.069101 |
html {
height: 100%;
width: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
}
@media (min-width: 0px) and (max-width: 359px) {
html {
font-size: 14px;
}
}
body {
height: 100%;
width: 100%;
margin: 0;
background-color: var(--page-bg-color);
}
:root {
--page-bg-color: #590e79;
--main-color: #3e1350;
---secondary-color: #091919;
--main-font-color: #d3dbe6;
}
#root {
height: 100%;
width: 100%;
margin: 0;
display: flex;
justify-content: center;
}
#app {
width: 100%;
height: 100%;
display: flex;
max-width: 700px;
flex-direction: column;
color: var(--main-font-color);
background-color: var(--main-color);
overflow: auto;
}
@media (min-width: 600px) {
#app {
padding: 0px 40px;
}
}
#app-root {
width: 100%;
flex: 1;
padding: 0;
margin: 0;
overflow: auto;
}
.page-container,
.details-container {
display: grid;
align-content: center;
}
@media (min-height: 600px) {
.details-container {
margin-top: 20%;
}
.page-container {
height: 100%;
}
}
@media (min-height: 1000px) {
.details-container {
margin-top: 35%;
}
}
.btn {
padding: 3px 10px 3px 10px;
margin: 8px 4px 2px 4px;
background: linear-gradient(cyan, #9fa2c3);
color: black;
text-align: center;
cursor: pointer;
border-radius: 2.5px;
}
#main {
display: grid;
grid-template-columns: 100%;
grid-template-rows:
minmax(min-content, max-content)
minmax(min-content, max-content)
minmax(86px, max-content)
minmax(min-content, 1fr);
grid-gap: 0px;
height: 100%;
width: 100%;
justify-items: center;
}
#appehead {
display: flex;
font-weight: bold;
font-size: 1.3em;
margin-bottom: 4px;
margin-top: 4px;
}
#networth {
grid-column: 1;
grid-row: 1;
display: flex;
white-space: nowrap;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
@media (max-height: 415px) {
#networth {
flex-direction: row;
}
}
#networth > div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 6px;
}
.total-val {
font-size: 1.4rem;
}
.net-changes {
font-size: 0.9rem;
}
#change-period-buttons {
grid-row: 4;
display: flex;
align-items: center;
justify-content: center;
white-space: nowrap;
align-self: end;
flex-wrap: wrap;
}
#change-period-buttons > div {
display: flex;
}
.change-period-btn {
margin-top: 6px;
margin-bottom: 6px;
margin-left: 4px;
margin-right: 4px;
padding: 4px 8px;
cursor: pointer;
transition: all 0.3s ease-out;
text-decoration: none;
text-align: center;
width: 70px;
user-select: none;
}
.period-btn-pressed {
background-color: cyan;
color: black;
}
#footer-buttons {
width: 100%;
display: flex;
margin-bottom: 4px;
border-top: 2px;
border-top-color: var(---main-font-color);
border-top-style: solid;
min-height: max-content;
}
#footer-buttons > div {
flex: 1;
display: flex;
align-items: center;
}
.footer-button {
height: 2.5em;
margin: 8px;
transition: 0.4s;
cursor: pointer;
}
.glow-btn {
animation: glow 1s infinite alternate;
}
@keyframes glow {
from {
box-shadow: 0 0 10px -10px #7de4a4;
}
to {
box-shadow: 0 0 10px 10px #7de4a4;
}
}
.svgbody {
fill: var(--main-font-color);
}
.footer-button > .svgbody > .a {
fill: var(--main-font-color);
}
#add-coin {
height: 3em;
border-radius: 100px;
}
.clickable {
cursor: pointer;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.inp {
background-color: inherit;
border-width: 0px;
border-bottom-width: 1px;
font: inherit;
color: inherit;
}
.right {
text-align: right;
}
.inp:focus {
outline: none;
}
.inp:focus {
outline: none;
}
.link-no-decor {
color: inherit;
text-decoration: none;
}
#about {
margin: 8px;
padding: 6px;
word-break: break-word;
overflow: auto;
background-color: var(---secondary-color);
}
#about a {
text-decoration: none;
color: #00b6ff;
} | src/index.css | html {
height: 100%;
width: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
}
@media (min-width: 0px) and (max-width: 359px) {
html {
font-size: 14px;
}
}
body {
height: 100%;
width: 100%;
margin: 0;
background-color: var(--page-bg-color);
}
:root {
--page-bg-color: #590e79;
--main-color: #3e1350;
---secondary-color: #091919;
--main-font-color: #d3dbe6;
}
#root {
height: 100%;
width: 100%;
margin: 0;
display: flex;
justify-content: center;
}
#app {
width: 100%;
height: 100%;
display: flex;
max-width: 700px;
flex-direction: column;
color: var(--main-font-color);
background-color: var(--main-color);
overflow: auto;
}
@media (min-width: 600px) {
#app {
padding: 0px 40px;
}
}
#app-root {
width: 100%;
flex: 1;
padding: 0;
margin: 0;
overflow: auto;
}
.page-container,
.details-container {
display: grid;
align-content: center;
}
@media (min-height: 600px) {
.details-container {
margin-top: 20%;
}
.page-container {
height: 100%;
}
}
@media (min-height: 1000px) {
.details-container {
margin-top: 35%;
}
}
.btn {
padding: 3px 10px 3px 10px;
margin: 8px 4px 2px 4px;
background: linear-gradient(cyan, #9fa2c3);
color: black;
text-align: center;
cursor: pointer;
border-radius: 2.5px;
}
#main {
display: grid;
grid-template-columns: 100%;
grid-template-rows:
minmax(min-content, max-content)
minmax(min-content, max-content)
minmax(86px, max-content)
minmax(min-content, 1fr);
grid-gap: 0px;
height: 100%;
width: 100%;
justify-items: center;
}
#appehead {
display: flex;
font-weight: bold;
font-size: 1.3em;
margin-bottom: 4px;
margin-top: 4px;
}
#networth {
grid-column: 1;
grid-row: 1;
display: flex;
white-space: nowrap;
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
@media (max-height: 415px) {
#networth {
flex-direction: row;
}
}
#networth > div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 6px;
}
.total-val {
font-size: 1.4rem;
}
.net-changes {
font-size: 0.9rem;
}
#change-period-buttons {
grid-row: 4;
display: flex;
align-items: center;
justify-content: center;
white-space: nowrap;
align-self: end;
flex-wrap: wrap;
}
#change-period-buttons > div {
display: flex;
}
.change-period-btn {
margin-top: 6px;
margin-bottom: 6px;
margin-left: 4px;
margin-right: 4px;
padding: 4px 8px;
cursor: pointer;
transition: all 0.3s ease-out;
text-decoration: none;
text-align: center;
width: 70px;
user-select: none;
}
.period-btn-pressed {
background-color: cyan;
color: black;
}
#footer-buttons {
width: 100%;
display: flex;
margin-bottom: 4px;
border-top: 2px;
border-top-color: var(---main-font-color);
border-top-style: solid;
min-height: max-content;
}
#footer-buttons > div {
flex: 1;
display: flex;
align-items: center;
}
.footer-button {
height: 2.5em;
margin: 8px;
transition: 0.4s;
cursor: pointer;
}
.glow-btn {
animation: glow 1s infinite alternate;
}
@keyframes glow {
from {
box-shadow: 0 0 10px -10px #7de4a4;
}
to {
box-shadow: 0 0 10px 10px #7de4a4;
}
}
.svgbody {
fill: var(--main-font-color);
}
.footer-button > .svgbody > .a {
fill: var(--main-font-color);
}
#add-coin {
height: 3em;
border-radius: 100px;
}
.clickable {
cursor: pointer;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.inp {
background-color: inherit;
border-width: 0px;
border-bottom-width: 1px;
font: inherit;
color: inherit;
}
.right {
text-align: right;
}
.inp:focus {
outline: none;
}
.inp:focus {
outline: none;
}
.link-no-decor {
color: inherit;
text-decoration: none;
}
#about {
margin: 8px;
padding: 6px;
word-break: break-word;
overflow: auto;
background-color: var(---secondary-color);
}
#about a {
text-decoration: none;
color: #00b6ff;
} | 0.461017 | 0.090655 |
@-moz-document url("http://cds.mtchs.org/moodle/") {
tbody, .no-overflow, .content, #inst4, #inst5, #region-post, .region-main, #page-footer, .paging.paging-morelink, #dock, div.enrolmenticons, div.addtoall.expandall, div.removefromall.collapseall{
display:none;
}
.logininfo{
text-size:25% !important;
}
#frontpage-course-list{
width:535px;
}
body a, h2, h3, h4, h5, h6{
font-family:Helvetica;
color:#34495E;
}
h1{
font-family:Helvetica;
}
body{
background-color:#fff;
}
.headermenu{
margin-top:23px;
}
.coursebox.info.coursename a {
background-image:url(http://www.cakedot.com/dancing_catSmiley.gif);
background-visibility:0;
padding: 10px;
margin:auto;
}
.coursebox > .info > .coursename a {
display: block;
background-image: url(http://www.cakedot.com/dancing_catSmiley.gif);
background-repeat: no-repeat;
padding-left: 25px;
background-size:15px;
background-position: left center;
}
.coursebox > .info {
padding-left: 5px;
}
h3.a{
background-image:url(http://www.cakedot.com/dancing_catSmiley.gif);
}
h3.name a{
font:30px arial,helvetica,clean,sans-serif;
font-size:150%;
padding:0;
margin:auto;
}
div.coursebox.clearfix.odd.first, div.coursebox.clearfix.even, div.coursebox.clearfix.odd, div.coursebox.clearfix.odd.last{
}
.courses .coursebox.clearfix.odd{
background-color:#E4F1FE;
}
.courses .coursebox.clearfix.even{
background-color:#fff;
}
div.coursebox.clearfix{
width:535px;
height: 34px;
transition: background-color 0.5s ease;
}
.coursebox.clearfix:hover{
background-color: #89C4F4;
transition: background-color 0.5s ease;
}
a{
width: 500px;
font-size:inheret;
transition: background-color 0.5s ease;
}
a:hover{
text-decoration:none;
transition: background-color 0.5s ease;
color:black;
}
.region-content{
width:1000px;
}
div[role=main]{
width:550px;
margin-left:0px;
}
h2.headingblock.header{
display:none;
}
div.courses.frontpage-course-list-enrolled{
width:550px;
float:left;
padding-top: 20px;
}
#region-main{
margin-left:200px;
}
#region-content{
height: 800px;
width:550px;
}
#region-main-box{
right:400px;
}
#region-main-wrap{
right:0;
width:550px;
}
#page-content #region-main {
margin-right: 0px;
margin-left: 215px;
overflow: hidden;
}
} | data/usercss/97925.user.css | @-moz-document url("http://cds.mtchs.org/moodle/") {
tbody, .no-overflow, .content, #inst4, #inst5, #region-post, .region-main, #page-footer, .paging.paging-morelink, #dock, div.enrolmenticons, div.addtoall.expandall, div.removefromall.collapseall{
display:none;
}
.logininfo{
text-size:25% !important;
}
#frontpage-course-list{
width:535px;
}
body a, h2, h3, h4, h5, h6{
font-family:Helvetica;
color:#34495E;
}
h1{
font-family:Helvetica;
}
body{
background-color:#fff;
}
.headermenu{
margin-top:23px;
}
.coursebox.info.coursename a {
background-image:url(http://www.cakedot.com/dancing_catSmiley.gif);
background-visibility:0;
padding: 10px;
margin:auto;
}
.coursebox > .info > .coursename a {
display: block;
background-image: url(http://www.cakedot.com/dancing_catSmiley.gif);
background-repeat: no-repeat;
padding-left: 25px;
background-size:15px;
background-position: left center;
}
.coursebox > .info {
padding-left: 5px;
}
h3.a{
background-image:url(http://www.cakedot.com/dancing_catSmiley.gif);
}
h3.name a{
font:30px arial,helvetica,clean,sans-serif;
font-size:150%;
padding:0;
margin:auto;
}
div.coursebox.clearfix.odd.first, div.coursebox.clearfix.even, div.coursebox.clearfix.odd, div.coursebox.clearfix.odd.last{
}
.courses .coursebox.clearfix.odd{
background-color:#E4F1FE;
}
.courses .coursebox.clearfix.even{
background-color:#fff;
}
div.coursebox.clearfix{
width:535px;
height: 34px;
transition: background-color 0.5s ease;
}
.coursebox.clearfix:hover{
background-color: #89C4F4;
transition: background-color 0.5s ease;
}
a{
width: 500px;
font-size:inheret;
transition: background-color 0.5s ease;
}
a:hover{
text-decoration:none;
transition: background-color 0.5s ease;
color:black;
}
.region-content{
width:1000px;
}
div[role=main]{
width:550px;
margin-left:0px;
}
h2.headingblock.header{
display:none;
}
div.courses.frontpage-course-list-enrolled{
width:550px;
float:left;
padding-top: 20px;
}
#region-main{
margin-left:200px;
}
#region-content{
height: 800px;
width:550px;
}
#region-main-box{
right:400px;
}
#region-main-wrap{
right:0;
width:550px;
}
#page-content #region-main {
margin-right: 0px;
margin-left: 215px;
overflow: hidden;
}
} | 0.26322 | 0.056288 |
body {
color: #868686;
background-color: #0c0d0d;
}
.navbar {
*position: relative;
*z-index: 2;
margin-bottom: 20px;
overflow: visible;
}
.navbar-fixed-top, .navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1130;
margin-bottom: 0;
}
#header.navbar {
min-width: 0px;
}
.navbar-fixed-top {
top: 0;
}
.navbar-fixed-top {
left: 180px;
}
#header .navbar-inner {
top: 0px;
width: 100%;
margin: 0px !important;
margin-bottom: -2px !important;
border-top: 0px !important;
border-left: 0px !important;
border-right: 0px !important;
padding: 0px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
height: 70px;
border: none !important;
background: rgba(49, 58, 70, 1) !important;
color: #fff;
}
/* .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner {
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
box-shadow: 0 1px 10px rgba(0,0,0,0.1);
} */
.container-fluid {
padding-right: 20px;
padding-left: 20px;
*zoom: 1;
}
#header .brand {
position: relative;
display: block;
float: left;
width: 200px;
height: 70px;
color: inherit;
font-weight: 400;
background: inherit;
opacity: initial;
line-height: 30px;
margin-left: -20px;
font-size: 20px;
background-color: rgba(30, 38, 48, 1);
}
img {
width: auto\9;
height: auto;
max-width: 100%;
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#header .brand img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
max-width: 70%;
max-height: 100%;
}
.top-nav-ul {
margin: 0;
}
.top-nav-ul li {
float: left;
}
.top-nav-ul li a {
position: relative;
display: block;
padding: 0 30px;
line-height: 70px;
color: inherit;
}
.top-nav-ul li a:hover,
.top-nav-hover {
text-decoration: none;
color: #fff;
background-color: rgba(69, 103, 202, 1);
}
.quick-navigation {
margin-top: 22px;
}
.quick-navigation li a {
margin-right: 10px;
padding:4px 13px;
font-size: 12px;
background-color: rgba(107, 113, 121, 1);
border-radius: 50px;
line-height: initial;
}
.quick-navigation li a:hover {
text-decoration: none;
background-color: #fff;
color: #313A46;
}
.quick-navigation .el-badge .el-badge__content.is-fixed {
right: 24px;
}
.navbar .nav {
position: relative;
display: block;
float: left;
margin: 0 10px 0 0;
margin-top: 18px;
cursor: pointer;
color: #409EFF;
}
.navbar .nav.pull-right {
float: right;
margin-right: 0;
}
#main-sidebar {
width: 180px;
position: fixed;
top: 0;
bottom: 0;
left: 0;
background: #0c0d0d;
z-index: 1039;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#bce-content {
position: absolute;
top: 0;
left: 180px;
bottom: 0;
right: 0;
}
.sidebar-nav-btn {
display: block;
width: 180px;
height: 60px;
*zoom: 1;
display: inline-block;
*display: inline;
zoom: 1;
float: left;
transition-duration: 0.3s;
color: #E8ECF0;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#main-sidebar.sidebar-collapsed .sidebar-nav-btn {
width: 40px;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#main-sidebar .nav-icon {
float: right;
margin-top: 17px;
margin-right: 14px;
font-size: 20px;
cursor: pointer;
}
#main-sidebar .nav-icon:hover {
color: #2a5caa;
}
#main-sidebar.sidebar-collapsed {
width: 40px;
}
#bce-content.sidebar-collapsed,
#bce-content.sidebar-collapsed,
#bce-content.sidebar-collapsed #header {
left: 40px;
}
#sidebar-products {
margin: 0;
margin-top: 60px;
}
#main-sidebar .sidebar-item {
position: relative;
display: block;
left: -200px;
}
#main-sidebar .sidebar-item.loaded {
left: 0;
}
#main-sidebar .sidebar-item > a {
display: block;
line-height: 40px;
height: 40px;
padding: 0 10px;
padding-left: 5px;
color: #FFF;
white-space: nowrap;
overflow: hidden;
}
#main-sidebar .sidebar-item .fa {
float: left;
margin-top: 10px;
font-size: 20px;
}
#main-sidebar .sidebar-item > a:hover,
#main-sidebar .sidebar-item > a.active{
text-decoration: none;
background-color: #0F1012;
}
#main-sidebar .sidebar-item > a:hover > i.fa,
#main-sidebar .sidebar-item > a.active i.fa {
color: #4fbffb;
opacity: 1;
}
#main-sidebar .sidebar-item > a > span {
margin-left: 10px;
max-width: 120px;
vertical-align: middle;
*zoom: 1;
display: inline-block;
*display: inline;
zoom: 1;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
display: none;
}
#main-sidebar .sidebar-item > a > span.show {
display: inline-block;
}
#container {
margin-top: 70px;
}
#sidebar {
position: fixed;
width: 200px;
height: calc(100vh - 70px);
background-color: rgba(49, 58, 70, 1);
overflow-y: auto;
}
#main-content {
margin-top: 0px;
margin-left: 200px;
min-height: calc(100vh - 70px);
box-shadow: none;
background: #edeff3;
}
#sidebar ul {
margin-top: 0;
width: 100%;
margin-bottom: 100px;
list-style: none;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
#sidebar > ul > li {
display: block;
margin: 0 0 1px 0;
padding: 0;
border: 0px;
}
#sidebar > ul > li > a {
display: block;
position: relative;
margin: 0;
border: 0px;
padding: 0px 13px 0px 0;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
text-decoration: none;
font-size: 12px;
font-weight: normal;
height: 40px;
line-height: 40px;
color: #fff;
}
#sidebar > ul > li > a .fa {
float: left;
width: 40px;
line-height: 40px;
height: 100%;
margin-right: 10px;
text-align: center;
font-size: 18px;
}
#sidebar > ul > li > a:hover,
#sidebar > ul > li > ul.sub > li > a:hover {
background-color: #2a313b;
}
#sidebar > ul > li > a:hover .fa {
background-color: #232234;
}
#sidebar > ul > li.active > a,
#sidebar > ul > li > ul.sub > li.active a {
background-color: #354260;
}
#sidebar > ul > li.active > a .fa,
#sidebar > ul > li > ul.sub > li.active a .fa {
background-color: #354779;
}
#sidebar ul > li > a .arrow {
float: right;
margin-top: 18px;
margin-right: 5px;
width: 0;
height: 0;
border-left: 4px solid #c2cbd9;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
}
#sidebar > ul > li > ul.sub {
display: none;
list-style: none;
clear: both;
margin: 0px;
background-color: rgba(29, 34, 41, 1);
}
#sidebar > ul > li > ul.sub > li > a {
display: block;
position: relative;
padding: 10px 10px 10px 60px;
color: #fff;
text-decoration: none;
font-size: 13px;
font-weight: normal;
}
#sidebar > ul > li > a .arrow.open {
border-top: 5px solid #fff;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
}
#footer {
padding: 8px 20px 5px 20px;
font-size: 12px;
text-align: center;
}
.page-content {
padding: 20px;
padding-top: 0;
}
/* .page-search,
.list-content,
.edit-content,
.info-content {
padding: 15px;
background-color: #fff;
} */
.mt-20 {
margin-top: 20px;
}
.page-search .el-form--inline {
overflow: hidden;
}
.page-search .el-form--inline .el-form-item {
/* float: left; */
margin-bottom: 8px;
/* width: 25%; */
margin-right: 0;
}
.page-search .el-form--inline .search-item-auto {
width: auto;
}
.page-search .el-form-item__content {
width: 140px;
}
.page-search .el-form--inline .search-item-auto .el-form-item__content {
width: auto;
}
.page-search .el-form--inline .el-form-item:last-child {
width: 220px;
}
.page-search .el-form-item:last-child .el-form-item__content {
margin-left: 80px;
}
.page {
float: right;
}
.box-card {
font-size: 14px;
}
.box-card .el-card__header {
font-size: 16px;
}
.edit-content .el-form-item {
width: 30.33%;
}
.edit-content .el-form-item .el-form-item__content,
.edit-content .el-select {
width: 100%;
}
.edit-content .el-form-item:last-child {
display: block;
}
.info-content .el-form-item {
margin-bottom: 0;
}
.admin-avatar {
float: left;
width: 31px;
height: 31px;
margin-right: 5px;
}
.admin-info {
float: left;
margin-left: 5px;
}
.admin-info span {
display: block;
font-size: 12px;
}
.admin-info span:first-child {
color: #fff;
}
.admin-info span:last-child {
color: #409EFF;
}
.navbar .nav .el-icon--right {
margin-top: 15px;
color: #fff;
}
.page-crumb {
padding-top: 10px;
padding-bottom: 10px;
font-size: 12px !important;
color: #AEAEAE;
}
.page-crumb .el-breadcrumb__inner {
color: inherit;
}
.page-crumb .el-breadcrumb__item:last-child .el-breadcrumb__inner {
color: #333333;
}
.search-page,
.add-page,
.info-page,
.console-page {
padding: 10px 20px;
background-color: #fff;
}
.page-search {
border-bottom: 1px solid #E4E4E4;
}
.page-search .el-form-item__label {
font-size: 12px;
color: #333;
}
.search-item-time .el-form-item__content {
width: 364px;
}
.search-item-time .el-form-item__content .el-range-editor--mini.el-input__inner {
width: 100%;
}
.mt-10 {
margin-top: 10px;
}
.el-table .el-table__header-wrapper .cell {
font-size: 12px;
color: #909399;
}
.el-table .el-table__body-wrapper .cell {
font-size: 12px;
color: #5E5E5E;
}
.el-table td {
padding: 5px !important;
}
.el-button+.el-button {
margin-left: 0px !important;
}
.login-page {
position: relative;
width: 100%;
height: 100vh;
background: url('../images/login_bg.png') no-repeat center;
background-size: cover;
overflow: hidden;
}
.login-content {
position: absolute;
z-index: 10;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
width: 765px;
height: 460px;
border-radius: 10px;
background: rgba(255, 255, 255, .1);
box-shadow: 3px 3px 6px 3px rgba(0, 0, 0, .3);
overflow: hidden;
}
.login-content::before {
background: url('../images/login_bg.png') no-repeat center;
background-size: cover;
}
.login-content::before{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
box-sizing: border-box;
background-attachment: fixed;
content: '';
-webkit-filter: blur(5px) brightness(1.3);
filter: blur(5px) brightness(1.3);
clip-path: inset(0);
}
.login-left {
position: relative;
width: 56%;
height: 100%;
padding: 44px;
}
.login-title {
margin-top: 20px;
font-size: 30px;
color: #fff;
}
.login-copy {
position: absolute;
bottom: 44px;
font-size: 12px;
color: #fff;
}
.login-right {
width: 44%;
height: 100%;
padding: 50px 25px;
background-color: #fff;
}
.login-right-text {
color: #7c7c7c;
font-size: 14px;
}
.login-right-text2 {
font-size: 30px;
color: #1b1b1b;
}
.login-input-content {
margin-top: 75px;
}
.login-input {
margin-bottom: 20px;
}
.login-input input {
border: 1px solid #b6b6b6;
}
.img-code-content .login-input {
float: left;
width: 145px;
}
.login-img {
float: right;
width: 115px;
height: 40px;
background-color: #b6b6b6;
border-radius: 4px;
cursor: pointer;
}
.login-btn {
width: 100%;
}
.quick-navigation li a.platform-content {
margin-right: 20px;
}
.platform-content .el-dropdown {
color: inherit;
cursor: pointer;
}
.quick-navigation li a.quick-navigation-icon {
margin-right: 20px;
padding: 0;
font-size: 14px;
background-color: initial;
line-height: 25px;
color: #C1C2C7;
}
.quick-navigation li a.quick-navigation-icon:hover {
color: #fff;
}
.top-nav {
position: relative;
height: 70px;
}
.testing-environment {
position: absolute;
top: 80px;
right: -20px;
padding: 7px 10px 7px 20px;
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
background: rgba(0, 0, 0, .3);
font-size: 20px;
color:red;
}
.el-table__body tr.hover-row.current-row>td,.el-table__body tr.hover-row.el-table__row--striped.current-row>td,.el-table__body tr.hover-row.el-table__row--striped>td,.el-table__body tr.hover-row>td {
background-color:#f5f7fa !important
}
.el-table .el-button--default {
color: #797979;
}
.form-content,
.form-content {
margin: 10px 0;
overflow: hidden;
}
.form-content .el-form-item,
.form-content .el-form-item {
float: left;
width: 40%;
margin-right: 5%;
min-height: 30px;
}
.form-content .el-form-item:last-child,
.form-content .el-form-width-all,
.form-content .el-form-width-all {
float: none;
width: 85%;
clear: both;
}
.form-content .el-select,
.form-content .el-date-editor.el-input,
.form-content .el-cascader,
.form-content-auto .el-select,
.form-content-auto .el-date-editor.el-input,
.form-content-auto .el-cascader {
width: 100%;
}
.form-content .el-radio,
.form-content .el-radio {
line-height: 2;
}
.mb-10 {
margin-bottom: 10px;
}
.dividing-line {
width: 100%;
height:1px;
margin-bottom: 18px;
background-color: rgba(215, 215, 215, 1);
clear: both;
}
.console-login-information {
width: 100%;
padding: 15px;
margin-top: 10px;
border-radius: 10px;
background-color: rgba(245, 246, 250, 1);
}
.console-login-information-title {
font-size: 16px;
color: #333;
}
.console-login-informations {
margin-top: 10px;
font-size: 14px;
color: #333333;
}
.console-login-informations span {
float: left;
width: 33.33%;
}
.color-42B4EF {
color: #42B4EF;
}
.console-big-statistics {
margin-top: 30px;
}
.console-small-statistics {
margin-top: 30px;
}
.console-big-statistics a {
float: left;
width: 15%;
height: 111px;
padding: 10px;
margin-right: 2%;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
color: #fff;
}
.console-big-statistics a:last-child {
margin-right: 0;
}
.console-statistics-name {
margin-top: 15px;
font-size: 14px;
}
.console-statistics-value {
margin-top: 10px;
font-size: 22px;
}
.console-big-statistics-bg1 {
background-image: url('../images/console_big_icon1.png');
}
.console-big-statistics-bg2 {
background-image: url('../images/console_big_icon2.png');
}
.console-big-statistics-bg3 {
background-image: url('../images/console_big_icon3.png');
}
.console-big-statistics-bg4 {
background-image: url('../images/console_big_icon4.png');
}
.console-big-statistics-bg5 {
background-image: url('../images/console_big_icon5.png');
}
.console-big-statistics-bg6 {
background-image: url('../images/console_big_icon6.png');
}
.console-small-statistics a {
float: left;
width: 11.5%;
height: 84px;
padding: 10px;
margin-right: 1.14%;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
color: #fff;
}
.console-small-statistics a:last-child {
margin-right: 0;
}
.console-small-statistics-bg1 {
background-image: url('../images/console_small_icon1.png');
}
.console-small-statistics-bg2 {
background-image: url('../images/console_small_icon2.png');
}
.console-small-statistics-bg3 {
background-image: url('../images/console_small_icon3.png');
}
.console-small-statistics-bg4 {
background-image: url('../images/console_small_icon4.png');
}
.console-small-statistics-bg5 {
background-image: url('../images/console_small_icon5.png');
}
.console-small-statistics-bg6 {
background-image: url('../images/console_small_icon6.png');
}
.console-small-statistics-bg7 {
background-image: url('../images/console_small_icon7.png');
}
.console-small-statistics-bg8 {
background-image: url('../images/console_small_icon8.png');
}
.console-small-statistics .console-statistics-name {
margin-top: 8px;
}
.console-small-statistics .console-statistics-value {
margin-top: 5px;
}
.echarts-content {
margin-top: 30px;
}
.el-form .el-checkbox,
.el-form .el-radio {
font-weight: normal;
}
@media screen and (max-width: 1200px) {
.form-content .el-form-item,
.form-content .el-form-item,
.form-content .el-form-item:last-child,
.form-content .el-form-width-all,
.form-content .el-form-width-all {
float: none;
width: 100%;
clear: both;
margin-right: 0;
}
}
.page-404 {
position: relative;
width: 100%;
height: 100vh;
background-color: #fff;
overflow: hidden;
border: 30px solid #f5f6fa;
}
.content-404 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 646px;
height: 366px;
}
.content-404 img {
display: block;
width: 100%;
}
.title-404 {
font-size: 16px;
color: #333;
text-align: center;
}
.page-500 {
position: relative;
width: 100%;
height: calc(100vh - 121px);
background-color: #fff;
overflow: hidden;
}
.authority-title {
font-size: 32px;
color: #949494;
text-align: center;
}
.authority-info {
margin-top: 10px;
color: #BCBCBC;
font-size: 18px;
text-align: center;
}
.content-500 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 640px;
height: 470px;
}
.content-500 img {
display: block;
margin: auto;
} | Bundle/Resources/public/css/style.css | body {
color: #868686;
background-color: #0c0d0d;
}
.navbar {
*position: relative;
*z-index: 2;
margin-bottom: 20px;
overflow: visible;
}
.navbar-fixed-top, .navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1130;
margin-bottom: 0;
}
#header.navbar {
min-width: 0px;
}
.navbar-fixed-top {
top: 0;
}
.navbar-fixed-top {
left: 180px;
}
#header .navbar-inner {
top: 0px;
width: 100%;
margin: 0px !important;
margin-bottom: -2px !important;
border-top: 0px !important;
border-left: 0px !important;
border-right: 0px !important;
padding: 0px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
height: 70px;
border: none !important;
background: rgba(49, 58, 70, 1) !important;
color: #fff;
}
/* .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner {
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
box-shadow: 0 1px 10px rgba(0,0,0,0.1);
} */
.container-fluid {
padding-right: 20px;
padding-left: 20px;
*zoom: 1;
}
#header .brand {
position: relative;
display: block;
float: left;
width: 200px;
height: 70px;
color: inherit;
font-weight: 400;
background: inherit;
opacity: initial;
line-height: 30px;
margin-left: -20px;
font-size: 20px;
background-color: rgba(30, 38, 48, 1);
}
img {
width: auto\9;
height: auto;
max-width: 100%;
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#header .brand img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
max-width: 70%;
max-height: 100%;
}
.top-nav-ul {
margin: 0;
}
.top-nav-ul li {
float: left;
}
.top-nav-ul li a {
position: relative;
display: block;
padding: 0 30px;
line-height: 70px;
color: inherit;
}
.top-nav-ul li a:hover,
.top-nav-hover {
text-decoration: none;
color: #fff;
background-color: rgba(69, 103, 202, 1);
}
.quick-navigation {
margin-top: 22px;
}
.quick-navigation li a {
margin-right: 10px;
padding:4px 13px;
font-size: 12px;
background-color: rgba(107, 113, 121, 1);
border-radius: 50px;
line-height: initial;
}
.quick-navigation li a:hover {
text-decoration: none;
background-color: #fff;
color: #313A46;
}
.quick-navigation .el-badge .el-badge__content.is-fixed {
right: 24px;
}
.navbar .nav {
position: relative;
display: block;
float: left;
margin: 0 10px 0 0;
margin-top: 18px;
cursor: pointer;
color: #409EFF;
}
.navbar .nav.pull-right {
float: right;
margin-right: 0;
}
#main-sidebar {
width: 180px;
position: fixed;
top: 0;
bottom: 0;
left: 0;
background: #0c0d0d;
z-index: 1039;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#bce-content {
position: absolute;
top: 0;
left: 180px;
bottom: 0;
right: 0;
}
.sidebar-nav-btn {
display: block;
width: 180px;
height: 60px;
*zoom: 1;
display: inline-block;
*display: inline;
zoom: 1;
float: left;
transition-duration: 0.3s;
color: #E8ECF0;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#main-sidebar.sidebar-collapsed .sidebar-nav-btn {
width: 40px;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
-moz-transition: width 0.3s;
-webkit-transition: width 0.3s;
transition: width 0.3s;
}
#main-sidebar .nav-icon {
float: right;
margin-top: 17px;
margin-right: 14px;
font-size: 20px;
cursor: pointer;
}
#main-sidebar .nav-icon:hover {
color: #2a5caa;
}
#main-sidebar.sidebar-collapsed {
width: 40px;
}
#bce-content.sidebar-collapsed,
#bce-content.sidebar-collapsed,
#bce-content.sidebar-collapsed #header {
left: 40px;
}
#sidebar-products {
margin: 0;
margin-top: 60px;
}
#main-sidebar .sidebar-item {
position: relative;
display: block;
left: -200px;
}
#main-sidebar .sidebar-item.loaded {
left: 0;
}
#main-sidebar .sidebar-item > a {
display: block;
line-height: 40px;
height: 40px;
padding: 0 10px;
padding-left: 5px;
color: #FFF;
white-space: nowrap;
overflow: hidden;
}
#main-sidebar .sidebar-item .fa {
float: left;
margin-top: 10px;
font-size: 20px;
}
#main-sidebar .sidebar-item > a:hover,
#main-sidebar .sidebar-item > a.active{
text-decoration: none;
background-color: #0F1012;
}
#main-sidebar .sidebar-item > a:hover > i.fa,
#main-sidebar .sidebar-item > a.active i.fa {
color: #4fbffb;
opacity: 1;
}
#main-sidebar .sidebar-item > a > span {
margin-left: 10px;
max-width: 120px;
vertical-align: middle;
*zoom: 1;
display: inline-block;
*display: inline;
zoom: 1;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
display: none;
}
#main-sidebar .sidebar-item > a > span.show {
display: inline-block;
}
#container {
margin-top: 70px;
}
#sidebar {
position: fixed;
width: 200px;
height: calc(100vh - 70px);
background-color: rgba(49, 58, 70, 1);
overflow-y: auto;
}
#main-content {
margin-top: 0px;
margin-left: 200px;
min-height: calc(100vh - 70px);
box-shadow: none;
background: #edeff3;
}
#sidebar ul {
margin-top: 0;
width: 100%;
margin-bottom: 100px;
list-style: none;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
#sidebar > ul > li {
display: block;
margin: 0 0 1px 0;
padding: 0;
border: 0px;
}
#sidebar > ul > li > a {
display: block;
position: relative;
margin: 0;
border: 0px;
padding: 0px 13px 0px 0;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
text-decoration: none;
font-size: 12px;
font-weight: normal;
height: 40px;
line-height: 40px;
color: #fff;
}
#sidebar > ul > li > a .fa {
float: left;
width: 40px;
line-height: 40px;
height: 100%;
margin-right: 10px;
text-align: center;
font-size: 18px;
}
#sidebar > ul > li > a:hover,
#sidebar > ul > li > ul.sub > li > a:hover {
background-color: #2a313b;
}
#sidebar > ul > li > a:hover .fa {
background-color: #232234;
}
#sidebar > ul > li.active > a,
#sidebar > ul > li > ul.sub > li.active a {
background-color: #354260;
}
#sidebar > ul > li.active > a .fa,
#sidebar > ul > li > ul.sub > li.active a .fa {
background-color: #354779;
}
#sidebar ul > li > a .arrow {
float: right;
margin-top: 18px;
margin-right: 5px;
width: 0;
height: 0;
border-left: 4px solid #c2cbd9;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
}
#sidebar > ul > li > ul.sub {
display: none;
list-style: none;
clear: both;
margin: 0px;
background-color: rgba(29, 34, 41, 1);
}
#sidebar > ul > li > ul.sub > li > a {
display: block;
position: relative;
padding: 10px 10px 10px 60px;
color: #fff;
text-decoration: none;
font-size: 13px;
font-weight: normal;
}
#sidebar > ul > li > a .arrow.open {
border-top: 5px solid #fff;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
}
#footer {
padding: 8px 20px 5px 20px;
font-size: 12px;
text-align: center;
}
.page-content {
padding: 20px;
padding-top: 0;
}
/* .page-search,
.list-content,
.edit-content,
.info-content {
padding: 15px;
background-color: #fff;
} */
.mt-20 {
margin-top: 20px;
}
.page-search .el-form--inline {
overflow: hidden;
}
.page-search .el-form--inline .el-form-item {
/* float: left; */
margin-bottom: 8px;
/* width: 25%; */
margin-right: 0;
}
.page-search .el-form--inline .search-item-auto {
width: auto;
}
.page-search .el-form-item__content {
width: 140px;
}
.page-search .el-form--inline .search-item-auto .el-form-item__content {
width: auto;
}
.page-search .el-form--inline .el-form-item:last-child {
width: 220px;
}
.page-search .el-form-item:last-child .el-form-item__content {
margin-left: 80px;
}
.page {
float: right;
}
.box-card {
font-size: 14px;
}
.box-card .el-card__header {
font-size: 16px;
}
.edit-content .el-form-item {
width: 30.33%;
}
.edit-content .el-form-item .el-form-item__content,
.edit-content .el-select {
width: 100%;
}
.edit-content .el-form-item:last-child {
display: block;
}
.info-content .el-form-item {
margin-bottom: 0;
}
.admin-avatar {
float: left;
width: 31px;
height: 31px;
margin-right: 5px;
}
.admin-info {
float: left;
margin-left: 5px;
}
.admin-info span {
display: block;
font-size: 12px;
}
.admin-info span:first-child {
color: #fff;
}
.admin-info span:last-child {
color: #409EFF;
}
.navbar .nav .el-icon--right {
margin-top: 15px;
color: #fff;
}
.page-crumb {
padding-top: 10px;
padding-bottom: 10px;
font-size: 12px !important;
color: #AEAEAE;
}
.page-crumb .el-breadcrumb__inner {
color: inherit;
}
.page-crumb .el-breadcrumb__item:last-child .el-breadcrumb__inner {
color: #333333;
}
.search-page,
.add-page,
.info-page,
.console-page {
padding: 10px 20px;
background-color: #fff;
}
.page-search {
border-bottom: 1px solid #E4E4E4;
}
.page-search .el-form-item__label {
font-size: 12px;
color: #333;
}
.search-item-time .el-form-item__content {
width: 364px;
}
.search-item-time .el-form-item__content .el-range-editor--mini.el-input__inner {
width: 100%;
}
.mt-10 {
margin-top: 10px;
}
.el-table .el-table__header-wrapper .cell {
font-size: 12px;
color: #909399;
}
.el-table .el-table__body-wrapper .cell {
font-size: 12px;
color: #5E5E5E;
}
.el-table td {
padding: 5px !important;
}
.el-button+.el-button {
margin-left: 0px !important;
}
.login-page {
position: relative;
width: 100%;
height: 100vh;
background: url('../images/login_bg.png') no-repeat center;
background-size: cover;
overflow: hidden;
}
.login-content {
position: absolute;
z-index: 10;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
width: 765px;
height: 460px;
border-radius: 10px;
background: rgba(255, 255, 255, .1);
box-shadow: 3px 3px 6px 3px rgba(0, 0, 0, .3);
overflow: hidden;
}
.login-content::before {
background: url('../images/login_bg.png') no-repeat center;
background-size: cover;
}
.login-content::before{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
box-sizing: border-box;
background-attachment: fixed;
content: '';
-webkit-filter: blur(5px) brightness(1.3);
filter: blur(5px) brightness(1.3);
clip-path: inset(0);
}
.login-left {
position: relative;
width: 56%;
height: 100%;
padding: 44px;
}
.login-title {
margin-top: 20px;
font-size: 30px;
color: #fff;
}
.login-copy {
position: absolute;
bottom: 44px;
font-size: 12px;
color: #fff;
}
.login-right {
width: 44%;
height: 100%;
padding: 50px 25px;
background-color: #fff;
}
.login-right-text {
color: #7c7c7c;
font-size: 14px;
}
.login-right-text2 {
font-size: 30px;
color: #1b1b1b;
}
.login-input-content {
margin-top: 75px;
}
.login-input {
margin-bottom: 20px;
}
.login-input input {
border: 1px solid #b6b6b6;
}
.img-code-content .login-input {
float: left;
width: 145px;
}
.login-img {
float: right;
width: 115px;
height: 40px;
background-color: #b6b6b6;
border-radius: 4px;
cursor: pointer;
}
.login-btn {
width: 100%;
}
.quick-navigation li a.platform-content {
margin-right: 20px;
}
.platform-content .el-dropdown {
color: inherit;
cursor: pointer;
}
.quick-navigation li a.quick-navigation-icon {
margin-right: 20px;
padding: 0;
font-size: 14px;
background-color: initial;
line-height: 25px;
color: #C1C2C7;
}
.quick-navigation li a.quick-navigation-icon:hover {
color: #fff;
}
.top-nav {
position: relative;
height: 70px;
}
.testing-environment {
position: absolute;
top: 80px;
right: -20px;
padding: 7px 10px 7px 20px;
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
background: rgba(0, 0, 0, .3);
font-size: 20px;
color:red;
}
.el-table__body tr.hover-row.current-row>td,.el-table__body tr.hover-row.el-table__row--striped.current-row>td,.el-table__body tr.hover-row.el-table__row--striped>td,.el-table__body tr.hover-row>td {
background-color:#f5f7fa !important
}
.el-table .el-button--default {
color: #797979;
}
.form-content,
.form-content {
margin: 10px 0;
overflow: hidden;
}
.form-content .el-form-item,
.form-content .el-form-item {
float: left;
width: 40%;
margin-right: 5%;
min-height: 30px;
}
.form-content .el-form-item:last-child,
.form-content .el-form-width-all,
.form-content .el-form-width-all {
float: none;
width: 85%;
clear: both;
}
.form-content .el-select,
.form-content .el-date-editor.el-input,
.form-content .el-cascader,
.form-content-auto .el-select,
.form-content-auto .el-date-editor.el-input,
.form-content-auto .el-cascader {
width: 100%;
}
.form-content .el-radio,
.form-content .el-radio {
line-height: 2;
}
.mb-10 {
margin-bottom: 10px;
}
.dividing-line {
width: 100%;
height:1px;
margin-bottom: 18px;
background-color: rgba(215, 215, 215, 1);
clear: both;
}
.console-login-information {
width: 100%;
padding: 15px;
margin-top: 10px;
border-radius: 10px;
background-color: rgba(245, 246, 250, 1);
}
.console-login-information-title {
font-size: 16px;
color: #333;
}
.console-login-informations {
margin-top: 10px;
font-size: 14px;
color: #333333;
}
.console-login-informations span {
float: left;
width: 33.33%;
}
.color-42B4EF {
color: #42B4EF;
}
.console-big-statistics {
margin-top: 30px;
}
.console-small-statistics {
margin-top: 30px;
}
.console-big-statistics a {
float: left;
width: 15%;
height: 111px;
padding: 10px;
margin-right: 2%;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
color: #fff;
}
.console-big-statistics a:last-child {
margin-right: 0;
}
.console-statistics-name {
margin-top: 15px;
font-size: 14px;
}
.console-statistics-value {
margin-top: 10px;
font-size: 22px;
}
.console-big-statistics-bg1 {
background-image: url('../images/console_big_icon1.png');
}
.console-big-statistics-bg2 {
background-image: url('../images/console_big_icon2.png');
}
.console-big-statistics-bg3 {
background-image: url('../images/console_big_icon3.png');
}
.console-big-statistics-bg4 {
background-image: url('../images/console_big_icon4.png');
}
.console-big-statistics-bg5 {
background-image: url('../images/console_big_icon5.png');
}
.console-big-statistics-bg6 {
background-image: url('../images/console_big_icon6.png');
}
.console-small-statistics a {
float: left;
width: 11.5%;
height: 84px;
padding: 10px;
margin-right: 1.14%;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
color: #fff;
}
.console-small-statistics a:last-child {
margin-right: 0;
}
.console-small-statistics-bg1 {
background-image: url('../images/console_small_icon1.png');
}
.console-small-statistics-bg2 {
background-image: url('../images/console_small_icon2.png');
}
.console-small-statistics-bg3 {
background-image: url('../images/console_small_icon3.png');
}
.console-small-statistics-bg4 {
background-image: url('../images/console_small_icon4.png');
}
.console-small-statistics-bg5 {
background-image: url('../images/console_small_icon5.png');
}
.console-small-statistics-bg6 {
background-image: url('../images/console_small_icon6.png');
}
.console-small-statistics-bg7 {
background-image: url('../images/console_small_icon7.png');
}
.console-small-statistics-bg8 {
background-image: url('../images/console_small_icon8.png');
}
.console-small-statistics .console-statistics-name {
margin-top: 8px;
}
.console-small-statistics .console-statistics-value {
margin-top: 5px;
}
.echarts-content {
margin-top: 30px;
}
.el-form .el-checkbox,
.el-form .el-radio {
font-weight: normal;
}
@media screen and (max-width: 1200px) {
.form-content .el-form-item,
.form-content .el-form-item,
.form-content .el-form-item:last-child,
.form-content .el-form-width-all,
.form-content .el-form-width-all {
float: none;
width: 100%;
clear: both;
margin-right: 0;
}
}
.page-404 {
position: relative;
width: 100%;
height: 100vh;
background-color: #fff;
overflow: hidden;
border: 30px solid #f5f6fa;
}
.content-404 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 646px;
height: 366px;
}
.content-404 img {
display: block;
width: 100%;
}
.title-404 {
font-size: 16px;
color: #333;
text-align: center;
}
.page-500 {
position: relative;
width: 100%;
height: calc(100vh - 121px);
background-color: #fff;
overflow: hidden;
}
.authority-title {
font-size: 32px;
color: #949494;
text-align: center;
}
.authority-info {
margin-top: 10px;
color: #BCBCBC;
font-size: 18px;
text-align: center;
}
.content-500 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 640px;
height: 470px;
}
.content-500 img {
display: block;
margin: auto;
} | 0.407923 | 0.0666 |
.btn {
@apply px-6 py-3 rounded text-sm font-bold whitespace-no-wrap cursor-pointer;
}
.btn-sm {
@apply px-3 py-1;
}
.btn-green {
@apply bg-green-700 text-white;
&:hover, &:focus { @apply bg-orange-500 }
}
.btn-blue {
@apply bg-blue-700 text-white;
&:hover, &:focus { @apply bg-orange-500 }
}
.btn-red {
@apply bg-red-700 text-white;
&:hover, &:focus { @apply bg-gray-300 text-red-700 }
}
.btn-muted {
@apply bg-gray-100 border border-gray-400 text-gray-800;
&:hover, &:focus { @apply bg-gray-600 text-white border-transparent }
}
.btn-text {
@apply px-6 py-3 text-gray-800 text-sm font-bold whitespace-no-wrap;
&:hover, &:focus { @apply text-gray-600 underline }
}
/* General button style */
.bttn {
border: none;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 64px;
display: flex;
margin-top: 30px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.bttn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Pseudo elements for icons */
.bttn:before {
font-family: 'FontAwesome';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
position: relative;
-webkit-font-smoothing: antialiased;
}
/* Icon separator */
.bttn-sep {
padding: 25px 60px 25px 120px;
}
.bttn-sep:before {
background: rgba(0,0,0,0.15);
}
.bttn-4 {
background: #234e52;
color: #fff;
}
.bttn-4:hover {
background: #38b2ac;
}
.bttn-4:active {
background: #2f855a;
top: 2px;
}
.bttn-4:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 1 */
.bttn-1 {
background: #3498db;
color: #fff;
}
.bttn-1:hover {
background: #2980b9;
}
.bttn-1:active {
background: #2980b9;
top: 2px;
}
.bttn-1:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 2 */
.bttn-2 {
background: #2ecc71;
color: #fff;
}
.bttn-2:hover {
background: #27ae60;
}
.bttn-2:active {
background: #27ae60;
top: 2px;
}
.bttn-2:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 3 */
.bttn-3 {
background: #e74c3c;
color: #fff;
}
.bttn-3:hover {
background: #c0392b;
}
.bttn-3:active {
background: #c0392b;
top: 2px;
}
.bttn-3:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Icons */
.icon-cart:before {
content: "\f07a";
}
.icon-heart:before {
content: "\f55a";
}
.icon-info:before {
content: "\f05a";
}
.icon-send:before {
content: "\f1d8";
} | resources/css/components/buttons.css | .btn {
@apply px-6 py-3 rounded text-sm font-bold whitespace-no-wrap cursor-pointer;
}
.btn-sm {
@apply px-3 py-1;
}
.btn-green {
@apply bg-green-700 text-white;
&:hover, &:focus { @apply bg-orange-500 }
}
.btn-blue {
@apply bg-blue-700 text-white;
&:hover, &:focus { @apply bg-orange-500 }
}
.btn-red {
@apply bg-red-700 text-white;
&:hover, &:focus { @apply bg-gray-300 text-red-700 }
}
.btn-muted {
@apply bg-gray-100 border border-gray-400 text-gray-800;
&:hover, &:focus { @apply bg-gray-600 text-white border-transparent }
}
.btn-text {
@apply px-6 py-3 text-gray-800 text-sm font-bold whitespace-no-wrap;
&:hover, &:focus { @apply text-gray-600 underline }
}
/* General button style */
.bttn {
border: none;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 64px;
display: flex;
margin-top: 30px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.bttn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Pseudo elements for icons */
.bttn:before {
font-family: 'FontAwesome';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
position: relative;
-webkit-font-smoothing: antialiased;
}
/* Icon separator */
.bttn-sep {
padding: 25px 60px 25px 120px;
}
.bttn-sep:before {
background: rgba(0,0,0,0.15);
}
.bttn-4 {
background: #234e52;
color: #fff;
}
.bttn-4:hover {
background: #38b2ac;
}
.bttn-4:active {
background: #2f855a;
top: 2px;
}
.bttn-4:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 1 */
.bttn-1 {
background: #3498db;
color: #fff;
}
.bttn-1:hover {
background: #2980b9;
}
.bttn-1:active {
background: #2980b9;
top: 2px;
}
.bttn-1:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 2 */
.bttn-2 {
background: #2ecc71;
color: #fff;
}
.bttn-2:hover {
background: #27ae60;
}
.bttn-2:active {
background: #27ae60;
top: 2px;
}
.bttn-2:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Button 3 */
.bttn-3 {
background: #e74c3c;
color: #fff;
}
.bttn-3:hover {
background: #c0392b;
}
.bttn-3:active {
background: #c0392b;
top: 2px;
}
.bttn-3:before {
position: absolute;
height: 100%;
left: 0;
top: 0;
line-height: 3;
font-size: 140%;
width: 60px;
}
/* Icons */
.icon-cart:before {
content: "\f07a";
}
.icon-heart:before {
content: "\f55a";
}
.icon-info:before {
content: "\f05a";
}
.icon-send:before {
content: "\f1d8";
} | 0.454472 | 0.091748 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("joyreactor.cc"), domain("joy.reactor.cc"), domain("joyreactor.com"), url-prefix("http://reactor.cc") {
/*Замена заднего фона
------------------------------------------------------------------------------*/
#container,
#container::before,
#container::after {
background: url("https://img-fotki.yandex.ru/get/165720/103004821.0/0_16a20c_a316c209_orig") repeat-x;
background-color: #FAB728;
}
}
@-moz-document domain("joyreactor.cc"), domain("reactor.cc"), domain("joyreactor.com"), domain("pornreactor.cc") {
body {
background-color: #FAB728;
}
/*Изменение стиля поста и формы 'новый пост'
------------------------------------------------------------------------------*/
.postContainer,
#contentinner form#add_post {
background: #fff !important;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
padding: 8px;
margin-bottom: 16px;
}
form.sfSignin,
form.post_comment_form {
background: #fff !important;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
padding: 8px;
}
#showCreatePost {
display: block;
text-align: center;
width: 100%;
margin-bottom: 16px;
}
.add_post_button,
#add_post_holder,
#tagArticle {
width: 100%;
}
.article,
.add_post_footer {
margin-bottom: 0;
}
/*Изменение цвета контейнера
------------------------------------------------------------------------------*/
#pageinner {
background: #eee !important;
padding: 16px;
}
#content{
background: #eee !important;
}
.week_top,
.user.week_top .userposition,
.user.week_top a,
.user .weekrating {
background-image: none !important;
background: none !important;
}
#tagList {
padding-top: 0px;
}
.post_poll_holder {
width: 100%;
}
/*Изменение стиля кнопок навигации
------------------------------------------------------------------------------*/
.pagination .current,
.pagination .next,
.pagination .prev {
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
}
.sidebarContent p.login_link a {
background: #fdb201;
width: 100%;
text-align: center;
}
input[value="Поддержать проект"] {
width: 100%;
text-align: center;
}
/*Компактизация содержимого
------------------------------------------------------------------------------*/
#navcontainer {
padding: 13px 16px 0px;
}
#navcontainer ul li {
margin: 0px 0px 0px 0px;
}
.post_random a {
border-radius: 12px;
padding: 0px 12px;
}
#sidebar {
width: 300px;
float: left;
margin-left: -300px;
}
#page {
min-width: 1260px;
width: 80%;
}
#content {
width: 100%;
min-width: 911px;
padding-right: 316px;
margin-bottom: 0px;
}
.pagination_main {
padding-top: 16px;
padding-bottom: 11px;
}
.topbar_inner {
width: 78%;
min-width: 1220px;
align-self: center;
}
#add_post > div > div.add_post_footer {
margin: 0px 0px 0px;
}
.article .ufoot span.comments {
margin-right: 64px;
}
#contentinner .comment .addcomment form.post_comment_form {
padding: 8px;
}
.comment .addcomment {
margin-top: 15px;
margin-bottom: 8px;
}
.comments_bottom .date {
margin: 0px 5px;
}
.commentnum {
border-radius: 12px;
line-height: 24px !important;
font-size: 12px;
}
.commentnumDelta {
height: 26px;
line-height: 25px !important;
top: 0px;
border-radius: 12px;
font-size: 12px;
}
.comment {
padding-left: 10px;
padding-right: 10px;
padding-top: 8px;
padding-bottom: 4px;
}
.comments_bottom{
margin-top: 0px;
}
.comment_date {
margin: 0px 16px;
}
.article .ufoot span a.response {
font-size: 12px;
font-weight: bold;
margin: 0px 20px;
padding: 0px 12px;
border-radius: 12px;
}
a img,
#contentInnerHeader {
width: 100%;
height: 100%;
}
.article .post_content_expand, #tagArticle .post_content_expand {
height: 30px;
margin-bottom: 5px;
}
.article .post_content_expand span, #tagArticle .post_content_expand span {
text-align: center;
line-height: 30px;
}
.article .post_content {
margin-bottom: 0px;
}
.user.week_top {
margin: 0px 0px 0px;
}
.addcomment {
margin-bottom: 0px;
padding: 0px;
}
.manage_post_wr,
div.vote-minus,
div.vote-plus {
margin-top: 0px;
vertical-align: middle;
}
span.comments {
top: 5px;
}
div.ufoot {
margin-top: 5px;
}
} | data/usercss/112497.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("joyreactor.cc"), domain("joy.reactor.cc"), domain("joyreactor.com"), url-prefix("http://reactor.cc") {
/*Замена заднего фона
------------------------------------------------------------------------------*/
#container,
#container::before,
#container::after {
background: url("https://img-fotki.yandex.ru/get/165720/103004821.0/0_16a20c_a316c209_orig") repeat-x;
background-color: #FAB728;
}
}
@-moz-document domain("joyreactor.cc"), domain("reactor.cc"), domain("joyreactor.com"), domain("pornreactor.cc") {
body {
background-color: #FAB728;
}
/*Изменение стиля поста и формы 'новый пост'
------------------------------------------------------------------------------*/
.postContainer,
#contentinner form#add_post {
background: #fff !important;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
padding: 8px;
margin-bottom: 16px;
}
form.sfSignin,
form.post_comment_form {
background: #fff !important;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
padding: 8px;
}
#showCreatePost {
display: block;
text-align: center;
width: 100%;
margin-bottom: 16px;
}
.add_post_button,
#add_post_holder,
#tagArticle {
width: 100%;
}
.article,
.add_post_footer {
margin-bottom: 0;
}
/*Изменение цвета контейнера
------------------------------------------------------------------------------*/
#pageinner {
background: #eee !important;
padding: 16px;
}
#content{
background: #eee !important;
}
.week_top,
.user.week_top .userposition,
.user.week_top a,
.user .weekrating {
background-image: none !important;
background: none !important;
}
#tagList {
padding-top: 0px;
}
.post_poll_holder {
width: 100%;
}
/*Изменение стиля кнопок навигации
------------------------------------------------------------------------------*/
.pagination .current,
.pagination .next,
.pagination .prev {
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.24);
}
.sidebarContent p.login_link a {
background: #fdb201;
width: 100%;
text-align: center;
}
input[value="Поддержать проект"] {
width: 100%;
text-align: center;
}
/*Компактизация содержимого
------------------------------------------------------------------------------*/
#navcontainer {
padding: 13px 16px 0px;
}
#navcontainer ul li {
margin: 0px 0px 0px 0px;
}
.post_random a {
border-radius: 12px;
padding: 0px 12px;
}
#sidebar {
width: 300px;
float: left;
margin-left: -300px;
}
#page {
min-width: 1260px;
width: 80%;
}
#content {
width: 100%;
min-width: 911px;
padding-right: 316px;
margin-bottom: 0px;
}
.pagination_main {
padding-top: 16px;
padding-bottom: 11px;
}
.topbar_inner {
width: 78%;
min-width: 1220px;
align-self: center;
}
#add_post > div > div.add_post_footer {
margin: 0px 0px 0px;
}
.article .ufoot span.comments {
margin-right: 64px;
}
#contentinner .comment .addcomment form.post_comment_form {
padding: 8px;
}
.comment .addcomment {
margin-top: 15px;
margin-bottom: 8px;
}
.comments_bottom .date {
margin: 0px 5px;
}
.commentnum {
border-radius: 12px;
line-height: 24px !important;
font-size: 12px;
}
.commentnumDelta {
height: 26px;
line-height: 25px !important;
top: 0px;
border-radius: 12px;
font-size: 12px;
}
.comment {
padding-left: 10px;
padding-right: 10px;
padding-top: 8px;
padding-bottom: 4px;
}
.comments_bottom{
margin-top: 0px;
}
.comment_date {
margin: 0px 16px;
}
.article .ufoot span a.response {
font-size: 12px;
font-weight: bold;
margin: 0px 20px;
padding: 0px 12px;
border-radius: 12px;
}
a img,
#contentInnerHeader {
width: 100%;
height: 100%;
}
.article .post_content_expand, #tagArticle .post_content_expand {
height: 30px;
margin-bottom: 5px;
}
.article .post_content_expand span, #tagArticle .post_content_expand span {
text-align: center;
line-height: 30px;
}
.article .post_content {
margin-bottom: 0px;
}
.user.week_top {
margin: 0px 0px 0px;
}
.addcomment {
margin-bottom: 0px;
padding: 0px;
}
.manage_post_wr,
div.vote-minus,
div.vote-plus {
margin-top: 0px;
vertical-align: middle;
}
span.comments {
top: 5px;
}
div.ufoot {
margin-top: 5px;
}
} | 0.160628 | 0.092524 |
@charset "utf-8";
@font-face {
font-family: "proxima-nova";
font-style: normal;
font-weight: 700;
src: url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: italic;
font-weight: 700;
src: url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: normal;
font-weight: 400;
src: url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: italic;
font-weight: 400;
src: url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
}
* {
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
.left {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
.bold {
font-weight:bold;
}
.priceUp {
font-weight:bold;
color:#090;
}
.priceDown {
font-weight:bold;
color:#900;
}
img {
border:0;
vertical-align:middle;
}
a {
color:#008B5D;
cursor:pointer;
}
table a, .table a{color:#159ACE;}
hr {
margin:10px 0;
border:0;
border-bottom:2px solid #eee;
}
p {
margin:0.5em 0 0;
}
p.top {
margin:0;
}
h1, h2, h3, h4, input[type="button"], input[type="submit"] {
font-family:"Lucida Sans Unicode","Lucida Grande",Arial,Helvetica,sans-serif;
font-weight:400;
line-height:1em;
margin:0;
}
input, textarea, select {
background:#fff;
border:1px solid #ccc;
border-top-color:#bbb;
-moz-box-shadow:inset 1px 1px 2px rgba(0, 0, 0, .1);
-webkit-box-shadow:inset 0px 1px 2px rgba(0, 0, 0, .1);
box-shadow:inset 1px 1px 2px rgba(0, 0, 0, .1);
line-height:1.5em;
margin:0;
padding:4px 6px;
}
input[type="button"].inline {
font-size:90%;
padding:6px 10px;
}
input[disabled=disabled][type="button"], input[disabled=disabled][type="button"]:hover, input[disabled=disabled][type="submit"], input[disabled=disabled][type="submit"]:hover {
background:#ccc;
border:0;
border-bottom:2px solid #bbb;
}
.row {
margin:0;
}
.item18, .item20, .item25, .item50 {
display:inline-block;
font-size:14px;
padding-right:5px;
vertical-align:top;
}
.item25 {
width:24.6%;
}
.item25 {
width:18%;
}
.item50 {
width:50%;
}
.row .item25:last-child, .row .item50:last-child, .row .item20:last-child, .row .item18:last-child {
padding:0;
}
ul.market {
/*background:#fff;*/
list-style:none;
margin:0;
padding:0px;
border:1px solid #ddd;
}
ul.market li:hover {
background-color: #f0f0f0;
}
ul.market li.volume {
padding: 0 5px 0 5px;
background:#fefefe;
}
ul.market li.title {
background:#eee;
border-bottom:1px solid #dadada;
display:block;
line-height:32px;
padding:0px 10px;
text-decoration:none;
}
ul.market li.title span {
color:#666!important;
font-size:80%;
font-weight:bold;
}
ul.market li.total {
background:#f0f0f0;
border-top:1px solid #ddd;
line-height:32px;
padding:0px 10px;
}
ul.market li.total span {
font-weight:bold;
width:auto!important;
}
ul.market li {
border-top:1px solid #f0f0f0;
clear: both;
}
ul.market li a, ul.stats li {
display:block;
line-height:32px;
padding:0px 5px;
text-decoration:none;
}
ul.market li:first-child {
border-top:0;
}
ul.market li.active {
border:0;
}
ul.market li.active a {
background:#31B086;
padding:2px 10px;
}
ul.market li.active a span {
color:#000!important;
}
ul.market li.active ~ ul.market li {
border: 0;
}ul.market li span {
display:inline-block;
}
ul.market li span.name {
color:#000;
width:23%;
}
ul.market li span.price {
font-weight:bold;
width:36%;
}
ul.market li span.change,
.market span.change {
color:#666;
float:right;
padding-right: 10px;
}
.sidebar ul.market li span.change{
float:right;
padding-right: 0;
}
ul.market li span.up,
.market span.up {
color:#093 !important;
}
ul.market li span.down,
.market span.down{
color:#900;
}
form span.label {
display:inline-block;
font-weight:bold;
line-height:34px;
width:125px;
}
.buyForm input[type='text'], .sellForm input[type='text'] {
width:135px;
}
.clickableOrder:hover td {
background:#f0f0f0!important;
color:#2a9fd6;
cursor:pointer;
}
.actionmenu {
margin-top:8px;
right:30px;
}
.actionmenu:before {
background:url('/assets/images/icons/arrowupdark.png') no-repeat center;
}
.actionmenu li {
min-width:200px;
}
.table td{text-align: center;}
.table th{
text-align: center;
text-transform:uppercase;
}
.market .title {
text-transform:uppercase;
}
.scrolltable {
max-height:350px;
overflow-y:auto;
}
.scrolltable .table {
border:0;
}
ul.tabs {
border-bottom:1px solid #2a9fd6;
list-style:none;
margin:0 0 25px;
padding:0;
position:relative;
}
ul.tabs li {
display:inline-block;
font-size:1.1em;
margin-right:3px;
position:relative;
top:1px;
}
ul.tabs li a {
color:#666;
display:block;
margin-bottom:1px;
padding:10px 15px;
text-decoration:none;
}
ul.tabs li a:hover {
background:#e0f3ed;
color:#222;
}
ul.tabs li.active a, ul.tabs li.active a:hover {
background:#c1e7da;
border:1px solid #2a9fd6;
border-bottom:0;
color:#222;
font-weight:bold;
margin-bottom:0;
padding:9px 14px 11px;
}
.options {
border:1px solid #efbd98;
background:#fdf6ea;
}
.options img {
padding-right:10px;
}
label.error {
color:#900;
display:block;
margin-bottom:10px;
}
td label.error {
display:inline-block;
margin:6px 0 0;
}
pre.api {
background:#f0f0f0;
border:1px solid #ddd;
margin:15px 0;
padding:12px;
}
.dygraph-legend {
left:114px!important;
padding:5px!important;
top:5px!important;
width:auto!important;
}
iframe[src="about:blank"] {
display:none;
}
iframe .timeline {
border-radius:0!important;
}
.table th, .table td { border-top: 1px solid #DDDDDD!important;}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6,table, .table { color: #525252;}
.block{padding:5px;margin: 0 7px 7px 0;}
.table { border: 1px solid #DDDDDD; }
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border-top: 0;}.thm-dark { background-color: #FFFFFF; color: #A9A9A9;}
.thm-dark, .thm-dark .p-author .profile .p-name, .thm-dark .cards-base p, .thm-dark .cards-base p a, .thm-dark .timeline-header .summary, .thm-dark .timeline-header a:link, .thm-dark .timeline-header a:visited, .thm-dark .byline, .thm-dark .p-author a.profile:hover .p-name, .thm-dark .p-author a.profile:focus .p-name .thm-dark .custom-timeline-owner-profile .p-name:hover, .thm-dark .custom-timeline-owner-profile .p-name:focus { color: #000000;}
.customisable-border.thm-dark, .thm-dark .customisable-border { border-color: #D2D2D2;}
.amChartsButtonSelected,.amChartsButton{ border-radius: 0!important;}
a,ul.market li span.up {
color: #2a9fd6;
}
.thm-dark ,form.inblock, .order_header,.btn-default,.success{
background-color: #fff!important;
border-radius: 5px;
border: 1px solid #D2D2D2!important;
}
.customisable-border.thm-dark, .thm-dark .customisable-border ,.input-group-addon{
border-color: #D2D2D2!important;
}
#do_buy,#do_sell{ border-radius: 4px!important;}
.table > thead > tr > th {
border-bottom: 1px solid #D2D2D2;
}
.btn-block{padding:10px;}
.item25{padding-right:0;}
.content-body{background-color: #fff; padding:20px; border-radius: 5px;}
table{background-color: #fff;}
.recaptchatable #recaptcha_image{
border: 0 none !important;
height: 59px !important;
width: 302px !important;
}
.btn-default {
color: #616161;
/*background-color: #2a9fd6;*/
}
/*
.wrapper-trading {
max-width: 100%;
width: 100%;
}
*/
.inblock-left,.inblock-right {
width: 49%!important;
}
.wrapper-trading.buysellform .forConfirm .form-group,
.wrapper-trading.buysellform .control-group {
margin-bottom: 2px;
} | public/assets/css/main.css | @charset "utf-8";
@font-face {
font-family: "proxima-nova";
font-style: normal;
font-weight: 700;
src: url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/03034e/00000000000000003b9ad1b1/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: italic;
font-weight: 700;
src: url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/5a684a/00000000000000003b9ad1b2/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: normal;
font-weight: 400;
src: url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/edab9a/00000000000000003b9ad1b9/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}
@font-face {
font-family: "proxima-nova";
font-style: italic;
font-weight: 400;
src: url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/1b9fb4/00000000000000003b9ad1ba/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
}
* {
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
.left {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
.bold {
font-weight:bold;
}
.priceUp {
font-weight:bold;
color:#090;
}
.priceDown {
font-weight:bold;
color:#900;
}
img {
border:0;
vertical-align:middle;
}
a {
color:#008B5D;
cursor:pointer;
}
table a, .table a{color:#159ACE;}
hr {
margin:10px 0;
border:0;
border-bottom:2px solid #eee;
}
p {
margin:0.5em 0 0;
}
p.top {
margin:0;
}
h1, h2, h3, h4, input[type="button"], input[type="submit"] {
font-family:"Lucida Sans Unicode","Lucida Grande",Arial,Helvetica,sans-serif;
font-weight:400;
line-height:1em;
margin:0;
}
input, textarea, select {
background:#fff;
border:1px solid #ccc;
border-top-color:#bbb;
-moz-box-shadow:inset 1px 1px 2px rgba(0, 0, 0, .1);
-webkit-box-shadow:inset 0px 1px 2px rgba(0, 0, 0, .1);
box-shadow:inset 1px 1px 2px rgba(0, 0, 0, .1);
line-height:1.5em;
margin:0;
padding:4px 6px;
}
input[type="button"].inline {
font-size:90%;
padding:6px 10px;
}
input[disabled=disabled][type="button"], input[disabled=disabled][type="button"]:hover, input[disabled=disabled][type="submit"], input[disabled=disabled][type="submit"]:hover {
background:#ccc;
border:0;
border-bottom:2px solid #bbb;
}
.row {
margin:0;
}
.item18, .item20, .item25, .item50 {
display:inline-block;
font-size:14px;
padding-right:5px;
vertical-align:top;
}
.item25 {
width:24.6%;
}
.item25 {
width:18%;
}
.item50 {
width:50%;
}
.row .item25:last-child, .row .item50:last-child, .row .item20:last-child, .row .item18:last-child {
padding:0;
}
ul.market {
/*background:#fff;*/
list-style:none;
margin:0;
padding:0px;
border:1px solid #ddd;
}
ul.market li:hover {
background-color: #f0f0f0;
}
ul.market li.volume {
padding: 0 5px 0 5px;
background:#fefefe;
}
ul.market li.title {
background:#eee;
border-bottom:1px solid #dadada;
display:block;
line-height:32px;
padding:0px 10px;
text-decoration:none;
}
ul.market li.title span {
color:#666!important;
font-size:80%;
font-weight:bold;
}
ul.market li.total {
background:#f0f0f0;
border-top:1px solid #ddd;
line-height:32px;
padding:0px 10px;
}
ul.market li.total span {
font-weight:bold;
width:auto!important;
}
ul.market li {
border-top:1px solid #f0f0f0;
clear: both;
}
ul.market li a, ul.stats li {
display:block;
line-height:32px;
padding:0px 5px;
text-decoration:none;
}
ul.market li:first-child {
border-top:0;
}
ul.market li.active {
border:0;
}
ul.market li.active a {
background:#31B086;
padding:2px 10px;
}
ul.market li.active a span {
color:#000!important;
}
ul.market li.active ~ ul.market li {
border: 0;
}ul.market li span {
display:inline-block;
}
ul.market li span.name {
color:#000;
width:23%;
}
ul.market li span.price {
font-weight:bold;
width:36%;
}
ul.market li span.change,
.market span.change {
color:#666;
float:right;
padding-right: 10px;
}
.sidebar ul.market li span.change{
float:right;
padding-right: 0;
}
ul.market li span.up,
.market span.up {
color:#093 !important;
}
ul.market li span.down,
.market span.down{
color:#900;
}
form span.label {
display:inline-block;
font-weight:bold;
line-height:34px;
width:125px;
}
.buyForm input[type='text'], .sellForm input[type='text'] {
width:135px;
}
.clickableOrder:hover td {
background:#f0f0f0!important;
color:#2a9fd6;
cursor:pointer;
}
.actionmenu {
margin-top:8px;
right:30px;
}
.actionmenu:before {
background:url('/assets/images/icons/arrowupdark.png') no-repeat center;
}
.actionmenu li {
min-width:200px;
}
.table td{text-align: center;}
.table th{
text-align: center;
text-transform:uppercase;
}
.market .title {
text-transform:uppercase;
}
.scrolltable {
max-height:350px;
overflow-y:auto;
}
.scrolltable .table {
border:0;
}
ul.tabs {
border-bottom:1px solid #2a9fd6;
list-style:none;
margin:0 0 25px;
padding:0;
position:relative;
}
ul.tabs li {
display:inline-block;
font-size:1.1em;
margin-right:3px;
position:relative;
top:1px;
}
ul.tabs li a {
color:#666;
display:block;
margin-bottom:1px;
padding:10px 15px;
text-decoration:none;
}
ul.tabs li a:hover {
background:#e0f3ed;
color:#222;
}
ul.tabs li.active a, ul.tabs li.active a:hover {
background:#c1e7da;
border:1px solid #2a9fd6;
border-bottom:0;
color:#222;
font-weight:bold;
margin-bottom:0;
padding:9px 14px 11px;
}
.options {
border:1px solid #efbd98;
background:#fdf6ea;
}
.options img {
padding-right:10px;
}
label.error {
color:#900;
display:block;
margin-bottom:10px;
}
td label.error {
display:inline-block;
margin:6px 0 0;
}
pre.api {
background:#f0f0f0;
border:1px solid #ddd;
margin:15px 0;
padding:12px;
}
.dygraph-legend {
left:114px!important;
padding:5px!important;
top:5px!important;
width:auto!important;
}
iframe[src="about:blank"] {
display:none;
}
iframe .timeline {
border-radius:0!important;
}
.table th, .table td { border-top: 1px solid #DDDDDD!important;}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6,table, .table { color: #525252;}
.block{padding:5px;margin: 0 7px 7px 0;}
.table { border: 1px solid #DDDDDD; }
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border-top: 0;}.thm-dark { background-color: #FFFFFF; color: #A9A9A9;}
.thm-dark, .thm-dark .p-author .profile .p-name, .thm-dark .cards-base p, .thm-dark .cards-base p a, .thm-dark .timeline-header .summary, .thm-dark .timeline-header a:link, .thm-dark .timeline-header a:visited, .thm-dark .byline, .thm-dark .p-author a.profile:hover .p-name, .thm-dark .p-author a.profile:focus .p-name .thm-dark .custom-timeline-owner-profile .p-name:hover, .thm-dark .custom-timeline-owner-profile .p-name:focus { color: #000000;}
.customisable-border.thm-dark, .thm-dark .customisable-border { border-color: #D2D2D2;}
.amChartsButtonSelected,.amChartsButton{ border-radius: 0!important;}
a,ul.market li span.up {
color: #2a9fd6;
}
.thm-dark ,form.inblock, .order_header,.btn-default,.success{
background-color: #fff!important;
border-radius: 5px;
border: 1px solid #D2D2D2!important;
}
.customisable-border.thm-dark, .thm-dark .customisable-border ,.input-group-addon{
border-color: #D2D2D2!important;
}
#do_buy,#do_sell{ border-radius: 4px!important;}
.table > thead > tr > th {
border-bottom: 1px solid #D2D2D2;
}
.btn-block{padding:10px;}
.item25{padding-right:0;}
.content-body{background-color: #fff; padding:20px; border-radius: 5px;}
table{background-color: #fff;}
.recaptchatable #recaptcha_image{
border: 0 none !important;
height: 59px !important;
width: 302px !important;
}
.btn-default {
color: #616161;
/*background-color: #2a9fd6;*/
}
/*
.wrapper-trading {
max-width: 100%;
width: 100%;
}
*/
.inblock-left,.inblock-right {
width: 49%!important;
}
.wrapper-trading.buysellform .forConfirm .form-group,
.wrapper-trading.buysellform .control-group {
margin-bottom: 2px;
} | 0.25618 | 0.146484 |
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 260px;
font-family: 'Century Gothic', sans-serif;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 260px;
}
.container .text-muted {
margin: 20px 0;
}
.navbar-default{
background-color: #fff;
border: none;
margin: auto;
padding: 0 10px;
}
.navbar-default .navbar-collapse{
border-bottom: 1px solid #B95953;
}
.navbar-default > .container{
background-color: #fff;
font-weight: bold;
}
.navbar-brand{
background-image: url('/public/i/nav-logo.jpg');
background-repeat: no-repeat;
width: 93px;
height: 50px;
padding-left: 25px;
margin-right: 35px
}
.nav-search{
width: 130px;
margin-left: 15px;
}
.nav-search > input,.nav-search> span > .btn{
border-radius: 0;
}
.nav-search > .form-control{
height: 28px;
font-weight: normal;
}
.nav-search .btn{
font-size: 10px;
color: #777;
}
.nav-search > .form-control:focus {
border-color: #ccc;
outline: 0;
-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
}
.nav-search> span > .btn{
border-radius: 0;
border-left: 0px;
}
.breadcrumb{
background-color: #fff;
}
.nav > li > a {
padding: 15px 24px;
}
.navbar-default .navbar-nav > li > a{
height: 50px;
border-bottom: 4px solid #fff;
}
.navbar-default .navbar-nav > li > a:hover{
border-bottom: 4px solid #777;
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a{
border-bottom: 4px solid #777;
color: #555;
background-color: #e7e7e7;
}
.brands{
border-bottom: 1px solid #ccc;
padding-bottom: 15px;
margin-bottom: 20px;
}
.brands > p{
margin-bottom: 20px;
color: #777;
border-bottom: 1px solid #ccc;
}
.list-item{
margin-top: 40px;
min-height: 240px;
}
.item-link:hover > .item-title{
color: #B95953;
border-color: #B95953;
}
.item-title{
font-size: 18px;
border-bottom: 2px solid #E3E3E3;
}
.item-description{
border-bottom: 2px solid #E3E3E3;
min-height: 85px;
}
.item-link{
color: #777;
}
.item-link:hover,.item-link:active,.item-link:link,.item-link:focus{
color: #B95953;
text-decoration: none;
}
.features{
height: 130px;
padding-top: 10px;
}
.features > .type{
display: inline-block;
font-weight: bold;
border-bottom: 1px solid #E3E3E3;
}
.features> .type:first-letter{
color: #B95953;
}
.detal{
background-color: #E3E3E3;
padding: 3px 7px;
}
.detal > a{
color: #777;
}
.detal > a{
text-decoration: underline;
}
.detal > a:hover{
text-decoration: none;
color: #B95953;
}
.contacts-title{
background: rgba(227,227,227,1);
background: -moz-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(227,227,227,1)), color-stop(50%, rgba(185,90,83,1)), color-stop(100%, rgba(227,227,227,1)));
background: -webkit-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -o-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -ms-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: linear-gradient(to right, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#e3e3e3', GradientType=1 );
background-color: #B95953;
color: #fff;
text-decoration: underline;
font-size: 18px;
margin-bottom: 10px;
}
.contacts{
min-height: 110px;
background-color: #E3E3E3;
padding-top: 15px;
}
.dropdown-menu{
border-radius: 0px;
}
.dropdown-menu > div > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.open > .dropdown-trimenu {
display: inline-block;
}
.dropdown-menu > div > li > a:hover,
.dropdown-menu > div > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.trimenu{
float: left;
margin-left: 10px;
}
.dropdown-menu > div > li > a.trimenu-title{
font-weight: bold;
}
.trimenu-title{
font-weight: bold;
padding: 0px 20px;
border-bottom: 1px solid #E3E3E3;
}
.footer-ico{
width: 50px;
height: 50px;
background-image: url('/public/i/footer-icon.png');
background-repeat: no-repeat;
display: inline-block;
}
.footer-tel{
margin-left: 20px;
}
.footer-email{
background-position: -50px;
}
.footer-loc{
background-position: -100px;
}
.contacts-data{
margin-top: 7px;
vertical-align: top;
display: inline-block;
}
.contacts-data > p {
margin: 0px;
text-transform: uppercase;
}
.contacts-data > span {
}
.soc-ico{
width: 30px;
height: 30px;
background-image: url('/public/i/soc.jpg');
background-repeat: no-repeat;
display: inline-block;
margin: 0 10px;
}
.soc-v{
//margin-left: 450px;
}
.soc-f{
background-position: -30px;
}
.soc-t{
background-position: -60px;
}
.soc-y{
background-position: -90px;
}
.social{
padding-top: 10px;
background-color: #fff;
height: 40px;
margin: auto;
text-align: center;
}
.afterf{
margin-bottom: 30px;
padding: 0 10px;
}
.spec{
border-top: 2px solid #E3E3E3;
border-bottom: 2px solid #E3E3E3;
}
.spec > div{
/*margin-left: 20px;*/
}
.item-list{
margin-left: -20px;
}
.extras{
border-top: 2px solid #E3E3E3;
border-bottom: 2px solid #E3E3E3;
margin-bottom: 20px;
}
.extras-title{
padding: 15px;
color: #FF6600;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
}
.extras a{
text-decoration: underline;
color: #333
}
.extras a:hover{
text-decoration: none;
}
.item-price{
color: #FF6600;
font-size: 28px;
font-weight: bold;
margin-top: 20px;
margin-right: 20px;
}
.btn{
border-radius: 0;
}
.tocart{
margin-top: 10px;
margin-right: 20px;
font-size: 22px;
color: #777;
}
.item-small{
border: 1px solid #E3E3E3;
float: left;
}
.img-width{
width: 100%;
}
.img-height{
height: 100%;
}
.item-small:hover{
cursor: pointer;
border: 1px solid #777;
}
.catitem-price{
color: #FF6600;
font-size: 18px;
padding-top: 20px;
}
.filters{
padding: 15px 0 0 0;
border-top: 1px solid #E3E3E3;
border-bottom: 1px solid #E3E3E3;
}
ul.filters-list{
text-align: justify;
-webkit-padding-start: 0;
}
ul > p{
display: inline-block;
text-align: left;
//display : inline;
//zoom : 1;
margin: 0;
}
ul > p > a{
color: #777;
border-bottom: 3px solid #ccc;
}
ul > p > a:hover{
text-decoration: none;
color: #B95953;
border-color: #B95953;
}
.cat-filter > a:link{
text-decoration: none;
}
ul > p > a.active{
text-decoration: none;
color: #B95953;
border-color: #B95953;
}
.cat-filter-helper{
width: 100%;
height: 0;
visibility: hidden;
}
@media (min-width: 768px){
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: 0px;
}
}
.recomend-title{
font-size: 18px;
text-transform: uppercase;
margin: 10px 0;
}
.recomend > p > a{
margin-bottom: 5px;
color: #333;
text-decoration: underline;
}
.recomend > p {
margin-left: 20px;
}
.recomend > p > a:hover{
text-decoration: none;
}
.recomend{
border-bottom: 2px solid #E3E3E3;
}
.newsblock{
background-color: #E3E3E3;
border-top: 4px solid #B95953;
padding: 15px 0;
margin-bottom: 5px;
}
.inn{
background-color: #fff;
}
.newsblock .row{
background-color: #fff;
}
.newsblock .header{
font-size: 15px;
border-bottom: 1px solid #ccc;
margin-top: 10px;
margin-bottom: 10px;
font-weight: bold;
}
.newsblock .content{
padding: 15px 0;
}
.latest {
text-align: center;
text-align: -webkit-center;
}
.latest img {
max-width: 250px;
max-height: 220px;
}
.container {
padding-left: 0;
}
.carousel-slogan{
margin-top: -70px;
padding-bottom: 20px;
position:relative;
display: none;
}
.carousel-slogan > .header{
width: 35%;
padding-left: 10px;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
color: #fff;
z-index: 1;
background: rgba(185,90,83,1);
background: -moz-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(185,90,83,1)), color-stop(0%, rgba(185,90,83,1)), color-stop(100%, rgba(185,90,83,0)));
background: -webkit-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -o-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -ms-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: linear-gradient(to right, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b95a53', endColorstr='#b95a53', GradientType=1 );
}
.carousel-slogan > .slogan{
padding-left: 10px;
padding-right: 10px;
font-size: 18px;
display: inline-block;
color: #333;
background: rgba(255,255,255,0.6);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}
.carousel-index{
z-index: 2;
}
.carousel-index .carousel-control.left,.carousel-index .carousel-control.right{
background-image: none;
}
.index-nav{
font-size: 20px;
margin: 10px 0 ;
height: 45px;
text-align: center;
}
.index-nav a{
color: #B95953;
padding: 7px 0 7px 50px;
display: inline-block;
background-repeat: no-repeat;
}
.index-nav > .middle {
border-left: 2px solid #ccc;
border-right: 2px solid #ccc;
}
.index-nav > .left > a {
background-image: url('/public/i/index-nav-1.png');
}
.index-nav > .middle > a {
background-image: url('/public/i/index-nav-2.png');
}
.index-nav > .right > a {
background-image: url('/public/i/index-nav-3.png');
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;
left:100%;
margin-top:-6px;
margin-left:-1px;
-webkit-border-radius:0 6px 6px 6px;
-moz-border-radius:0 6px 6px 6px;
border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display:block;
}
.dropdown-submenu>a:after {
display:block;
content:" ";
float:right;
width:0;
height:0;
border-color:transparent;
border-style:solid;
border-width:5px 0 5px 5px;
border-left-color:#cccccc;
margin-top:5px;
margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left:-100%;
margin-left:10px;
-webkit-border-radius:6px 0 6px 6px;
-moz-border-radius:6px 0 6px 6px;
border-radius:6px 0 6px 6px;
}
.afterf .container,
.footer .container {
padding: 0 15px;
}
.brands {
text-align: center;
}
@media (max-width: 3000px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default{width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc; border-right: 2px solid #ccc; text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a {font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a, .contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 750px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 1400px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default{width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc; border-right: 2px solid #ccc; text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a {font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a, .contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 1050px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 1200px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default {width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc;border-right: 2px solid #ccc;text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a{font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a,
.contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 900px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 992px) {
body > .container {padding: 160px 0 0;}
.container, .navbar-default {width: 970px;}
.index-nav {height: 135px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 16px;}
.molding-title h1{font-size: 60px;}
.navbar-fixed-top a,
.contacts-data {font-size: 12px;}
.category-img {margin-top: 25px; width: 120px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 744px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 768px) {
body > .container {padding: 160px 0 0;}
.container, .navbar-default {width: 750px;}
.index-nav {height: 135px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 14px;}
.molding-title h1{font-size: 56px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 20px; width: 100px;}
.item-lage{width: 450px;}
.item-small {margin: 9px 9px 9px 0; width: 144px; height: 144px;}
.brands img {width: 750px;}
.molding-frames {width: 576px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 560px) {
body > .container {padding: 120px 0 0;}
.container, .navbar-default {width: 550px;}
.index-nav {height: 125px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 10px;}
.molding-title h1{font-size: 52px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 15px; width: 90px;}
.item-lage{width: 400px;}
.item-small {margin: 8px 8px 8px 0; width: 128px; height: 128px;}
.brands img {width: 500px;}
.contacts-data {padding: 5px;}
.molding-frames {width: 420px;}
.dropdown-trimenu{min-width: 500px;margin-left: 0;font-size: 10px;background-color: #e7e7e7 !important;}
}
@media (max-width: 440px) {
body > .container {padding: 120px 0 0;}
.container, .navbar-default {width: 430px;}
.index-nav {height: 125px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 10px;}
.molding-title h1{font-size: 52px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 10px; width: 80px;}
.item-lage{width: 350px;}
.item-small {margin: 7px 7px 7px 0; width: 112px; height: 112px;}
.brands img {width: 400px;}
.contacts-data {padding: 5px;}
.molding-frames {width: 330px;}
.dropdown-trimenu{min-width: 400px;margin-left: 0;font-size: 10px;background-color: #e7e7e7 !important;}
}
.molding-title {
text-align: center;
margin-top: 20px;
}
.molding-text {
text-align: center;
font-size: 16px;
padding: 15px;
}
.contacts-title a,
.contacts-title a:hover,
.contacts-title a:visited{
color: #fff;
}
.navbar-fixed-top .navbar-collapse {
max-height: 580px;
overflow: hidden;
}
.molding-frames{
margin-bottom: 30px;
} | public/css/custom.css | -------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 260px;
font-family: 'Century Gothic', sans-serif;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 260px;
}
.container .text-muted {
margin: 20px 0;
}
.navbar-default{
background-color: #fff;
border: none;
margin: auto;
padding: 0 10px;
}
.navbar-default .navbar-collapse{
border-bottom: 1px solid #B95953;
}
.navbar-default > .container{
background-color: #fff;
font-weight: bold;
}
.navbar-brand{
background-image: url('/public/i/nav-logo.jpg');
background-repeat: no-repeat;
width: 93px;
height: 50px;
padding-left: 25px;
margin-right: 35px
}
.nav-search{
width: 130px;
margin-left: 15px;
}
.nav-search > input,.nav-search> span > .btn{
border-radius: 0;
}
.nav-search > .form-control{
height: 28px;
font-weight: normal;
}
.nav-search .btn{
font-size: 10px;
color: #777;
}
.nav-search > .form-control:focus {
border-color: #ccc;
outline: 0;
-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
}
.nav-search> span > .btn{
border-radius: 0;
border-left: 0px;
}
.breadcrumb{
background-color: #fff;
}
.nav > li > a {
padding: 15px 24px;
}
.navbar-default .navbar-nav > li > a{
height: 50px;
border-bottom: 4px solid #fff;
}
.navbar-default .navbar-nav > li > a:hover{
border-bottom: 4px solid #777;
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a{
border-bottom: 4px solid #777;
color: #555;
background-color: #e7e7e7;
}
.brands{
border-bottom: 1px solid #ccc;
padding-bottom: 15px;
margin-bottom: 20px;
}
.brands > p{
margin-bottom: 20px;
color: #777;
border-bottom: 1px solid #ccc;
}
.list-item{
margin-top: 40px;
min-height: 240px;
}
.item-link:hover > .item-title{
color: #B95953;
border-color: #B95953;
}
.item-title{
font-size: 18px;
border-bottom: 2px solid #E3E3E3;
}
.item-description{
border-bottom: 2px solid #E3E3E3;
min-height: 85px;
}
.item-link{
color: #777;
}
.item-link:hover,.item-link:active,.item-link:link,.item-link:focus{
color: #B95953;
text-decoration: none;
}
.features{
height: 130px;
padding-top: 10px;
}
.features > .type{
display: inline-block;
font-weight: bold;
border-bottom: 1px solid #E3E3E3;
}
.features> .type:first-letter{
color: #B95953;
}
.detal{
background-color: #E3E3E3;
padding: 3px 7px;
}
.detal > a{
color: #777;
}
.detal > a{
text-decoration: underline;
}
.detal > a:hover{
text-decoration: none;
color: #B95953;
}
.contacts-title{
background: rgba(227,227,227,1);
background: -moz-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(227,227,227,1)), color-stop(50%, rgba(185,90,83,1)), color-stop(100%, rgba(227,227,227,1)));
background: -webkit-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -o-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: -ms-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
background: linear-gradient(to right, rgba(227,227,227,1) 0%, rgba(185,90,83,1) 50%, rgba(227,227,227,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#e3e3e3', GradientType=1 );
background-color: #B95953;
color: #fff;
text-decoration: underline;
font-size: 18px;
margin-bottom: 10px;
}
.contacts{
min-height: 110px;
background-color: #E3E3E3;
padding-top: 15px;
}
.dropdown-menu{
border-radius: 0px;
}
.dropdown-menu > div > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.open > .dropdown-trimenu {
display: inline-block;
}
.dropdown-menu > div > li > a:hover,
.dropdown-menu > div > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.trimenu{
float: left;
margin-left: 10px;
}
.dropdown-menu > div > li > a.trimenu-title{
font-weight: bold;
}
.trimenu-title{
font-weight: bold;
padding: 0px 20px;
border-bottom: 1px solid #E3E3E3;
}
.footer-ico{
width: 50px;
height: 50px;
background-image: url('/public/i/footer-icon.png');
background-repeat: no-repeat;
display: inline-block;
}
.footer-tel{
margin-left: 20px;
}
.footer-email{
background-position: -50px;
}
.footer-loc{
background-position: -100px;
}
.contacts-data{
margin-top: 7px;
vertical-align: top;
display: inline-block;
}
.contacts-data > p {
margin: 0px;
text-transform: uppercase;
}
.contacts-data > span {
}
.soc-ico{
width: 30px;
height: 30px;
background-image: url('/public/i/soc.jpg');
background-repeat: no-repeat;
display: inline-block;
margin: 0 10px;
}
.soc-v{
//margin-left: 450px;
}
.soc-f{
background-position: -30px;
}
.soc-t{
background-position: -60px;
}
.soc-y{
background-position: -90px;
}
.social{
padding-top: 10px;
background-color: #fff;
height: 40px;
margin: auto;
text-align: center;
}
.afterf{
margin-bottom: 30px;
padding: 0 10px;
}
.spec{
border-top: 2px solid #E3E3E3;
border-bottom: 2px solid #E3E3E3;
}
.spec > div{
/*margin-left: 20px;*/
}
.item-list{
margin-left: -20px;
}
.extras{
border-top: 2px solid #E3E3E3;
border-bottom: 2px solid #E3E3E3;
margin-bottom: 20px;
}
.extras-title{
padding: 15px;
color: #FF6600;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
}
.extras a{
text-decoration: underline;
color: #333
}
.extras a:hover{
text-decoration: none;
}
.item-price{
color: #FF6600;
font-size: 28px;
font-weight: bold;
margin-top: 20px;
margin-right: 20px;
}
.btn{
border-radius: 0;
}
.tocart{
margin-top: 10px;
margin-right: 20px;
font-size: 22px;
color: #777;
}
.item-small{
border: 1px solid #E3E3E3;
float: left;
}
.img-width{
width: 100%;
}
.img-height{
height: 100%;
}
.item-small:hover{
cursor: pointer;
border: 1px solid #777;
}
.catitem-price{
color: #FF6600;
font-size: 18px;
padding-top: 20px;
}
.filters{
padding: 15px 0 0 0;
border-top: 1px solid #E3E3E3;
border-bottom: 1px solid #E3E3E3;
}
ul.filters-list{
text-align: justify;
-webkit-padding-start: 0;
}
ul > p{
display: inline-block;
text-align: left;
//display : inline;
//zoom : 1;
margin: 0;
}
ul > p > a{
color: #777;
border-bottom: 3px solid #ccc;
}
ul > p > a:hover{
text-decoration: none;
color: #B95953;
border-color: #B95953;
}
.cat-filter > a:link{
text-decoration: none;
}
ul > p > a.active{
text-decoration: none;
color: #B95953;
border-color: #B95953;
}
.cat-filter-helper{
width: 100%;
height: 0;
visibility: hidden;
}
@media (min-width: 768px){
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: 0px;
}
}
.recomend-title{
font-size: 18px;
text-transform: uppercase;
margin: 10px 0;
}
.recomend > p > a{
margin-bottom: 5px;
color: #333;
text-decoration: underline;
}
.recomend > p {
margin-left: 20px;
}
.recomend > p > a:hover{
text-decoration: none;
}
.recomend{
border-bottom: 2px solid #E3E3E3;
}
.newsblock{
background-color: #E3E3E3;
border-top: 4px solid #B95953;
padding: 15px 0;
margin-bottom: 5px;
}
.inn{
background-color: #fff;
}
.newsblock .row{
background-color: #fff;
}
.newsblock .header{
font-size: 15px;
border-bottom: 1px solid #ccc;
margin-top: 10px;
margin-bottom: 10px;
font-weight: bold;
}
.newsblock .content{
padding: 15px 0;
}
.latest {
text-align: center;
text-align: -webkit-center;
}
.latest img {
max-width: 250px;
max-height: 220px;
}
.container {
padding-left: 0;
}
.carousel-slogan{
margin-top: -70px;
padding-bottom: 20px;
position:relative;
display: none;
}
.carousel-slogan > .header{
width: 35%;
padding-left: 10px;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
color: #fff;
z-index: 1;
background: rgba(185,90,83,1);
background: -moz-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(185,90,83,1)), color-stop(0%, rgba(185,90,83,1)), color-stop(100%, rgba(185,90,83,0)));
background: -webkit-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -o-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: -ms-linear-gradient(left, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
background: linear-gradient(to right, rgba(185,90,83,1) 0%, rgba(185,90,83,1) 0%, rgba(185,90,83,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b95a53', endColorstr='#b95a53', GradientType=1 );
}
.carousel-slogan > .slogan{
padding-left: 10px;
padding-right: 10px;
font-size: 18px;
display: inline-block;
color: #333;
background: rgba(255,255,255,0.6);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}
.carousel-index{
z-index: 2;
}
.carousel-index .carousel-control.left,.carousel-index .carousel-control.right{
background-image: none;
}
.index-nav{
font-size: 20px;
margin: 10px 0 ;
height: 45px;
text-align: center;
}
.index-nav a{
color: #B95953;
padding: 7px 0 7px 50px;
display: inline-block;
background-repeat: no-repeat;
}
.index-nav > .middle {
border-left: 2px solid #ccc;
border-right: 2px solid #ccc;
}
.index-nav > .left > a {
background-image: url('/public/i/index-nav-1.png');
}
.index-nav > .middle > a {
background-image: url('/public/i/index-nav-2.png');
}
.index-nav > .right > a {
background-image: url('/public/i/index-nav-3.png');
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;
left:100%;
margin-top:-6px;
margin-left:-1px;
-webkit-border-radius:0 6px 6px 6px;
-moz-border-radius:0 6px 6px 6px;
border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display:block;
}
.dropdown-submenu>a:after {
display:block;
content:" ";
float:right;
width:0;
height:0;
border-color:transparent;
border-style:solid;
border-width:5px 0 5px 5px;
border-left-color:#cccccc;
margin-top:5px;
margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left:-100%;
margin-left:10px;
-webkit-border-radius:6px 0 6px 6px;
-moz-border-radius:6px 0 6px 6px;
border-radius:6px 0 6px 6px;
}
.afterf .container,
.footer .container {
padding: 0 15px;
}
.brands {
text-align: center;
}
@media (max-width: 3000px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default{width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc; border-right: 2px solid #ccc; text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a {font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a, .contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 750px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 1400px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default{width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc; border-right: 2px solid #ccc; text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a {font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a, .contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 1050px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 1200px) {
body > .container {padding: 60px 0 0;}
.container, .navbar-default {width: 1170px;}
.index-nav {height: 45px;}
.index-nav > .left {text-align: center;}
.index-nav > .middle {border-left: 2px solid #ccc;border-right: 2px solid #ccc;text-align: center;}
.index-nav > .right {text-align: center;}
ul > p > a{font-size: 18px;}
.molding-title h1{font-size: 64px;}
.navbar-fixed-top a,
.contacts-data {font-size: 14px;}
.category-img {margin-top: 30px; width: 150px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 900px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 992px) {
body > .container {padding: 160px 0 0;}
.container, .navbar-default {width: 970px;}
.index-nav {height: 135px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 16px;}
.molding-title h1{font-size: 60px;}
.navbar-fixed-top a,
.contacts-data {font-size: 12px;}
.category-img {margin-top: 25px; width: 120px;}
.item-lage{width: 500px;}
.item-small {margin: 10px 10px 10px 0; width: 160px; height: 160px;}
#carousel-example-generic-small {width: 100%;}
.molding-frames {width: 744px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 768px) {
body > .container {padding: 160px 0 0;}
.container, .navbar-default {width: 750px;}
.index-nav {height: 135px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 14px;}
.molding-title h1{font-size: 56px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 20px; width: 100px;}
.item-lage{width: 450px;}
.item-small {margin: 9px 9px 9px 0; width: 144px; height: 144px;}
.brands img {width: 750px;}
.molding-frames {width: 576px;}
.dropdown-trimenu{min-width: 730px;margin-left: -220px;}
}
@media (max-width: 560px) {
body > .container {padding: 120px 0 0;}
.container, .navbar-default {width: 550px;}
.index-nav {height: 125px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 10px;}
.molding-title h1{font-size: 52px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 15px; width: 90px;}
.item-lage{width: 400px;}
.item-small {margin: 8px 8px 8px 0; width: 128px; height: 128px;}
.brands img {width: 500px;}
.contacts-data {padding: 5px;}
.molding-frames {width: 420px;}
.dropdown-trimenu{min-width: 500px;margin-left: 0;font-size: 10px;background-color: #e7e7e7 !important;}
}
@media (max-width: 440px) {
body > .container {padding: 120px 0 0;}
.container, .navbar-default {width: 430px;}
.index-nav {height: 125px;}
.index-nav > .left {text-align: left;}
.index-nav > .middle {border: none;text-align: left;}
.index-nav > .right {text-align: left;}
ul > p > a{font-size: 10px;}
.molding-title h1{font-size: 52px;}
.navbar-fixed-top a,
.contacts-data {font-size: 10px;}
.category-img {margin-top: 10px; width: 80px;}
.item-lage{width: 350px;}
.item-small {margin: 7px 7px 7px 0; width: 112px; height: 112px;}
.brands img {width: 400px;}
.contacts-data {padding: 5px;}
.molding-frames {width: 330px;}
.dropdown-trimenu{min-width: 400px;margin-left: 0;font-size: 10px;background-color: #e7e7e7 !important;}
}
.molding-title {
text-align: center;
margin-top: 20px;
}
.molding-text {
text-align: center;
font-size: 16px;
padding: 15px;
}
.contacts-title a,
.contacts-title a:hover,
.contacts-title a:visited{
color: #fff;
}
.navbar-fixed-top .navbar-collapse {
max-height: 580px;
overflow: hidden;
}
.molding-frames{
margin-bottom: 30px;
} | 0.345768 | 0.049062 |
.undecorated-link:hover {
text-decoration: none;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
.ng-invalid.ng-dirty {
border-color: #FA787E;
}
.ng-valid.ng-dirty {
border-color: #78FA89;
}
/*!
* Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
/* Toggle Styles */
#page-content-wrapper {
padding-top: 55px;
}
#side-nav-menu {
z-index: 1000;
position: fixed;
left: 250px;
width: 150px;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #000;
}
#side-nav-menu.ng-hide-add,
#side-nav-menu.ng-hide-remove,
#side-nav-menu.ng-hide-add + #menu-toggle,
#side-nav-menu.ng-hide-remove + #menu-toggle
{
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#side-nav-menu.ng-hide{
width:0;
}
#side-nav-menu.ng-hide + #menu-toggle{
left:0;
}
#side-nav-menu + #menu-toggle{
position:fixed;
display:block;
top: 0px;
left: 150px;
background-color: #302B2D;
width: 50px;
height: 50px;
z-index:1000;
cursor:pointer;
}
#menu-toggle i{
top: 17px;
position: absolute;
left: 18px;
color: #F2F2F2;
}
/* Sidebar Styles */
.sidebar-nav {
position: absolute;
top: 0;
width: 150px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav div {
padding-top: 33px;
padding-bottom: 33px;
}
.sidebar-nav div i,.sidebar-nav div a {
display: block;
text-decoration: none;
color: #302B2D;
}
.sidebar-nav div i:hover,.sidebar-nav div a:hover {
text-decoration: none;
color: #fff;
cursor:pointer;
}
.sidebar-nav div i:active,
.sidebar-nav div i:focus,
.sidebar-nav div a:active,
.sidebar-nav div a:focus{
text-decoration: none;
}
#side-nav-menu{
background-color:#1ABC9C;
}
#side-nav-menu div:nth-child(1){
background-color:#3498DB;
}
#side-nav-menu div:nth-child(2){
background-color:#F26C68;
}
#side-nav-menu div:nth-child(3){
background-color:#F4D313;
}
.fa-check-square-o,.fa-square-o{
color:#3498DB;
}
.fa-heart, .fa-heart-o{
color:#F26C68
}
.input-group .input-group-btn button:nth-child(1),.input-group-btn button:nth-child(1):hover {
background-color:#1ABC9C;
border-color:#1ABC9C;
}
.input-group .input-group-btn button:nth-child(2),.input-group-btn button:nth-child(2):hover{
background-color:#3498DB;
border-color:#3498DB;
}
/*
List css
*/
.list-group-item p.in-cart{
text-decoration: line-through;
color:#7F8C8D;
} | public/modules/core/css/core.css | .undecorated-link:hover {
text-decoration: none;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
.ng-invalid.ng-dirty {
border-color: #FA787E;
}
.ng-valid.ng-dirty {
border-color: #78FA89;
}
/*!
* Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
/* Toggle Styles */
#page-content-wrapper {
padding-top: 55px;
}
#side-nav-menu {
z-index: 1000;
position: fixed;
left: 250px;
width: 150px;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #000;
}
#side-nav-menu.ng-hide-add,
#side-nav-menu.ng-hide-remove,
#side-nav-menu.ng-hide-add + #menu-toggle,
#side-nav-menu.ng-hide-remove + #menu-toggle
{
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#side-nav-menu.ng-hide{
width:0;
}
#side-nav-menu.ng-hide + #menu-toggle{
left:0;
}
#side-nav-menu + #menu-toggle{
position:fixed;
display:block;
top: 0px;
left: 150px;
background-color: #302B2D;
width: 50px;
height: 50px;
z-index:1000;
cursor:pointer;
}
#menu-toggle i{
top: 17px;
position: absolute;
left: 18px;
color: #F2F2F2;
}
/* Sidebar Styles */
.sidebar-nav {
position: absolute;
top: 0;
width: 150px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav div {
padding-top: 33px;
padding-bottom: 33px;
}
.sidebar-nav div i,.sidebar-nav div a {
display: block;
text-decoration: none;
color: #302B2D;
}
.sidebar-nav div i:hover,.sidebar-nav div a:hover {
text-decoration: none;
color: #fff;
cursor:pointer;
}
.sidebar-nav div i:active,
.sidebar-nav div i:focus,
.sidebar-nav div a:active,
.sidebar-nav div a:focus{
text-decoration: none;
}
#side-nav-menu{
background-color:#1ABC9C;
}
#side-nav-menu div:nth-child(1){
background-color:#3498DB;
}
#side-nav-menu div:nth-child(2){
background-color:#F26C68;
}
#side-nav-menu div:nth-child(3){
background-color:#F4D313;
}
.fa-check-square-o,.fa-square-o{
color:#3498DB;
}
.fa-heart, .fa-heart-o{
color:#F26C68
}
.input-group .input-group-btn button:nth-child(1),.input-group-btn button:nth-child(1):hover {
background-color:#1ABC9C;
border-color:#1ABC9C;
}
.input-group .input-group-btn button:nth-child(2),.input-group-btn button:nth-child(2):hover{
background-color:#3498DB;
border-color:#3498DB;
}
/*
List css
*/
.list-group-item p.in-cart{
text-decoration: line-through;
color:#7F8C8D;
} | 0.431105 | 0.074534 |
body {
background-image: url("image/etoiles-grandes.png"), url("image/etoiles-petites.png"), url("image/background-violet.png"), url("image/background-vert.png");
background-repeat: repeat-x;
background-position: 995px 0;
background-color: #341977;
font-family: small arial,sans-serif;
margin: 0px;
}
/*--------------------------DEBUT HEAD--------------------------*/
#ensemble {
width: 960px;
height: 1500px;
margin: auto;
}
#head {
margin-top: 30px;
margin-bottom: 30px;
width: 977px;
height: 50px;
}
#head h1 {
padding: 0px;
margin: 0px;
width: 464px;
height: 45px;
font-size: 20px;
font-weight: 100;
color: #FFFFFF;
}
#head h1 a {
transition:transform 0.6s;
float: left;
}
#head h1 a:hover{
transform:rotate(360deg);
}
#nav ul {
position: relative;
float: right;
bottom: 49px;
right: 15px
}
#nav li {
height: 15px;
display: inline-block;
list-style-type: none;
padding: 5px 15px;
}
#nav li a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
list-style: none;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#nav li:hover{
transition-duration: 0.3s;
background-color: rgba(255, 255, 255, 0.7);
color: rgb(255, 255, 255);
border-radius: 50px;
}
#nav li a:hover {
color: rgb(255, 255, 255);
}
#head_h1 {
width: 990px;
height: 45px;
}
#head_h1 h1 span {
float: left;
margin-top: 15px;
margin-left: 5px;
}
/*--------------------------FIN HEAD--------------------------*/
/*--------------------------DEBUT CORPS--------------------------*/
/*------------------CORPS TOP------------------*/
#corps_top {
width: 960px;
height: 100px;
margin-bottom: 25px;
}
#corps {
background-image: url("image/background-neige.jpg");
border-radius: 15px;
width: 960px;
height: 1550px;
margin: 0px;
background-color: #EDF2F8;
background-repeat: no-repeat;
}
#corps h2 {
font-size: 30px;
margin: 0px;
}
#bloc_corps_h2 {
width: 562px;
height: 69px;
padding-top: 30px;
padding-left: 30px;
}
#corps span {
color: #FFFFFF;
font-size: 35px;
font-weight: bold;
padding: 2px 10px 2px 10px;
}
#bloc_compteur {
position: relative;
width: 272px;
height: 59px;
left: 650px;
bottom: 66px;
}
#bloc_compteur p {
text-align: center;
margin-top: 5px;
}
.compteur {
background-color: #333333;
border: 1px solid #333333;
border-radius: 5px;
}
/*------------------FIN CORPS TOP------------------*/
/*------------------DEBUT CORPS IMG------------------*/
#bloc_img {
width: 868px;
height: 130px;
padding: 30px 28px 30px 47px;
}
#corps_img {
background: rgba(84, 47, 145, 0.7);
width: 960px;
height: 190px;
position: relative;
}
#corps_img img {
width: 135px;
height: 91px;
margin-top: 10px;
margin-left: 10px;
}
.background_img {
background: rgba(142, 111, 193, 0.9);
width: 164px;
height: 130px;
display: inline-block;
margin-right: 6px;
}
.background_plage {
position: absolute;
background-image: url("image/plage.jpg");
background-size: cover;
display: inline-block;
width: 144px;
height: 91px;
margin-left: 10px;
margin-top: 10px;
}
#img_sac {
background-image: url("image/sac-plastique.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition:transform 0.2s;
}
#img_sac:hover {
z-index:5;
transform: scale(1.25);
}
#img_megot {
background-image: url("image/megot.png");
background-size: cover;
width: 53px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_megot:hover {
z-index:5;
transform: scale(1.20);
padding-left: 10px;
}
#img_coton {
background-image: url("image/coton-tige.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_coton:hover {
transform: translate(15px);
}
#img_bouteille {
background-image: url("image/bouteille.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_bouteille:hover {
transform: rotate(-15deg);
}
#img_parasol {
background-image: url("image/parasol.png");
background-size: cover;
width: 80px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.4s;
}
#img_parasol:hover {
opacity: 0.4;
}
.text_img {
position: relative;
font-size: 13px;
color: #FFFFFF;
opacity: 0.7;
text-align: center;
top: 95px;
}
#button_precedent img {
position: absolute;
width: 39px;
height: 39px;
top: 60px;
left: -30px;
}
#button_suivant img {
z-index: 2;
position: absolute;
width: 39px;
height: 39px;
top: 60px;
right: -20px;
}
/*------------------FIN CORPS IMG------------------*/
/*------------------DEBUT CORPS TEXT------------------*/
#corps_text {
}
#text_left {
width: 586px;
height: 352px;
margin-left: 30px;
margin-top: 30px;
float: left;
}
#text_left h3 {
font-size: 20px;
margin-top: 0px;
margin-bottom: 15px;
font-weight: 100;
}
#text_left h4 {
margin: 0px;
font-weight: bold;
font-size: 20px;
}
#p_court {
width: 532px;
height: 145px;
}
#corps_text p {
margin-top: 10px;
font-size: 17px;
font-weight: 100;
line-height: 28px;
}
#corps_text a {
color: #1e638d;
text-decoration: none;
font-weight: bold;
}
#poids_dechet {
width: 287px;
height: 300px;
float: right;
margin-top: 30px;
margin-right: 30px;
}
#poids_dechet h4 {
margin-bottom: 10px;
margin-top: 0px;
font-weight: bold;
font-size: 20px;
}
#bloc_ul_dechet a {
display: block;
text-decoration: none;
color: #000000;
font-weight: bold;
width: 260px;
margin: 0px;
padding: 0px;
}
#bloc_ul_dechet img {
display: inline-block;
background-size: cover;
width: 25px;
height: 25px;
}
#bloc_ul_dechet li:hover {
background: rgba(142, 111, 193, 0.7);
border-radius: 5px;
padding-right: 15px;
}
#poids_dechet ul {
padding: 0px;
margin: 0px;
}
#poids_dechet li {
list-style-type: none;
border-bottom: 1px solid #BAB8B8;
padding: 10px;
}
#bloc_ul_dechet {
width: 285px;
height: 249px;
border: 1px solid #BAB8B8;
border-radius: 10px;
background: rgba(255, 255, 255, 0.6);
}
#bloc_ul_dechet li:last-child {
border-bottom: none;
}
ul #sac_plastique {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 16px;
}
ul #megot {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 82px;
}
ul #coton_tige {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 49px;
}
ul #bouteille {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 70px;
}
ul #parasol {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 80px;
}
/*------------------FIN CORPS TEXT------------------*/
/*------------------DEBUT TEXT MIDDLE------------------*/
#text_middle {
width: 586px;
height: 577px;
margin-bottom: 19px;
}
#text_middle p {
font-size: 12px;
line-height: 20px;
margin: 0px;
color: #666666;
}
#text_middle_left {
width: 175px;
height: 175px;
float: left;
margin-left: 30px;
margin-top: 20px;
border-right: 1px dotted #BAB8B8;
padding-right: 5px;
}
#text_middle_middle {
width: 175px;
height: 175px;
float: right;
margin-top: 20px;
margin-right: 5px;
}
#text_middle_right {
width: 175px;
height: 175px;
float: right;
margin-top: 20px;
padding-left: 10px;
border-left: 1px dotted #BAB8B8;
}
#flash_gordon span {
font-size: 13px;
font-weight: 100;
color: #666666;
padding: 0px;
margin-left: 35px;
}
#flash_gordon img {
position: relative;
top: 4px;
left: 30px;
}
#inscription {
position: relative;
width: 287px;
height: 219px;
float: right;
bottom: 309px;
margin-top: 30px;
margin-right: 30px;
background-color: #d4d0e9;
border-radius: 10px;
}
#inscription h3 {
margin: 0px;
text-align: center;
margin-bottom: 15px;
margin-top: 20px;
}
#bloc_input {
width: 250px;
height: 120px;
margin: auto;
}
.input_text {
color: #666666;
width: 300px;
border-radius: 5px;
margin-top: 10px;
}
input {
box-shadow: 1px 1px 0px 0px #000000;
}
input:focus {
box-shadow: none;
}
.nom_prenom {
width: 247px;
height: 18px;
border-radius: 5px;
}
#submit {
width: 105px;
height: 35px;
font-weight: bold;
margin: 15px auto;
margin-bottom: 5px;
margin-left: 75px;
border: none;
background: #ffffff;
background-image: -webkit-linear-gradient(top, #ffffff, #d5dade);
background-image: -moz-linear-gradient(top, #ffffff, #d5dade);
background-image: -ms-linear-gradient(top, #ffffff, #d5dade);
background-image: -o-linear-gradient(top, #ffffff, #d5dade);
background-image: linear-gradient(to bottom, #ffffff, #d5dade);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
-webkit-box-shadow: 1px 3px 1px #b8b8b8;
-moz-box-shadow: 1px 3px 1px #b8b8b8;
box-shadow: 1px 3px 1px #b8b8b8;
font-family: Arial;
color: #000000;
font-size: 17px;
text-decoration: none;
}
#submit:hover {
background: #ffffff;
background-image: -webkit-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -moz-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -ms-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -o-linear-gradient(top, #ffffff, #bfbfbf);
background-image: linear-gradient(to bottom, #ffffff, #bfbfbf);
box-shadow: none;
text-decoration: none;
}
/*------------------FIN TEXT MIDDLE------------------*/
/*------------------DEBUT TEXT BOTTOM------------------*/
#text_bottom {
width: 556px;
height: 500px;
margin-left: 30px;
margin-top: 30px;
}
#text_bottom h3 {
margin: 0px;
}
#albus_dumbledore span {
font-size: 13px;
font-weight: 100;
color: #666666;
padding: 0px;
margin-left: 5px;
}
#albus_dumbledore img {
position: relative;
top: 4px;
}
/*------------------FIN TEXT BOTTOM------------------*/
/*------------------DEBUT TEXT RIGHT------------------*/
#text_right {
position: relative;
width: 285px;
height: 360px;
float: right;
bottom: 590px;
margin-top: 30px;
margin-right: 30px;
}
#text_right p {
font-size: 13px;
margin: 0px;
line-height: 18px;
color: #666666;
}
/*------------------FIN TEXT RIGHT------------------*/
/*--------------------------FIN CORPS--------------------------*/
/*--------------------------DEBUT FOOTER--------------------------*/
#text_footer {
position: relative;
width: 960px;
height: 35px;
margin-top: 15px;
left: 156px;
}
#text_footer p {
width: 643px;
text-align: center;
margin: 0px;
color: #999999;
}
#img_footer {
width: 159px;
height: 50px;
margin: auto;
margin-top: 10px;
}
#img_footer img {
opacity: 0.25;
transition-duration: 0.2s;
}
#img_footer img:hover {
opacity: 0.50;
}
/*--------------------------FIN FOOTER--------------------------*/ | public/projects/HTML_CSS_Maquette_3/style.css | body {
background-image: url("image/etoiles-grandes.png"), url("image/etoiles-petites.png"), url("image/background-violet.png"), url("image/background-vert.png");
background-repeat: repeat-x;
background-position: 995px 0;
background-color: #341977;
font-family: small arial,sans-serif;
margin: 0px;
}
/*--------------------------DEBUT HEAD--------------------------*/
#ensemble {
width: 960px;
height: 1500px;
margin: auto;
}
#head {
margin-top: 30px;
margin-bottom: 30px;
width: 977px;
height: 50px;
}
#head h1 {
padding: 0px;
margin: 0px;
width: 464px;
height: 45px;
font-size: 20px;
font-weight: 100;
color: #FFFFFF;
}
#head h1 a {
transition:transform 0.6s;
float: left;
}
#head h1 a:hover{
transform:rotate(360deg);
}
#nav ul {
position: relative;
float: right;
bottom: 49px;
right: 15px
}
#nav li {
height: 15px;
display: inline-block;
list-style-type: none;
padding: 5px 15px;
}
#nav li a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
list-style: none;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
#nav li:hover{
transition-duration: 0.3s;
background-color: rgba(255, 255, 255, 0.7);
color: rgb(255, 255, 255);
border-radius: 50px;
}
#nav li a:hover {
color: rgb(255, 255, 255);
}
#head_h1 {
width: 990px;
height: 45px;
}
#head_h1 h1 span {
float: left;
margin-top: 15px;
margin-left: 5px;
}
/*--------------------------FIN HEAD--------------------------*/
/*--------------------------DEBUT CORPS--------------------------*/
/*------------------CORPS TOP------------------*/
#corps_top {
width: 960px;
height: 100px;
margin-bottom: 25px;
}
#corps {
background-image: url("image/background-neige.jpg");
border-radius: 15px;
width: 960px;
height: 1550px;
margin: 0px;
background-color: #EDF2F8;
background-repeat: no-repeat;
}
#corps h2 {
font-size: 30px;
margin: 0px;
}
#bloc_corps_h2 {
width: 562px;
height: 69px;
padding-top: 30px;
padding-left: 30px;
}
#corps span {
color: #FFFFFF;
font-size: 35px;
font-weight: bold;
padding: 2px 10px 2px 10px;
}
#bloc_compteur {
position: relative;
width: 272px;
height: 59px;
left: 650px;
bottom: 66px;
}
#bloc_compteur p {
text-align: center;
margin-top: 5px;
}
.compteur {
background-color: #333333;
border: 1px solid #333333;
border-radius: 5px;
}
/*------------------FIN CORPS TOP------------------*/
/*------------------DEBUT CORPS IMG------------------*/
#bloc_img {
width: 868px;
height: 130px;
padding: 30px 28px 30px 47px;
}
#corps_img {
background: rgba(84, 47, 145, 0.7);
width: 960px;
height: 190px;
position: relative;
}
#corps_img img {
width: 135px;
height: 91px;
margin-top: 10px;
margin-left: 10px;
}
.background_img {
background: rgba(142, 111, 193, 0.9);
width: 164px;
height: 130px;
display: inline-block;
margin-right: 6px;
}
.background_plage {
position: absolute;
background-image: url("image/plage.jpg");
background-size: cover;
display: inline-block;
width: 144px;
height: 91px;
margin-left: 10px;
margin-top: 10px;
}
#img_sac {
background-image: url("image/sac-plastique.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition:transform 0.2s;
}
#img_sac:hover {
z-index:5;
transform: scale(1.25);
}
#img_megot {
background-image: url("image/megot.png");
background-size: cover;
width: 53px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_megot:hover {
z-index:5;
transform: scale(1.20);
padding-left: 10px;
}
#img_coton {
background-image: url("image/coton-tige.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_coton:hover {
transform: translate(15px);
}
#img_bouteille {
background-image: url("image/bouteille.png");
background-size: cover;
width: 70px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.2s;
}
#img_bouteille:hover {
transform: rotate(-15deg);
}
#img_parasol {
background-image: url("image/parasol.png");
background-size: cover;
width: 80px;
height: 70px;
margin-left: 20px;
margin-top: 10px;
transition-duration: 0.4s;
}
#img_parasol:hover {
opacity: 0.4;
}
.text_img {
position: relative;
font-size: 13px;
color: #FFFFFF;
opacity: 0.7;
text-align: center;
top: 95px;
}
#button_precedent img {
position: absolute;
width: 39px;
height: 39px;
top: 60px;
left: -30px;
}
#button_suivant img {
z-index: 2;
position: absolute;
width: 39px;
height: 39px;
top: 60px;
right: -20px;
}
/*------------------FIN CORPS IMG------------------*/
/*------------------DEBUT CORPS TEXT------------------*/
#corps_text {
}
#text_left {
width: 586px;
height: 352px;
margin-left: 30px;
margin-top: 30px;
float: left;
}
#text_left h3 {
font-size: 20px;
margin-top: 0px;
margin-bottom: 15px;
font-weight: 100;
}
#text_left h4 {
margin: 0px;
font-weight: bold;
font-size: 20px;
}
#p_court {
width: 532px;
height: 145px;
}
#corps_text p {
margin-top: 10px;
font-size: 17px;
font-weight: 100;
line-height: 28px;
}
#corps_text a {
color: #1e638d;
text-decoration: none;
font-weight: bold;
}
#poids_dechet {
width: 287px;
height: 300px;
float: right;
margin-top: 30px;
margin-right: 30px;
}
#poids_dechet h4 {
margin-bottom: 10px;
margin-top: 0px;
font-weight: bold;
font-size: 20px;
}
#bloc_ul_dechet a {
display: block;
text-decoration: none;
color: #000000;
font-weight: bold;
width: 260px;
margin: 0px;
padding: 0px;
}
#bloc_ul_dechet img {
display: inline-block;
background-size: cover;
width: 25px;
height: 25px;
}
#bloc_ul_dechet li:hover {
background: rgba(142, 111, 193, 0.7);
border-radius: 5px;
padding-right: 15px;
}
#poids_dechet ul {
padding: 0px;
margin: 0px;
}
#poids_dechet li {
list-style-type: none;
border-bottom: 1px solid #BAB8B8;
padding: 10px;
}
#bloc_ul_dechet {
width: 285px;
height: 249px;
border: 1px solid #BAB8B8;
border-radius: 10px;
background: rgba(255, 255, 255, 0.6);
}
#bloc_ul_dechet li:last-child {
border-bottom: none;
}
ul #sac_plastique {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 16px;
}
ul #megot {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 82px;
}
ul #coton_tige {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 49px;
}
ul #bouteille {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 70px;
}
ul #parasol {
font-size: 15px;
font-weight: 100;
color: #BAB8B8;
margin-left: 80px;
}
/*------------------FIN CORPS TEXT------------------*/
/*------------------DEBUT TEXT MIDDLE------------------*/
#text_middle {
width: 586px;
height: 577px;
margin-bottom: 19px;
}
#text_middle p {
font-size: 12px;
line-height: 20px;
margin: 0px;
color: #666666;
}
#text_middle_left {
width: 175px;
height: 175px;
float: left;
margin-left: 30px;
margin-top: 20px;
border-right: 1px dotted #BAB8B8;
padding-right: 5px;
}
#text_middle_middle {
width: 175px;
height: 175px;
float: right;
margin-top: 20px;
margin-right: 5px;
}
#text_middle_right {
width: 175px;
height: 175px;
float: right;
margin-top: 20px;
padding-left: 10px;
border-left: 1px dotted #BAB8B8;
}
#flash_gordon span {
font-size: 13px;
font-weight: 100;
color: #666666;
padding: 0px;
margin-left: 35px;
}
#flash_gordon img {
position: relative;
top: 4px;
left: 30px;
}
#inscription {
position: relative;
width: 287px;
height: 219px;
float: right;
bottom: 309px;
margin-top: 30px;
margin-right: 30px;
background-color: #d4d0e9;
border-radius: 10px;
}
#inscription h3 {
margin: 0px;
text-align: center;
margin-bottom: 15px;
margin-top: 20px;
}
#bloc_input {
width: 250px;
height: 120px;
margin: auto;
}
.input_text {
color: #666666;
width: 300px;
border-radius: 5px;
margin-top: 10px;
}
input {
box-shadow: 1px 1px 0px 0px #000000;
}
input:focus {
box-shadow: none;
}
.nom_prenom {
width: 247px;
height: 18px;
border-radius: 5px;
}
#submit {
width: 105px;
height: 35px;
font-weight: bold;
margin: 15px auto;
margin-bottom: 5px;
margin-left: 75px;
border: none;
background: #ffffff;
background-image: -webkit-linear-gradient(top, #ffffff, #d5dade);
background-image: -moz-linear-gradient(top, #ffffff, #d5dade);
background-image: -ms-linear-gradient(top, #ffffff, #d5dade);
background-image: -o-linear-gradient(top, #ffffff, #d5dade);
background-image: linear-gradient(to bottom, #ffffff, #d5dade);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
-webkit-box-shadow: 1px 3px 1px #b8b8b8;
-moz-box-shadow: 1px 3px 1px #b8b8b8;
box-shadow: 1px 3px 1px #b8b8b8;
font-family: Arial;
color: #000000;
font-size: 17px;
text-decoration: none;
}
#submit:hover {
background: #ffffff;
background-image: -webkit-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -moz-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -ms-linear-gradient(top, #ffffff, #bfbfbf);
background-image: -o-linear-gradient(top, #ffffff, #bfbfbf);
background-image: linear-gradient(to bottom, #ffffff, #bfbfbf);
box-shadow: none;
text-decoration: none;
}
/*------------------FIN TEXT MIDDLE------------------*/
/*------------------DEBUT TEXT BOTTOM------------------*/
#text_bottom {
width: 556px;
height: 500px;
margin-left: 30px;
margin-top: 30px;
}
#text_bottom h3 {
margin: 0px;
}
#albus_dumbledore span {
font-size: 13px;
font-weight: 100;
color: #666666;
padding: 0px;
margin-left: 5px;
}
#albus_dumbledore img {
position: relative;
top: 4px;
}
/*------------------FIN TEXT BOTTOM------------------*/
/*------------------DEBUT TEXT RIGHT------------------*/
#text_right {
position: relative;
width: 285px;
height: 360px;
float: right;
bottom: 590px;
margin-top: 30px;
margin-right: 30px;
}
#text_right p {
font-size: 13px;
margin: 0px;
line-height: 18px;
color: #666666;
}
/*------------------FIN TEXT RIGHT------------------*/
/*--------------------------FIN CORPS--------------------------*/
/*--------------------------DEBUT FOOTER--------------------------*/
#text_footer {
position: relative;
width: 960px;
height: 35px;
margin-top: 15px;
left: 156px;
}
#text_footer p {
width: 643px;
text-align: center;
margin: 0px;
color: #999999;
}
#img_footer {
width: 159px;
height: 50px;
margin: auto;
margin-top: 10px;
}
#img_footer img {
opacity: 0.25;
transition-duration: 0.2s;
}
#img_footer img:hover {
opacity: 0.50;
}
/*--------------------------FIN FOOTER--------------------------*/ | 0.386648 | 0.08141 |
* {
margin: 0;
padding: 0;
}
body {
background-image: url(https://cdn.pixabay.com/photo/2015/12/01/15/43/black-1072366_1280.jpg);
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.header {
font-family: 'Courier New', Courier, monospace;
font-size: 32px;
border-bottom: 2px solid silver;
background-color: rgb(52, 73, 94, 0.5); /* последнее 0.5 регилурет прозрачность */
color: #32ff7e;
border-color: #32ff7e;
margin-bottom: 1rem;
padding: 0.5rem 0;
display: flex;
justify-content: space-between;
flex-direction: row;
text-align: center;
}
.username {
color: #3ae374;
}
.headerPart {
margin: 0 15px;
font-size: 0.7em;
}
.pageName {
margin: 0 15px;
}
.pageDescription {
font-size: 28px;
color: #3ae374;
}
.choiceLine {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
background-color: rgb(220, 221, 225, 0.7);
padding: 5px;
margin: 10px 10px;
border-radius: 10px;
}
select {
font-size: 20px;
height: 20px;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
min-height: 210px;
font-family: 'Courier New', Courier, monospace;
padding: 10px;
border-radius: 10px;
margin: 10px;
background-color: rgb(220, 221, 225, 0.7);
}
.container.result {
display: flex;
flex-direction: column;
justify-content: start;
width: 18%;
flex-wrap: wrap;
}
.containerWithMap {
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
}
#map {
margin: 10px;
height: 500px;
/* The height is 400 pixels */
width: 70%;
border-radius: 10px;
}
.formcontainer {
margin: 10px 25%;
padding: 5px;
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(220, 221, 225, 0.7);
border-radius: 10px;
}
.formName {
font-family: 'montserrat', sans-serif;
color: rgba(48, 48, 48, 0.7);
font-size: 32px;
font-weight: 500;
margin: 10px 0;
text-shadow: 0px 1px white;
}
.formcontainer input {
margin: 10px 0;
width: 100%;
max-width: 280px;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 5px;
border-bottom: 3px solid #979997;
color: #313131;
padding: 2px;
font-size: 20px;
transition: 0.2s ease-out;
}
.formcontainer input:focus {
background-color: rgba(255,255,255,0.8);
border-bottom: 3px solid #32ff7e;
}
button {
background-color: -internal-light-dark(rgba(148, 142, 142, 0.7), rgb(59, 59, 59));
}
.error {
border-bottom: 3px solid #32ff7e;
}
.formcontainer button {
width: 100px;
height: 40px;
padding: 2px;
margin-top: 10px;
padding-bottom: 0;
margin-bottom: 10px;
min-width: 50px;
height: 40px;
font-size: 0.7em;
color:rgb(73, 72, 72);
}
.formcontainer button:active {
background-color: #757373;
}
.wodBox {
position: relative;
margin: 5px;
padding: 5px;
border: solid;
border-radius: 10px;
background-color: rgb(220, 221, 225, 1);
min-width: 220px;
min-height: 160px;
}
.wodHead {
display: flex;
flex-direction: row;
text-align: center;
justify-content: space-between;
}
.wodName {
background-color:rgba(75, 75, 75, 0.7);
color: rgba(58, 227, 116,1.0);
font-size: 14px;
padding: 3px 10px 3px 3px;
}
.rx {
right: 0;
font-size: 10px;
}
.format {
font-weight: bold;
font-size: 12px;
padding: 10px;
}
.wod {
font-size: 12px;
list-style: none;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.img {
color: rgba(58, 227, 116,1.0);
max-width: 280px;
max-height: 140px;
border-style: dotted;
border-color: rgba(58, 227, 116,1.0);
padding: 0;
margin: 2px;
}
.ChooseWod {
font-size: 12px;
position: absolute;
bottom: 0;
margin: 5px;
left: 50%;
-ms-transform: translate(-50%);
transform: translate(-50%);
}
select {
height: 100%;
background-color: rgba(255, 255, 255, 0.3);
color: rgba(11, 46, 23, 0.6)
}
select:hover {
background-color: rgba(255,255,255,0.8);
color: black;
}
.footer {
position: absolute;
bottom: 0;
height: 25px;
width: 100%;
background-color:#7f8fa699;
font-size: 16px;
font-family: Courier, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
a {
text-decoration: none;
color: #f4f4f4;
}
a:hover {
color: #3ae374;
}
.a:visited {
color: #f4f4f4;
}
.elbrus {
color: black;
}
@media (max-width: 767px) {
header {
font-size: 26px;
}
.pageDescription {
font-size: 22px;
}
.choiceLine {
font-size: 16px;
}
.choose {
height: 100%;
font-size: 14px;
}
select {
font-size: 14px;
height: 16px;
}
button {
font-size: 13px;
padding: 1px;
}
footer {
font-size: 8px;
}
} | public/css/style.css | * {
margin: 0;
padding: 0;
}
body {
background-image: url(https://cdn.pixabay.com/photo/2015/12/01/15/43/black-1072366_1280.jpg);
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.header {
font-family: 'Courier New', Courier, monospace;
font-size: 32px;
border-bottom: 2px solid silver;
background-color: rgb(52, 73, 94, 0.5); /* последнее 0.5 регилурет прозрачность */
color: #32ff7e;
border-color: #32ff7e;
margin-bottom: 1rem;
padding: 0.5rem 0;
display: flex;
justify-content: space-between;
flex-direction: row;
text-align: center;
}
.username {
color: #3ae374;
}
.headerPart {
margin: 0 15px;
font-size: 0.7em;
}
.pageName {
margin: 0 15px;
}
.pageDescription {
font-size: 28px;
color: #3ae374;
}
.choiceLine {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
background-color: rgb(220, 221, 225, 0.7);
padding: 5px;
margin: 10px 10px;
border-radius: 10px;
}
select {
font-size: 20px;
height: 20px;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
min-height: 210px;
font-family: 'Courier New', Courier, monospace;
padding: 10px;
border-radius: 10px;
margin: 10px;
background-color: rgb(220, 221, 225, 0.7);
}
.container.result {
display: flex;
flex-direction: column;
justify-content: start;
width: 18%;
flex-wrap: wrap;
}
.containerWithMap {
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
}
#map {
margin: 10px;
height: 500px;
/* The height is 400 pixels */
width: 70%;
border-radius: 10px;
}
.formcontainer {
margin: 10px 25%;
padding: 5px;
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(220, 221, 225, 0.7);
border-radius: 10px;
}
.formName {
font-family: 'montserrat', sans-serif;
color: rgba(48, 48, 48, 0.7);
font-size: 32px;
font-weight: 500;
margin: 10px 0;
text-shadow: 0px 1px white;
}
.formcontainer input {
margin: 10px 0;
width: 100%;
max-width: 280px;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 5px;
border-bottom: 3px solid #979997;
color: #313131;
padding: 2px;
font-size: 20px;
transition: 0.2s ease-out;
}
.formcontainer input:focus {
background-color: rgba(255,255,255,0.8);
border-bottom: 3px solid #32ff7e;
}
button {
background-color: -internal-light-dark(rgba(148, 142, 142, 0.7), rgb(59, 59, 59));
}
.error {
border-bottom: 3px solid #32ff7e;
}
.formcontainer button {
width: 100px;
height: 40px;
padding: 2px;
margin-top: 10px;
padding-bottom: 0;
margin-bottom: 10px;
min-width: 50px;
height: 40px;
font-size: 0.7em;
color:rgb(73, 72, 72);
}
.formcontainer button:active {
background-color: #757373;
}
.wodBox {
position: relative;
margin: 5px;
padding: 5px;
border: solid;
border-radius: 10px;
background-color: rgb(220, 221, 225, 1);
min-width: 220px;
min-height: 160px;
}
.wodHead {
display: flex;
flex-direction: row;
text-align: center;
justify-content: space-between;
}
.wodName {
background-color:rgba(75, 75, 75, 0.7);
color: rgba(58, 227, 116,1.0);
font-size: 14px;
padding: 3px 10px 3px 3px;
}
.rx {
right: 0;
font-size: 10px;
}
.format {
font-weight: bold;
font-size: 12px;
padding: 10px;
}
.wod {
font-size: 12px;
list-style: none;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.img {
color: rgba(58, 227, 116,1.0);
max-width: 280px;
max-height: 140px;
border-style: dotted;
border-color: rgba(58, 227, 116,1.0);
padding: 0;
margin: 2px;
}
.ChooseWod {
font-size: 12px;
position: absolute;
bottom: 0;
margin: 5px;
left: 50%;
-ms-transform: translate(-50%);
transform: translate(-50%);
}
select {
height: 100%;
background-color: rgba(255, 255, 255, 0.3);
color: rgba(11, 46, 23, 0.6)
}
select:hover {
background-color: rgba(255,255,255,0.8);
color: black;
}
.footer {
position: absolute;
bottom: 0;
height: 25px;
width: 100%;
background-color:#7f8fa699;
font-size: 16px;
font-family: Courier, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
a {
text-decoration: none;
color: #f4f4f4;
}
a:hover {
color: #3ae374;
}
.a:visited {
color: #f4f4f4;
}
.elbrus {
color: black;
}
@media (max-width: 767px) {
header {
font-size: 26px;
}
.pageDescription {
font-size: 22px;
}
.choiceLine {
font-size: 16px;
}
.choose {
height: 100%;
font-size: 14px;
}
select {
font-size: 14px;
height: 16px;
}
button {
font-size: 13px;
padding: 1px;
}
footer {
font-size: 8px;
}
} | 0.436382 | 0.119794 |
.rsbtn_classic .rsimg {
background: transparent url(img/ReadSpeakerClassic.png) no-repeat scroll 0 0;
}
.rsbtn_classic .rsbtn_pause .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_stop .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_volume .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_closer .rsbtn_btnlabel {
display: none;
}
.rsbtn_classic.rsfloating {
display: block;
}
.rsbtn_classic .rsbtn_play {
display: inline;
}
.rsbtn_classic .rsbtn_left .rsbtn_text {
background: transparent url(/etc/designs/stzh/statics/media/icon_link_readspeaker.gif) no-repeat scroll 0 0;
padding-left: 20px;
padding-top: 0px;
}
a.icon.read {
background-image: none;
}
.rsbtn_classic .rsbtn_left.rsimg,
.rsbtn_classic .rsbtn_right.rsimg {
background: none;
}
.rsbtn_classic .rsbtn_play {
font-family: sans-serif;
text-decoration: none;
color: #33a;
}
.rsbtn_classic {
position: relative;
}
.rsbtn_classic .rsbtn_exp span,
.rsbtn_classic .rsbtn_exp a {
display: block;
text-decoration: none;
}
/* EXPANDING CONTAINER */
.rsbtn_classic .rsbtn_exp {
position: relative;
display: none;
}
.rsbtn_classic.rsexpanded .rsbtn_exp.rsimg {
display: block;
background: #fff;
/* oizaer: readspeaker layout adjustments */
padding-bottom: 10px;
line-height: 1.5em;
}
/* PLAYER AREA */
.rsbtn_classic .rsbtn_playerarea {
position: relative;
float: left;
border: 1px solid #aeaeae;
padding: 3px 3px 0px 3px;
}
/******************************************************** TOP BAR */
/* BUTTONS */
.rsbtn_classic .rsbtn_pause.rsimg,
.rsbtn_classic .rsbtn_stop.rsimg,
.rsbtn_classic .rsbtn_volume.rsimg,
.rsbtn_classic .rsbtn_closer.rsimg {
position: relative;
width: 13px;
height: 13px;
}
/* PAUSE BUTTON */
.rsbtn_classic .rsbtn_topbar .rsbtn_pause.rsimg.rspart {
margin-left: 0;
}
.rsbtn_classic.rsplaying .rsbtn_pause.rsimg {
background-position: 0 -13px;
}
/* STOP BUTTON */
.rsbtn_classic.rsplaying .rsbtn_stop.rsimg,
.rsbtn_classic.rspaused .rsbtn_stop.rsimg {
background-position: 0 -26px;
}
.rsbtn_classic.rsstopped .rsbtn_stop.rsimg {
background-position: -13px -26px;
}
/* PROGRESSBAR */
.rsbtn_classic .rsbtn_progress_container.rsimg {
position: relative;
border: 1px solid #3380cc;
width: 170px;
height: 11px;
background-position: 0 -78px;
background-repeat: repeat-x;
border-radius: 2px;
}
.rsbtn_classic .rsbtn_progress_container.rsimg .rsbtn_progress_played.rsimg {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 1%;
background-position: 0 -91px;
background-repeat: repeat-x;
}
.rsbtn_classic .rsbtn_progress_container.rsimg .rsbtn_progress_handle.rsimg {
position: absolute;
left: -1px;
top: 0px;
width: 2px;
height: 100%;
background: #3380cc;
}
/**
* Time labels
*/
.rsbtn_classic .rsbtn_progress_container .rsbtn_current_time,
.rsbtn_classic .rsbtn_progress_container .rsbtn_time_separator,
.rsbtn_classic .rsbtn_progress_container .rsbtn_total_time {
display: none;
font-size: 11px;
font-weight: bold;
font-family: Helvetica, sans-serif;
z-index: 10;
}
/* VOLUME */
.rsbtn_classic .rsbtn_volume.rsimg {
background-position: 0 -65px;
}
.rsbtn_classic .rsbtn_topbar .rsbtn_volume_container {
position: absolute;
height: 70px;
width: 20px;
top: 20px;
margin-left: -5px;
border: 1px solid #3380cc;
background: #fff;
box-shadow: 0 0 5px #333;
display: none;
z-index: 100;
}
.rsbtn_classic .rsbtn_volume_container .rsbtn_volume_slider {
border: none;
position: absolute;
top: 5px;
left: 5px;
width: 10px;
height: 60px;
background: #a4cbff;
}
.rsbtn_classic .rsbtn_volume_slider .rsbtn_volume_handle.rsimg {
position: absolute;
top: -2px;
left: -2px;
width: 14px;
height: 5px;
background: #3380cc;
}
/* READSPEAKER ICON */
.rsbtn_classic .rsbtn_icon {
background: transparent url(img/icon_16px.gif) no-repeat scroll 0 0;
width: 16px;
height: 16px;
margin-top: -1px;
margin-right: 20px; /* Just to make sure that the close button does not cover the ReadSpeaker icon. */
}
/* CLOSEBUTTON */
.rsbtn_classic .rsbtn_closer.rsimg {
position: absolute;
right: 3px;
top: 3px;
background-position: 0 -39px;
}
/******************************************************** BOTTOM LINKS */
.rsbtn_classic .rsbtn_topbar .rspart,
.rsbtn_classic .rsbtn_bottomlinks .rspart {
float: left;
margin-left: 4px;
}
.rsbtn_classic .rsbtn_bottomlinks {
font-size: 12px;
}
.rsbtn_classic .rsbtn_bottomlinks span{
display: inline;
}
.rsbtn_classic .rsbtn_bottomlinks {
margin-top: 2px;
margin-bottom: 2px;
}
/* BOTTOM LINKS BUTTONS */
.rsbtn_classic .rsbtn_settings,
.rsbtn_classic .rsbtn_dl,
.rsbtn_classic .rsbtn_powered {
position: relative;
padding: 2px;
}
.rsbtn_classic .rsbtn_settings:hover,
.rsbtn_classic .rsbtn_dl:hover,
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel a:hover {
background-color: #a4cbff;
}
/* BOTTOM LINKS LABELS */
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel.rsimg,
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel {
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
height: 13px;
}
/* SETTINGS */
.rsbtn_classic .rsbtn_bottomlinks .rsbtn_settings.rspart {
margin-left: 0;
}
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel.rsimg {
background-position: 0 -52px;
padding: 0 0 0 16px;
}
/* NO SOUND */
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel {
}
/* POWERED BY READSPEAKER */
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel a {
display: inline;
color: #000;
padding: 2px 0;
z-index: -1;
}
/******************************************************** POPUP BUTTON */
.rsbtn_classic.rspopup {
position: absolute;
background: #fff;
border: 1px solid #3380cc;
padding: 3px 3px 3px 3px;
display: none;
box-shadow: 0 0 5px #333;
}
/* COMPACT BUTTON */
.rsbtn_classic.rspopup.rscompact .rsbtn_play .rsbtn_left .rsbtn_text {
display: block;
position: relative;
margin: 2px 2px 2px;
width: 16px;
height: 16px;
padding: 0;
}
.rsbtn_classic.rspopup.rscompact .rsbtn_play .rsbtn_left .rsbtn_text span {
display: none;
}
.rsbtn_classic.rspopup.rsexpanded .rsbtn_play {
display: none;
}
/******************************************************** POPUP PLAYER */
.rsbtn_classic.rspopup .rsbtn_exp .rspart {
float: left;
margin-left: 4px;
}
/* PLAY/PAUSE BUTTON */
.rsbtn_classic.rspopup .rsbtn_exp .rsbtn_pause.rspart {
margin-left: 0;
}
/* READSPEAKER ICON */
.rsbtn_classic.rspopup .rsbtn_icon {
margin-right: 0;
}
/* SETTINGS BUTTON */
.rsbtn_classic.rspopup .rsbtn_settings {
width: 13px;
height: 13px;
padding: 0;
background-position: 0 -52px;
margin-right: 17px;
}
.rsbtn_classic.rspopup .rsbtn_settings:hover {
background-color: transparent;
}
/* CLOSE BUTTON */
.rsbtn_classic.rspopup .rsbtn_closer.rsimg {
right: 0px;
top: 0px;
}
/******************************************************** MISC */
.rsbtn_classic .defloater {
clear: both;
}
/* oizaer: readspeaker layout adjustments */
#readspeaker_button1 {
width: 100%;
display: inline-block;
line-height: 1px;
}
#readspeaker_button1 p.back.top {
margin-bottom: 26px !important;
}
a.rspart:focus, a.rspart:focus span, a.rspart:focus strong,
a.rspart:focus img, a.rspart.rsbtn_stop:active, a.rspart:active span,
a.rspart:active strong, a.rspart:active img {
/* howto disable background-color ? */
} | docs/static/tools/assets/vendors/readspeaker/ReadSpeakerClassic.css | .rsbtn_classic .rsimg {
background: transparent url(img/ReadSpeakerClassic.png) no-repeat scroll 0 0;
}
.rsbtn_classic .rsbtn_pause .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_stop .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_volume .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_closer .rsbtn_btnlabel {
display: none;
}
.rsbtn_classic.rsfloating {
display: block;
}
.rsbtn_classic .rsbtn_play {
display: inline;
}
.rsbtn_classic .rsbtn_left .rsbtn_text {
background: transparent url(/etc/designs/stzh/statics/media/icon_link_readspeaker.gif) no-repeat scroll 0 0;
padding-left: 20px;
padding-top: 0px;
}
a.icon.read {
background-image: none;
}
.rsbtn_classic .rsbtn_left.rsimg,
.rsbtn_classic .rsbtn_right.rsimg {
background: none;
}
.rsbtn_classic .rsbtn_play {
font-family: sans-serif;
text-decoration: none;
color: #33a;
}
.rsbtn_classic {
position: relative;
}
.rsbtn_classic .rsbtn_exp span,
.rsbtn_classic .rsbtn_exp a {
display: block;
text-decoration: none;
}
/* EXPANDING CONTAINER */
.rsbtn_classic .rsbtn_exp {
position: relative;
display: none;
}
.rsbtn_classic.rsexpanded .rsbtn_exp.rsimg {
display: block;
background: #fff;
/* oizaer: readspeaker layout adjustments */
padding-bottom: 10px;
line-height: 1.5em;
}
/* PLAYER AREA */
.rsbtn_classic .rsbtn_playerarea {
position: relative;
float: left;
border: 1px solid #aeaeae;
padding: 3px 3px 0px 3px;
}
/******************************************************** TOP BAR */
/* BUTTONS */
.rsbtn_classic .rsbtn_pause.rsimg,
.rsbtn_classic .rsbtn_stop.rsimg,
.rsbtn_classic .rsbtn_volume.rsimg,
.rsbtn_classic .rsbtn_closer.rsimg {
position: relative;
width: 13px;
height: 13px;
}
/* PAUSE BUTTON */
.rsbtn_classic .rsbtn_topbar .rsbtn_pause.rsimg.rspart {
margin-left: 0;
}
.rsbtn_classic.rsplaying .rsbtn_pause.rsimg {
background-position: 0 -13px;
}
/* STOP BUTTON */
.rsbtn_classic.rsplaying .rsbtn_stop.rsimg,
.rsbtn_classic.rspaused .rsbtn_stop.rsimg {
background-position: 0 -26px;
}
.rsbtn_classic.rsstopped .rsbtn_stop.rsimg {
background-position: -13px -26px;
}
/* PROGRESSBAR */
.rsbtn_classic .rsbtn_progress_container.rsimg {
position: relative;
border: 1px solid #3380cc;
width: 170px;
height: 11px;
background-position: 0 -78px;
background-repeat: repeat-x;
border-radius: 2px;
}
.rsbtn_classic .rsbtn_progress_container.rsimg .rsbtn_progress_played.rsimg {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 1%;
background-position: 0 -91px;
background-repeat: repeat-x;
}
.rsbtn_classic .rsbtn_progress_container.rsimg .rsbtn_progress_handle.rsimg {
position: absolute;
left: -1px;
top: 0px;
width: 2px;
height: 100%;
background: #3380cc;
}
/**
* Time labels
*/
.rsbtn_classic .rsbtn_progress_container .rsbtn_current_time,
.rsbtn_classic .rsbtn_progress_container .rsbtn_time_separator,
.rsbtn_classic .rsbtn_progress_container .rsbtn_total_time {
display: none;
font-size: 11px;
font-weight: bold;
font-family: Helvetica, sans-serif;
z-index: 10;
}
/* VOLUME */
.rsbtn_classic .rsbtn_volume.rsimg {
background-position: 0 -65px;
}
.rsbtn_classic .rsbtn_topbar .rsbtn_volume_container {
position: absolute;
height: 70px;
width: 20px;
top: 20px;
margin-left: -5px;
border: 1px solid #3380cc;
background: #fff;
box-shadow: 0 0 5px #333;
display: none;
z-index: 100;
}
.rsbtn_classic .rsbtn_volume_container .rsbtn_volume_slider {
border: none;
position: absolute;
top: 5px;
left: 5px;
width: 10px;
height: 60px;
background: #a4cbff;
}
.rsbtn_classic .rsbtn_volume_slider .rsbtn_volume_handle.rsimg {
position: absolute;
top: -2px;
left: -2px;
width: 14px;
height: 5px;
background: #3380cc;
}
/* READSPEAKER ICON */
.rsbtn_classic .rsbtn_icon {
background: transparent url(img/icon_16px.gif) no-repeat scroll 0 0;
width: 16px;
height: 16px;
margin-top: -1px;
margin-right: 20px; /* Just to make sure that the close button does not cover the ReadSpeaker icon. */
}
/* CLOSEBUTTON */
.rsbtn_classic .rsbtn_closer.rsimg {
position: absolute;
right: 3px;
top: 3px;
background-position: 0 -39px;
}
/******************************************************** BOTTOM LINKS */
.rsbtn_classic .rsbtn_topbar .rspart,
.rsbtn_classic .rsbtn_bottomlinks .rspart {
float: left;
margin-left: 4px;
}
.rsbtn_classic .rsbtn_bottomlinks {
font-size: 12px;
}
.rsbtn_classic .rsbtn_bottomlinks span{
display: inline;
}
.rsbtn_classic .rsbtn_bottomlinks {
margin-top: 2px;
margin-bottom: 2px;
}
/* BOTTOM LINKS BUTTONS */
.rsbtn_classic .rsbtn_settings,
.rsbtn_classic .rsbtn_dl,
.rsbtn_classic .rsbtn_powered {
position: relative;
padding: 2px;
}
.rsbtn_classic .rsbtn_settings:hover,
.rsbtn_classic .rsbtn_dl:hover,
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel a:hover {
background-color: #a4cbff;
}
/* BOTTOM LINKS LABELS */
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel.rsimg,
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel,
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel {
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
height: 13px;
}
/* SETTINGS */
.rsbtn_classic .rsbtn_bottomlinks .rsbtn_settings.rspart {
margin-left: 0;
}
.rsbtn_classic .rsbtn_settings .rsbtn_btnlabel.rsimg {
background-position: 0 -52px;
padding: 0 0 0 16px;
}
/* NO SOUND */
.rsbtn_classic .rsbtn_dl .rsbtn_btnlabel {
}
/* POWERED BY READSPEAKER */
.rsbtn_classic .rsbtn_powered .rsbtn_btnlabel a {
display: inline;
color: #000;
padding: 2px 0;
z-index: -1;
}
/******************************************************** POPUP BUTTON */
.rsbtn_classic.rspopup {
position: absolute;
background: #fff;
border: 1px solid #3380cc;
padding: 3px 3px 3px 3px;
display: none;
box-shadow: 0 0 5px #333;
}
/* COMPACT BUTTON */
.rsbtn_classic.rspopup.rscompact .rsbtn_play .rsbtn_left .rsbtn_text {
display: block;
position: relative;
margin: 2px 2px 2px;
width: 16px;
height: 16px;
padding: 0;
}
.rsbtn_classic.rspopup.rscompact .rsbtn_play .rsbtn_left .rsbtn_text span {
display: none;
}
.rsbtn_classic.rspopup.rsexpanded .rsbtn_play {
display: none;
}
/******************************************************** POPUP PLAYER */
.rsbtn_classic.rspopup .rsbtn_exp .rspart {
float: left;
margin-left: 4px;
}
/* PLAY/PAUSE BUTTON */
.rsbtn_classic.rspopup .rsbtn_exp .rsbtn_pause.rspart {
margin-left: 0;
}
/* READSPEAKER ICON */
.rsbtn_classic.rspopup .rsbtn_icon {
margin-right: 0;
}
/* SETTINGS BUTTON */
.rsbtn_classic.rspopup .rsbtn_settings {
width: 13px;
height: 13px;
padding: 0;
background-position: 0 -52px;
margin-right: 17px;
}
.rsbtn_classic.rspopup .rsbtn_settings:hover {
background-color: transparent;
}
/* CLOSE BUTTON */
.rsbtn_classic.rspopup .rsbtn_closer.rsimg {
right: 0px;
top: 0px;
}
/******************************************************** MISC */
.rsbtn_classic .defloater {
clear: both;
}
/* oizaer: readspeaker layout adjustments */
#readspeaker_button1 {
width: 100%;
display: inline-block;
line-height: 1px;
}
#readspeaker_button1 p.back.top {
margin-bottom: 26px !important;
}
a.rspart:focus, a.rspart:focus span, a.rspart:focus strong,
a.rspart:focus img, a.rspart.rsbtn_stop:active, a.rspart:active span,
a.rspart:active strong, a.rspart:active img {
/* howto disable background-color ? */
} | 0.263126 | 0.063832 |
@tailwind base;
/* Write your own custom base styles here */
/* Start purging... */
@tailwind components;
/* Stop purging. */
/* Write you own custom component styles here */
/* Start purging... */
@tailwind utilities;
/* Stop purging. */
/* Your own custom utilities */
@font-face {
font-family: 'custom-font';
src: url(/new/fonts/custom/CustomFont-Book.woff2) format('woff2'),
url(/new/fonts/custom/CustomFont-Book.woff) format('woff');
font-weight: 400;
font-style: normal;
}
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BookItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BookItalic.woff)
format('woff');
font-weight: 400;
font-style: italic;
} */
@font-face {
font-family: 'custom-font';
src: url(/new/fonts/custom/CustomFont-Medium.woff2) format('woff2'),
url(/new/fonts/custom/CustomFont-Medium.woff) format('woff');
font-weight: 500;
font-style: normal;
}
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-MediumItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-MediumItalic.woff)
format('woff');
font-weight: 500;
font-style: italic;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-Bold.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-Bold.woff)
format('woff');
font-weight: 700;
font-style: 600;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BoldItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BoldItalic.woff)
format('woff');
font-style: 600;
font-style: italic;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-Black.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-Black.woff)
format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BlackItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BlackItalic.woff)
format('woff');
font-weight: 800;
font-style: italic;
} */
.sbui-border-fix select {
@apply border-solid;
border-width: 1px;
}
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
} | www/styles/index.css | @tailwind base;
/* Write your own custom base styles here */
/* Start purging... */
@tailwind components;
/* Stop purging. */
/* Write you own custom component styles here */
/* Start purging... */
@tailwind utilities;
/* Stop purging. */
/* Your own custom utilities */
@font-face {
font-family: 'custom-font';
src: url(/new/fonts/custom/CustomFont-Book.woff2) format('woff2'),
url(/new/fonts/custom/CustomFont-Book.woff) format('woff');
font-weight: 400;
font-style: normal;
}
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BookItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BookItalic.woff)
format('woff');
font-weight: 400;
font-style: italic;
} */
@font-face {
font-family: 'custom-font';
src: url(/new/fonts/custom/CustomFont-Medium.woff2) format('woff2'),
url(/new/fonts/custom/CustomFont-Medium.woff) format('woff');
font-weight: 500;
font-style: normal;
}
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-MediumItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-MediumItalic.woff)
format('woff');
font-weight: 500;
font-style: italic;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-Bold.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-Bold.woff)
format('woff');
font-weight: 700;
font-style: 600;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BoldItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BoldItalic.woff)
format('woff');
font-style: 600;
font-style: italic;
} */
/* @font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-Black.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-Black.woff)
format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: "custom-font";
src: url(/new/fonts/custom/CustomFont-BlackItalic.woff2)
format('woff2'),
url(/new/fonts/custom/CustomFont-BlackItalic.woff)
format('woff');
font-weight: 800;
font-style: italic;
} */
.sbui-border-fix select {
@apply border-solid;
border-width: 1px;
}
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
} | 0.216012 | 0.031173 |
@charset "utf-8";
a{
text-transform:none;
color:#fff;
}
a:hover{
text-decoration:none;
}
#body{
width:auto;
height:100%;
/*font-size:44px;*/
}
/*introdue-qzz*/
.text-position{
position:absolute;
top: 230px;
left:380px;
list-style-type: none;
float: none;
width: 630px;
text-align:right;
}
.first-line{
list-style-type:none;
font-size:1.2em;
text-align:right;
}
.second-line{
list-style-type:none;
font-size:12px;
text-align:left;
padding-top:0.5%;
}
.left-over-coffe{
font-size:1.5em;
position:absolute;
top:155px;
left:240px;
color:#a68352;
word-spacing:0.5em;
}
.left-over-coffe-only-one{
font-size:1.5em;
position:absolute;
top:180px;
left:200px;
color:#a68352;
word-spacing:0.5em;
}
.left-over-coffe-only-one-1{
font-size:1em;
position:absolute;
top:135px;
left:-100px;
color:#000;
transform:scale(1) skew(24deg);
-o-transform:scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.left-over-coffe-text-1{
list-style-type:none;
margin-left:-30px;
}
.left-over-coffe-text-2{
list-style-type:none;
margin-left:20px;
}
.left-over-coffe-text-3{
list-style-type:none;
}
/*news-story*/
.text-story-about-qzz{
position:absolute;
left:400px;
top:220px;
font-size:0.8em;
width:750px;
text-align:left;
line-height: 1.5em;
}
.text-story-about-qzz-word{
margin-left:30%;
margin-top:29.6%;
width:57.6%;
list-style-type:none;
}
.text-between-lines{
margin-top:-18px;
text-indent: 2em;}
/*新闻站**/
.paradize-div{
margin-left:3%;
margin-top:17%;
width:42.75%;
}
.before-para{
width:12px;
align:left;
}
.para-text-1{
text-align:left;
font-size:1em;
position:absolute;
left:34%;
top:200px;
}
.img-position{
float:left;
}
.para-text-1-1{
position:absolute;
left:35%;
top:220px;
width:630px;
text-align:left;
font-size:1em;
}
.para-text-div{
position:absolute;
left:35%;
top:16%;
width:530px;
text-align:left;
font-size:1em;
}
.text-between-lines-3{
font-size:12px;
}
.text-between-lines-2{
margin-top:-12px;
font-size:0.8em;
}
.text-between-lines-2-first{
margin-top:12px;
font-size:0.8em;
}
.paragraph-between-lines
{
margin:0;
font-size:12px;
}
.member-activites{
position: absolute;
left: 34%;
top: 34%;
}
/*元气远景*/
.future-middle{
height: 470px;
width: 800px;
position: absolute;
margin-left: 450px;
top:1%;
}
.para-Y-left{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:32%;
left:4.3%;
float:left;
}
.para-Y-left-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:33%;
left:3.5%;
float:left;
}
.para-Y-left-1{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:44%;
left:60%;
float:left;
}
.para-Y-left-1-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:45%;
left:59.2%;
float:left;
}
.para-Y-left-2{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:55%;
left:1.8%;
float:left;
}
.para-Y-left-2-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:56%;
left:1%;
float:left;
}
.para-Y-left-3{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top: 67.5%;
left:57%;
float:left;
}
.para-Y-left-3-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top: 68.5%;
left:56.3%;
float:left;
}
.text-para-Y{
transform:scale(1) skew(24deg);
-o-transform:scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:0.8em;
line-height:1.7em;
text-align:center;
margin-top:-6px;
}
.p-line-high{
margin-top:-18px;
margin-left:-18px;
}
.para-W-right{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:12.5%;
top: 32%;
float: left;
height: 33px;
padding-top:14px;
}
.para-W-right-1{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:0%;
top: 44%;
float: left;
height:40px;
padding-top: 5px;
margin-left:10%;
}
.para-W-right-2{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
background-color:#fff;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:8.9%;
top: 55%;
float: left;
height: 44px;
padding-top:5px;
margin-left:1%;
}
.para-W-right-3{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
background-color:#FFF;
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:4%;
top: 67.5%;
height: 33px;
width:425px;
padding-top:14px;
}
.para-W-right-text{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
margin-left:3%;
}
.para-W-right-text-1{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
margin-left:5px;
}
.outside-para{
transform: scale(1.2) skew(-24deg);
-o-transform: scale(1.2) skew(-24deg);
-ms-transform: scale(1.2)skew(-24deg);
-moz-transform: scale(1.2)skew(-24deg);
-webkit-transform: scale(1.2)skew(-24deg);
border:solid #000 1px;
}
/*product1*/
.left-over-coffe-only-one-black{
font-size:1.5em;
position:absolute;
top:130px;
left:210px;
color:#000;
word-spacing:0.5em;
}
.white-blank-pro1{
background-color: #FFF;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top: 209px;
left: 300px;
width: 310px;
//height: 34.5%;
}
.coffe-slim-blank-pro1{
background-color: #937145;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top:225px;
left: 350px;
width:274px;
height: 205px;
z-index:-1;
}
.white-blank-pro1 span{
background-color: #fff;
background:rgba(0,0,0,0.5) !important; /*实现FF背景透明,文字不透明*/
background:#000; filter:Alpha(opacity=50);/*实现IE背景透明*/
position: absolute;
top: 209px;
left: 22%;
width: 23%;
height: 34.5%;
}
.white-blank-pro2{
background-color: #FFF;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top: 209px;
left:750px;
width: 310px;
//height: 34.5%;
}
.coffe-slim-blank-pro2{
background-color: #937145;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top:225px;
left:800px;
width:273px;
height:205px;
z-index:-1;
}
.coffe-blank-pro1-top{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
background: -moz-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -webkit-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -o-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -ms-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: linear-gradient(to right, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #000),color-stop(88%, #000), color-stop(100%, #fff));
margin-top:8%;
padding-left:10%;
word-spacing:1.4em;
color:#fff;
width:50%;
font-size:1em;
}
.coffe-blank-pro1-top-2{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
margin-top:8%;
padding-left:5%;
word-spacing:1.4em;
color:#fff;
width:50%;
font-size:1em;
}
.img-blank-pro1-inside{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:58%;
margin-top:5%;
margin-left:25%;
}
.pop{
position: absolute;
top:0px;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.5) !important;
background:#000; filter:Alpha(opacity=50);
background-color:#000;
z-index: 99;
display: none;
}
.pop p{
text-indent:-33px;
color:#fff;
list-style-type:none;
font-size:12px;
width:80%;
margin-left:15%;
margin-top:1px;
line-height:1.2em;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
@-moz-document url-prefix(){
.pop p {line-height:1em;}
}
.pop2{
position: absolute;
top:0px;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.5) !important;
background:#000; filter:Alpha(opacity=50);
background-color:#000;
z-index: 99;
display: none;
}
.pop2 p{
text-indent:-33px;
color:#fff;
list-style-type:none;
font-size:12px;
width:80%;
margin-left:15%;
margin-top:1px;
line-height:1.2em;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
@-moz-document url-prefix(){
.pop2 p {line-height:1em;}
}
.img-blank-pro1-inside-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:52%;
margin-top:4%;
margin-left:30%;
}
/*the second pro*/
.coffe-blank-pro1-over{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
background: -moz-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -webkit-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -o-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -ms-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: linear-gradient(to right, #b99b65 6%, #937145 20%, #937145 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #000),color-stop(88%, #000), color-stop(100%, #fff));
margin-top:-14%;
margin-left:-0.5%;
padding-left:9%;
word-spacing:1.4em;
color:#fff;
width:260px;
font-size:0.8em;
z-index:999;
}
@-moz-document url-prefix(){
.coffe-blank-pro1-over {margin-top:-17%;}
}
.coffe-blank-pro1-over ul li{
list-style-type:none;
margin-left:-23%;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.img-blank-pro1-inside-1{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:204px;
height:130px;
margin-top:20px;
margin-left:-15px;
}
.number-text-1{
margin-top:-10%;
margin-left:5%;
text-align:left;
}
.number-text-1 ul li:first-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:0.7em;
margin-left:-16%;
}
.number-text-1 ul li:last-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:1em;
margin-left:-12%;
color:#909294;
}
.number-text-2{
margin-top:-10%;
margin-left:5%;
text-align:left;
}
.number-text-2 ul li:first-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:0.7em;
margin-left:-16%;
}
.number-text-2 ul li:last-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:1em;
margin-left:-12%;
color:#909294;
}
.img-blank-pro1-inside-3{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:160px;
height:150px;
/*width:60%;
margin-top:0.5%;
margin-left:13%;*/
}
.button-product2 input{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
background-color:#937145;
position:absolute;
left:65.6%;
top:80%;
border-width: 0px;
width:137px;
height:30px;
color:#FFF;
border-radius: 8px;
font-size:1em;
margin-left:-14%;
}
/*现代养生*/
.large-background{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
z-index:-99;
width:650px;
height:100%;
position:absolute;
left:400px;
top:0%;
}
.large-inside-text{
width:90%;
height:50%;
margin-top:150px;
}
.large-inside-text ul{
text-align:left;
list-style-type:none;
padding-left:16.7%;
// background-color: #FFF;
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
}
.large-inside-text ul li:first-child{
font-size:1.1em;
}
.large-inside-text ul li{
margin-top:1%;
// line-height:1.5em;
font-size:0.7em;
font-style:normal;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.large-inside-img{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
position:absolute;
left:-165px;
top:170px;
width:45%;
}
.little-text-double{
background-color:#B88c37;
transform: scale(0.8) skew(0deg);
-o-transform: scale(0.8) skew(0deg);
-ms-transform: scale(0.8)skew(0deg);
-moz-transform: scale(0.8)skew(0deg);
-webkit-transform: scale(0.8)skew(0deg);
position:absolute;
width:200px;
height:30px;
left:82%;
top:130px;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
}
.little-text-double ul li{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
color:#fff;
font-size:1em;
margin-top:-7%;
margin-right:40px;
text-align:right;
}
.little-text-double-2{
transform: scale(0.8) skew(0deg);
-o-transform: scale(0.8) skew(0deg);
-ms-transform: scale(0.8)skew(0deg);
-moz-transform: scale(0.8)skew(0deg);
-webkit-transform: scale(0.8)skew(0deg);
position:absolute;
width:200px;
height:30px;
left:84%;
top:29%;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
}
.little-text-double-2 ul li{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
color:#fff;
font-size:1em;
margin-top:-7%;
text-align:right;
margin-right:40px;
}
/*现代养生*/
.large-background-now{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
z-index:-99;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
width:650px;
height:100%;
position:absolute;
left:400px;
top:0%;
}
.large-inside-text-1{
width:94%;
height:50%;
margin-top:170px;
margin-left:0%;
}
.large-inside-text-1 ul{
text-align:left;
list-style-type:none;
color:#fff;
padding-left:16.7%;
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
}
.large-inside-text-1 ul li:first-child{
font-size:1.1em;
}
.large-inside-text-1 ul li{
margin-top:0%;
line-height:2em;
font-size:0.7em;
font-style:normal;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
/*公司信息*/
.large-background-now-com{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
background: -moz-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -webkit-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -o-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -ms-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: linear-gradient(to right, #d2a93b 1%, #966532 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #d2a93b), color-stop(100%, #966532));
z-index:-99;
width:950px;
height:650px;
position:absolute;
left:220px;
top:0%;
}
.large-img-inside{
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
.large-img-inside-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
.large-inside-text-3{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
position:absolute;
left:35%;
top:20%;
width:30%;
color:#fff;
font-size:1em;
margin-left:19%;
}
.large-inside-text-small{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
color:#FFF;
position:absolute;
left:16%;
top:66%;
}
.large-inside-text-small-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size: 12px;
margin-left:7%;
color: #fff;
position: absolute;
left: 12%;
top: 66%;
width: 55%;
}
.large-img-inside-map{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
/*气之站介绍*/
.top-brown-bar{
position:absolute;
top: 0px;
width:10px;
height:170px;
margin-left:300px;
background-color:#937145;
-webkit-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.bottom-brown-bar{
top:290px;
width:10px;
height:435px;
position:absolute;
z-index:-99;
margin-left:200px;
background-color:#937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
/*品牌故事*/
.story-topbar{
position:absolute;
top: 0px;
width: 10px;
height: 180px;
margin-left: 280px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.story-bottombar{
top: 292px;
width: 10px;
height: 435px;
position:absolute;
z-index:-99;
margin-left: 200px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.lifeBetterInclineDiv{
width: 10px;
height: 100%;
position:absolute;
top:1px;
left:-40px;
z-index:-100;
background-color: #A1753F;
}
/*新闻站*/
.news-bottombar{
top:290px;
width: 10px;
height: 435px;
position:absolute;
z-index:-99;
margin-left: 200px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.left-2{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:10px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:44%;
left:8.5%;
float:left;
}
.left-4{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:10px;
height:47px;
color:#FFF;
background-color:#937145;
position:absolute;
top:67.5%;
left:2.7%;
float:left;
} | app/assets/stylesheets/text-word.css | @charset "utf-8";
a{
text-transform:none;
color:#fff;
}
a:hover{
text-decoration:none;
}
#body{
width:auto;
height:100%;
/*font-size:44px;*/
}
/*introdue-qzz*/
.text-position{
position:absolute;
top: 230px;
left:380px;
list-style-type: none;
float: none;
width: 630px;
text-align:right;
}
.first-line{
list-style-type:none;
font-size:1.2em;
text-align:right;
}
.second-line{
list-style-type:none;
font-size:12px;
text-align:left;
padding-top:0.5%;
}
.left-over-coffe{
font-size:1.5em;
position:absolute;
top:155px;
left:240px;
color:#a68352;
word-spacing:0.5em;
}
.left-over-coffe-only-one{
font-size:1.5em;
position:absolute;
top:180px;
left:200px;
color:#a68352;
word-spacing:0.5em;
}
.left-over-coffe-only-one-1{
font-size:1em;
position:absolute;
top:135px;
left:-100px;
color:#000;
transform:scale(1) skew(24deg);
-o-transform:scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.left-over-coffe-text-1{
list-style-type:none;
margin-left:-30px;
}
.left-over-coffe-text-2{
list-style-type:none;
margin-left:20px;
}
.left-over-coffe-text-3{
list-style-type:none;
}
/*news-story*/
.text-story-about-qzz{
position:absolute;
left:400px;
top:220px;
font-size:0.8em;
width:750px;
text-align:left;
line-height: 1.5em;
}
.text-story-about-qzz-word{
margin-left:30%;
margin-top:29.6%;
width:57.6%;
list-style-type:none;
}
.text-between-lines{
margin-top:-18px;
text-indent: 2em;}
/*新闻站**/
.paradize-div{
margin-left:3%;
margin-top:17%;
width:42.75%;
}
.before-para{
width:12px;
align:left;
}
.para-text-1{
text-align:left;
font-size:1em;
position:absolute;
left:34%;
top:200px;
}
.img-position{
float:left;
}
.para-text-1-1{
position:absolute;
left:35%;
top:220px;
width:630px;
text-align:left;
font-size:1em;
}
.para-text-div{
position:absolute;
left:35%;
top:16%;
width:530px;
text-align:left;
font-size:1em;
}
.text-between-lines-3{
font-size:12px;
}
.text-between-lines-2{
margin-top:-12px;
font-size:0.8em;
}
.text-between-lines-2-first{
margin-top:12px;
font-size:0.8em;
}
.paragraph-between-lines
{
margin:0;
font-size:12px;
}
.member-activites{
position: absolute;
left: 34%;
top: 34%;
}
/*元气远景*/
.future-middle{
height: 470px;
width: 800px;
position: absolute;
margin-left: 450px;
top:1%;
}
.para-Y-left{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:32%;
left:4.3%;
float:left;
}
.para-Y-left-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:33%;
left:3.5%;
float:left;
}
.para-Y-left-1{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:44%;
left:60%;
float:left;
}
.para-Y-left-1-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:45%;
left:59.2%;
float:left;
}
.para-Y-left-2{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top:55%;
left:1.8%;
float:left;
}
.para-Y-left-2-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:56%;
left:1%;
float:left;
}
.para-Y-left-3{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#a68352;
position:absolute;
top: 67.5%;
left:57%;
float:left;
}
.para-Y-left-3-bc{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:66px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top: 68.5%;
left:56.3%;
float:left;
}
.text-para-Y{
transform:scale(1) skew(24deg);
-o-transform:scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:0.8em;
line-height:1.7em;
text-align:center;
margin-top:-6px;
}
.p-line-high{
margin-top:-18px;
margin-left:-18px;
}
.para-W-right{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:12.5%;
top: 32%;
float: left;
height: 33px;
padding-top:14px;
}
.para-W-right-1{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:0%;
top: 44%;
float: left;
height:40px;
padding-top: 5px;
margin-left:10%;
}
.para-W-right-2{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
background-color:#fff;
color: #000;
background: rgba(255,255,255,0.5);
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:8.9%;
top: 55%;
float: left;
height: 44px;
padding-top:5px;
margin-left:1%;
}
.para-W-right-3{
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width: 400px;
color: #000;
background: rgba(255,255,255,0.5);
background-color:#FFF;
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
left:4%;
top: 67.5%;
height: 33px;
width:425px;
padding-top:14px;
}
.para-W-right-text{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
margin-left:3%;
}
.para-W-right-text-1{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
margin-left:5px;
}
.outside-para{
transform: scale(1.2) skew(-24deg);
-o-transform: scale(1.2) skew(-24deg);
-ms-transform: scale(1.2)skew(-24deg);
-moz-transform: scale(1.2)skew(-24deg);
-webkit-transform: scale(1.2)skew(-24deg);
border:solid #000 1px;
}
/*product1*/
.left-over-coffe-only-one-black{
font-size:1.5em;
position:absolute;
top:130px;
left:210px;
color:#000;
word-spacing:0.5em;
}
.white-blank-pro1{
background-color: #FFF;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top: 209px;
left: 300px;
width: 310px;
//height: 34.5%;
}
.coffe-slim-blank-pro1{
background-color: #937145;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top:225px;
left: 350px;
width:274px;
height: 205px;
z-index:-1;
}
.white-blank-pro1 span{
background-color: #fff;
background:rgba(0,0,0,0.5) !important; /*实现FF背景透明,文字不透明*/
background:#000; filter:Alpha(opacity=50);/*实现IE背景透明*/
position: absolute;
top: 209px;
left: 22%;
width: 23%;
height: 34.5%;
}
.white-blank-pro2{
background-color: #FFF;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top: 209px;
left:750px;
width: 310px;
//height: 34.5%;
}
.coffe-slim-blank-pro2{
background-color: #937145;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
position: absolute;
top:225px;
left:800px;
width:273px;
height:205px;
z-index:-1;
}
.coffe-blank-pro1-top{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
background: -moz-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -webkit-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -o-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -ms-linear-gradient(left, #e6d191 20%, #937145 62.9%, #937145 100%);
background: linear-gradient(to right, #e6d191 20%, #937145 62.9%, #937145 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #000),color-stop(88%, #000), color-stop(100%, #fff));
margin-top:8%;
padding-left:10%;
word-spacing:1.4em;
color:#fff;
width:50%;
font-size:1em;
}
.coffe-blank-pro1-top-2{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
margin-top:8%;
padding-left:5%;
word-spacing:1.4em;
color:#fff;
width:50%;
font-size:1em;
}
.img-blank-pro1-inside{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:58%;
margin-top:5%;
margin-left:25%;
}
.pop{
position: absolute;
top:0px;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.5) !important;
background:#000; filter:Alpha(opacity=50);
background-color:#000;
z-index: 99;
display: none;
}
.pop p{
text-indent:-33px;
color:#fff;
list-style-type:none;
font-size:12px;
width:80%;
margin-left:15%;
margin-top:1px;
line-height:1.2em;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
@-moz-document url-prefix(){
.pop p {line-height:1em;}
}
.pop2{
position: absolute;
top:0px;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.5) !important;
background:#000; filter:Alpha(opacity=50);
background-color:#000;
z-index: 99;
display: none;
}
.pop2 p{
text-indent:-33px;
color:#fff;
list-style-type:none;
font-size:12px;
width:80%;
margin-left:15%;
margin-top:1px;
line-height:1.2em;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
@-moz-document url-prefix(){
.pop2 p {line-height:1em;}
}
.img-blank-pro1-inside-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:52%;
margin-top:4%;
margin-left:30%;
}
/*the second pro*/
.coffe-blank-pro1-over{
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
background-color:#937145;
background: -moz-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -webkit-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -o-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: -ms-linear-gradient(left, #b99b65 6%, #937145 20%, #937145 100%);
background: linear-gradient(to right, #b99b65 6%, #937145 20%, #937145 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #000),color-stop(88%, #000), color-stop(100%, #fff));
margin-top:-14%;
margin-left:-0.5%;
padding-left:9%;
word-spacing:1.4em;
color:#fff;
width:260px;
font-size:0.8em;
z-index:999;
}
@-moz-document url-prefix(){
.coffe-blank-pro1-over {margin-top:-17%;}
}
.coffe-blank-pro1-over ul li{
list-style-type:none;
margin-left:-23%;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.img-blank-pro1-inside-1{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:204px;
height:130px;
margin-top:20px;
margin-left:-15px;
}
.number-text-1{
margin-top:-10%;
margin-left:5%;
text-align:left;
}
.number-text-1 ul li:first-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:0.7em;
margin-left:-16%;
}
.number-text-1 ul li:last-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:1em;
margin-left:-12%;
color:#909294;
}
.number-text-2{
margin-top:-10%;
margin-left:5%;
text-align:left;
}
.number-text-2 ul li:first-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:0.7em;
margin-left:-16%;
}
.number-text-2 ul li:last-child{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
font-size:1em;
margin-left:-12%;
color:#909294;
}
.img-blank-pro1-inside-3{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
width:160px;
height:150px;
/*width:60%;
margin-top:0.5%;
margin-left:13%;*/
}
.button-product2 input{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
background-color:#937145;
position:absolute;
left:65.6%;
top:80%;
border-width: 0px;
width:137px;
height:30px;
color:#FFF;
border-radius: 8px;
font-size:1em;
margin-left:-14%;
}
/*现代养生*/
.large-background{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
z-index:-99;
width:650px;
height:100%;
position:absolute;
left:400px;
top:0%;
}
.large-inside-text{
width:90%;
height:50%;
margin-top:150px;
}
.large-inside-text ul{
text-align:left;
list-style-type:none;
padding-left:16.7%;
// background-color: #FFF;
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
}
.large-inside-text ul li:first-child{
font-size:1.1em;
}
.large-inside-text ul li{
margin-top:1%;
// line-height:1.5em;
font-size:0.7em;
font-style:normal;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
.large-inside-img{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
position:absolute;
left:-165px;
top:170px;
width:45%;
}
.little-text-double{
background-color:#B88c37;
transform: scale(0.8) skew(0deg);
-o-transform: scale(0.8) skew(0deg);
-ms-transform: scale(0.8)skew(0deg);
-moz-transform: scale(0.8)skew(0deg);
-webkit-transform: scale(0.8)skew(0deg);
position:absolute;
width:200px;
height:30px;
left:82%;
top:130px;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
}
.little-text-double ul li{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
color:#fff;
font-size:1em;
margin-top:-7%;
margin-right:40px;
text-align:right;
}
.little-text-double-2{
transform: scale(0.8) skew(0deg);
-o-transform: scale(0.8) skew(0deg);
-ms-transform: scale(0.8)skew(0deg);
-moz-transform: scale(0.8)skew(0deg);
-webkit-transform: scale(0.8)skew(0deg);
position:absolute;
width:200px;
height:30px;
left:84%;
top:29%;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
}
.little-text-double-2 ul li{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
list-style-type:none;
color:#fff;
font-size:1em;
margin-top:-7%;
text-align:right;
margin-right:40px;
}
/*现代养生*/
.large-background-now{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
z-index:-99;
background: -moz-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -webkit-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -o-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: -ms-linear-gradient(left, #a1753f 1%, #c59a47 100%);
background: linear-gradient(to right, #a1753f 1%, #c59a47 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #a1753f), color-stop(100%, #c59a47));
width:650px;
height:100%;
position:absolute;
left:400px;
top:0%;
}
.large-inside-text-1{
width:94%;
height:50%;
margin-top:170px;
margin-left:0%;
}
.large-inside-text-1 ul{
text-align:left;
list-style-type:none;
color:#fff;
padding-left:16.7%;
transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
-ms-transform: scale(1)skew(0deg);
-moz-transform: scale(1)skew(0deg);
-webkit-transform: scale(1)skew(0deg);
}
.large-inside-text-1 ul li:first-child{
font-size:1.1em;
}
.large-inside-text-1 ul li{
margin-top:0%;
line-height:2em;
font-size:0.7em;
font-style:normal;
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
}
/*公司信息*/
.large-background-now-com{
background-color: #b88c37;
transform: scale(1) skew(-24deg);
-o-transform: scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
background: -moz-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -webkit-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -o-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: -ms-linear-gradient(left, #d2a93b 1%, #966532 100%);
background: linear-gradient(to right, #d2a93b 1%, #966532 100%);
background: -webkit-gradient(linear, top left, top right, color-stop(0%, #d2a93b), color-stop(100%, #966532));
z-index:-99;
width:950px;
height:650px;
position:absolute;
left:220px;
top:0%;
}
.large-img-inside{
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
.large-img-inside-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
.large-inside-text-3{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
position:absolute;
left:35%;
top:20%;
width:30%;
color:#fff;
font-size:1em;
margin-left:19%;
}
.large-inside-text-small{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size:12px;
color:#FFF;
position:absolute;
left:16%;
top:66%;
}
.large-inside-text-small-2{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
font-size: 12px;
margin-left:7%;
color: #fff;
position: absolute;
left: 12%;
top: 66%;
width: 55%;
}
.large-img-inside-map{
transform: scale(1) skew(24deg);
-o-transform: scale(1) skew(24deg);
-ms-transform: scale(1)skew(24deg);
-moz-transform: scale(1)skew(24deg);
-webkit-transform: scale(1)skew(24deg);
height:40%;
width:70%;
position:absolute;
left:12%;
top:24%;
}
/*气之站介绍*/
.top-brown-bar{
position:absolute;
top: 0px;
width:10px;
height:170px;
margin-left:300px;
background-color:#937145;
-webkit-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.bottom-brown-bar{
top:290px;
width:10px;
height:435px;
position:absolute;
z-index:-99;
margin-left:200px;
background-color:#937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
/*品牌故事*/
.story-topbar{
position:absolute;
top: 0px;
width: 10px;
height: 180px;
margin-left: 280px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.story-bottombar{
top: 292px;
width: 10px;
height: 435px;
position:absolute;
z-index:-99;
margin-left: 200px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.lifeBetterInclineDiv{
width: 10px;
height: 100%;
position:absolute;
top:1px;
left:-40px;
z-index:-100;
background-color: #A1753F;
}
/*新闻站*/
.news-bottombar{
top:290px;
width: 10px;
height: 435px;
position:absolute;
z-index:-99;
margin-left: 200px;
background-color: #937145;
-webkit-transform: skew(-25deg);
-moz-transform: skew(-25deg);
-ms-transform: skew(-25deg);
-o-transform: skew(-25deg);
transform: skew(-25deg);
}
.left-2{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:10px;
height:45px;
color:#FFF;
background-color:#937145;
position:absolute;
top:44%;
left:8.5%;
float:left;
}
.left-4{
transform:scale(1) skew(-24deg);
-o-transform:scale(1) skew(-24deg);
-ms-transform: scale(1)skew(-24deg);
-moz-transform: scale(1)skew(-24deg);
-webkit-transform: scale(1)skew(-24deg);
width:10px;
height:47px;
color:#FFF;
background-color:#937145;
position:absolute;
top:67.5%;
left:2.7%;
float:left;
} | 0.38341 | 0.043752 |
* Use this file to override Materialize files so you can update
* the core Materialize files in the future
*
* Made By MaterializeCSS.com
*/
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Raleway", sans-serif;
}
body h1,
body .page-footer div h4 {
color: #57eea1;
font-family: "Righteous", cursive;
font-weight: 700;
}
body h2 {
color: #2d2d2d;
font-family: "Righteous", cursive;
font-weight: 700;
}
.btn-large {
background-color: #393d47;
color: rgba(255, 255, 255, 0.8);
}
.btn-large:visited {
background-color: #393d47;
color: white;
}
.btn-large:hover {
background-color: #828283;
color: white;
border: 1px solid white;
}
.btn-large img {
vertical-align: middle;
padding-right: 8px;
}
.brand-logo > img {
max-width: 8rem;
padding-top: 8px;
}
nav {
background-color: #1d1e25;
}
nav a {
color: white;
}
p {
line-height: 2rem;
}
.parallax-container {
background: -webkit-gradient(linear, left top, right bottom, from(#292c33), to(#393d47));
background: linear-gradient(to bottom right, #292c33, #393d47);
width: 100%;
}
.parallax-container .section {
width: 100%;
}
@media (max-width: 62em) {
.parallax-container .section {
position: absolute;
top: 40%;
}
}
@media (max-width: 62em) {
#index-banner .section {
top: 10%;
}
}
@media (max-width: 20em) {
#index-banner .section {
top: 0;
}
}
.card-container {
max-width: 1050px;
padding: 2rem;
margin-left: auto;
margin-right: auto;
}
.flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
/* Skills */
.skills {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.skills .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc(50% - 1rem);
flex: 1 1 calc(50% - 1rem);
}
@media (min-width: 37.5em) {
.skills .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc(25% - 1rem);
flex: 1 1 calc(25% - 1rem);
}
}
.card {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
padding: 2.5rem;
background: #fff;
border: 1px solid #ebecec;
border-radius: 6px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
margin: 0.5rem;
}
.card:hover {
-webkit-transform: translateY(-1px);
transform: translateY(-1px);
-webkit-box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
}
.card img {
max-width: 50px;
border-radius: 6px;
display: block;
margin: 0 auto;
}
.card h3 {
font-weight: 400;
font-size: 1rem;
margin: 2rem 0 0;
text-align: center;
}
.card a {
color: #1d1e25;
}
.card a:hover {
text-decoration: underline;
}
.icon-block {
padding: 0 15px;
}
.icon-block .material-icons {
font-size: inherit;
}
input,
textarea {
color: #9e9e9e;
}
input:focus,
textarea:focus {
color: #fff;
}
footer.page-footer {
margin: 0;
background: -webkit-gradient(linear, left top, right bottom, from(#292c33), to(#393d47));
background: linear-gradient(to bottom right, #292c33, #393d47);
}
.footer-copyright {
background: -webkit-gradient(linear, left top, right bottom, from(#121318), to(#393d47));
background: linear-gradient(to bottom right, #121318, #393d47);
}
img:nth-child(12) {
display: none;
}
/*# sourceMappingURL=style.css.map */ | selectedprojects/portfolio_samples/materialize_port/css/style.css | * Use this file to override Materialize files so you can update
* the core Materialize files in the future
*
* Made By MaterializeCSS.com
*/
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Raleway", sans-serif;
}
body h1,
body .page-footer div h4 {
color: #57eea1;
font-family: "Righteous", cursive;
font-weight: 700;
}
body h2 {
color: #2d2d2d;
font-family: "Righteous", cursive;
font-weight: 700;
}
.btn-large {
background-color: #393d47;
color: rgba(255, 255, 255, 0.8);
}
.btn-large:visited {
background-color: #393d47;
color: white;
}
.btn-large:hover {
background-color: #828283;
color: white;
border: 1px solid white;
}
.btn-large img {
vertical-align: middle;
padding-right: 8px;
}
.brand-logo > img {
max-width: 8rem;
padding-top: 8px;
}
nav {
background-color: #1d1e25;
}
nav a {
color: white;
}
p {
line-height: 2rem;
}
.parallax-container {
background: -webkit-gradient(linear, left top, right bottom, from(#292c33), to(#393d47));
background: linear-gradient(to bottom right, #292c33, #393d47);
width: 100%;
}
.parallax-container .section {
width: 100%;
}
@media (max-width: 62em) {
.parallax-container .section {
position: absolute;
top: 40%;
}
}
@media (max-width: 62em) {
#index-banner .section {
top: 10%;
}
}
@media (max-width: 20em) {
#index-banner .section {
top: 0;
}
}
.card-container {
max-width: 1050px;
padding: 2rem;
margin-left: auto;
margin-right: auto;
}
.flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
/* Skills */
.skills {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.skills .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc(50% - 1rem);
flex: 1 1 calc(50% - 1rem);
}
@media (min-width: 37.5em) {
.skills .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc(25% - 1rem);
flex: 1 1 calc(25% - 1rem);
}
}
.card {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
padding: 2.5rem;
background: #fff;
border: 1px solid #ebecec;
border-radius: 6px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
margin: 0.5rem;
}
.card:hover {
-webkit-transform: translateY(-1px);
transform: translateY(-1px);
-webkit-box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
}
.card img {
max-width: 50px;
border-radius: 6px;
display: block;
margin: 0 auto;
}
.card h3 {
font-weight: 400;
font-size: 1rem;
margin: 2rem 0 0;
text-align: center;
}
.card a {
color: #1d1e25;
}
.card a:hover {
text-decoration: underline;
}
.icon-block {
padding: 0 15px;
}
.icon-block .material-icons {
font-size: inherit;
}
input,
textarea {
color: #9e9e9e;
}
input:focus,
textarea:focus {
color: #fff;
}
footer.page-footer {
margin: 0;
background: -webkit-gradient(linear, left top, right bottom, from(#292c33), to(#393d47));
background: linear-gradient(to bottom right, #292c33, #393d47);
}
.footer-copyright {
background: -webkit-gradient(linear, left top, right bottom, from(#121318), to(#393d47));
background: linear-gradient(to bottom right, #121318, #393d47);
}
img:nth-child(12) {
display: none;
}
/*# sourceMappingURL=style.css.map */ | 0.52074 | 0.076753 |
body {
font-family: 'Lato', arial, sans-serif;
color: #434343;
background: #fffdad;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
a {
color: #3aaa64;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
}
a:hover {
text-decoration: underline;
color: #5f6b77;
color: #2d844e;
}
.aaa {
font-size: 25px;
font-weight: 900;
margin-top: 0;
margin-bottom: 10px;
color: #ffffff;
}
.btn,
a.btn {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
font-family: 'Montserrat', arial, sans-serif;
padding: 8px 16px;
font-weight: bold;
}
.btn .fa,
a.btn .fa {
margin-right: 5px;
}
.btn:focus,
a.btn:focus {
color: #fff;
}
a.btn-cta-primary,
.btn-cta-primary {
background: #FF6347;
border: 1px solid #FF6347;
color: #fff;
font-weight: 600;
text-transform: uppercase;
}
a.btn-cta-primary:hover,
.btn-cta-primary:hover {
background: #F4A460;
border: 1px solid #F4A460;
color: #fff;
}
a.btn-cta-secondary,
.btn-cta-secondary {
background: #479fc8;
border: 1px solid #479fc8;
color: #fff;
font-weight: 600;
text-transform: uppercase;
}
a.btn-cta-secondary:hover,
.btn-cta-secondary:hover {
background: #3893bd;
border: 1px solid #3893bd;
color: #fff;
}
.text-highlight {
color: #32383e;
}
.label-theme {
background: #3aaa64;
font-size: 12px;
}
a.dotted-link {
border-bottom: 1px dotted #778492;
color: #778492;
}
a.dotted-link:hover {
text-decoration: none;
color: #49515a;
}
/* ======= Header ======= */
.header {
padding: 30px 0;
/* background: #f5f5f5;*/
background: linear-gradient(to bottom, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
/* border-top: 10px solid #778492;*/
}
.header .btn {
margin-top: 60px;
font-weight: bold;
}
.header .profile-image {
margin-right: 30px;
}
.header .profile-content .name {
/* color: #49515a;*/
color :white;
font-size: 25px;
margin-bottom: 5px;
margin-top: 30px;
}
.header .profile-content .desc {
/* color: #778492;*/
/* color: #aac7d9;*/
color: #ddd;
font-family: "Lato", arial, sans-serif;
font-weight: 400;
font-size: 24px;
margin-top: 0;
margin-bottom: 15px;
}
.header .profile-content .social a {
background: #b0b7bf;
width: 36px;
height: 36px;
display: inline-block;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
color: #fff;
text-align: center;
}
.header .profile-content .social a:hover {
background: #778492;
}
.header .profile-content .social a .fa {
font-size: 20px;
padding-top: 8px;
}
/* ======= Sections======= */
.sections-wrapper {
padding-top: 60px;
padding-bottom: 60px;
}
.section {
margin-bottom: 30px;
}
.section .section-inner {
background: #fff;
padding: 30px;
}
.section .heading {
margin-top: 0;
margin-bottom: 30px;
color: #545e69;
font-size: 24px;
}
.section .content .more-link .fa {
margin-right: 5px;
font-size: 14px;
}
/* About Section */
/* Latest Section */
.latest .item {
margin-bottom: 30px;
}
.latest .item .title {
font-size: 18px;
margin-top: 0;
}
.latest .item .title .label {
margin-left: 5px;
font-size: 12px;
}
.latest .item .title a {
color: #778492;
}
.latest .item .title a:hover {
color: #5f6b77;
}
.latest .item .project-image:hover {
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
}
.latest .divider {
margin-bottom: 60px;
}
.latest .featured {
margin-bottom: 60px;
}
.latest .featured .title {
margin-bottom: 5px;
font-size: 20px;
}
.latest .featured .summary {
margin-bottom: 30px;
color: #778492;
}
.latest .featured img {
margin-bottom: 30px;
}
.latest .featured .desc {
margin-bottom: 30px;
}
.latest .featured-image {
position: relative;
}
.latest .featured-image .text {
background: #3aaa64;
color: #fff;
}
.latest .featured-image .ribbon {
position: absolute;
top: -4px;
right: -4px;
width: 110px;
height: 110px;
overflow: hidden;
}
.latest .featured-image .ribbon .text {
font-family: 'Montserrat', sans-serif;
position: relative;
left: -8px;
top: 18px;
width: 158px;
padding: 10px 10px;
font-size: 15px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
color: #fff;
background-color: #479fc8;
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
-moz-transform: rotate(45deg) translate3d(0, 0, 0);
-ms-transform: rotate(45deg) translate3d(0, 0, 0);
-o-transform: rotate(45deg) translate3d(0, 0, 0);
}
.latest .featured-image .ribbon .text:before,
.latest .featured-image .ribbon .text:after {
content: '';
position: absolute;
bottom: -5px;
border-top: 5px solid #276582;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
.latest .featured-image .ribbon .text:before {
left: 0;
}
.latest .featured-image .ribbon .text:after {
right: 0;
}
/* Info Section */
.info .fa {
margin-right: 15px;
color: #ccd1d6;
}
.info .fa.fa-envelope-o {
font-size: 14px;
}
.info ul {
margin-bottom: 0;
}
.info li {
margin-bottom: 15px;
}
.info li:last-child {
margin-bottom: 0;
}
/* Skills Section */
.skills .intro {
margin-bottom: 30px;
}
.skills .skillset .item {
margin-bottom: 30px;
}
.skills .skillset .level-title {
font-size: 16px;
position: relative;
margin-top: 0;
margin-bottom: 10;
color: #2473a0;
}
/* Testimonials section */
.testimonials .item {
margin-bottom: 30px;
}
.testimonials .item:last-child {
margin-bottom: 0;
}
.testimonials .item .quote {
color: #666666;
font-size: 16px;
border-left-color: #9fdeb7;
margin-bottom: 15px;
}
.testimonials .item .quote .fa {
color: #79d19a;
margin-right: 15px;
}
.testimonials .item .source {
font-size: 14px;
padding-left: 30px;
font-weight: 500;
}
.testimonials .item .source .name {
color: #ffffff;
font-weight: 600;
}
.testimonials .item .source .title {
color: #999999;
}
/* Education section */
.education .item {
margin-bottom: 30px;
}
.education .item:last-child {
margin-bottom: 0;
}
.education .item .title {
font-size: 20px;
margin-top: 0;
color: #2473a0;
}
.education .item .university {
font-family: "Lato", arial, sans-serif;
font-size: 16px;
color: #999999;
font-weight: 600;
padding-left: 25px;
}
.education .item .university .year {
color: #b0b7bf;
font-weight: 500;
}
/* Language Section */
.languages .item {
margin-bottom: 15px;
}
.languages .item .title {
color: #778492;
}
.languages .item .level {
color: #999999;
}
.languages .item:last-child {
margin-bottom: 0;
}
.languages .item .fa {
color: #79d19a;
}
/* Blog Section */
.blog .item {
margin-bottom: 30px;
}
.blog .item .title {
font-size: 18px;
line-height: 1.3;
}
.blog .item .title a {
color: #778492;
}
.blog .item .title a:hover {
color: #5f6b77;
}
.blog .item:last-child {
margin-bottom: 0;
}
/* List section */
.list ul li {
margin-bottom: 10px;
}
.list ul li .fa {
margin-right: 5px;
}
.list ul li a {
color: #778492;
}
.list ul li a:hover {
color: #49515a;
}
/* Credits */
.credits ul li {
margin-bottom: 10px;
}
.credits ul li .fa {
margin-right: 5px;
}
.credits ul li a {
color: #778492;
}
.credits ul li a:hover {
color: #49515a;
}
.credits .btn {
margin-bottom: 15px;
}
/* ======= Footer ======= */
.footer {
background: #32383e;
color: #fff;
padding: 10px 0;
}
.footer .copyright {
line-height: 1.6;
color: #a1aab4;
font-size: 14px;
}
.footer a {
color: #fff;
}
.footer .fa-heart {
color: #fb866a;
}
.project-image{
margin: auto;
}
.w3-progress-container {
width: 100%;
height: 0.7em;
position: relative;
background-color: #deeef5;
margin-bottom: 30px;
transition: opacity 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
-o-transition: all ease 0.5s;
-ms-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.w3-progressbar {
background: rgba(34,125,170,1);
background: -moz-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(34,125,170,1)), color-stop(100%, rgba(81,172,205,1)));
background: -webkit-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -o-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -ms-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: linear-gradient(to right, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#227daa', endColorstr='#51accd', GradientType=1 );
height: 100%;
position: absolute;
line-height: inherit;
}
.tag {
border: 1px solid #ddd;
display: inline-block;
border-radius: 6px;
padding: 8px 10px;
font-size: 12px;
color: #aaa;
text-transform: uppercase;
margin-right: 5px;
}
.work-col{
margin-bottom: 60px;
align-content: center;
text-align: center;
align-items: center;
}
.work-col img{
margin-bottom: 20px;
}
.work-title{
color: #2473a0;
}
/*MODAL*/
.modal-img{
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
border: 1px solid #ddd;
}
.modal-img :hover {opacity: 0.7;}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 5%; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
/*
width: 60%;
max-width: 700px;
*/
height: 90%;
}
/* Caption of Modal Image */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Add Animation */
.modal-content, #caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 900px){
.modal-content {
width: 90%;
height: auto;
}
}
@media only screen and (max-width: 700px){
.modal-content {
width: 90%;
height: auto;
}
}
/* Responsive */
/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
.header {
text-align: center;
}
.header .profile-image {
float: none !important;
margin: 0 auto;
}
.header .profile-content {
float: none !important;
text-align: center;
}
.header .btn {
margin-top: 30px;
float: none !important;
}
.project-image {
margin-bottom: 15px;
}
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
/* Ex-Large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
.container {
width: 1360px;
}
} | assets/css/styles1.css | body {
font-family: 'Lato', arial, sans-serif;
color: #434343;
background: #fffdad;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
a {
color: #3aaa64;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
}
a:hover {
text-decoration: underline;
color: #5f6b77;
color: #2d844e;
}
.aaa {
font-size: 25px;
font-weight: 900;
margin-top: 0;
margin-bottom: 10px;
color: #ffffff;
}
.btn,
a.btn {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
font-family: 'Montserrat', arial, sans-serif;
padding: 8px 16px;
font-weight: bold;
}
.btn .fa,
a.btn .fa {
margin-right: 5px;
}
.btn:focus,
a.btn:focus {
color: #fff;
}
a.btn-cta-primary,
.btn-cta-primary {
background: #FF6347;
border: 1px solid #FF6347;
color: #fff;
font-weight: 600;
text-transform: uppercase;
}
a.btn-cta-primary:hover,
.btn-cta-primary:hover {
background: #F4A460;
border: 1px solid #F4A460;
color: #fff;
}
a.btn-cta-secondary,
.btn-cta-secondary {
background: #479fc8;
border: 1px solid #479fc8;
color: #fff;
font-weight: 600;
text-transform: uppercase;
}
a.btn-cta-secondary:hover,
.btn-cta-secondary:hover {
background: #3893bd;
border: 1px solid #3893bd;
color: #fff;
}
.text-highlight {
color: #32383e;
}
.label-theme {
background: #3aaa64;
font-size: 12px;
}
a.dotted-link {
border-bottom: 1px dotted #778492;
color: #778492;
}
a.dotted-link:hover {
text-decoration: none;
color: #49515a;
}
/* ======= Header ======= */
.header {
padding: 30px 0;
/* background: #f5f5f5;*/
background: linear-gradient(to bottom, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
/* border-top: 10px solid #778492;*/
}
.header .btn {
margin-top: 60px;
font-weight: bold;
}
.header .profile-image {
margin-right: 30px;
}
.header .profile-content .name {
/* color: #49515a;*/
color :white;
font-size: 25px;
margin-bottom: 5px;
margin-top: 30px;
}
.header .profile-content .desc {
/* color: #778492;*/
/* color: #aac7d9;*/
color: #ddd;
font-family: "Lato", arial, sans-serif;
font-weight: 400;
font-size: 24px;
margin-top: 0;
margin-bottom: 15px;
}
.header .profile-content .social a {
background: #b0b7bf;
width: 36px;
height: 36px;
display: inline-block;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
color: #fff;
text-align: center;
}
.header .profile-content .social a:hover {
background: #778492;
}
.header .profile-content .social a .fa {
font-size: 20px;
padding-top: 8px;
}
/* ======= Sections======= */
.sections-wrapper {
padding-top: 60px;
padding-bottom: 60px;
}
.section {
margin-bottom: 30px;
}
.section .section-inner {
background: #fff;
padding: 30px;
}
.section .heading {
margin-top: 0;
margin-bottom: 30px;
color: #545e69;
font-size: 24px;
}
.section .content .more-link .fa {
margin-right: 5px;
font-size: 14px;
}
/* About Section */
/* Latest Section */
.latest .item {
margin-bottom: 30px;
}
.latest .item .title {
font-size: 18px;
margin-top: 0;
}
.latest .item .title .label {
margin-left: 5px;
font-size: 12px;
}
.latest .item .title a {
color: #778492;
}
.latest .item .title a:hover {
color: #5f6b77;
}
.latest .item .project-image:hover {
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
}
.latest .divider {
margin-bottom: 60px;
}
.latest .featured {
margin-bottom: 60px;
}
.latest .featured .title {
margin-bottom: 5px;
font-size: 20px;
}
.latest .featured .summary {
margin-bottom: 30px;
color: #778492;
}
.latest .featured img {
margin-bottom: 30px;
}
.latest .featured .desc {
margin-bottom: 30px;
}
.latest .featured-image {
position: relative;
}
.latest .featured-image .text {
background: #3aaa64;
color: #fff;
}
.latest .featured-image .ribbon {
position: absolute;
top: -4px;
right: -4px;
width: 110px;
height: 110px;
overflow: hidden;
}
.latest .featured-image .ribbon .text {
font-family: 'Montserrat', sans-serif;
position: relative;
left: -8px;
top: 18px;
width: 158px;
padding: 10px 10px;
font-size: 15px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
color: #fff;
background-color: #479fc8;
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
-moz-transform: rotate(45deg) translate3d(0, 0, 0);
-ms-transform: rotate(45deg) translate3d(0, 0, 0);
-o-transform: rotate(45deg) translate3d(0, 0, 0);
}
.latest .featured-image .ribbon .text:before,
.latest .featured-image .ribbon .text:after {
content: '';
position: absolute;
bottom: -5px;
border-top: 5px solid #276582;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
.latest .featured-image .ribbon .text:before {
left: 0;
}
.latest .featured-image .ribbon .text:after {
right: 0;
}
/* Info Section */
.info .fa {
margin-right: 15px;
color: #ccd1d6;
}
.info .fa.fa-envelope-o {
font-size: 14px;
}
.info ul {
margin-bottom: 0;
}
.info li {
margin-bottom: 15px;
}
.info li:last-child {
margin-bottom: 0;
}
/* Skills Section */
.skills .intro {
margin-bottom: 30px;
}
.skills .skillset .item {
margin-bottom: 30px;
}
.skills .skillset .level-title {
font-size: 16px;
position: relative;
margin-top: 0;
margin-bottom: 10;
color: #2473a0;
}
/* Testimonials section */
.testimonials .item {
margin-bottom: 30px;
}
.testimonials .item:last-child {
margin-bottom: 0;
}
.testimonials .item .quote {
color: #666666;
font-size: 16px;
border-left-color: #9fdeb7;
margin-bottom: 15px;
}
.testimonials .item .quote .fa {
color: #79d19a;
margin-right: 15px;
}
.testimonials .item .source {
font-size: 14px;
padding-left: 30px;
font-weight: 500;
}
.testimonials .item .source .name {
color: #ffffff;
font-weight: 600;
}
.testimonials .item .source .title {
color: #999999;
}
/* Education section */
.education .item {
margin-bottom: 30px;
}
.education .item:last-child {
margin-bottom: 0;
}
.education .item .title {
font-size: 20px;
margin-top: 0;
color: #2473a0;
}
.education .item .university {
font-family: "Lato", arial, sans-serif;
font-size: 16px;
color: #999999;
font-weight: 600;
padding-left: 25px;
}
.education .item .university .year {
color: #b0b7bf;
font-weight: 500;
}
/* Language Section */
.languages .item {
margin-bottom: 15px;
}
.languages .item .title {
color: #778492;
}
.languages .item .level {
color: #999999;
}
.languages .item:last-child {
margin-bottom: 0;
}
.languages .item .fa {
color: #79d19a;
}
/* Blog Section */
.blog .item {
margin-bottom: 30px;
}
.blog .item .title {
font-size: 18px;
line-height: 1.3;
}
.blog .item .title a {
color: #778492;
}
.blog .item .title a:hover {
color: #5f6b77;
}
.blog .item:last-child {
margin-bottom: 0;
}
/* List section */
.list ul li {
margin-bottom: 10px;
}
.list ul li .fa {
margin-right: 5px;
}
.list ul li a {
color: #778492;
}
.list ul li a:hover {
color: #49515a;
}
/* Credits */
.credits ul li {
margin-bottom: 10px;
}
.credits ul li .fa {
margin-right: 5px;
}
.credits ul li a {
color: #778492;
}
.credits ul li a:hover {
color: #49515a;
}
.credits .btn {
margin-bottom: 15px;
}
/* ======= Footer ======= */
.footer {
background: #32383e;
color: #fff;
padding: 10px 0;
}
.footer .copyright {
line-height: 1.6;
color: #a1aab4;
font-size: 14px;
}
.footer a {
color: #fff;
}
.footer .fa-heart {
color: #fb866a;
}
.project-image{
margin: auto;
}
.w3-progress-container {
width: 100%;
height: 0.7em;
position: relative;
background-color: #deeef5;
margin-bottom: 30px;
transition: opacity 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
-o-transition: all ease 0.5s;
-ms-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.w3-progressbar {
background: rgba(34,125,170,1);
background: -moz-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(34,125,170,1)), color-stop(100%, rgba(81,172,205,1)));
background: -webkit-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -o-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: -ms-linear-gradient(left, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
background: linear-gradient(to right, rgba(34,125,170,1) 0%, rgba(81,172,205,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#227daa', endColorstr='#51accd', GradientType=1 );
height: 100%;
position: absolute;
line-height: inherit;
}
.tag {
border: 1px solid #ddd;
display: inline-block;
border-radius: 6px;
padding: 8px 10px;
font-size: 12px;
color: #aaa;
text-transform: uppercase;
margin-right: 5px;
}
.work-col{
margin-bottom: 60px;
align-content: center;
text-align: center;
align-items: center;
}
.work-col img{
margin-bottom: 20px;
}
.work-title{
color: #2473a0;
}
/*MODAL*/
.modal-img{
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
border: 1px solid #ddd;
}
.modal-img :hover {opacity: 0.7;}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 5%; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
/*
width: 60%;
max-width: 700px;
*/
height: 90%;
}
/* Caption of Modal Image */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Add Animation */
.modal-content, #caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 900px){
.modal-content {
width: 90%;
height: auto;
}
}
@media only screen and (max-width: 700px){
.modal-content {
width: 90%;
height: auto;
}
}
/* Responsive */
/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
.header {
text-align: center;
}
.header .profile-image {
float: none !important;
margin: 0 auto;
}
.header .profile-content {
float: none !important;
text-align: center;
}
.header .btn {
margin-top: 30px;
float: none !important;
}
.project-image {
margin-bottom: 15px;
}
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
/* Ex-Large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
.container {
width: 1360px;
}
} | 0.339609 | 0.061819 |
html {margin:0;padding:0;min-width:960px;}
body {color:#000;background:#fff url(http://cashmusic.org/assets/images/bg.jpg) top center no-repeat;text-align:left;font:85%/1.35em "helvetica neue", helvetica, arial, sans-serif;margin:0;padding:0;min-width:960px;}
img {border:0;}
p {margin:0 0 1.5em 0;padding:0;}
ol {padding-left:1.5em;}
a {color:#e10b54;text-decoration:none;border:2px solid transparent;margin-left:-2px;}
a:hover {color:#fff;background-color:#e10b54;border:2px solid #e10b54;}
a:active, a:focus {outline:0;}
h1 {font:3.25em/1em HelveticaNeueLTStd-UltLt,"HelveticaNeueLT Std UltLt","Helvetica Neue Ultra Light","Helvetica Neue",HelveticaNeue-UltraLight,HelveticaLTStd-Light,Helvetica,Arial,sans-serif;font-weight:100;color:#999;margin:0 0 0.25em 0;}
h2 {font:2em/1.5em HelveticaNeueLTStd-UltLt,"HelveticaNeueLT Std UltLt","Helvetica Neue Ultra Light","Helvetica Neue",HelveticaNeue-UltraLight,HelveticaLTStd-Light,Helvetica,Arial,sans-serif;font-weight:100;color:#999;margin:0;}
/* PAGE LAYOUT */
#mainspc {position:relative;margin:0 auto 0 auto;width:705px;padding:0 30px 0 20px;}
#cash_sitelogo {position:absolute;top:8px;right:8px;text-align:right;overflow:hidden;height:46px;width:46px;z-index:2345;}
#cash_sitelogo a {border:0;margin-left:0;}
#cashstatementspc {position:relative;width:100%;height:auto;padding:90px 0 30px 0;min-width:755px;z-index:100;background:transparent;}
#cashstatement {position:relative;margin:0 auto 0 auto;width:705px;padding:0 30px 0 20px;}
.openingp {font-size:1.6em;line-height:1.25em;margin-bottom:1em;}
.homeh1 {font-size:4.75em;margin-bottom:0.125em;}
.oneoffour {float:left;padding:0 30px 0 30px;width:130px;}
.threeoffour {float:left;padding:0 30px 0 30px;width:515px;}
.oneofthree {float:left;padding:0 30px 0 30px;width:195px;}
.oneoftwo {float:left;padding:0 30px 0 30px;width:322px;}
.firstcol {padding-left:0;}
.lastcol {padding-right:0;float:right;}
/* ANCHORS */
.oneofthree a {color:#abcd04;font-weight:bold;}
.oneofthree a:hover {color:#fff;background-color:#abcd04;border:2px solid #abcd04;}
.firstcol a {color:#e09c04;font-weight:bold;}
.firstcol a:hover {color:#fff;background-color:#e09c04;border:2px solid #e09c04;}
.lastcol a {color:#0594e0;font-weight:bold;}
.lastcol a:hover {color:#fff;background-color:#0594e0;border:2px solid #0594e0;}
/* FOOTER (base code taken from cssstickyfooter.com) */
* {margin-top:0;margin-bottom:0;;padding-top:0;padding-bottom:0;}
html, body, #wrap {height:100%;}
body > #wrap {height:auto;min-height:100%;}
#mainspc {padding-bottom:90px;}
#footer {position:relative;margin-top:-40px;height:40px;color:#999;text-align:left;font-size:0.8em;line-height:1.25em;clear:both;background-color:#000;}
#footer p, #footer form {padding:12px 8px 0px 8px;margin:0;}
#footer h2 {color:#666;padding:4px 8px 0px 8px;}
#footer a {color:#fff;text-decoration:none;border:2px solid transparent;margin-left:-2px;}
#footer a:hover {color:#000;background-color:#fff;padding:0;border:2px solid #fff;}
#footer div.toprow {float:left;margin-right:30px;}
#footer *.darker {color:#444;}
#footercontactspc {width:auto;}
#footerdontatespc {width:300px;}
#mainfooter {padding:3px 0 0 36px;}
#footerlogo {position:absolute;top:7px;left:7px;}
#copyrightspc {position:absolute;bottom:10px;left:36px;}
#socialtwitter {width:74px;background:#000 url(/assets/images/social_twitter.gif) top center no-repeat;}
#socialfacebook {width:79px;background:#000 url(/assets/images/social_facebook.gif) top center no-repeat;}
#socialgithub {width:59px;background:#000 url(/assets/images/social_github.gif) top center no-repeat;}
#sociallighthouse {width:119px;background:#000 url(/assets/images/social_lighthouse.gif) top center no-repeat;}
#sociallighthouse:hover,#socialgithub:hover,#socialfacebook:hover,#socialtwitter:hover {background-position:bottom center;}
*.sociallink {margin:0 16px 0 0;overflow:hidden;float:left;height:35px;}
*.sociallink img {width:100%;height:100%;}
#footer *.sociallink a:hover {background-color:transparent;border:0;}
/* FORMS */
input {padding:0.42em 4px 0.42em 4px;border:1px solid #777;}
input:active, input:focus {outline:0;border:1px solid #888;}
input.button {background-color:#404040;color:#ccc;padding:0.42em 10px 0.42em 10px;font-weight:bold;cursor:pointer;width:auto;}
input.button:hover {background-color:#666;}
input.checkorradio {width:auto;}
label {font-size:0.85em;text-transform:uppercase;color:#999;}
#supportformspc input {padding:8px 12px 8px 12px;font-size:1.125em;font-weight:normal;}
#supportformspc {padding:30px 0 40px 0;width:280px;}
/* NAVIGATION */
#mainmenu {position:absolute;right:58px;top:14px;z-index:600;}
#mainmenu a {margin-left:1.5em;color:#aaa;border:2px solid transparent;}
#mainmenu a:hover, #tipspc a:hover {color:#fff;background-color:#aaa;padding:0;border:2px solid #aaa;}
/* MISC */
div.clearfix {visibility:hidden;overflow:hidden;clear:both;height:1px;}
a.nofx, a.nofx:hover, *.nofx a, *.nofx a:hover {color:inherit;background-color:inherit;border:none;margin-left:0;}
#cash_sitelogo a:hover {background-color:transparent;border:none;}
*.lispaced li {margin-bottom:3.5em;}
*.lispaced li * li {margin-bottom:1.5em;}
*.lispacedsm {padding-left:0;}
*.lispacedsm li {margin-bottom:1.5em;}
.nobullets {list-style: none;}
span.notation {font-size:0.85em;line-height:1.25em;color:#999;}
span.notation a {color:#999;font-weight:normal;border:2px solid transparent;margin-left:-2px;}
span.notation a:hover {color:#fff;background-color:#999;border:2px solid #999;}
ol.li {font-size:0.65em;}
#soundplayerspc2 {background-color:#333;color:#fff;}
#soundplayerspc2 div.flower_soundplayer_ui, #soundplayerspc2 li {padding:6px;}
#soundplayerspc2 li {padding:2px 6px 2px 6px;border-top:1px dotted #666;}
#soundplayerspc2 li.flower_soundplaylist_altli {background-color:#444;}
#soundplayerspc2 div.flower_soundplayer_time {font-size:0.65em;color:#999;}
#soundplayerspc2 div.flower_soundplayer_title {font-size:1.25em;font-weight:bold;}
#soundplayerspc2 div.flower_soundplayer_seekbar {background-color:#0cf !important;}
#pagePlayerTarget {position:fixed;background-color:#000;color:#fff;top:0;left:40px;width:400px;height:auto;padding:0 6px 0 6px;z-index:12345;}
#pagePlayerTarget div.flower_soundplayer {padding-bottom:6px;}
#pagePlayerTarget div.flower_soundplayer_time, #pagePlayerTarget li {font-size:0.7em !important;color:#666 !important;} | assets/css/main.css | html {margin:0;padding:0;min-width:960px;}
body {color:#000;background:#fff url(http://cashmusic.org/assets/images/bg.jpg) top center no-repeat;text-align:left;font:85%/1.35em "helvetica neue", helvetica, arial, sans-serif;margin:0;padding:0;min-width:960px;}
img {border:0;}
p {margin:0 0 1.5em 0;padding:0;}
ol {padding-left:1.5em;}
a {color:#e10b54;text-decoration:none;border:2px solid transparent;margin-left:-2px;}
a:hover {color:#fff;background-color:#e10b54;border:2px solid #e10b54;}
a:active, a:focus {outline:0;}
h1 {font:3.25em/1em HelveticaNeueLTStd-UltLt,"HelveticaNeueLT Std UltLt","Helvetica Neue Ultra Light","Helvetica Neue",HelveticaNeue-UltraLight,HelveticaLTStd-Light,Helvetica,Arial,sans-serif;font-weight:100;color:#999;margin:0 0 0.25em 0;}
h2 {font:2em/1.5em HelveticaNeueLTStd-UltLt,"HelveticaNeueLT Std UltLt","Helvetica Neue Ultra Light","Helvetica Neue",HelveticaNeue-UltraLight,HelveticaLTStd-Light,Helvetica,Arial,sans-serif;font-weight:100;color:#999;margin:0;}
/* PAGE LAYOUT */
#mainspc {position:relative;margin:0 auto 0 auto;width:705px;padding:0 30px 0 20px;}
#cash_sitelogo {position:absolute;top:8px;right:8px;text-align:right;overflow:hidden;height:46px;width:46px;z-index:2345;}
#cash_sitelogo a {border:0;margin-left:0;}
#cashstatementspc {position:relative;width:100%;height:auto;padding:90px 0 30px 0;min-width:755px;z-index:100;background:transparent;}
#cashstatement {position:relative;margin:0 auto 0 auto;width:705px;padding:0 30px 0 20px;}
.openingp {font-size:1.6em;line-height:1.25em;margin-bottom:1em;}
.homeh1 {font-size:4.75em;margin-bottom:0.125em;}
.oneoffour {float:left;padding:0 30px 0 30px;width:130px;}
.threeoffour {float:left;padding:0 30px 0 30px;width:515px;}
.oneofthree {float:left;padding:0 30px 0 30px;width:195px;}
.oneoftwo {float:left;padding:0 30px 0 30px;width:322px;}
.firstcol {padding-left:0;}
.lastcol {padding-right:0;float:right;}
/* ANCHORS */
.oneofthree a {color:#abcd04;font-weight:bold;}
.oneofthree a:hover {color:#fff;background-color:#abcd04;border:2px solid #abcd04;}
.firstcol a {color:#e09c04;font-weight:bold;}
.firstcol a:hover {color:#fff;background-color:#e09c04;border:2px solid #e09c04;}
.lastcol a {color:#0594e0;font-weight:bold;}
.lastcol a:hover {color:#fff;background-color:#0594e0;border:2px solid #0594e0;}
/* FOOTER (base code taken from cssstickyfooter.com) */
* {margin-top:0;margin-bottom:0;;padding-top:0;padding-bottom:0;}
html, body, #wrap {height:100%;}
body > #wrap {height:auto;min-height:100%;}
#mainspc {padding-bottom:90px;}
#footer {position:relative;margin-top:-40px;height:40px;color:#999;text-align:left;font-size:0.8em;line-height:1.25em;clear:both;background-color:#000;}
#footer p, #footer form {padding:12px 8px 0px 8px;margin:0;}
#footer h2 {color:#666;padding:4px 8px 0px 8px;}
#footer a {color:#fff;text-decoration:none;border:2px solid transparent;margin-left:-2px;}
#footer a:hover {color:#000;background-color:#fff;padding:0;border:2px solid #fff;}
#footer div.toprow {float:left;margin-right:30px;}
#footer *.darker {color:#444;}
#footercontactspc {width:auto;}
#footerdontatespc {width:300px;}
#mainfooter {padding:3px 0 0 36px;}
#footerlogo {position:absolute;top:7px;left:7px;}
#copyrightspc {position:absolute;bottom:10px;left:36px;}
#socialtwitter {width:74px;background:#000 url(/assets/images/social_twitter.gif) top center no-repeat;}
#socialfacebook {width:79px;background:#000 url(/assets/images/social_facebook.gif) top center no-repeat;}
#socialgithub {width:59px;background:#000 url(/assets/images/social_github.gif) top center no-repeat;}
#sociallighthouse {width:119px;background:#000 url(/assets/images/social_lighthouse.gif) top center no-repeat;}
#sociallighthouse:hover,#socialgithub:hover,#socialfacebook:hover,#socialtwitter:hover {background-position:bottom center;}
*.sociallink {margin:0 16px 0 0;overflow:hidden;float:left;height:35px;}
*.sociallink img {width:100%;height:100%;}
#footer *.sociallink a:hover {background-color:transparent;border:0;}
/* FORMS */
input {padding:0.42em 4px 0.42em 4px;border:1px solid #777;}
input:active, input:focus {outline:0;border:1px solid #888;}
input.button {background-color:#404040;color:#ccc;padding:0.42em 10px 0.42em 10px;font-weight:bold;cursor:pointer;width:auto;}
input.button:hover {background-color:#666;}
input.checkorradio {width:auto;}
label {font-size:0.85em;text-transform:uppercase;color:#999;}
#supportformspc input {padding:8px 12px 8px 12px;font-size:1.125em;font-weight:normal;}
#supportformspc {padding:30px 0 40px 0;width:280px;}
/* NAVIGATION */
#mainmenu {position:absolute;right:58px;top:14px;z-index:600;}
#mainmenu a {margin-left:1.5em;color:#aaa;border:2px solid transparent;}
#mainmenu a:hover, #tipspc a:hover {color:#fff;background-color:#aaa;padding:0;border:2px solid #aaa;}
/* MISC */
div.clearfix {visibility:hidden;overflow:hidden;clear:both;height:1px;}
a.nofx, a.nofx:hover, *.nofx a, *.nofx a:hover {color:inherit;background-color:inherit;border:none;margin-left:0;}
#cash_sitelogo a:hover {background-color:transparent;border:none;}
*.lispaced li {margin-bottom:3.5em;}
*.lispaced li * li {margin-bottom:1.5em;}
*.lispacedsm {padding-left:0;}
*.lispacedsm li {margin-bottom:1.5em;}
.nobullets {list-style: none;}
span.notation {font-size:0.85em;line-height:1.25em;color:#999;}
span.notation a {color:#999;font-weight:normal;border:2px solid transparent;margin-left:-2px;}
span.notation a:hover {color:#fff;background-color:#999;border:2px solid #999;}
ol.li {font-size:0.65em;}
#soundplayerspc2 {background-color:#333;color:#fff;}
#soundplayerspc2 div.flower_soundplayer_ui, #soundplayerspc2 li {padding:6px;}
#soundplayerspc2 li {padding:2px 6px 2px 6px;border-top:1px dotted #666;}
#soundplayerspc2 li.flower_soundplaylist_altli {background-color:#444;}
#soundplayerspc2 div.flower_soundplayer_time {font-size:0.65em;color:#999;}
#soundplayerspc2 div.flower_soundplayer_title {font-size:1.25em;font-weight:bold;}
#soundplayerspc2 div.flower_soundplayer_seekbar {background-color:#0cf !important;}
#pagePlayerTarget {position:fixed;background-color:#000;color:#fff;top:0;left:40px;width:400px;height:auto;padding:0 6px 0 6px;z-index:12345;}
#pagePlayerTarget div.flower_soundplayer {padding-bottom:6px;}
#pagePlayerTarget div.flower_soundplayer_time, #pagePlayerTarget li {font-size:0.7em !important;color:#666 !important;} | 0.290981 | 0.090013 |
.ent_m171 div {
outline: none;
}
.s_layouts_snapWrapper h1, .s_layouts_snapWrapper h2{
color: #888 !important;
}
.s_layouts_snapWrapper {
visibility: hidden;
opacity:0;
background-color: rgba(22,22,22,0.95);
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
z-index: 2000000001;
width: 100%;
height: 100%;
}
.s_layouts_snapWrapper_add{
-webkit-transition: opacity 1s, visibility 0s linear 2s;
-moz-transition: opacity 1s , visibility 0s linear 2s;
-o-transition: opacity 1s , visibility 0s linear 2s;
transition: opacity 1s , visibility 0s linear 2s;
}
.wrap_blur{
-webkit-filter: url(filters_clean.svg#blur);
-o-filter: url(filters_clean.svg#blur);
filter: url(filters_clean.svg#blur);
}
.container_search{
padding-top: 70px;
}
.container_search input{
background: transparent;
border-bottom: 2px solid #3cb9d5;
}
.container_search input{
background: transparent;
border-bottom: 2px solid #3cb9d5;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper .s_layouts_snapInput {
font: 7vw/1.5 'BrandonTextBoldItalic', Helvetica, Arial, sans-serif;
font-size: 35px;
font-style: italic;
padding: 5px;
font-weight: bold;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper {
position: relative;
width: 100%;
white-space: nowrap;
display: inline-flex;
justify-content: space-between;
align-items: flex-end;
transition: margin-bottom .35s ease-in-out;
-moz-transition: margin-bottom .35s ease-in-out;
-webkit-transition: margin-bottom .35s ease-in-out;
}
.s_layouts_snapClose .close {
width: 50px;
position: relative;
bottom: 5px;
height: 32px;
opacity: 1;
}
.s_layouts_snapClose .close:hover {
opacity: 1;
}
.s_layouts_snapClose .close:before, .s_layouts_snapClose .close:after {
position: absolute;
left: 30px;
content: ' ';
height: 40px;
width: 3px;
background-color: #fff;
}
.s_layouts_snapClose .close:before {
transform: rotate(45deg);
}
.s_layouts_snapClose .close:after {
transform: rotate(-45deg);
}
.s_layouts_snapWrapper .s_layouts_snapHeaderWrapper {
padding: 30px 0;
}
.s_layouts_snapTabs, .s_layouts_snapWrapper .s_layouts_snapHeader {
font-size: 18px;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab.active {
color: #222c32;
background-color: #3cb9d5;
border-radius: 15px;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab {
color: #3cb9d5;
font-family: 'BrandonGrotesque-Black', Helvetica, Arial, sans-serif;
text-transform: uppercase;
padding: 5px 12px;
letter-spacing: 1px;
margin-right: .7em;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab {
text-decoration: none;
font-weight: bold;
cursor: pointer;
margin-right: 1em;
padding: 5px 10px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper .s_layouts_snapInput:focus {
color: #fff;
}
.container_search_modal{
margin-right: -30px;
margin-left: -30px;
padding: 0;
}
.container_search_modal .blok_search_username, .container_search_modal .blok_search_teams{
border:1px solid #3cb9d5;
height: 150px;
width: 100%;
margin-top: 15px;
overflow: hidden;
border-radius: 5px;
}
.container_search_modal .blok_search_username p,.container_search_modal .blok_search_teams p{
color: #fff;
margin: 0;
font-size: 1.2rem;
line-height: 2rem;
margin-top: 7px;
}
.container_search_modal .blok_search_username .username,
.container_search_modal .blok_search_teams .teams
{
margin-top: 20px;
font-size: 2rem;
}
.container_search_modal .blok_search_username .img_cont_search,
.container_search_modal .blok_search_teams .img_cont_search
{
position:relative;
}
.container_search_modal .blok_search_username img,
.container_search_modal .blok_search_teams img
{
height: 80px;
border-radius: 50%;
position: absolute;
top:75px;
transform: translateY(-50%);
}
.s_layouts_snapMessageWrapper{
text-align: center;
}
.container_search_modal .list_teams{
margin-top:5px;
}
.top-search{
/*margin-top:5px;*/
height: 55px;
width: 55px;
border: none;
}
.top-search i{
font-size: 20px;
}
.top-search button{
left: 12px;
}
.s_layouts_snapMessageWrapper .message_search{
font-size: 2.5rem;
margin: 5px 0;
color: #eee;
font-family: 'BrandonGrotesque-Black', Helvetica, Arial, sans-serif;
text-align: center;
margin-bottom: 10px;
}
.container_search_modal a:hover{
color: #fff;
}
.container_search_modal .blok_search_username:hover,
.container_search_modal .blok_search_teams:hover{
box-shadow: 0 0 11px rgb(60, 185, 213);
}
.visible-search{
opacity: 1;
visibility:visible;
transition-delay: 0s;
}
.blok_search_teams.tournaments_block p{
margin-top: 0px;
}
.blok_search_teams.tournaments_block .tournaments{
margin-top: 20px;
font-size: 2rem;
margin-bottom: 4px;
} | web/css/search-bar.css | .ent_m171 div {
outline: none;
}
.s_layouts_snapWrapper h1, .s_layouts_snapWrapper h2{
color: #888 !important;
}
.s_layouts_snapWrapper {
visibility: hidden;
opacity:0;
background-color: rgba(22,22,22,0.95);
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
z-index: 2000000001;
width: 100%;
height: 100%;
}
.s_layouts_snapWrapper_add{
-webkit-transition: opacity 1s, visibility 0s linear 2s;
-moz-transition: opacity 1s , visibility 0s linear 2s;
-o-transition: opacity 1s , visibility 0s linear 2s;
transition: opacity 1s , visibility 0s linear 2s;
}
.wrap_blur{
-webkit-filter: url(filters_clean.svg#blur);
-o-filter: url(filters_clean.svg#blur);
filter: url(filters_clean.svg#blur);
}
.container_search{
padding-top: 70px;
}
.container_search input{
background: transparent;
border-bottom: 2px solid #3cb9d5;
}
.container_search input{
background: transparent;
border-bottom: 2px solid #3cb9d5;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper .s_layouts_snapInput {
font: 7vw/1.5 'BrandonTextBoldItalic', Helvetica, Arial, sans-serif;
font-size: 35px;
font-style: italic;
padding: 5px;
font-weight: bold;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper {
position: relative;
width: 100%;
white-space: nowrap;
display: inline-flex;
justify-content: space-between;
align-items: flex-end;
transition: margin-bottom .35s ease-in-out;
-moz-transition: margin-bottom .35s ease-in-out;
-webkit-transition: margin-bottom .35s ease-in-out;
}
.s_layouts_snapClose .close {
width: 50px;
position: relative;
bottom: 5px;
height: 32px;
opacity: 1;
}
.s_layouts_snapClose .close:hover {
opacity: 1;
}
.s_layouts_snapClose .close:before, .s_layouts_snapClose .close:after {
position: absolute;
left: 30px;
content: ' ';
height: 40px;
width: 3px;
background-color: #fff;
}
.s_layouts_snapClose .close:before {
transform: rotate(45deg);
}
.s_layouts_snapClose .close:after {
transform: rotate(-45deg);
}
.s_layouts_snapWrapper .s_layouts_snapHeaderWrapper {
padding: 30px 0;
}
.s_layouts_snapTabs, .s_layouts_snapWrapper .s_layouts_snapHeader {
font-size: 18px;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab.active {
color: #222c32;
background-color: #3cb9d5;
border-radius: 15px;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab {
color: #3cb9d5;
font-family: 'BrandonGrotesque-Black', Helvetica, Arial, sans-serif;
text-transform: uppercase;
padding: 5px 12px;
letter-spacing: 1px;
margin-right: .7em;
}
.s_layouts_snapWrapper .s_layouts_snapTabs .s_layouts_snapTab {
text-decoration: none;
font-weight: bold;
cursor: pointer;
margin-right: 1em;
padding: 5px 10px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
}
.s_layouts_snapWrapper .s_layouts_snapInputWrapper .s_layouts_snapInput:focus {
color: #fff;
}
.container_search_modal{
margin-right: -30px;
margin-left: -30px;
padding: 0;
}
.container_search_modal .blok_search_username, .container_search_modal .blok_search_teams{
border:1px solid #3cb9d5;
height: 150px;
width: 100%;
margin-top: 15px;
overflow: hidden;
border-radius: 5px;
}
.container_search_modal .blok_search_username p,.container_search_modal .blok_search_teams p{
color: #fff;
margin: 0;
font-size: 1.2rem;
line-height: 2rem;
margin-top: 7px;
}
.container_search_modal .blok_search_username .username,
.container_search_modal .blok_search_teams .teams
{
margin-top: 20px;
font-size: 2rem;
}
.container_search_modal .blok_search_username .img_cont_search,
.container_search_modal .blok_search_teams .img_cont_search
{
position:relative;
}
.container_search_modal .blok_search_username img,
.container_search_modal .blok_search_teams img
{
height: 80px;
border-radius: 50%;
position: absolute;
top:75px;
transform: translateY(-50%);
}
.s_layouts_snapMessageWrapper{
text-align: center;
}
.container_search_modal .list_teams{
margin-top:5px;
}
.top-search{
/*margin-top:5px;*/
height: 55px;
width: 55px;
border: none;
}
.top-search i{
font-size: 20px;
}
.top-search button{
left: 12px;
}
.s_layouts_snapMessageWrapper .message_search{
font-size: 2.5rem;
margin: 5px 0;
color: #eee;
font-family: 'BrandonGrotesque-Black', Helvetica, Arial, sans-serif;
text-align: center;
margin-bottom: 10px;
}
.container_search_modal a:hover{
color: #fff;
}
.container_search_modal .blok_search_username:hover,
.container_search_modal .blok_search_teams:hover{
box-shadow: 0 0 11px rgb(60, 185, 213);
}
.visible-search{
opacity: 1;
visibility:visible;
transition-delay: 0s;
}
.blok_search_teams.tournaments_block p{
margin-top: 0px;
}
.blok_search_teams.tournaments_block .tournaments{
margin-top: 20px;
font-size: 2rem;
margin-bottom: 4px;
} | 0.469763 | 0.068725 |
.code-space-scroll {
position: absolute;
top: 30px;
left: 70px;
width: calc(100% - 70px);
height: calc(100% - 30px);
overflow: scroll;
}
.input {
position: absolute;
padding: 0;
opacity: 0;
transform: scale(0.0001);
transform-origin: 2px 2px;
border: none;
pointer-events: none;
}
.cell-line {
position: absolute;
height: 30px;
}
.cell {
position: absolute;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
outline: 1px solid rgba(90, 90, 90, 0.5);
outline-offset: -2px;
}
.cell.comment {
color: rgba(90, 90, 90, 1);
}
.cell.ghost {
outline-style: dashed;
}
.cell-line:not(:last-child) .cell.ghost:after {
content: '\23ce';
color: rgba(60, 60, 60, 1);
}
.ghost-caret {
display: none;
position: absolute;
width: 30px;
height: 30px;
outline: 1px dashed rgba(174, 175, 173, 1);
outline-offset: -2px;
}
.ghost-caret.on {
display: block;
}
.selection {
position: absolute;
}
.selection svg {
width: 100%;
height: 100%;
}
.selection .dash {
fill: transparent;
stroke: rgba(174, 175, 173, 1);
stroke-width: 1;
stroke-linejoin: miter;
stroke-dasharray: 3, 3;
animation-duration: 0.5s;
animation-name: dash-rotate;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.selection.caret {
outline: 1px solid rgba(174, 175, 173, 1);
outline-offset: -2px;
animation-duration: 1s;
animation-name: caret-blink;
animation-timing-function: linear;
animation-iteration-count: infinite;
transition-property: top, left, width, height;
transition-duration: 0.3s;
}
.code-space-scroll:not(.focus) .selection .dash {
stroke: rgba(120, 120, 120, 0.5);
animation: none;
}
.code-space-scroll:not(.focus) .selection.caret {
outline: 1px solid rgba(120, 120, 120, 0.5);
animation: none;
}
.cursor {
position: absolute;
}
.cursor-rect {
stroke: rgb(0, 122, 204);
stroke-width: 3;
fill: transparent;
}
.cursor-deco {
stroke: #fff;
stroke-width: 3;
stroke-opacity: 0.1;
stroke-dasharray: 10, 40;
fill: transparent;
animation-duration: 0.5s;
animation-name: deco-rotate;
animation-timing-function: linear;
animation-iteration-count: infinite;
transition-property: stroke, stroke-opacity, stroke-dasharray;
transition-duration: 0.5s;
}
.cursor.on-break-point .cursor-deco {
stroke: #c10;
stroke-opacity: 1;
stroke-dasharray: 40, 0;
}
@keyframes caret-blink {
0%, 15%, 85%, 100% { opacity: 1; }
35%, 65% { opacity: 0; }
}
@keyframes dash-rotate {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -6; }
}
@keyframes deco-rotate {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -50; }
} | src/components/CodeSpace/style.css | .code-space-scroll {
position: absolute;
top: 30px;
left: 70px;
width: calc(100% - 70px);
height: calc(100% - 30px);
overflow: scroll;
}
.input {
position: absolute;
padding: 0;
opacity: 0;
transform: scale(0.0001);
transform-origin: 2px 2px;
border: none;
pointer-events: none;
}
.cell-line {
position: absolute;
height: 30px;
}
.cell {
position: absolute;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
outline: 1px solid rgba(90, 90, 90, 0.5);
outline-offset: -2px;
}
.cell.comment {
color: rgba(90, 90, 90, 1);
}
.cell.ghost {
outline-style: dashed;
}
.cell-line:not(:last-child) .cell.ghost:after {
content: '\23ce';
color: rgba(60, 60, 60, 1);
}
.ghost-caret {
display: none;
position: absolute;
width: 30px;
height: 30px;
outline: 1px dashed rgba(174, 175, 173, 1);
outline-offset: -2px;
}
.ghost-caret.on {
display: block;
}
.selection {
position: absolute;
}
.selection svg {
width: 100%;
height: 100%;
}
.selection .dash {
fill: transparent;
stroke: rgba(174, 175, 173, 1);
stroke-width: 1;
stroke-linejoin: miter;
stroke-dasharray: 3, 3;
animation-duration: 0.5s;
animation-name: dash-rotate;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.selection.caret {
outline: 1px solid rgba(174, 175, 173, 1);
outline-offset: -2px;
animation-duration: 1s;
animation-name: caret-blink;
animation-timing-function: linear;
animation-iteration-count: infinite;
transition-property: top, left, width, height;
transition-duration: 0.3s;
}
.code-space-scroll:not(.focus) .selection .dash {
stroke: rgba(120, 120, 120, 0.5);
animation: none;
}
.code-space-scroll:not(.focus) .selection.caret {
outline: 1px solid rgba(120, 120, 120, 0.5);
animation: none;
}
.cursor {
position: absolute;
}
.cursor-rect {
stroke: rgb(0, 122, 204);
stroke-width: 3;
fill: transparent;
}
.cursor-deco {
stroke: #fff;
stroke-width: 3;
stroke-opacity: 0.1;
stroke-dasharray: 10, 40;
fill: transparent;
animation-duration: 0.5s;
animation-name: deco-rotate;
animation-timing-function: linear;
animation-iteration-count: infinite;
transition-property: stroke, stroke-opacity, stroke-dasharray;
transition-duration: 0.5s;
}
.cursor.on-break-point .cursor-deco {
stroke: #c10;
stroke-opacity: 1;
stroke-dasharray: 40, 0;
}
@keyframes caret-blink {
0%, 15%, 85%, 100% { opacity: 1; }
35%, 65% { opacity: 0; }
}
@keyframes dash-rotate {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -6; }
}
@keyframes deco-rotate {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -50; }
} | 0.793946 | 0.136033 |
#pop_city_layer {
position: absolute;
left: 0;
top: 0;
z-index: 996;
width: 100%;
height: 100%;
background-color: #f9f9f9; }
#pop_city_layer .white-box {
background-color: #fff; }
#pop_city_layer > .pop-tit {
position: relative;
width: 100%;
height: 2em;
line-height: 2em;
border-bottom: 2px solid #d8d8d8;
font-size: 1.75em;
color: #333;
text-align: center;
background-color: #fff; }
#pop_city_layer > .pop-tit > .icon-close {
position: absolute;
left: 0rem;
padding-left: 0.5em;
padding-right: 0.5em;
top: 0;
line-height: 2em;
font-size: 1.75em;
color: #458bff; }
#pop_city_layer .tit-box {
height: 3em;
line-height: 3em;
padding-left: 0.5em;
padding-right: 0.5em;
background-color: #f9f9f9;
font-size: 1.75em;
color: #333; }
#pop_city_layer .block-box {
padding-top: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em;}
#pop_city_layer .block-box > li {
float: left;
width: 33.33333333333333%;
margin-bottom:0.5em; }
#pop_city_layer .block-box > li > span, #pop_city_layer .line-box > li {
font-size:1.75em;
color: #666; }
#pop_city_layer .block-box > li > span {
display: block;
margin-left: 0.5em;
margin-right: 0.5em;
height: 3em;
line-height: 3em;
border: 1px solid #ddd;
border-radius: 0.0625rem 0.0625rem 0.0625rem 0.0625rem;
text-align: center; }
#pop_city_layer .line-box > li {
padding-left: 1em;
padding-right:1em;
height: 3em;
line-height: 3em;
border-bottom: 1px solid #ddd; }
#pop_city_layer .pop-con-wrap {
padding-right: 0.5em;
overflow: scroll; }
#pop_city_layer .letters-wrap {
padding-top: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em; }
#pop_city_layer .letters-wrap > a {
float: left;
display: block;
width: 16.666%;
padding-top: 0.5em;
padding-bottom: 0.5em;
line-height: 1;
font-size: 1.75em;
color: #666;
text-align: center; } | src/template/v1/css/city.css | #pop_city_layer {
position: absolute;
left: 0;
top: 0;
z-index: 996;
width: 100%;
height: 100%;
background-color: #f9f9f9; }
#pop_city_layer .white-box {
background-color: #fff; }
#pop_city_layer > .pop-tit {
position: relative;
width: 100%;
height: 2em;
line-height: 2em;
border-bottom: 2px solid #d8d8d8;
font-size: 1.75em;
color: #333;
text-align: center;
background-color: #fff; }
#pop_city_layer > .pop-tit > .icon-close {
position: absolute;
left: 0rem;
padding-left: 0.5em;
padding-right: 0.5em;
top: 0;
line-height: 2em;
font-size: 1.75em;
color: #458bff; }
#pop_city_layer .tit-box {
height: 3em;
line-height: 3em;
padding-left: 0.5em;
padding-right: 0.5em;
background-color: #f9f9f9;
font-size: 1.75em;
color: #333; }
#pop_city_layer .block-box {
padding-top: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em;}
#pop_city_layer .block-box > li {
float: left;
width: 33.33333333333333%;
margin-bottom:0.5em; }
#pop_city_layer .block-box > li > span, #pop_city_layer .line-box > li {
font-size:1.75em;
color: #666; }
#pop_city_layer .block-box > li > span {
display: block;
margin-left: 0.5em;
margin-right: 0.5em;
height: 3em;
line-height: 3em;
border: 1px solid #ddd;
border-radius: 0.0625rem 0.0625rem 0.0625rem 0.0625rem;
text-align: center; }
#pop_city_layer .line-box > li {
padding-left: 1em;
padding-right:1em;
height: 3em;
line-height: 3em;
border-bottom: 1px solid #ddd; }
#pop_city_layer .pop-con-wrap {
padding-right: 0.5em;
overflow: scroll; }
#pop_city_layer .letters-wrap {
padding-top: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em; }
#pop_city_layer .letters-wrap > a {
float: left;
display: block;
width: 16.666%;
padding-top: 0.5em;
padding-bottom: 0.5em;
line-height: 1;
font-size: 1.75em;
color: #666;
text-align: center; } | 0.487551 | 0.083853 |
.custom-footer{
position: absolute;
bottom: 0;
width: 100%;
height: 40px;
padding-top:-30px;
}
.custom-footer a {
color: #fff;
}
.list-group-item {
background: #000;
border: 0;
border-radius: 0;
color: #999;
text-decoration: none;
font-size: 17px;
font-family: "Avenir Next";
}
.list-group a:hover {
background: #222;
color: #fff;
}
.list-group a.router-link-active {
background: #222;
color: #fff;
}
.navbar {
margin-bottom: 0;
max-height:15px !important;
background-color: #000;
z-index: 9999;
border: 0;
font-size: 16px !important;
line-height: 1.42857143 !important;
letter-spacing: 4px;
border-radius: 0;
font-family: Montserrat, sans-serif;
}
.navbar li a, .navbar .navbar-brand {
color: #fff !important;
}
/*.navbar-nav li a:hover, .navbar-nav li.active a {
color: #f4511e !important;
background-color: #fff !important;
} */
.navbar-default .navbar-toggle {
border-color: transparent;
color: #fff !important;
}
.searchinput{
margin-top: 10px;
margin-bottom: 30px;
padding-bottom: 8px;
}
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index: 1000;
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #86BCFF;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width: 100%;
position: absolute;
padding: 15px;
}
#wrapper.toggled #page-content-wrapper {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar1 {
background: #000;
/* For browsers that do not support gradients */
//background: -webkit-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Safari 5.1 to 6.0 */
// background: -o-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Opera 11.1 to 12.0 */
// background: -moz-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Firefox 3.6 to 15 */
// background: linear-gradient(#000, #86BCFF, #ECF4FF);
/* Standard syntax */
padding: 0px;
min-height: 100%;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
color: #fff;
font-size: 18px;
}
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 65px;
font-size: 20px;
line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
color: #fff;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
@media(min-width:768px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
padding: 20px;
position: relative;
}
#wrapper.toggled #page-content-wrapper {
position: relative;
margin-right: 0;
}
.dropdown-messages {
width: 310px;
min-width: 0;
margin-left: 5px;
}
.customerDropdown{
color: #000;
font-size: 15px;
}
.custom-em{
font-size: 10px;
}
@media(min-width:768px) {
.dropdown-messages{
margin-left: auto;
}
}
} | src/app/components/app-header/app.component.css | .custom-footer{
position: absolute;
bottom: 0;
width: 100%;
height: 40px;
padding-top:-30px;
}
.custom-footer a {
color: #fff;
}
.list-group-item {
background: #000;
border: 0;
border-radius: 0;
color: #999;
text-decoration: none;
font-size: 17px;
font-family: "Avenir Next";
}
.list-group a:hover {
background: #222;
color: #fff;
}
.list-group a.router-link-active {
background: #222;
color: #fff;
}
.navbar {
margin-bottom: 0;
max-height:15px !important;
background-color: #000;
z-index: 9999;
border: 0;
font-size: 16px !important;
line-height: 1.42857143 !important;
letter-spacing: 4px;
border-radius: 0;
font-family: Montserrat, sans-serif;
}
.navbar li a, .navbar .navbar-brand {
color: #fff !important;
}
/*.navbar-nav li a:hover, .navbar-nav li.active a {
color: #f4511e !important;
background-color: #fff !important;
} */
.navbar-default .navbar-toggle {
border-color: transparent;
color: #fff !important;
}
.searchinput{
margin-top: 10px;
margin-bottom: 30px;
padding-bottom: 8px;
}
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index: 1000;
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #86BCFF;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width: 100%;
position: absolute;
padding: 15px;
}
#wrapper.toggled #page-content-wrapper {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar1 {
background: #000;
/* For browsers that do not support gradients */
//background: -webkit-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Safari 5.1 to 6.0 */
// background: -o-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Opera 11.1 to 12.0 */
// background: -moz-linear-gradient(#F17153, #F58D63, #f1ab53);
/* For Firefox 3.6 to 15 */
// background: linear-gradient(#000, #86BCFF, #ECF4FF);
/* Standard syntax */
padding: 0px;
min-height: 100%;
}
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
color: #fff;
font-size: 18px;
}
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 65px;
font-size: 20px;
line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
color: #fff;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
@media(min-width:768px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
padding: 20px;
position: relative;
}
#wrapper.toggled #page-content-wrapper {
position: relative;
margin-right: 0;
}
.dropdown-messages {
width: 310px;
min-width: 0;
margin-left: 5px;
}
.customerDropdown{
color: #000;
font-size: 15px;
}
.custom-em{
font-size: 10px;
}
@media(min-width:768px) {
.dropdown-messages{
margin-left: auto;
}
}
} | 0.318485 | 0.043406 |
body {
background-color: black;
font-family: 'Space Mono', monospace;
}
a {
color: goldenrod;
}
h2 {
color: goldenrod;
font-family: 'Special Elite', cursive;
}
h3 {
color: goldenrod;
margin-bottom: 5px;
margin-top: 30px;
font-family: 'Special Elite', cursive;
}
.whiteH3 {
color: white;
margin-bottom: 25px;
margin-top: 10px;
font-family: 'Special Elite', cursive;
}
p {
text-align:justify;
text-justify:inter-word;
margin: 5px;
}
.centerP {
margin-top: 10px;
text-align: center;
text-justify: none;
margin: none;
}
img {
margin-bottom: 15px;
filter: drop-shadow(8px 8px 10px gray);
width: 150px;
height: 150px;
}
button {
background-color: black;
border: 2px solid white;
color: white;
padding: 10px 28px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Special Elite', cursive;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
background-color: white;
color: black;
}
.container {
width: 65%;
margin: auto;
padding: 20px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
.socials {
width: 65%;
margin: auto;
text-align: center;
color: white;
}
.imgSocial {
margin: 25px;
width: 60px;
height: 60px;
filter: drop-shadow(4px 4px 10px gray);
}
.imgSocial:hover{
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.userEspectro {
width: 100%;
text-align: center;
}
.userRow {
width: 100px;
display: inline-block;
}
.espectroValue {
text-align: center;
text-justify: none;
margin: 0;
}
.errorDiv {
display: none;
}
@media only screen and (max-width: 768px) {
.container {
width: 90%;
margin: auto;
margin-top: none;
padding: 10px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
h3 {
margin-top: 20px;
font-size: 16px;
}
p {
font-size: 14px;
text-align: justify;
text-justify: newspaper;
margin: 2px;
}
img {
width: 80px;
height: 80px;
filter: drop-shadow(8px 8px 10px gray);
}
.imgSocial {
margin-top: 40px;
width: 40px;
height: 40px;
filter: drop-shadow(4px 4px 10px gray);
}
} | styles/results.css | body {
background-color: black;
font-family: 'Space Mono', monospace;
}
a {
color: goldenrod;
}
h2 {
color: goldenrod;
font-family: 'Special Elite', cursive;
}
h3 {
color: goldenrod;
margin-bottom: 5px;
margin-top: 30px;
font-family: 'Special Elite', cursive;
}
.whiteH3 {
color: white;
margin-bottom: 25px;
margin-top: 10px;
font-family: 'Special Elite', cursive;
}
p {
text-align:justify;
text-justify:inter-word;
margin: 5px;
}
.centerP {
margin-top: 10px;
text-align: center;
text-justify: none;
margin: none;
}
img {
margin-bottom: 15px;
filter: drop-shadow(8px 8px 10px gray);
width: 150px;
height: 150px;
}
button {
background-color: black;
border: 2px solid white;
color: white;
padding: 10px 28px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Special Elite', cursive;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
background-color: white;
color: black;
}
.container {
width: 65%;
margin: auto;
padding: 20px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
.socials {
width: 65%;
margin: auto;
text-align: center;
color: white;
}
.imgSocial {
margin: 25px;
width: 60px;
height: 60px;
filter: drop-shadow(4px 4px 10px gray);
}
.imgSocial:hover{
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.userEspectro {
width: 100%;
text-align: center;
}
.userRow {
width: 100px;
display: inline-block;
}
.espectroValue {
text-align: center;
text-justify: none;
margin: 0;
}
.errorDiv {
display: none;
}
@media only screen and (max-width: 768px) {
.container {
width: 90%;
margin: auto;
margin-top: none;
padding: 10px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
h3 {
margin-top: 20px;
font-size: 16px;
}
p {
font-size: 14px;
text-align: justify;
text-justify: newspaper;
margin: 2px;
}
img {
width: 80px;
height: 80px;
filter: drop-shadow(8px 8px 10px gray);
}
.imgSocial {
margin-top: 40px;
width: 40px;
height: 40px;
filter: drop-shadow(4px 4px 10px gray);
}
} | 0.608594 | 0.101012 |
html,
body {
background-color: #000;
background-image: url(media/background/page.png);
color: #555;
font-family: helvetica, arial, sans-serif;
margin: 0;
padding: 0;
font-size: 10pt;
}
a {
color: #777;
text-decoration: none;
}
a:hover {
color: #ccc;
}
.ztype-stats-action {
margin-right: 32px;
font-size: 14px;
}
.ztype-stats-action img {
vertical-align: middle;
margin-right: 4px;
}
.ztype-stats-action:hover,
#ztype-stats-close:hover {
cursor: pointer;
color: #4dfed2;
}
#ztype-stats-canvas,
#ztype-stats-content {
width: 100%;
height: 100%;
}
#ztype-stats {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 0;
z-index: 1000005;
background-color: #fff;
display: none;
width: 2px;
transition: width 0.3s ease-in-out;
}
#ztype-stats.expanded {
transition: width 0.3s ease-in-out;
width: 98%;
}
#ztype-stats-close {
position: absolute;
right: 0;
top: 0;
font-size: 48px;
width: 64px;
text-align: center;
height: 64px;
}
#ztype-stats-foot {
padding: 16px 32px 0 32px;
}
#ztype-game-canvas {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 0;
z-index: 1000002;
box-shadow: 0 0 30px #000;
}
#ztype-byline {
font-size: 12px;
position: fixed;
right: 0;
bottom: 0;
padding: 8px;
}
#ztype-gsense {
position: absolute;
width: 300px;
height: 600px;
z-index: 1000001;
left: 32px;
top: 0;
bottom: 0;
margin: auto;
}
#ztype-gsense-ins,
#nfn-soundtrack-b {
width: 300px;
height: 600px;
position: absolute;
top: 0;
left: 0;
right: 0;
margin: auto;
}
#nfn-soundtrack-b {
display: none;
}
#ztype-gsense-close {
position: absolute;
display: none;
bottom: 0;
width: 100%;
background-color: #555;
padding-top: 16px;
height: 48px;
color: #4dfed2;
font-size: 24px;
text-align: center;
}
#ztype-gsense.ztype-gsense-full {
left: 0;
right: 0;
width: 100%;
height: 720px;
background-color: #222;
z-index: 1000006;
}
#ztype-gsense.ztype-gsense-full #ztype-gsense-close {
display: block;
}
#ztype-sp {
color: #fff;
font-size: 11.5pt;
width: 720px;
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 920px;
line-height: 1.4;
}
#ztype-sp-text {
position: absolute;
left: 120px;
width: 480px;
}
#ztype-sp-text a {
color: #3f93d8;
text-decoration: underline;
}
#ztype-sp-text a:hover {
color: #fff;
}
#ztype-sp-logo {
position: absolute;
right: 0;
top: 18px;
width: 108px;
height: 24px;
}
@media (max-height: 920px) {
body.ztype-desktop #ztype-game-canvas {
max-height: 100vh;
}
#ztype-sp {
position: absolute;
width: 280px;
height: 300px;
z-index: 0;
left: auto;
right: 32px;
top: 32px;
bottom: auto;
margin: auto;
}
#ztype-sp-text {
position: relative;
left: auto;
width: auto;
}
#ztype-sp-logo {
position: relative;
}
}
body.mobile #ztype-byline {
display: none;
}
body.mobile #ztype-gsense {
display: none;
} | assets/css/index.css | html,
body {
background-color: #000;
background-image: url(media/background/page.png);
color: #555;
font-family: helvetica, arial, sans-serif;
margin: 0;
padding: 0;
font-size: 10pt;
}
a {
color: #777;
text-decoration: none;
}
a:hover {
color: #ccc;
}
.ztype-stats-action {
margin-right: 32px;
font-size: 14px;
}
.ztype-stats-action img {
vertical-align: middle;
margin-right: 4px;
}
.ztype-stats-action:hover,
#ztype-stats-close:hover {
cursor: pointer;
color: #4dfed2;
}
#ztype-stats-canvas,
#ztype-stats-content {
width: 100%;
height: 100%;
}
#ztype-stats {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 0;
z-index: 1000005;
background-color: #fff;
display: none;
width: 2px;
transition: width 0.3s ease-in-out;
}
#ztype-stats.expanded {
transition: width 0.3s ease-in-out;
width: 98%;
}
#ztype-stats-close {
position: absolute;
right: 0;
top: 0;
font-size: 48px;
width: 64px;
text-align: center;
height: 64px;
}
#ztype-stats-foot {
padding: 16px 32px 0 32px;
}
#ztype-game-canvas {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 0;
z-index: 1000002;
box-shadow: 0 0 30px #000;
}
#ztype-byline {
font-size: 12px;
position: fixed;
right: 0;
bottom: 0;
padding: 8px;
}
#ztype-gsense {
position: absolute;
width: 300px;
height: 600px;
z-index: 1000001;
left: 32px;
top: 0;
bottom: 0;
margin: auto;
}
#ztype-gsense-ins,
#nfn-soundtrack-b {
width: 300px;
height: 600px;
position: absolute;
top: 0;
left: 0;
right: 0;
margin: auto;
}
#nfn-soundtrack-b {
display: none;
}
#ztype-gsense-close {
position: absolute;
display: none;
bottom: 0;
width: 100%;
background-color: #555;
padding-top: 16px;
height: 48px;
color: #4dfed2;
font-size: 24px;
text-align: center;
}
#ztype-gsense.ztype-gsense-full {
left: 0;
right: 0;
width: 100%;
height: 720px;
background-color: #222;
z-index: 1000006;
}
#ztype-gsense.ztype-gsense-full #ztype-gsense-close {
display: block;
}
#ztype-sp {
color: #fff;
font-size: 11.5pt;
width: 720px;
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 920px;
line-height: 1.4;
}
#ztype-sp-text {
position: absolute;
left: 120px;
width: 480px;
}
#ztype-sp-text a {
color: #3f93d8;
text-decoration: underline;
}
#ztype-sp-text a:hover {
color: #fff;
}
#ztype-sp-logo {
position: absolute;
right: 0;
top: 18px;
width: 108px;
height: 24px;
}
@media (max-height: 920px) {
body.ztype-desktop #ztype-game-canvas {
max-height: 100vh;
}
#ztype-sp {
position: absolute;
width: 280px;
height: 300px;
z-index: 0;
left: auto;
right: 32px;
top: 32px;
bottom: auto;
margin: auto;
}
#ztype-sp-text {
position: relative;
left: auto;
width: auto;
}
#ztype-sp-logo {
position: relative;
}
}
body.mobile #ztype-byline {
display: none;
}
body.mobile #ztype-gsense {
display: none;
} | 0.530966 | 0.074568 |
.u-section-1 {
background-image: none;
}
.u-section-1 .u-sheet-1 {
min-height: 763px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 60px;
margin-bottom: 59px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 529px;
}
.u-section-1 .u-container-layout-1 {
padding: 30px;
}
.u-section-1 .u-shape-1 {
width: 102px;
height: 102px;
margin: 30px 0 0 auto;
}
.u-section-1 .u-text-1 {
font-size: 6rem;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-1 .u-layout-cell-2 {
min-height: 642px;
}
.u-section-1 .u-container-layout-2 {
padding: 0 22px;
}
.u-section-1 .u-text-2 {
font-size: 1.25rem;
line-height: 2;
margin: 192px 47px 0 0;
}
.u-section-1 .u-text-3 {
font-size: 1.25rem;
line-height: 2;
margin: 6px 47px 0 30px;
}
@media (max-width: 1199px) {
.u-section-1 .u-sheet-1 {
min-height: 556px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 436px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 529px;
}
.u-section-1 .u-container-layout-2 {
padding-right: 65px;
}
.u-section-1 .u-text-2 {
font-size: 1.125rem;
margin-right: 0;
}
.u-section-1 .u-text-3 {
margin-right: 0;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-1 .u-sheet-1 {
min-height: 444px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 55px;
margin-bottom: 55px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 100px;
}
.u-section-1 .u-text-1 {
font-size: 4.5rem;
}
.u-section-1 .u-layout-cell-2 {
min-height: 100px;
}
.u-section-1 .u-container-layout-2 {
padding-right: 22px;
}
}
@media (max-width: 767px) {
.u-section-1 .u-sheet-1 {
min-height: 790px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 40px;
margin-bottom: 40px;
}
.u-section-1 .u-container-layout-1 {
padding-top: 0;
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-shape-1 {
margin-right: auto;
margin-left: 0;
}
.u-section-1 .u-text-1 {
font-size: 5rem;
}
.u-section-1 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
}
@media (max-width: 575px) {
.u-section-1 .u-sheet-1 {
min-height: 669px;
}
.u-section-1 .u-text-1 {
font-size: 3.75rem;
}
}.u-section-2 {
background-image: none;
min-height: 794px;
}
.u-section-2 .u-shape-1 {
height: 332px;
margin-top: 0;
margin-bottom: 0;
}
.u-section-2 .u-shape-2 {
width: 1140px;
height: 608px;
margin: -206px auto 0;
}
.u-section-2 .u-layout-wrap-1 {
width: 1068px;
margin: -670px calc(((100% - 1140px) / 2) + 25px) 60px auto;
}
.u-section-2 .u-image-1 {
min-height: 633px;
background-image: url("images/K8s-omega-ws-pod.jpg");
background-position: 50% 50%;
}
.u-section-2 .u-container-layout-1 {
padding: 30px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 90px;
}
.u-section-2 .u-container-layout-2 {
padding: 30px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 543px;
}
.u-section-2 .u-container-layout-3 {
padding: 60px 0;
}
.u-section-2 .u-text-1 {
font-size: 5.5rem;
text-transform: uppercase;
font-weight: 200;
margin: 0 60px 0 0;
}
.u-section-2 .u-text-2 {
letter-spacing: 1px;
font-size: 1.875rem;
font-weight: 400;
margin: 90px 0 0 32px;
}
@media (max-width: 1199px) {
.u-section-2 {
min-height: 772px;
}
.u-section-2 .u-shape-2 {
width: 940px;
height: 590px;
}
.u-section-2 .u-layout-wrap-1 {
width: 844px;
margin-top: -656px;
margin-right: calc(((100% - 940px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 608px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 79px;
}
.u-section-2 .u-layout-cell-3 {
pointer-events: auto;
min-height: 478px;
}
.u-section-2 .u-text-1 {
font-size: 4.5rem;
margin-right: 0;
}
.u-section-2 .u-text-2 {
width: auto;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-2 {
min-height: 719px;
}
.u-section-2 .u-shape-2 {
width: 720px;
height: 533px;
}
.u-section-2 .u-layout-wrap-1 {
width: 662px;
margin-top: -599px;
margin-right: calc(((100% - 720px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 549px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 116px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 433px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 30px;
padding-bottom: 30px;
}
.u-section-2 .u-text-1 {
font-size: 3.75rem;
margin-top: 2px;
}
.u-section-2 .u-text-2 {
margin-top: 53px;
}
}
@media (max-width: 767px) {
.u-section-2 {
min-height: 1066px;
}
.u-section-2 .u-shape-2 {
width: 540px;
height: 880px;
}
.u-section-2 .u-layout-wrap-1 {
width: 464px;
margin-top: -946px;
margin-right: calc(((100% - 540px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 462px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 189px;
}
.u-section-2 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 100px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 60px;
}
.u-section-2 .u-text-1 {
font-size: 4.375rem;
}
}
@media (max-width: 575px) {
.u-section-2 {
min-height: 1003px;
}
.u-section-2 .u-shape-2 {
width: 340px;
height: 817px;
}
.u-section-2 .u-layout-wrap-1 {
width: 300px;
margin-top: -883px;
margin-right: calc(((100% - 340px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 434px;
}
.u-section-2 .u-container-layout-1 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 91px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 30px;
}
.u-section-2 .u-text-1 {
font-size: 3.625rem;
}
}.u-section-3 {
background-image: none;
}
.u-section-3 .u-sheet-1 {
min-height: 969px;
}
.u-section-3 .u-image-1 {
width: 538px;
height: 829px;
margin: 52px auto 0 0;
}
.u-section-3 .u-group-1 {
width: 527px;
min-height: 514px;
height: auto;
margin: -782px 75px 0 auto;
}
.u-section-3 .u-container-layout-1 {
padding: 0;
}
.u-section-3 .u-text-1 {
font-weight: 300;
font-size: 4.25rem;
margin: 64px 30px 0;
}
.u-section-3 .u-text-2 {
font-size: 1.875rem;
margin: 23px 38px 0;
}
.u-section-3 .u-image-2 {
width: 397px;
height: 369px;
box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.4);
margin: -161px 264px 60px auto;
}
@media (max-width: 1199px) {
.u-section-3 .u-sheet-1 {
min-height: 965px;
}
.u-section-3 .u-image-1 {
margin-top: 23px;
}
.u-section-3 .u-group-1 {
height: auto;
}
}
@media (max-width: 991px) {
.u-section-3 .u-sheet-1 {
min-height: 1283px;
}
}
@media (max-width: 767px) {
.u-section-3 .u-sheet-1 {
min-height: 1374px;
}
.u-section-3 .u-group-1 {
margin-right: 13px;
}
.u-section-3 .u-container-layout-1 {
padding-left: 30px;
padding-right: 30px;
}
.u-section-3 .u-image-2 {
margin-right: 143px;
}
}
@media (max-width: 575px) {
.u-section-3 .u-sheet-1 {
min-height: 1255px;
}
.u-section-3 .u-image-1 {
width: 340px;
height: 524px;
margin-top: 52px;
}
.u-section-3 .u-group-1 {
margin-top: -477px;
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-3 .u-container-layout-1 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-3 .u-text-1 {
font-size: 2.25rem;
margin-left: 0;
margin-right: 0;
}
.u-section-3 .u-text-2 {
margin-left: 0;
margin-right: 0;
}
.u-section-3 .u-image-2 {
width: 340px;
height: 316px;
margin-right: 0;
}
}.u-section-4 {
background-image: url("images/3e441115-a050-5650-4e6d-25e8e5cd82a4.jpg");
background-position: 50% 50%;
}
.u-section-4 .u-sheet-1 {
min-height: 897px;
}
.u-section-4 .u-layout-wrap-1 {
width: 1200px;
margin: 0 -60px 20px auto;
}
.u-section-4 .u-layout-cell-1 {
min-height: 877px;
}
.u-section-4 .u-container-layout-1 {
padding: 0;
}
.u-section-4 .u-text-1 {
font-weight: 200;
font-size: 5.5rem;
text-transform: uppercase;
margin: 38px 30px 0;
}
.u-section-4 .u-line-1 {
width: 318px;
height: 7px;
transform-origin: left center 0px;
margin: 8px auto 0 30px;
}
.u-section-4 .u-text-2 {
line-height: 2;
font-size: 1.25rem;
margin: 52px 30px 0;
}
.u-section-4 .u-image-1 {
width: 406px;
height: 271px;
margin: 52px auto 0 30px;
}
.u-section-4 .u-image-2 {
min-height: 877px;
background-image: url("images/K8s-omega-service-ws.jpg");
background-position: 50% 50%;
}
.u-section-4 .u-container-layout-2 {
padding: 30px;
}
@media (max-width: 1199px) {
.u-section-4 .u-sheet-1 {
min-height: 607px;
}
.u-section-4 .u-layout-wrap-1 {
width: 940px;
margin-right: 0;
}
.u-section-4 .u-layout-cell-1 {
min-height: 744px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 24px;
}
.u-section-4 .u-text-1 {
font-size: 4.5rem;
margin-left: 0;
margin-right: 0;
}
.u-section-4 .u-line-1 {
margin-left: 0;
}
.u-section-4 .u-text-2 {
margin-left: 0;
margin-right: 0;
}
.u-section-4 .u-image-1 {
margin-left: 0;
}
.u-section-4 .u-image-2 {
min-height: 649px;
}
}
@media (max-width: 991px) {
.u-section-4 .u-layout-wrap-1 {
width: 720px;
}
.u-section-4 .u-layout-cell-1 {
min-height: 100px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 0;
}
.u-section-4 .u-text-1 {
font-size: 3.75rem;
}
.u-section-4 .u-image-1 {
width: 372px;
height: 248px;
}
.u-section-4 .u-image-2 {
background-position: 67.42% 50%;
min-height: 424px;
}
}
@media (max-width: 767px) {
.u-section-4 .u-layout-wrap-1 {
width: 540px;
}
.u-section-4 .u-container-layout-1 {
padding-top: 50px;
padding-right: 60px;
}
.u-section-4 .u-text-1 {
font-size: 4.375rem;
}
.u-section-4 .u-image-2 {
min-height: 658px;
}
.u-section-4 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
}
@media (max-width: 575px) {
.u-section-4 .u-layout-wrap-1 {
width: 340px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 28px;
}
.u-section-4 .u-text-1 {
font-size: 3.625rem;
}
.u-section-4 .u-image-1 {
width: 340px;
height: 227px;
}
.u-section-4 .u-image-2 {
min-height: 414px;
}
}.u-section-5 {
background-image: none;
min-height: 1506px;
}
.u-section-5 .u-group-1 {
min-height: 989px;
width: calc(((100% - 1140px) / 2) + 1202px);
height: auto;
margin: 347px 0 0 auto;
}
.u-section-5 .u-container-layout-1 {
padding: 0;
}
.u-section-5 .u-group-2 {
width: 410px;
min-height: 514px;
height: auto;
margin: 316px 64px 0 auto;
}
.u-section-5 .u-container-layout-2 {
padding: 0;
}
.u-section-5 .u-text-1 {
font-weight: 300;
font-size: 4.25rem;
margin: 64px 30px 0;
}
.u-section-5 .u-text-2 {
font-size: 1.875rem;
margin: 81px 0 0 30px;
}
.u-section-5 .u-image-1 {
width: 724px;
height: 1061px;
margin: -903px auto -159px 50px;
}
.u-section-5 .u-image-2 {
width: 330px;
height: 330px;
margin: -1053px calc(((100% - 1140px) / 2) + 22px) 60px auto;
}
@media (max-width: 1199px) {
.u-section-5 .u-group-1 {
width: calc(((100% - 940px) / 2) + 940px);
height: auto;
}
.u-section-5 .u-group-2 {
height: auto;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 940px) / 2) + 22px);
}
}
@media (max-width: 991px) {
.u-section-5 .u-group-1 {
width: calc(((100% - 720px) / 2) + 720px);
}
.u-section-5 .u-image-1 {
width: 720px;
height: 1056px;
margin-left: 0;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 720px) / 2) + 22px);
}
}
@media (max-width: 767px) {
.u-section-5 {
min-height: 1237px;
}
.u-section-5 .u-group-1 {
width: calc(((100% - 540px) / 2) + 540px);
}
.u-section-5 .u-container-layout-2 {
padding-left: 30px;
padding-right: 30px;
}
.u-section-5 .u-image-1 {
width: 540px;
height: 792px;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 540px) / 2) + 22px);
}
}
@media (max-width: 575px) {
.u-section-5 {
min-height: 944px;
}
.u-section-5 .u-group-1 {
width: calc(((100% - 340px) / 2) + 340px);
}
.u-section-5 .u-group-2 {
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-5 .u-container-layout-2 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-5 .u-text-1 {
font-size: 2.25rem;
margin-left: 0;
margin-right: 0;
}
.u-section-5 .u-text-2 {
margin-left: 0;
}
.u-section-5 .u-image-1 {
width: 340px;
height: 499px;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 340px) / 2) + 10px);
}
}.u-section-6 {
background-image: url("images/yhfg-min.jpg");
background-position: 50% 50%;
}
.u-section-6 .u-sheet-1 {
min-height: 946px;
}
.u-section-6 .u-text-1 {
font-size: 3rem;
font-weight: 700;
margin: 113px 52px 0 auto;
}
.u-section-6 .u-list-1 {
grid-template-rows: auto;
width: 591px;
grid-auto-rows: 100%;
margin: 62px 0 60px auto;
}
.u-section-6 .u-repeater-1 {
grid-template-columns: calc(50% - 15px) calc(50% - 15px);
min-height: 597px;
grid-gap: 30px 30px;
}
.u-section-6 .u-list-item-1 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-1 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-1 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-2 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-3 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-2 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-2 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-2 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-4 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-5 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-3 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-3 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-3 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-6 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-7 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-4 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-4 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-4 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-8 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-9 {
font-style: italic;
margin: 20px 0 0;
}
@media (max-width: 1199px) {
.u-section-6 .u-sheet-1 {
min-height: 780px;
}
.u-section-6 .u-text-1 {
margin-top: 328px;
}
.u-section-6 .u-list-1 {
margin-bottom: 0;
}
}
@media (max-width: 991px) {
.u-section-6 .u-sheet-1 {
min-height: 597px;
}
.u-section-6 .u-text-1 {
margin-top: -40px;
}
.u-section-6 .u-list-1 {
width: 511px;
}
.u-section-6 .u-container-layout-1 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-2 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-3 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-4 {
padding-left: 25px;
padding-right: 25px;
}
}
@media (max-width: 767px) {
.u-section-6 .u-sheet-1 {
min-height: 448px;
}
.u-section-6 .u-text-1 {
margin-top: 149px;
}
.u-section-6 .u-list-1 {
margin-top: 50px;
}
.u-section-6 .u-container-layout-1 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-2 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-3 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-4 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
}
@media (max-width: 575px) {
.u-section-6 .u-sheet-1 {
min-height: 282px;
}
.u-section-6 .u-text-1 {
margin-top: 294px;
}
.u-section-6 .u-list-1 {
margin-top: -284px;
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-6 .u-repeater-1 {
grid-template-columns: 100%;
}
.u-section-6 .u-container-layout-1 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-2 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-3 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-4 {
padding-left: 20px;
padding-right: 20px;
}
} | docker/apache/omega/Order-Infra-Code.css | .u-section-1 {
background-image: none;
}
.u-section-1 .u-sheet-1 {
min-height: 763px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 60px;
margin-bottom: 59px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 529px;
}
.u-section-1 .u-container-layout-1 {
padding: 30px;
}
.u-section-1 .u-shape-1 {
width: 102px;
height: 102px;
margin: 30px 0 0 auto;
}
.u-section-1 .u-text-1 {
font-size: 6rem;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-1 .u-layout-cell-2 {
min-height: 642px;
}
.u-section-1 .u-container-layout-2 {
padding: 0 22px;
}
.u-section-1 .u-text-2 {
font-size: 1.25rem;
line-height: 2;
margin: 192px 47px 0 0;
}
.u-section-1 .u-text-3 {
font-size: 1.25rem;
line-height: 2;
margin: 6px 47px 0 30px;
}
@media (max-width: 1199px) {
.u-section-1 .u-sheet-1 {
min-height: 556px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 436px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 529px;
}
.u-section-1 .u-container-layout-2 {
padding-right: 65px;
}
.u-section-1 .u-text-2 {
font-size: 1.125rem;
margin-right: 0;
}
.u-section-1 .u-text-3 {
margin-right: 0;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-1 .u-sheet-1 {
min-height: 444px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 55px;
margin-bottom: 55px;
}
.u-section-1 .u-layout-cell-1 {
min-height: 100px;
}
.u-section-1 .u-text-1 {
font-size: 4.5rem;
}
.u-section-1 .u-layout-cell-2 {
min-height: 100px;
}
.u-section-1 .u-container-layout-2 {
padding-right: 22px;
}
}
@media (max-width: 767px) {
.u-section-1 .u-sheet-1 {
min-height: 790px;
}
.u-section-1 .u-layout-wrap-1 {
margin-top: 40px;
margin-bottom: 40px;
}
.u-section-1 .u-container-layout-1 {
padding-top: 0;
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-shape-1 {
margin-right: auto;
margin-left: 0;
}
.u-section-1 .u-text-1 {
font-size: 5rem;
}
.u-section-1 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
}
@media (max-width: 575px) {
.u-section-1 .u-sheet-1 {
min-height: 669px;
}
.u-section-1 .u-text-1 {
font-size: 3.75rem;
}
}.u-section-2 {
background-image: none;
min-height: 794px;
}
.u-section-2 .u-shape-1 {
height: 332px;
margin-top: 0;
margin-bottom: 0;
}
.u-section-2 .u-shape-2 {
width: 1140px;
height: 608px;
margin: -206px auto 0;
}
.u-section-2 .u-layout-wrap-1 {
width: 1068px;
margin: -670px calc(((100% - 1140px) / 2) + 25px) 60px auto;
}
.u-section-2 .u-image-1 {
min-height: 633px;
background-image: url("images/K8s-omega-ws-pod.jpg");
background-position: 50% 50%;
}
.u-section-2 .u-container-layout-1 {
padding: 30px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 90px;
}
.u-section-2 .u-container-layout-2 {
padding: 30px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 543px;
}
.u-section-2 .u-container-layout-3 {
padding: 60px 0;
}
.u-section-2 .u-text-1 {
font-size: 5.5rem;
text-transform: uppercase;
font-weight: 200;
margin: 0 60px 0 0;
}
.u-section-2 .u-text-2 {
letter-spacing: 1px;
font-size: 1.875rem;
font-weight: 400;
margin: 90px 0 0 32px;
}
@media (max-width: 1199px) {
.u-section-2 {
min-height: 772px;
}
.u-section-2 .u-shape-2 {
width: 940px;
height: 590px;
}
.u-section-2 .u-layout-wrap-1 {
width: 844px;
margin-top: -656px;
margin-right: calc(((100% - 940px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 608px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 79px;
}
.u-section-2 .u-layout-cell-3 {
pointer-events: auto;
min-height: 478px;
}
.u-section-2 .u-text-1 {
font-size: 4.5rem;
margin-right: 0;
}
.u-section-2 .u-text-2 {
width: auto;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-2 {
min-height: 719px;
}
.u-section-2 .u-shape-2 {
width: 720px;
height: 533px;
}
.u-section-2 .u-layout-wrap-1 {
width: 662px;
margin-top: -599px;
margin-right: calc(((100% - 720px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 549px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 116px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 433px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 30px;
padding-bottom: 30px;
}
.u-section-2 .u-text-1 {
font-size: 3.75rem;
margin-top: 2px;
}
.u-section-2 .u-text-2 {
margin-top: 53px;
}
}
@media (max-width: 767px) {
.u-section-2 {
min-height: 1066px;
}
.u-section-2 .u-shape-2 {
width: 540px;
height: 880px;
}
.u-section-2 .u-layout-wrap-1 {
width: 464px;
margin-top: -946px;
margin-right: calc(((100% - 540px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 462px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 189px;
}
.u-section-2 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-2 .u-layout-cell-3 {
min-height: 100px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 60px;
}
.u-section-2 .u-text-1 {
font-size: 4.375rem;
}
}
@media (max-width: 575px) {
.u-section-2 {
min-height: 1003px;
}
.u-section-2 .u-shape-2 {
width: 340px;
height: 817px;
}
.u-section-2 .u-layout-wrap-1 {
width: 300px;
margin-top: -883px;
margin-right: calc(((100% - 340px) / 2));
}
.u-section-2 .u-image-1 {
min-height: 434px;
}
.u-section-2 .u-container-layout-1 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-2 .u-layout-cell-2 {
min-height: 91px;
}
.u-section-2 .u-container-layout-3 {
padding-top: 30px;
}
.u-section-2 .u-text-1 {
font-size: 3.625rem;
}
}.u-section-3 {
background-image: none;
}
.u-section-3 .u-sheet-1 {
min-height: 969px;
}
.u-section-3 .u-image-1 {
width: 538px;
height: 829px;
margin: 52px auto 0 0;
}
.u-section-3 .u-group-1 {
width: 527px;
min-height: 514px;
height: auto;
margin: -782px 75px 0 auto;
}
.u-section-3 .u-container-layout-1 {
padding: 0;
}
.u-section-3 .u-text-1 {
font-weight: 300;
font-size: 4.25rem;
margin: 64px 30px 0;
}
.u-section-3 .u-text-2 {
font-size: 1.875rem;
margin: 23px 38px 0;
}
.u-section-3 .u-image-2 {
width: 397px;
height: 369px;
box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.4);
margin: -161px 264px 60px auto;
}
@media (max-width: 1199px) {
.u-section-3 .u-sheet-1 {
min-height: 965px;
}
.u-section-3 .u-image-1 {
margin-top: 23px;
}
.u-section-3 .u-group-1 {
height: auto;
}
}
@media (max-width: 991px) {
.u-section-3 .u-sheet-1 {
min-height: 1283px;
}
}
@media (max-width: 767px) {
.u-section-3 .u-sheet-1 {
min-height: 1374px;
}
.u-section-3 .u-group-1 {
margin-right: 13px;
}
.u-section-3 .u-container-layout-1 {
padding-left: 30px;
padding-right: 30px;
}
.u-section-3 .u-image-2 {
margin-right: 143px;
}
}
@media (max-width: 575px) {
.u-section-3 .u-sheet-1 {
min-height: 1255px;
}
.u-section-3 .u-image-1 {
width: 340px;
height: 524px;
margin-top: 52px;
}
.u-section-3 .u-group-1 {
margin-top: -477px;
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-3 .u-container-layout-1 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-3 .u-text-1 {
font-size: 2.25rem;
margin-left: 0;
margin-right: 0;
}
.u-section-3 .u-text-2 {
margin-left: 0;
margin-right: 0;
}
.u-section-3 .u-image-2 {
width: 340px;
height: 316px;
margin-right: 0;
}
}.u-section-4 {
background-image: url("images/3e441115-a050-5650-4e6d-25e8e5cd82a4.jpg");
background-position: 50% 50%;
}
.u-section-4 .u-sheet-1 {
min-height: 897px;
}
.u-section-4 .u-layout-wrap-1 {
width: 1200px;
margin: 0 -60px 20px auto;
}
.u-section-4 .u-layout-cell-1 {
min-height: 877px;
}
.u-section-4 .u-container-layout-1 {
padding: 0;
}
.u-section-4 .u-text-1 {
font-weight: 200;
font-size: 5.5rem;
text-transform: uppercase;
margin: 38px 30px 0;
}
.u-section-4 .u-line-1 {
width: 318px;
height: 7px;
transform-origin: left center 0px;
margin: 8px auto 0 30px;
}
.u-section-4 .u-text-2 {
line-height: 2;
font-size: 1.25rem;
margin: 52px 30px 0;
}
.u-section-4 .u-image-1 {
width: 406px;
height: 271px;
margin: 52px auto 0 30px;
}
.u-section-4 .u-image-2 {
min-height: 877px;
background-image: url("images/K8s-omega-service-ws.jpg");
background-position: 50% 50%;
}
.u-section-4 .u-container-layout-2 {
padding: 30px;
}
@media (max-width: 1199px) {
.u-section-4 .u-sheet-1 {
min-height: 607px;
}
.u-section-4 .u-layout-wrap-1 {
width: 940px;
margin-right: 0;
}
.u-section-4 .u-layout-cell-1 {
min-height: 744px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 24px;
}
.u-section-4 .u-text-1 {
font-size: 4.5rem;
margin-left: 0;
margin-right: 0;
}
.u-section-4 .u-line-1 {
margin-left: 0;
}
.u-section-4 .u-text-2 {
margin-left: 0;
margin-right: 0;
}
.u-section-4 .u-image-1 {
margin-left: 0;
}
.u-section-4 .u-image-2 {
min-height: 649px;
}
}
@media (max-width: 991px) {
.u-section-4 .u-layout-wrap-1 {
width: 720px;
}
.u-section-4 .u-layout-cell-1 {
min-height: 100px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 0;
}
.u-section-4 .u-text-1 {
font-size: 3.75rem;
}
.u-section-4 .u-image-1 {
width: 372px;
height: 248px;
}
.u-section-4 .u-image-2 {
background-position: 67.42% 50%;
min-height: 424px;
}
}
@media (max-width: 767px) {
.u-section-4 .u-layout-wrap-1 {
width: 540px;
}
.u-section-4 .u-container-layout-1 {
padding-top: 50px;
padding-right: 60px;
}
.u-section-4 .u-text-1 {
font-size: 4.375rem;
}
.u-section-4 .u-image-2 {
min-height: 658px;
}
.u-section-4 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
}
@media (max-width: 575px) {
.u-section-4 .u-layout-wrap-1 {
width: 340px;
}
.u-section-4 .u-container-layout-1 {
padding-right: 28px;
}
.u-section-4 .u-text-1 {
font-size: 3.625rem;
}
.u-section-4 .u-image-1 {
width: 340px;
height: 227px;
}
.u-section-4 .u-image-2 {
min-height: 414px;
}
}.u-section-5 {
background-image: none;
min-height: 1506px;
}
.u-section-5 .u-group-1 {
min-height: 989px;
width: calc(((100% - 1140px) / 2) + 1202px);
height: auto;
margin: 347px 0 0 auto;
}
.u-section-5 .u-container-layout-1 {
padding: 0;
}
.u-section-5 .u-group-2 {
width: 410px;
min-height: 514px;
height: auto;
margin: 316px 64px 0 auto;
}
.u-section-5 .u-container-layout-2 {
padding: 0;
}
.u-section-5 .u-text-1 {
font-weight: 300;
font-size: 4.25rem;
margin: 64px 30px 0;
}
.u-section-5 .u-text-2 {
font-size: 1.875rem;
margin: 81px 0 0 30px;
}
.u-section-5 .u-image-1 {
width: 724px;
height: 1061px;
margin: -903px auto -159px 50px;
}
.u-section-5 .u-image-2 {
width: 330px;
height: 330px;
margin: -1053px calc(((100% - 1140px) / 2) + 22px) 60px auto;
}
@media (max-width: 1199px) {
.u-section-5 .u-group-1 {
width: calc(((100% - 940px) / 2) + 940px);
height: auto;
}
.u-section-5 .u-group-2 {
height: auto;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 940px) / 2) + 22px);
}
}
@media (max-width: 991px) {
.u-section-5 .u-group-1 {
width: calc(((100% - 720px) / 2) + 720px);
}
.u-section-5 .u-image-1 {
width: 720px;
height: 1056px;
margin-left: 0;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 720px) / 2) + 22px);
}
}
@media (max-width: 767px) {
.u-section-5 {
min-height: 1237px;
}
.u-section-5 .u-group-1 {
width: calc(((100% - 540px) / 2) + 540px);
}
.u-section-5 .u-container-layout-2 {
padding-left: 30px;
padding-right: 30px;
}
.u-section-5 .u-image-1 {
width: 540px;
height: 792px;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 540px) / 2) + 22px);
}
}
@media (max-width: 575px) {
.u-section-5 {
min-height: 944px;
}
.u-section-5 .u-group-1 {
width: calc(((100% - 340px) / 2) + 340px);
}
.u-section-5 .u-group-2 {
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-5 .u-container-layout-2 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-5 .u-text-1 {
font-size: 2.25rem;
margin-left: 0;
margin-right: 0;
}
.u-section-5 .u-text-2 {
margin-left: 0;
}
.u-section-5 .u-image-1 {
width: 340px;
height: 499px;
}
.u-section-5 .u-image-2 {
margin-right: calc(((100% - 340px) / 2) + 10px);
}
}.u-section-6 {
background-image: url("images/yhfg-min.jpg");
background-position: 50% 50%;
}
.u-section-6 .u-sheet-1 {
min-height: 946px;
}
.u-section-6 .u-text-1 {
font-size: 3rem;
font-weight: 700;
margin: 113px 52px 0 auto;
}
.u-section-6 .u-list-1 {
grid-template-rows: auto;
width: 591px;
grid-auto-rows: 100%;
margin: 62px 0 60px auto;
}
.u-section-6 .u-repeater-1 {
grid-template-columns: calc(50% - 15px) calc(50% - 15px);
min-height: 597px;
grid-gap: 30px 30px;
}
.u-section-6 .u-list-item-1 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-1 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-1 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-2 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-3 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-2 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-2 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-2 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-4 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-5 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-3 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-3 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-3 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-6 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-7 {
font-style: italic;
margin: 20px 0 0;
}
.u-section-6 .u-list-item-4 {
background-image: none;
box-shadow: 5px 5px 20px 0 rgba(41,46,51,0.4);
}
.u-section-6 .u-container-layout-4 {
padding: 30px 30px 25px;
}
.u-section-6 .u-icon-4 {
height: 55px;
width: 55px;
margin: 0 auto;
}
.u-section-6 .u-text-8 {
letter-spacing: 2px;
font-size: 1.25rem;
text-transform: uppercase;
font-weight: 300;
margin: 30px 0 0;
}
.u-section-6 .u-text-9 {
font-style: italic;
margin: 20px 0 0;
}
@media (max-width: 1199px) {
.u-section-6 .u-sheet-1 {
min-height: 780px;
}
.u-section-6 .u-text-1 {
margin-top: 328px;
}
.u-section-6 .u-list-1 {
margin-bottom: 0;
}
}
@media (max-width: 991px) {
.u-section-6 .u-sheet-1 {
min-height: 597px;
}
.u-section-6 .u-text-1 {
margin-top: -40px;
}
.u-section-6 .u-list-1 {
width: 511px;
}
.u-section-6 .u-container-layout-1 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-2 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-3 {
padding-left: 25px;
padding-right: 25px;
}
.u-section-6 .u-container-layout-4 {
padding-left: 25px;
padding-right: 25px;
}
}
@media (max-width: 767px) {
.u-section-6 .u-sheet-1 {
min-height: 448px;
}
.u-section-6 .u-text-1 {
margin-top: 149px;
}
.u-section-6 .u-list-1 {
margin-top: 50px;
}
.u-section-6 .u-container-layout-1 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-2 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-3 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
.u-section-6 .u-container-layout-4 {
padding-top: 25px;
padding-left: 15px;
padding-right: 15px;
}
}
@media (max-width: 575px) {
.u-section-6 .u-sheet-1 {
min-height: 282px;
}
.u-section-6 .u-text-1 {
margin-top: 294px;
}
.u-section-6 .u-list-1 {
margin-top: -284px;
margin-right: initial;
margin-left: initial;
width: auto;
}
.u-section-6 .u-repeater-1 {
grid-template-columns: 100%;
}
.u-section-6 .u-container-layout-1 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-2 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-3 {
padding-left: 20px;
padding-right: 20px;
}
.u-section-6 .u-container-layout-4 {
padding-left: 20px;
padding-right: 20px;
}
} | 0.452778 | 0.092606 |
* {
box-sizing: border-box;
}
div {
display: block;
}
.section {
padding: 30px 0;
position: relative;
}
.section.section-header {
padding-top: 45px;
}
.section-header .points {
z-index: 2;
overflow: hidden;
width: 100%;
position: absolute;
height: 1200px;
}
.point {
border-radius: 50%;
z-index: 999;
position: absolute;
}
.illustration {
position: absolute;
left: 0;
width: 100%;
top: -20%;
z-index: 1;
}
.space-110 {
height: 110px;
display: block;
}
.point-floating-1 {
background-color: red;
height: 10px;
width: 10px;
animation-name: p1;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-2 {
background-color: #8fd3f4;
height: 10px;
width: 10px;
animation-name: p2;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-3 {
background-color: #ff5e62;
height: 5px;
width: 5px;
position: relative;
-webkit-animation-name: p3;
-webkit-animation-duration: 80s;
-webkit-animation-iteration-count: infinite;
animation-name: p3;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-4 {
background-color: pink;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p4;
-webkit-animation-duration: 80s;
-webkit-animation-iteration-count: infinite;
animation-name: p4;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-5 {
background-color: #4a00e0;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p5;
-webkit-animation-duration: 50s;
-webkit-animation-iteration-count: infinite;
animation-name: p5;
animation-duration: 50s;
animation-iteration-count: infinite;
}
.point-floating-6 {
background-color: #ffc64c;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p6;
-webkit-animation-duration: 70s;
-webkit-animation-iteration-count: infinite;
animation-name: p6;
animation-duration: 70s;
animation-iteration-count: infinite;
}
.point-floating-7 {
background-color: #32ccbc;
height: 10px;
width: 10px;
position: relative;
-webkit-animation-name: p7;
-webkit-animation-duration: 70s;
-webkit-animation-iteration-count: infinite;
animation-name: p7;
animation-duration: 70s;
animation-iteration-count: infinite;
}
.point-floating-8 {
background-color: #00e4ff;
height: 6px;
width: 6px;
position: relative;
-webkit-animation-name: p8;
-webkit-animation-duration: 50s;
-webkit-animation-iteration-count: infinite;
animation-name: p8;
animation-duration: 50s;
animation-iteration-count: infinite;
}
.point-floating-9 {
background-color: #fcff00;
height: 12px;
width: 12px;
position: relative;
-webkit-animation-name: p9;
-webkit-animation-duration: 100s;
-webkit-animation-iteration-count: infinite;
animation-name: p9;
animation-duration: 100s;
animation-iteration-count: infinite;
}
/* ====== Animation Keyframes ====== */
@-webkit-keyframes p1 {
0% {
left: 0px;
top: 0px;
}
50% {
left: 0px;
top: 0px;
}
100% {
left: 0px;
top: 0px;
}
}
@keyframes p1 {
0% {
left: 800px;
top: 0px;
}
50% {
left: 0px;
top: 800px;
}
100% {
left: 800px;
top: 0px;
}
}
@-webkit-keyframes p2 {
0% {
left: 0;
top: 100px;
}
50% {
left: 0;
top: 800px;
}
100% {
left: 0;
top: 100px;
}
}
@keyframes p2 {
0% {
left: 0;
top: 100px;
}
50% {
left: 0px;
top: 800px;
}
100% {
left: 0;
top: 100px;
}
}
@-webkit-keyframes p3 {
0% {
left: 300px;
top: 900px;
}
50% {
left: 500px;
top: 0px;
}
100% {
left: 300px;
top: 900px;
}
}
@keyframes p3 {
0% {
left: 300px;
top: 900px;
}
50% {
left: 500px;
top: 0px;
}
100% {
left: 300px;
top: 900px;
}
}
@-webkit-keyframes p4 {
0% {
left: 1000px;
top: 500px;
}
50% {
left: 00px;
top: 500px;
}
100% {
left: 1000px;
top: 500px;
}
}
@keyframes p4 {
0% {
left: 1000px;
top: 500px;
}
50% {
left: 0px;
top: 500px;
}
100% {
left: 1000px;
top: 500px;
}
}
@-webkit-keyframes p5 {
0% {
left: 500px;
top: 1000px;
}
50% {
left: 50%;
top: 0px;
}
100% {
left: 500px;
top: 1000px;
}
}
@keyframes p5 {
0% {
left: 500px;
top: 1000px;
}
50% {
left: 50%;
top: 0px;
}
100% {
left: 500px;
top: 1000px;
}
}
@-webkit-keyframes p6 {
0% {
left: 500px;
top: 200px;
}
50% {
left: 50%;
top: 70%;
}
100% {
left: 500px;
top: 200px;
}
}
@keyframes p6 {
0% {
left: 500px;
top: 200px;
}
50% {
left: 50%;
top: 70%;
}
100% {
left: 500px;
top: 200px;
}
}
@-webkit-keyframes p7 {
0% {
left: 50px;
top: 10%;
}
50% {
left: 50%;
top: 10%;
}
100% {
left: 50px;
top: 10%;
}
}
@keyframes p7 {
0% {
left: 50px;
top: 10%;
}
50% {
left: 50%;
top: 10%;
}
100% {
left: 50px;
top: 10%;
}
}
@-webkit-keyframes p8 {
0% {
left: 0;
top: 20%;
}
50% {
left: 50%;
top: 20%;
}
100% {
left: 0;
top: 20%;
}
}
@keyframes p8 {
0% {
left: 0;
top: 20%;
}
50% {
left: 50%;
top: 20%;
}
100% {
left: 0;
top: 20%;
}
}
@-webkit-keyframes p9 {
0% {
left: 1000px;
top: 100px;
}
50% {
left: 500px;
top: 950px;
}
100% {
left: 1000px;
top: 100px;
}
}
@keyframes p9 {
0% {
left: 1000px;
top: 100px;
}
50% {
left: 500px;
top: 950px;
}
100% {
left: 1000px;
top: 100px;
}
} | src/components/Heros/HeroSection.css | * {
box-sizing: border-box;
}
div {
display: block;
}
.section {
padding: 30px 0;
position: relative;
}
.section.section-header {
padding-top: 45px;
}
.section-header .points {
z-index: 2;
overflow: hidden;
width: 100%;
position: absolute;
height: 1200px;
}
.point {
border-radius: 50%;
z-index: 999;
position: absolute;
}
.illustration {
position: absolute;
left: 0;
width: 100%;
top: -20%;
z-index: 1;
}
.space-110 {
height: 110px;
display: block;
}
.point-floating-1 {
background-color: red;
height: 10px;
width: 10px;
animation-name: p1;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-2 {
background-color: #8fd3f4;
height: 10px;
width: 10px;
animation-name: p2;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-3 {
background-color: #ff5e62;
height: 5px;
width: 5px;
position: relative;
-webkit-animation-name: p3;
-webkit-animation-duration: 80s;
-webkit-animation-iteration-count: infinite;
animation-name: p3;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-4 {
background-color: pink;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p4;
-webkit-animation-duration: 80s;
-webkit-animation-iteration-count: infinite;
animation-name: p4;
animation-duration: 80s;
animation-iteration-count: infinite;
}
.point-floating-5 {
background-color: #4a00e0;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p5;
-webkit-animation-duration: 50s;
-webkit-animation-iteration-count: infinite;
animation-name: p5;
animation-duration: 50s;
animation-iteration-count: infinite;
}
.point-floating-6 {
background-color: #ffc64c;
height: 8px;
width: 8px;
position: relative;
-webkit-animation-name: p6;
-webkit-animation-duration: 70s;
-webkit-animation-iteration-count: infinite;
animation-name: p6;
animation-duration: 70s;
animation-iteration-count: infinite;
}
.point-floating-7 {
background-color: #32ccbc;
height: 10px;
width: 10px;
position: relative;
-webkit-animation-name: p7;
-webkit-animation-duration: 70s;
-webkit-animation-iteration-count: infinite;
animation-name: p7;
animation-duration: 70s;
animation-iteration-count: infinite;
}
.point-floating-8 {
background-color: #00e4ff;
height: 6px;
width: 6px;
position: relative;
-webkit-animation-name: p8;
-webkit-animation-duration: 50s;
-webkit-animation-iteration-count: infinite;
animation-name: p8;
animation-duration: 50s;
animation-iteration-count: infinite;
}
.point-floating-9 {
background-color: #fcff00;
height: 12px;
width: 12px;
position: relative;
-webkit-animation-name: p9;
-webkit-animation-duration: 100s;
-webkit-animation-iteration-count: infinite;
animation-name: p9;
animation-duration: 100s;
animation-iteration-count: infinite;
}
/* ====== Animation Keyframes ====== */
@-webkit-keyframes p1 {
0% {
left: 0px;
top: 0px;
}
50% {
left: 0px;
top: 0px;
}
100% {
left: 0px;
top: 0px;
}
}
@keyframes p1 {
0% {
left: 800px;
top: 0px;
}
50% {
left: 0px;
top: 800px;
}
100% {
left: 800px;
top: 0px;
}
}
@-webkit-keyframes p2 {
0% {
left: 0;
top: 100px;
}
50% {
left: 0;
top: 800px;
}
100% {
left: 0;
top: 100px;
}
}
@keyframes p2 {
0% {
left: 0;
top: 100px;
}
50% {
left: 0px;
top: 800px;
}
100% {
left: 0;
top: 100px;
}
}
@-webkit-keyframes p3 {
0% {
left: 300px;
top: 900px;
}
50% {
left: 500px;
top: 0px;
}
100% {
left: 300px;
top: 900px;
}
}
@keyframes p3 {
0% {
left: 300px;
top: 900px;
}
50% {
left: 500px;
top: 0px;
}
100% {
left: 300px;
top: 900px;
}
}
@-webkit-keyframes p4 {
0% {
left: 1000px;
top: 500px;
}
50% {
left: 00px;
top: 500px;
}
100% {
left: 1000px;
top: 500px;
}
}
@keyframes p4 {
0% {
left: 1000px;
top: 500px;
}
50% {
left: 0px;
top: 500px;
}
100% {
left: 1000px;
top: 500px;
}
}
@-webkit-keyframes p5 {
0% {
left: 500px;
top: 1000px;
}
50% {
left: 50%;
top: 0px;
}
100% {
left: 500px;
top: 1000px;
}
}
@keyframes p5 {
0% {
left: 500px;
top: 1000px;
}
50% {
left: 50%;
top: 0px;
}
100% {
left: 500px;
top: 1000px;
}
}
@-webkit-keyframes p6 {
0% {
left: 500px;
top: 200px;
}
50% {
left: 50%;
top: 70%;
}
100% {
left: 500px;
top: 200px;
}
}
@keyframes p6 {
0% {
left: 500px;
top: 200px;
}
50% {
left: 50%;
top: 70%;
}
100% {
left: 500px;
top: 200px;
}
}
@-webkit-keyframes p7 {
0% {
left: 50px;
top: 10%;
}
50% {
left: 50%;
top: 10%;
}
100% {
left: 50px;
top: 10%;
}
}
@keyframes p7 {
0% {
left: 50px;
top: 10%;
}
50% {
left: 50%;
top: 10%;
}
100% {
left: 50px;
top: 10%;
}
}
@-webkit-keyframes p8 {
0% {
left: 0;
top: 20%;
}
50% {
left: 50%;
top: 20%;
}
100% {
left: 0;
top: 20%;
}
}
@keyframes p8 {
0% {
left: 0;
top: 20%;
}
50% {
left: 50%;
top: 20%;
}
100% {
left: 0;
top: 20%;
}
}
@-webkit-keyframes p9 {
0% {
left: 1000px;
top: 100px;
}
50% {
left: 500px;
top: 950px;
}
100% {
left: 1000px;
top: 100px;
}
}
@keyframes p9 {
0% {
left: 1000px;
top: 100px;
}
50% {
left: 500px;
top: 950px;
}
100% {
left: 1000px;
top: 100px;
}
} | 0.409929 | 0.102844 |
position: absolute;
right: -320px;
top: 20px;
width: 300px;
border-width: 0;
margin: 5px 15px 5px 15px;
padding: 5px 15px 10px 15px;
background: rgba(255, 255, 255, 0.6);
box-shadow: 0pt 0pt 3pt #888888;
vertical-align: middle;
opacity: 0;
transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-o-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-ms-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-moz-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-webkit-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
z-index: 999;
}
#filter.active{
opacity: 1;
right: 10px;
}
#fweekinfo{
height: 48px;
display: block;
}
#fweekinfo li {
cursor: pointer;
float: left;
margin-top: 10px;
padding: 7px;
width: 38px;
height: 38px;
display: inline-block;
background-color: #ddd;
text-align: center;
box-shadow: 0px 0px 2px #888888;
transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-o-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-ms-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-moz-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-webkit-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
}
#fweekinfo li:hover {
box-shadow: 0px 5px 5px #888888;
margin-top: 5px;
}
#fweekinfo li.active {
color: white;
background-color: #3f51b5;
box-shadow: 0px 10px 10px #888888;
margin-top: 0px;
}
.timepicker {
cursor: default;
}
.timecircle {
position: relative;
width: 200px;
height: 200px;
}
.selecteded {
color: white;
cursor: default;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#tp-time1, #tp-time2 {
cursor: pointer;
}
text {
cursor: pointer;
}
line, circle {
transition: transform 0.5s, opacity 0.5s;
-o-transition: opacity 0.5s, transform 0.5s;
-ms-transition: opacity 0.5s, transform 0.5s;
-moz-transition: opacity 0.5s, transform 0.5s;
-webkit-transition: opacity 0.5s, transform 0.5s;
} | css/filter.css | position: absolute;
right: -320px;
top: 20px;
width: 300px;
border-width: 0;
margin: 5px 15px 5px 15px;
padding: 5px 15px 10px 15px;
background: rgba(255, 255, 255, 0.6);
box-shadow: 0pt 0pt 3pt #888888;
vertical-align: middle;
opacity: 0;
transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-o-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-ms-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-moz-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
-webkit-transition: color 0.5s, opacity 0.3s ease-out, right 0.3s ease-out;
z-index: 999;
}
#filter.active{
opacity: 1;
right: 10px;
}
#fweekinfo{
height: 48px;
display: block;
}
#fweekinfo li {
cursor: pointer;
float: left;
margin-top: 10px;
padding: 7px;
width: 38px;
height: 38px;
display: inline-block;
background-color: #ddd;
text-align: center;
box-shadow: 0px 0px 2px #888888;
transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-o-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-ms-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-moz-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
-webkit-transition: color 0.1s, box-shadow 0.1s, margin-top 0.1s;
}
#fweekinfo li:hover {
box-shadow: 0px 5px 5px #888888;
margin-top: 5px;
}
#fweekinfo li.active {
color: white;
background-color: #3f51b5;
box-shadow: 0px 10px 10px #888888;
margin-top: 0px;
}
.timepicker {
cursor: default;
}
.timecircle {
position: relative;
width: 200px;
height: 200px;
}
.selecteded {
color: white;
cursor: default;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#tp-time1, #tp-time2 {
cursor: pointer;
}
text {
cursor: pointer;
}
line, circle {
transition: transform 0.5s, opacity 0.5s;
-o-transition: opacity 0.5s, transform 0.5s;
-ms-transition: opacity 0.5s, transform 0.5s;
-moz-transition: opacity 0.5s, transform 0.5s;
-webkit-transition: opacity 0.5s, transform 0.5s;
} | 0.314156 | 0.062075 |