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
/* Provide sufficient contrast against white background */ a { color: #0366d6; } code { color: #e01a76; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .btn-la_rive { background-color: lightgrey; border: 2px solid black; border-radius: 10px 2.5px 10px 2.5px; color: black; width: 100%; height: 30px; } .element_size_new_order { width: 600px; height: 30px; } .element_size_new_item { width: 600px; height: 30px; } .app-la_rive { background-color: white; } .vl { border-left: 6px solid green; } input[type='checkbox'] { display: none; } .wrap-collabsible { margin: 1.2rem 0; } .lbl-toggle { font-weight: bold; font-size: 20px; text-transform: uppercase; text-align: center; padding: 1rem; color: #DDD; background: #0069ff; cursor: pointer; border-radius: 7px; transition: all 0.25s ease-out; } .lbl-toggle:hover { color: #FFF; } .lbl-toggle::before { content: ' '; display: inline-block; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid currentColor; vertical-align: middle; margin-right: .7rem; transform: translateY(-2px); transition: transform .2s ease-out; } .toggle:checked + .lbl-toggle::before { transform: rotate(90deg) translateX(-3px); } .collapsible-content { max-height: 0px; overflow: hidden; transition: max-height .25s ease-in-out; } .toggle:checked + .lbl-toggle + .collapsible-content { max-height: 350px; } .toggle:checked + .lbl-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .collapsible-content .content-inner { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; } .collapsible-content p { margin-bottom: 0; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* 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.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid #888; width: auto; } /* The Close Button */ .close { color: #aaaaaa; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .truncate { width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
la_rive_admin/ClientApp/src/styles.css
/* Provide sufficient contrast against white background */ a { color: #0366d6; } code { color: #e01a76; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .btn-la_rive { background-color: lightgrey; border: 2px solid black; border-radius: 10px 2.5px 10px 2.5px; color: black; width: 100%; height: 30px; } .element_size_new_order { width: 600px; height: 30px; } .element_size_new_item { width: 600px; height: 30px; } .app-la_rive { background-color: white; } .vl { border-left: 6px solid green; } input[type='checkbox'] { display: none; } .wrap-collabsible { margin: 1.2rem 0; } .lbl-toggle { font-weight: bold; font-size: 20px; text-transform: uppercase; text-align: center; padding: 1rem; color: #DDD; background: #0069ff; cursor: pointer; border-radius: 7px; transition: all 0.25s ease-out; } .lbl-toggle:hover { color: #FFF; } .lbl-toggle::before { content: ' '; display: inline-block; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid currentColor; vertical-align: middle; margin-right: .7rem; transform: translateY(-2px); transition: transform .2s ease-out; } .toggle:checked + .lbl-toggle::before { transform: rotate(90deg) translateX(-3px); } .collapsible-content { max-height: 0px; overflow: hidden; transition: max-height .25s ease-in-out; } .toggle:checked + .lbl-toggle + .collapsible-content { max-height: 350px; } .toggle:checked + .lbl-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .collapsible-content .content-inner { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; } .collapsible-content p { margin-bottom: 0; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* 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.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid #888; width: auto; } /* The Close Button */ .close { color: #aaaaaa; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .truncate { width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
0.52829
0.107719
:root { --cssVariable-color: green; } /* MEDIA QUERIES */ /* Media queries are used to change css vars depending on the size of the screen */ /* we change the root var if the screen size has reached the max-width set */ @media (max-width: 350px) { :root { --cssVariable-color: #ff00ff; }, .container { grid-template-columns: auto 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "advert header" "advert content" "advert footer"; } } body{ background-color: azure; display: flex; } /* CSS GRID */ /* We set container css here */ .container { width: 100%; grid-template-columns: auto; justify-items: center; /*display: grid*/ /* grid-template-rows: 60px 60px 60px; OR grid-template-columns: 1fr 1fr 1fr; OR auto */ grid-template-rows: auto; /* sets the size to auto*/ /* grid-template-rows: 1fr 100px 1fr; */ /* We use fractions here */ /* setting the gap */ grid-column-gap: 10px; grid-row-gap: 10px; grid-template-areas: "header" "advert" "content" "footer"; } /* Repeat function */ /* grid-template-columns: repeat(3, minmax(60px, 1fr); */ /* Import font from other sites e.g google fonts */ h1 { font-family: Tangerine; font-size: 70px; color: var(--cssVariable-color, black); /* We can add a fall back color here just incase */ background-color:orange; /* We can add grid-area here*/ grid-area: header; display: flex; padding: 10px; justify-content: center; } h4 { font-family: Droid+Sans; font-size: 25px; grid-area: content; display: flex; } /* Padding is space around the text */ /* margin is space around the padding */ /* Important */ /* It overides all other styline */ .para{ grid-area: content; display: flex; color: purple !important; /* orange overides red, but with important property it overides evrything*/ } .para2{ color: orange; grid-area: content; display: flex; } .aside { color: var(--cssVariable-color); /* We can overide this var */ grid-area: footer; display: flex; } /* CSS VARIABLES */ /* This are variables that we can use widely in the style sheet */ /* Example */
css3/styles.css
:root { --cssVariable-color: green; } /* MEDIA QUERIES */ /* Media queries are used to change css vars depending on the size of the screen */ /* we change the root var if the screen size has reached the max-width set */ @media (max-width: 350px) { :root { --cssVariable-color: #ff00ff; }, .container { grid-template-columns: auto 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "advert header" "advert content" "advert footer"; } } body{ background-color: azure; display: flex; } /* CSS GRID */ /* We set container css here */ .container { width: 100%; grid-template-columns: auto; justify-items: center; /*display: grid*/ /* grid-template-rows: 60px 60px 60px; OR grid-template-columns: 1fr 1fr 1fr; OR auto */ grid-template-rows: auto; /* sets the size to auto*/ /* grid-template-rows: 1fr 100px 1fr; */ /* We use fractions here */ /* setting the gap */ grid-column-gap: 10px; grid-row-gap: 10px; grid-template-areas: "header" "advert" "content" "footer"; } /* Repeat function */ /* grid-template-columns: repeat(3, minmax(60px, 1fr); */ /* Import font from other sites e.g google fonts */ h1 { font-family: Tangerine; font-size: 70px; color: var(--cssVariable-color, black); /* We can add a fall back color here just incase */ background-color:orange; /* We can add grid-area here*/ grid-area: header; display: flex; padding: 10px; justify-content: center; } h4 { font-family: Droid+Sans; font-size: 25px; grid-area: content; display: flex; } /* Padding is space around the text */ /* margin is space around the padding */ /* Important */ /* It overides all other styline */ .para{ grid-area: content; display: flex; color: purple !important; /* orange overides red, but with important property it overides evrything*/ } .para2{ color: orange; grid-area: content; display: flex; } .aside { color: var(--cssVariable-color); /* We can overide this var */ grid-area: footer; display: flex; } /* CSS VARIABLES */ /* This are variables that we can use widely in the style sheet */ /* Example */
0.41253
0.18497
.faded-block { margin-bottom: 5px; padding-bottom: 5px; max-height:50px; overflow:hidden; position:relative; } .show-more { position:relative; } .read-more-less-button { background-image: linear-gradient(to bottom, transparent, white); text-align: center; width: 100%; position: absolute; left: 0; } .read-more-button { bottom: 0; height: 50px; } .read-more-less-button>button { position: absolute; bottom: -30px; left: 50%; } .spacer { margin-bottom:20px; /*border-bottom:1px solid black;*/ } .external-link { position: relative; height: 4em; display: inline-block; } .large-icon { font-size:4em; background-color: #eee; padding: 10px; border-radius: 6px; } .capper-icon { position: absolute; top: 4px; right: 0px; } uiload { display: inline-block; position: relative; } uiload > div { position: relative; } @-webkit-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .uil-reload-css { position: relative; width: 200px; height: 200px; } .uil-reload-css > div { -ms-animation: uil-reload-css 1s linear infinite; -moz-animation: uil-reload-css 1s linear infinite; -webkit-animation: uil-reload-css 1s linear infinite; -o-animation: uil-reload-css 1s linear infinite; animation: uil-reload-css 1s linear infinite; display: block; position: absolute; top: 20px; left: 20px; width: 160px; height: 160px; border-radius: 100px; border: 20px solid #c96f6f; border-top: 20px solid rgba(0, 0, 0, 0); border-right: 20px solid #c96f6f; border-bottom: 20px solid #c96f6f; } .uil-reload-css > div:after { content: " "; width: 0px; height: 0px; border-style: solid; border-width: 0 30px 30px 30px; border-color: transparent transparent #c96f6f transparent; display: block; -ms-transform: translate(-15px, 0) rotate(45deg); -moz-transform: translate(-15px, 0) rotate(45deg); -webkit-transform: translate(-15px, 0) rotate(45deg); -o-transform: translate(-15px, 0) rotate(45deg); transform: translate(-15px, 0) rotate(45deg); }
app/src/app.css
.faded-block { margin-bottom: 5px; padding-bottom: 5px; max-height:50px; overflow:hidden; position:relative; } .show-more { position:relative; } .read-more-less-button { background-image: linear-gradient(to bottom, transparent, white); text-align: center; width: 100%; position: absolute; left: 0; } .read-more-button { bottom: 0; height: 50px; } .read-more-less-button>button { position: absolute; bottom: -30px; left: 50%; } .spacer { margin-bottom:20px; /*border-bottom:1px solid black;*/ } .external-link { position: relative; height: 4em; display: inline-block; } .large-icon { font-size:4em; background-color: #eee; padding: 10px; border-radius: 6px; } .capper-icon { position: absolute; top: 4px; right: 0px; } uiload { display: inline-block; position: relative; } uiload > div { position: relative; } @-webkit-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes uil-reload-css { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { -ms-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .uil-reload-css { position: relative; width: 200px; height: 200px; } .uil-reload-css > div { -ms-animation: uil-reload-css 1s linear infinite; -moz-animation: uil-reload-css 1s linear infinite; -webkit-animation: uil-reload-css 1s linear infinite; -o-animation: uil-reload-css 1s linear infinite; animation: uil-reload-css 1s linear infinite; display: block; position: absolute; top: 20px; left: 20px; width: 160px; height: 160px; border-radius: 100px; border: 20px solid #c96f6f; border-top: 20px solid rgba(0, 0, 0, 0); border-right: 20px solid #c96f6f; border-bottom: 20px solid #c96f6f; } .uil-reload-css > div:after { content: " "; width: 0px; height: 0px; border-style: solid; border-width: 0 30px 30px 30px; border-color: transparent transparent #c96f6f transparent; display: block; -ms-transform: translate(-15px, 0) rotate(45deg); -moz-transform: translate(-15px, 0) rotate(45deg); -webkit-transform: translate(-15px, 0) rotate(45deg); -o-transform: translate(-15px, 0) rotate(45deg); transform: translate(-15px, 0) rotate(45deg); }
0.636805
0.143397
html, body { height: 100%; margin: 0; color: #F7F7F7; background: url(/img/navy_blue.png) repeat #222; font-size: 15px; font-family: 'Open Sans', sans-serif; } .full-height { height: 100% !important; } .pac-container { background: none repeat scroll 0 0 #333; color: #fff; z-index: 1030; min-width: 170px; } .pac-item-query { color: #FFF !important; } .pac-item:hover .pac-item-query { color: #555 !important; } .text-justify { text-align: justify; } /* ... */ .m0 { margin: 0; } .mt0 { margin-top: 0; } .mt1 { margin-top: 10px; } .mt2 { margin-top: 20px; } .mt3 { margin-top: 30px; } .mt4 { margin-top: 40px !important; } .mt6 { margin-top: 60px; } .mb0 { margin-bottom: 0 !important; } .mb1 { margin-bottom: 10px !important; } .mb2 { margin-bottom: 20px !important; } .mb6 { margin-bottom: 60px !important; } .ml1 { margin-left: 10px !important; } .ml2 { margin-left: 20px !important; } .ml3 { margin-left: 30px !important; } .p0 { padding: 0; } .p1 { padding: 10px; } .p2 { padding: 20px; } .pt0 { padding-top: 0 !important; } .pt1 { padding-top: 10px; } .pb1 { padding-bottom: 10px; } .pt6 { padding-top: 60px !important; } /* ... */ .clzk-hr { background: none repeat scroll 0 0 #2980B9; border: 0 none; height: 1px; width: 50%; } .clzk-navbar { margin-bottom: 0; border-bottom: none; box-shadow: 0 1px 10px #000; padding-left: 15px; padding-right: 15px; } .clzk-brand-container { background: #222; } .clzk-navbar-actions { background: #222; } @media (max-width: 360px) { .clzk-search-navbar { width: 220px; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-search-navbar { margin: 10px auto 0 auto; width: 325px; } } @media (min-width: 769px) { .clzk-search-navbar { margin: 10px auto 0 auto; width: 365px; } } #clzk-search-input { border: none; } .clzk-search-form-submit-btn:hover { color: #00c0ef; cursor: pointer; } .clzk-search-form-geolocation-btn { cursor: pointer; border: none; background: #FFF; } .clzk-search-form-geolocation-home-btn { cursor: pointer; width: 45px; border: none; background: #FFF; } .clzk-search-form-geolocation-btn:hover, .clzk-search-form-geolocation-home-btn:hover { color: #f56954 !important; } .clzk-search-form-submit-home-btn { width: 140px; cursor: pointer; } .xs-screen-menu-link { float: left !important; font-size: 25px; left: -15px; margin: 0; position: relative; top: 16px; } .xs-screen-menu-link-right { float: left !important; font-size: 25px; left: 0; margin: 0; margin-left: 20px; position: relative; top: 10px; } .xs-screen-menu-link-right .caret { float: right; position: relative; top: -20px; } .xs-screen-menu-link-home { float: left !important; font-size: 25px; left: 0; margin: 0; position: relative; top: 5px; } @media(min-width: 767px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: 0; } .xs-screen-menu-link-right { top: 5px; } .xs-screen-menu-link-right .caret { top: 15px; } } .label-danger { background: #f56954; } .clzk-center { font-size: 14px; font-weight: 400; line-height: 1.42857; margin-bottom: 0; padding: 6px 12px; vertical-align: middle; white-space: nowrap; } .clzk-global-container { padding-top: 5px; /*height: 100%;*/ } .clzk-left-region, .clzk-right-region { /*height: 100%;*/ /*overflow: hidden;*/ } .clzk-left-region { background: #222; border-right: 1px #555 solid; color: #FFF; padding-top: 15px; } .clzk-scrolling-content { /*height: 100%;*/ /*overflow: auto;*/ /*overflow-x: hidden;*/ padding-top: 15px; } .clzk-region { /*border: 2px #ddd solid;*/ /*background: #F7F7F7;*/ } /* LEFT REGION */ .clzk-left-region .clzk-context-links { font-size: 14px; color: #F7F7F7; } .clzk-left-region .clzk-context-links:hover { text-decoration: none; /*color: #f56954;*/ } /* CSS LOADER */ .loading-text { color: #333333; font-size: 50px; position: relative; text-shadow: 2px 2px 5px #000000; } .spinner { margin: 100px auto 0; width: 70px; text-align: center; } .spinner > div { width: 18px; height: 18px; background-color: #DDD; border-radius: 100%; display: inline-block; -webkit-animation: bouncedelay 1.4s infinite ease-in-out; animation: bouncedelay 1.4s infinite ease-in-out; /* Prevent first frame from flickering when animation starts */ -webkit-animation-fill-mode: both; animation-fill-mode: both; } .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0.0) } 40% { -webkit-transform: scale(1.0) } } @keyframes bouncedelay { 0%, 80%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0); } 40% { transform: scale(1.0); -webkit-transform: scale(1.0); } } /* TYPEAHEAD */ .twitter-typeahead { width: 100%; } .event-container { padding: 5px; } .event-title-container { border-bottom: 1px #444 solid; padding-left: 10px; /*margin-bottom: 2px;*/ } .calendar-container { margin-top: 5px; width: 100%; border-radius: 3px; background: #F7F7F7; color: #333; margin-bottom: 2px; } .calendar-month-container { background: #be413b; color: #FFF; border-radius: 3px 3px 0 0; font-weight: bold; } .calendar-day-container { font-size: 25px; font-weight: bold; } .calendar-year-container { font-size: 12px; font-weight: bold; } .time-container { width: 100%; border-radius: 3px; background: #F7F7F7; color: #333; font-size: 18px; font-weight: bold; margin-bottom: 5px; } .event-place-container { margin-top: 5px; border-top: 1px #444 solid; padding: 0 10px; } .event-description-container { text-align: justify; } .clzk-notif-bubble { color: #3498db; position: relative; font-size: 12px; top: 5px; } .clzk-navbar-profile-picture-container { position:relative; top: -8px; margin-right:8px; max-height: 38px; overflow: hidden; } .clzk-php-flash-messages-container { border-radius: 5px; padding: 10px; position: fixed; right: 30px; top: 70px; width: 300px; z-index: 1; } .clzk-flash-messages-container { border-radius: 5px; padding: 10px; position: fixed; right: 30px; top: 70px; width: 300px; display: none; z-index: 1; } .sign-container { font-size: 30px; } .clzk-breadcrumb { height: 60px; font-size: 30px; color: #DDD; background: none !important; padding: 0; } .clzk-breadcrumb > li + li:before { content: " > "; } .clzk-breadcrumb a { color: #FFF !important; } @media (max-width: 360px) { .clzk-breadcrumb { height: 30px; font-size: 20px; } } .participate-button { font-size: 20px; padding-left: 0; } .clzk-login-register-container { margin: auto; width: 500px; } @media (max-width: 360px) { .clzk-login-register-container { margin: auto; width: 100%; } } .fb-login-button-container { width: 125px; margin: auto; } .clzk-home-container h1{ font-size: 42px; color: #DDD; } .clzk-search-container { position: absolute; top: 35%; left: 18%; } @media (max-width: 360px) { .clzk-home-container { font-size: 15px; width: 100%; } .clzk-home-container h1{ font-size: 25px; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-home-container { width: 700px; } .clzk-search-container { position: absolute; top: 25%; left: 30px; } .clzk-preview-container { margin-top: 50px; } .navbar-nav > li { float: none; } .mm-list { width: 100%; } } .clzk-home-social-actions-container { background-color: #222; padding: 15px; margin: 40px auto; } @media (max-width: 360px) { .clzk-home-last-member-container { width: 100%; float: left; margin: 0; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-home-last-member-container { width: 50%; float: left; margin: 0; } } @media (min-width: 769px) { .clzk-home-last-member-container { width: 33.33%; float: left; margin: 0; } } .clzk-home-last-member { background: none repeat scroll 0 0 #222; border: 1px solid #333; color: #fff !important; margin: 0 auto; padding-bottom: 15px; padding-top: 15px; height: 155px; } .clzk-home-last-member-photo-container { overflow: hidden; max-height: 125px; } .clzk-home-last-member-photo-container img { width: 100%; overflow: hidden; } .clzk-home-last-member-container .username { font-size: 16px; } .clzk-home-user-instruments { width: 40%; float: left; margin-right: 5px; } .clzk-home-last-member:hover { background: #444; cursor: pointer; } .mm-page { height: 100% !important; } .mm-menu > .mm-panel { margin-top: 50px; } @media(max-width: 360px) { .navbar-home { padding-top: 50px !important; } } .login-dropdown { background-color: #222 !important; padding: 15px; width: 500px; }
web/css/global.css
html, body { height: 100%; margin: 0; color: #F7F7F7; background: url(/img/navy_blue.png) repeat #222; font-size: 15px; font-family: 'Open Sans', sans-serif; } .full-height { height: 100% !important; } .pac-container { background: none repeat scroll 0 0 #333; color: #fff; z-index: 1030; min-width: 170px; } .pac-item-query { color: #FFF !important; } .pac-item:hover .pac-item-query { color: #555 !important; } .text-justify { text-align: justify; } /* ... */ .m0 { margin: 0; } .mt0 { margin-top: 0; } .mt1 { margin-top: 10px; } .mt2 { margin-top: 20px; } .mt3 { margin-top: 30px; } .mt4 { margin-top: 40px !important; } .mt6 { margin-top: 60px; } .mb0 { margin-bottom: 0 !important; } .mb1 { margin-bottom: 10px !important; } .mb2 { margin-bottom: 20px !important; } .mb6 { margin-bottom: 60px !important; } .ml1 { margin-left: 10px !important; } .ml2 { margin-left: 20px !important; } .ml3 { margin-left: 30px !important; } .p0 { padding: 0; } .p1 { padding: 10px; } .p2 { padding: 20px; } .pt0 { padding-top: 0 !important; } .pt1 { padding-top: 10px; } .pb1 { padding-bottom: 10px; } .pt6 { padding-top: 60px !important; } /* ... */ .clzk-hr { background: none repeat scroll 0 0 #2980B9; border: 0 none; height: 1px; width: 50%; } .clzk-navbar { margin-bottom: 0; border-bottom: none; box-shadow: 0 1px 10px #000; padding-left: 15px; padding-right: 15px; } .clzk-brand-container { background: #222; } .clzk-navbar-actions { background: #222; } @media (max-width: 360px) { .clzk-search-navbar { width: 220px; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-search-navbar { margin: 10px auto 0 auto; width: 325px; } } @media (min-width: 769px) { .clzk-search-navbar { margin: 10px auto 0 auto; width: 365px; } } #clzk-search-input { border: none; } .clzk-search-form-submit-btn:hover { color: #00c0ef; cursor: pointer; } .clzk-search-form-geolocation-btn { cursor: pointer; border: none; background: #FFF; } .clzk-search-form-geolocation-home-btn { cursor: pointer; width: 45px; border: none; background: #FFF; } .clzk-search-form-geolocation-btn:hover, .clzk-search-form-geolocation-home-btn:hover { color: #f56954 !important; } .clzk-search-form-submit-home-btn { width: 140px; cursor: pointer; } .xs-screen-menu-link { float: left !important; font-size: 25px; left: -15px; margin: 0; position: relative; top: 16px; } .xs-screen-menu-link-right { float: left !important; font-size: 25px; left: 0; margin: 0; margin-left: 20px; position: relative; top: 10px; } .xs-screen-menu-link-right .caret { float: right; position: relative; top: -20px; } .xs-screen-menu-link-home { float: left !important; font-size: 25px; left: 0; margin: 0; position: relative; top: 5px; } @media(min-width: 767px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: 0; } .xs-screen-menu-link-right { top: 5px; } .xs-screen-menu-link-right .caret { top: 15px; } } .label-danger { background: #f56954; } .clzk-center { font-size: 14px; font-weight: 400; line-height: 1.42857; margin-bottom: 0; padding: 6px 12px; vertical-align: middle; white-space: nowrap; } .clzk-global-container { padding-top: 5px; /*height: 100%;*/ } .clzk-left-region, .clzk-right-region { /*height: 100%;*/ /*overflow: hidden;*/ } .clzk-left-region { background: #222; border-right: 1px #555 solid; color: #FFF; padding-top: 15px; } .clzk-scrolling-content { /*height: 100%;*/ /*overflow: auto;*/ /*overflow-x: hidden;*/ padding-top: 15px; } .clzk-region { /*border: 2px #ddd solid;*/ /*background: #F7F7F7;*/ } /* LEFT REGION */ .clzk-left-region .clzk-context-links { font-size: 14px; color: #F7F7F7; } .clzk-left-region .clzk-context-links:hover { text-decoration: none; /*color: #f56954;*/ } /* CSS LOADER */ .loading-text { color: #333333; font-size: 50px; position: relative; text-shadow: 2px 2px 5px #000000; } .spinner { margin: 100px auto 0; width: 70px; text-align: center; } .spinner > div { width: 18px; height: 18px; background-color: #DDD; border-radius: 100%; display: inline-block; -webkit-animation: bouncedelay 1.4s infinite ease-in-out; animation: bouncedelay 1.4s infinite ease-in-out; /* Prevent first frame from flickering when animation starts */ -webkit-animation-fill-mode: both; animation-fill-mode: both; } .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0.0) } 40% { -webkit-transform: scale(1.0) } } @keyframes bouncedelay { 0%, 80%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0); } 40% { transform: scale(1.0); -webkit-transform: scale(1.0); } } /* TYPEAHEAD */ .twitter-typeahead { width: 100%; } .event-container { padding: 5px; } .event-title-container { border-bottom: 1px #444 solid; padding-left: 10px; /*margin-bottom: 2px;*/ } .calendar-container { margin-top: 5px; width: 100%; border-radius: 3px; background: #F7F7F7; color: #333; margin-bottom: 2px; } .calendar-month-container { background: #be413b; color: #FFF; border-radius: 3px 3px 0 0; font-weight: bold; } .calendar-day-container { font-size: 25px; font-weight: bold; } .calendar-year-container { font-size: 12px; font-weight: bold; } .time-container { width: 100%; border-radius: 3px; background: #F7F7F7; color: #333; font-size: 18px; font-weight: bold; margin-bottom: 5px; } .event-place-container { margin-top: 5px; border-top: 1px #444 solid; padding: 0 10px; } .event-description-container { text-align: justify; } .clzk-notif-bubble { color: #3498db; position: relative; font-size: 12px; top: 5px; } .clzk-navbar-profile-picture-container { position:relative; top: -8px; margin-right:8px; max-height: 38px; overflow: hidden; } .clzk-php-flash-messages-container { border-radius: 5px; padding: 10px; position: fixed; right: 30px; top: 70px; width: 300px; z-index: 1; } .clzk-flash-messages-container { border-radius: 5px; padding: 10px; position: fixed; right: 30px; top: 70px; width: 300px; display: none; z-index: 1; } .sign-container { font-size: 30px; } .clzk-breadcrumb { height: 60px; font-size: 30px; color: #DDD; background: none !important; padding: 0; } .clzk-breadcrumb > li + li:before { content: " > "; } .clzk-breadcrumb a { color: #FFF !important; } @media (max-width: 360px) { .clzk-breadcrumb { height: 30px; font-size: 20px; } } .participate-button { font-size: 20px; padding-left: 0; } .clzk-login-register-container { margin: auto; width: 500px; } @media (max-width: 360px) { .clzk-login-register-container { margin: auto; width: 100%; } } .fb-login-button-container { width: 125px; margin: auto; } .clzk-home-container h1{ font-size: 42px; color: #DDD; } .clzk-search-container { position: absolute; top: 35%; left: 18%; } @media (max-width: 360px) { .clzk-home-container { font-size: 15px; width: 100%; } .clzk-home-container h1{ font-size: 25px; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-home-container { width: 700px; } .clzk-search-container { position: absolute; top: 25%; left: 30px; } .clzk-preview-container { margin-top: 50px; } .navbar-nav > li { float: none; } .mm-list { width: 100%; } } .clzk-home-social-actions-container { background-color: #222; padding: 15px; margin: 40px auto; } @media (max-width: 360px) { .clzk-home-last-member-container { width: 100%; float: left; margin: 0; } } @media (min-width: 361px) and (max-width: 768px) { .clzk-home-last-member-container { width: 50%; float: left; margin: 0; } } @media (min-width: 769px) { .clzk-home-last-member-container { width: 33.33%; float: left; margin: 0; } } .clzk-home-last-member { background: none repeat scroll 0 0 #222; border: 1px solid #333; color: #fff !important; margin: 0 auto; padding-bottom: 15px; padding-top: 15px; height: 155px; } .clzk-home-last-member-photo-container { overflow: hidden; max-height: 125px; } .clzk-home-last-member-photo-container img { width: 100%; overflow: hidden; } .clzk-home-last-member-container .username { font-size: 16px; } .clzk-home-user-instruments { width: 40%; float: left; margin-right: 5px; } .clzk-home-last-member:hover { background: #444; cursor: pointer; } .mm-page { height: 100% !important; } .mm-menu > .mm-panel { margin-top: 50px; } @media(max-width: 360px) { .navbar-home { padding-top: 50px !important; } } .login-dropdown { background-color: #222 !important; padding: 15px; width: 500px; }
0.4206
0.082734
@-moz-document url("https://*.twitter.com"), url("http://*.twitter.com"), domain("twitter.com") { .dashboard { position:fixed; } .dashboard *,.content-main *, .topbar *, .expansion-container *,.content-main, .content-narrow, .page-canvas, .permalink, .profile-card.profile-header .avatar, .module ul:first-child li:first-child .list-link, .module .flex-module:first-child, .module .contrast-flex-module:first-child, .module ul:last-child li:last-child .list-link, .module ul:last-child li.last-item .list-link, .module .list-link.last, .module .flex-module:last-child, .module .contrast-flex-module:last-child, .btn, .modal-header, .modal-content, input, textarea, div[contenteditable="true"], select { border-radius:0!important; } .global-nav { background: none!important; background-color: #000000!important; } .nav>li>a { line-height: 16px; } .nav .active a { background-color: #353535; background-image:none; text-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .open.stream-item { margin-bottom: 1px!important; margin-top: 2px!important; } .global-nav .search-icon { top: 1px; } .profile-card.profile-header { float: right; width: 561px!important; position: relative; border: 0; border-radius: 0!important; margin: 1px 0px 2px 0!important; } .wrapper-profile .profile-card.profile-header .profile-header-inner { background-size: 100%; background-position: center; } .profile-header-inner-overlay, .modal-content.clearfix, .modal-body.profile-modal { width: 561px!important; } .btn { background-image:none; } #profile_popup .modal { width: 561px!important; } .profile-card.profile-header .profile-header-inner { background-size: 100%; background-position: center; } .content-header .header-inner, .content-no-header .no-header-inner { min-height: 32px; } .wrapper, .wrapper-narrow, .wrapper-permalink { width: 865px!important; padding:42px 0 15px!important; } .wrapper { background : none!important; } .content-main { width: 561px!important; margin: 0!important; } .module { margin-bottom: 1px!important; } .stream-item, .unfocusable-stream-item, .open.stream-item { border-left:0; border-right:0; } .profile-card.profile-header .profile-picture, .module, .stream-item, .content-header, .content-no-header, .stream-item.open { border : 0!important; } .module.site-footer { display : none; } }
data/usercss/87885.user.css
@-moz-document url("https://*.twitter.com"), url("http://*.twitter.com"), domain("twitter.com") { .dashboard { position:fixed; } .dashboard *,.content-main *, .topbar *, .expansion-container *,.content-main, .content-narrow, .page-canvas, .permalink, .profile-card.profile-header .avatar, .module ul:first-child li:first-child .list-link, .module .flex-module:first-child, .module .contrast-flex-module:first-child, .module ul:last-child li:last-child .list-link, .module ul:last-child li.last-item .list-link, .module .list-link.last, .module .flex-module:last-child, .module .contrast-flex-module:last-child, .btn, .modal-header, .modal-content, input, textarea, div[contenteditable="true"], select { border-radius:0!important; } .global-nav { background: none!important; background-color: #000000!important; } .nav>li>a { line-height: 16px; } .nav .active a { background-color: #353535; background-image:none; text-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .open.stream-item { margin-bottom: 1px!important; margin-top: 2px!important; } .global-nav .search-icon { top: 1px; } .profile-card.profile-header { float: right; width: 561px!important; position: relative; border: 0; border-radius: 0!important; margin: 1px 0px 2px 0!important; } .wrapper-profile .profile-card.profile-header .profile-header-inner { background-size: 100%; background-position: center; } .profile-header-inner-overlay, .modal-content.clearfix, .modal-body.profile-modal { width: 561px!important; } .btn { background-image:none; } #profile_popup .modal { width: 561px!important; } .profile-card.profile-header .profile-header-inner { background-size: 100%; background-position: center; } .content-header .header-inner, .content-no-header .no-header-inner { min-height: 32px; } .wrapper, .wrapper-narrow, .wrapper-permalink { width: 865px!important; padding:42px 0 15px!important; } .wrapper { background : none!important; } .content-main { width: 561px!important; margin: 0!important; } .module { margin-bottom: 1px!important; } .stream-item, .unfocusable-stream-item, .open.stream-item { border-left:0; border-right:0; } .profile-card.profile-header .profile-picture, .module, .stream-item, .content-header, .content-no-header, .stream-item.open { border : 0!important; } .module.site-footer { display : none; } }
0.135518
0.043427
* { box-sizing: border-box; } html {background-color:#fef9f557;} body { margin: 0; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.5; color: #606c71; } main { padding: 20px; max-width: 1200px; margin: 0 auto; } ul { list-style-type: none; } a:not(.btn), a:active:not(.btn), a:visited:not(.btn) { color: #49ccf1; text-decoration: underline; } a:hover { text-decoration: underline; } img { float:right; max-width: 100%; } #children { max-width: 50%; border-radius: 50px; } .hero {padding: 0;} #banner { width: 100%; } h1, h2, h3, h4 { display: inline-block; } h1 { text-align: center; font: green; } h3 { font-size:1.5em;o line-height:3; } .date { color: #8e8e8e; font-weight: 100; font-size: 1.3em; } .asterisk { color: grey; font-size:10pt; } .width50 {width:50%;} .strong {font-weight:bold;} .larger {font-size:150%;} .indent {margin-left:100px;} .float-left {float:left;} .float-right {float:right;} .imgWrap { position: relative; } .tooltip { float:right; width:20px; } .tooltip img { padding: 0; } .imgDescription { position: absolute; bottom: 0; background: rgba(244, 117, 255, 0.78); padding: 10px; color: #fff; visibility: hidden; opacity: 0; -webkit-transition: visibility opacity 0.2s; } .imgWrap:hover .imgDescription { visibility: visible; opacity: 1; } .clear{ clear:both; } .btn { display: inline-block; color: #007F5E; text-decoration: none; border-style: solid; border-width: 1px; border-radius: 0.3rem; transition: color 0.2s, background-color 0.2s, border-color 0.2s; padding: 15px; background-color: #fff; width: 200px; margin-left: auto; margin-right: 20px; margin-bottom: 15px; } .btn:hover { color: white; text-decoration: none; background-color: #007F5E; } .page-header { text-align: center; background-color: #2c2e31; padding: 20px; color: white; } .project-tagline { margin-bottom: 2rem; font-weight: normal; opacity: 0.7; font-size: 1rem; } .main-content { background:white; padding-bottom: 120px; } .main-content :first-child { margin-top: 0; } .main-content img { max-width: 100%; } .main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 { margin-top: 2rem; margin-bottom: 1rem; font-weight: normal; color: #7d06c4; } .main-content p { margin-bottom: 1em; } .main-content code { padding: 2px 4px; font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 0.9rem; color: #383e41; background-color: #f3f6fa; border-radius: 0.3rem; } .main-content pre { padding: 0.8rem; margin-top: 0; margin-bottom: 1rem; font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace; color: #567482; word-wrap: normal; background-color: #f3f6fa; border: solid 1px #dce6f0; border-radius: 0.3rem; } .main-content pre > code { padding: 0; margin: 0; font-size: 0.9rem; color: #567482; word-break: normal; white-space: pre; background: transparent; border: 0; } .main-content .highlight { margin-bottom: 1rem; } .main-content .highlight pre { margin-bottom: 0; word-break: normal; } .main-content .highlight pre, .main-content pre { padding: 0.8rem; overflow: auto; font-size: 0.9rem; line-height: 1.45; border-radius: 0.3rem; } .main-content pre code, .main-content pre tt { display: inline; max-width: initial; padding: 0; margin: 0; overflow: initial; line-height: inherit; word-wrap: normal; background-color: transparent; border: 0; } .main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after { content: normal; } .main-content ul, .main-content ol { margin-top: 0; } .main-content blockquote { padding: 0 1rem; margin-left: 0; color: #819198; border-left: 0.3rem solid #dce6f0; } .main-content blockquote > :first-child { margin-top: 0; } .main-content blockquote > :last-child { margin-bottom: 0; } .main-content table { /* display: block; */ width: 100%; overflow: auto; word-break: normal; word-break: keep-all; } .main-content table th { font-weight: bold; } .main-content table th, .main-content table td { padding: 0.5rem 1rem; border: 1px solid #e9ebec; } .main-content dl { padding: 0; } .main-content dl dt { padding: 0; margin-top: 1rem; font-size: 1rem; font-weight: bold; } .main-content dl dd { padding: 0; margin-bottom: 1rem; } .main-content hr { height: 2px; padding: 0; margin: 1rem 0; background-color: #eff0f1; border: 0; } #no-spam { color:rgba(255, 255, 255, 0.7); } .site-footer { padding-top: 2rem; border-top: solid 1px #eff0f1; background-color: #49ccf1; color: white; } @media only screen and (min-width: 769px) { #sketchup { max-width: 50%; padding:20px; } } @media only screen and (max-width: 768px) { p,li { font-size: 11pt; } .btn { display: block; margin-right:auto; } .date { font-size: 1.1em; } } @media only screen and (max-width: 450px) { h1 { font-size: 1.3em; margin: 0; } h2 { font-size: 1.1em; } }
CSS/stylesheet-deprecated.css
* { box-sizing: border-box; } html {background-color:#fef9f557;} body { margin: 0; font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.5; color: #606c71; } main { padding: 20px; max-width: 1200px; margin: 0 auto; } ul { list-style-type: none; } a:not(.btn), a:active:not(.btn), a:visited:not(.btn) { color: #49ccf1; text-decoration: underline; } a:hover { text-decoration: underline; } img { float:right; max-width: 100%; } #children { max-width: 50%; border-radius: 50px; } .hero {padding: 0;} #banner { width: 100%; } h1, h2, h3, h4 { display: inline-block; } h1 { text-align: center; font: green; } h3 { font-size:1.5em;o line-height:3; } .date { color: #8e8e8e; font-weight: 100; font-size: 1.3em; } .asterisk { color: grey; font-size:10pt; } .width50 {width:50%;} .strong {font-weight:bold;} .larger {font-size:150%;} .indent {margin-left:100px;} .float-left {float:left;} .float-right {float:right;} .imgWrap { position: relative; } .tooltip { float:right; width:20px; } .tooltip img { padding: 0; } .imgDescription { position: absolute; bottom: 0; background: rgba(244, 117, 255, 0.78); padding: 10px; color: #fff; visibility: hidden; opacity: 0; -webkit-transition: visibility opacity 0.2s; } .imgWrap:hover .imgDescription { visibility: visible; opacity: 1; } .clear{ clear:both; } .btn { display: inline-block; color: #007F5E; text-decoration: none; border-style: solid; border-width: 1px; border-radius: 0.3rem; transition: color 0.2s, background-color 0.2s, border-color 0.2s; padding: 15px; background-color: #fff; width: 200px; margin-left: auto; margin-right: 20px; margin-bottom: 15px; } .btn:hover { color: white; text-decoration: none; background-color: #007F5E; } .page-header { text-align: center; background-color: #2c2e31; padding: 20px; color: white; } .project-tagline { margin-bottom: 2rem; font-weight: normal; opacity: 0.7; font-size: 1rem; } .main-content { background:white; padding-bottom: 120px; } .main-content :first-child { margin-top: 0; } .main-content img { max-width: 100%; } .main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 { margin-top: 2rem; margin-bottom: 1rem; font-weight: normal; color: #7d06c4; } .main-content p { margin-bottom: 1em; } .main-content code { padding: 2px 4px; font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 0.9rem; color: #383e41; background-color: #f3f6fa; border-radius: 0.3rem; } .main-content pre { padding: 0.8rem; margin-top: 0; margin-bottom: 1rem; font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace; color: #567482; word-wrap: normal; background-color: #f3f6fa; border: solid 1px #dce6f0; border-radius: 0.3rem; } .main-content pre > code { padding: 0; margin: 0; font-size: 0.9rem; color: #567482; word-break: normal; white-space: pre; background: transparent; border: 0; } .main-content .highlight { margin-bottom: 1rem; } .main-content .highlight pre { margin-bottom: 0; word-break: normal; } .main-content .highlight pre, .main-content pre { padding: 0.8rem; overflow: auto; font-size: 0.9rem; line-height: 1.45; border-radius: 0.3rem; } .main-content pre code, .main-content pre tt { display: inline; max-width: initial; padding: 0; margin: 0; overflow: initial; line-height: inherit; word-wrap: normal; background-color: transparent; border: 0; } .main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after { content: normal; } .main-content ul, .main-content ol { margin-top: 0; } .main-content blockquote { padding: 0 1rem; margin-left: 0; color: #819198; border-left: 0.3rem solid #dce6f0; } .main-content blockquote > :first-child { margin-top: 0; } .main-content blockquote > :last-child { margin-bottom: 0; } .main-content table { /* display: block; */ width: 100%; overflow: auto; word-break: normal; word-break: keep-all; } .main-content table th { font-weight: bold; } .main-content table th, .main-content table td { padding: 0.5rem 1rem; border: 1px solid #e9ebec; } .main-content dl { padding: 0; } .main-content dl dt { padding: 0; margin-top: 1rem; font-size: 1rem; font-weight: bold; } .main-content dl dd { padding: 0; margin-bottom: 1rem; } .main-content hr { height: 2px; padding: 0; margin: 1rem 0; background-color: #eff0f1; border: 0; } #no-spam { color:rgba(255, 255, 255, 0.7); } .site-footer { padding-top: 2rem; border-top: solid 1px #eff0f1; background-color: #49ccf1; color: white; } @media only screen and (min-width: 769px) { #sketchup { max-width: 50%; padding:20px; } } @media only screen and (max-width: 768px) { p,li { font-size: 11pt; } .btn { display: block; margin-right:auto; } .date { font-size: 1.1em; } } @media only screen and (max-width: 450px) { h1 { font-size: 1.3em; margin: 0; } h2 { font-size: 1.1em; } }
0.479016
0.117218
body { //background-image: url('../img/bg03.jpg'); background-color: black; background-repeat: no-repeat; //background-position: bottom center; background-size: 1280px 720px; height: 100%; width: 100%; overflow-x: hidden; overflow-y: hidden; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } .header { position:absolute; left: 0px; top: 60px; width: 504px; //height: 35px; background-color: rgb(5,5,5); color: white; font-size: 26px; cursor: pointer; text-align: right; box-shadow: 2px -4px 5px #cccccc; padding:10px; } .subheader { position:absolute; left: 0px; top: 120px; width: 1030px; //height: 35px; //background-color: white; color: black; font-size: 28px; cursor: pointer; text-align: right; } .button { background-color: rgb(255,255,255); //background-color: rgb(57,6,74); padding: 10px; color: black; font-size: 22px; cursor: pointer; text-align: center; width: 150px; font-size: 22px; } .button_focus { background-color: rgb(238,51,30); color: white; opacity: 1.0; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; //-webkit-border-radius: 10px; //border: 2px solid rgb(127,127,127); box-shadow: 0px 0px 20px #cccccc; } #mainmenulist::-webkit-scrollbar { width: 12px; background-color: rgba(255,255,255,0); } #mainmenulist::-webkit-scrollbar-thumb { border-radius: 10px; box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: rgb(255,255,255); } #mainmenulist { position:absolute; left: 115px; top: 119px; //width: 450px; height: 500px; overflow-x: hidden; overflow-y: scroll; list-style: none; } #appsize { position:absolute; left: 90px; top: 670px; width: 1095px; //height: 535px; font: 20px sans-serif; color: white; text-align: center; } #title { background-color: #AF5327; color: rgb(5,5,5); font-size: 30px; position:absolute; left: 0px; top: 40px; width: 1190px; height: 50px; padding-left: 200px; padding-top: 15px; opacity: 0.75; overflow-x: hidden; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; box-shadow: 0px 10px 20px #000000; } .button1_focus { background-color: rgb(238,51,30); color: white; opacity: 1.0; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; box-shadow: 0px 0px 20px #cccccc; } .heading{ background-color: rgb(255,255,255); -webkit-border-radius: 5px; color: black; text-align: center; opacity: 0.9; } #leftarrow { position:absolute; left:30px; top:310px; width: 46px; opacity:0.3; } #rightarrow { position:absolute; left:1194px; top:310px; width: 46px; opacity:0.3; } .icon { position: relative; width: 100px; height: 100px; opacity: 1.0; color: black; padding: 5px; background-size: 100% 100%; //-webkit-border-radius: 10px; //box-shadow: 0px 0px 23px #222222; } .icon-caption { position: relative; width: 100px; height: 38px; opacity: 1.0; font: 18px sans-serif; padding-top: 5px; } .icon-nonfocus { position: absolute; width: 110px; height: 150px; opacity: 1.0; color: black; -webkit-border-radius: 5px; text-align: center; padding: 5px; border: 4px solid rgba(255,255,255,0.0); opacity:1.0; } .icon-focus { position: absolute; width: 115px; height: 160px; opacity: 1.0; color: black; background-color: white; -webkit-border-radius: 10px; text-align: center; padding: 5px; border: 4px solid rgba(255,255,255,0.2); opacity:1.0; } ul.mainmenulist { padding: 0; margin: 0; position: absolute; width: 400px; } .mainmenulist li { display: none; overflow: hidden; width: 400px; //height: 40px; text-align: left; padding-left: 11px; //padding-top: 5px; font: 20px sans-serif; color: #ffffff; //background-color: rgb(0,43,89); } .mainmenulist .lisel { color: rgb(3,66,97); //background-color: rgb(255,255,255); background-color: rgb(255,255,0); } .channelicon { padding-right:10px; padding-top:5px; height:40px; width:40px; }
mediaplay_list/res/css/theme01.css
body { //background-image: url('../img/bg03.jpg'); background-color: black; background-repeat: no-repeat; //background-position: bottom center; background-size: 1280px 720px; height: 100%; width: 100%; overflow-x: hidden; overflow-y: hidden; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } .header { position:absolute; left: 0px; top: 60px; width: 504px; //height: 35px; background-color: rgb(5,5,5); color: white; font-size: 26px; cursor: pointer; text-align: right; box-shadow: 2px -4px 5px #cccccc; padding:10px; } .subheader { position:absolute; left: 0px; top: 120px; width: 1030px; //height: 35px; //background-color: white; color: black; font-size: 28px; cursor: pointer; text-align: right; } .button { background-color: rgb(255,255,255); //background-color: rgb(57,6,74); padding: 10px; color: black; font-size: 22px; cursor: pointer; text-align: center; width: 150px; font-size: 22px; } .button_focus { background-color: rgb(238,51,30); color: white; opacity: 1.0; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; //-webkit-border-radius: 10px; //border: 2px solid rgb(127,127,127); box-shadow: 0px 0px 20px #cccccc; } #mainmenulist::-webkit-scrollbar { width: 12px; background-color: rgba(255,255,255,0); } #mainmenulist::-webkit-scrollbar-thumb { border-radius: 10px; box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: rgb(255,255,255); } #mainmenulist { position:absolute; left: 115px; top: 119px; //width: 450px; height: 500px; overflow-x: hidden; overflow-y: scroll; list-style: none; } #appsize { position:absolute; left: 90px; top: 670px; width: 1095px; //height: 535px; font: 20px sans-serif; color: white; text-align: center; } #title { background-color: #AF5327; color: rgb(5,5,5); font-size: 30px; position:absolute; left: 0px; top: 40px; width: 1190px; height: 50px; padding-left: 200px; padding-top: 15px; opacity: 0.75; overflow-x: hidden; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; box-shadow: 0px 10px 20px #000000; } .button1_focus { background-color: rgb(238,51,30); color: white; opacity: 1.0; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; box-shadow: 0px 0px 20px #cccccc; } .heading{ background-color: rgb(255,255,255); -webkit-border-radius: 5px; color: black; text-align: center; opacity: 0.9; } #leftarrow { position:absolute; left:30px; top:310px; width: 46px; opacity:0.3; } #rightarrow { position:absolute; left:1194px; top:310px; width: 46px; opacity:0.3; } .icon { position: relative; width: 100px; height: 100px; opacity: 1.0; color: black; padding: 5px; background-size: 100% 100%; //-webkit-border-radius: 10px; //box-shadow: 0px 0px 23px #222222; } .icon-caption { position: relative; width: 100px; height: 38px; opacity: 1.0; font: 18px sans-serif; padding-top: 5px; } .icon-nonfocus { position: absolute; width: 110px; height: 150px; opacity: 1.0; color: black; -webkit-border-radius: 5px; text-align: center; padding: 5px; border: 4px solid rgba(255,255,255,0.0); opacity:1.0; } .icon-focus { position: absolute; width: 115px; height: 160px; opacity: 1.0; color: black; background-color: white; -webkit-border-radius: 10px; text-align: center; padding: 5px; border: 4px solid rgba(255,255,255,0.2); opacity:1.0; } ul.mainmenulist { padding: 0; margin: 0; position: absolute; width: 400px; } .mainmenulist li { display: none; overflow: hidden; width: 400px; //height: 40px; text-align: left; padding-left: 11px; //padding-top: 5px; font: 20px sans-serif; color: #ffffff; //background-color: rgb(0,43,89); } .mainmenulist .lisel { color: rgb(3,66,97); //background-color: rgb(255,255,255); background-color: rgb(255,255,0); } .channelicon { padding-right:10px; padding-top:5px; height:40px; width:40px; }
0.328853
0.042009
body { font-size: 12px; font-family: sans-serif } input.submit { font-size: 20px; background-color: lime } div.main table.basic tr.line td { padding-top: 0.5em } div.main table.basic td.heading { font-family: serif; font-weight: bold; text-align: right; width: 20% } div.main table.basic tr.line.description td.heading, div.main table.basic tr.line.recipients td.heading { vertical-align: top; } div.main table.basic td.value { font-family: monospace; } div.main table.basic td.value input, div.main table.basic td.value textarea { font: 10pt monospace; width: 90%; } #branch_name { /* subtract width of "r/" prefix */ width: calc(90% - 1.34em); } div.main table.basic td.value span.mode { font-style: italic } div.main table.basic td.value div.buttons { float: right } div.main table.basic td.status { text-align: right; width: 20%; font-weight: bold } div.main table.basic td.help { font-style: italic; border-bottom: 1px solid #cca; padding-left: 30% } div.main table.filters tr.applyfilters td.value { padding-top: 0.5em; text-align: right } div.main table.filters tr.applyfilters td.legend { padding-top: 0.5em; font-weight: bold } div.main table.filters tr.reviewers td { padding-top: 0.5em } div.main table.filters tr.reviewers td.reviewers { font-weight: bold; text-align: right; width: 30% } div.main table.filters tr.reviewers td.files { font-family: monospace; width: 70% } div.main table.filters tr.reviewers td.files span.file { white-space: pre } div.main table.filters tr.reviewers td.no-one { text-align: right; color: red; font-weight: bold } div.main table.filters tr.watchers td.spacer { padding-top: 0; border-bottom: 1px solid #cca } div.main table.filters tr.watchers td.heading { padding-top: 0.5em; text-align: right; font-weight: bold } div.main table.filters tr.watchers td.watchers { padding-top: 0.5em; } div.main table.filters tr.buttons td.spacer { padding-top: 0; border-bottom: 1px solid #cca } div.main table.filters tr.buttons td.buttons { padding-top: 0.5em; text-align: right } div.comment > div.text { font-family: monospace; font-size: 11px; background-color: #fff; border: 1px solid #bbb; margin-top: 3px; padding: 5px; white-space: pre-wrap } div.comment > div.text > textarea { font-family: monospace; font-size: 11px; background-color: #fff; border: none; width: 100%; resize: none } div#recipients table { width: 100% } div#recipients .key { font-weight: bold } div#recipients select { width: 100% } div#recipients input { font-family: monospace; width: 100% } p.remotehost { margin-top: 0; margin-bottom: 3px } p.remotepath { margin-top: 3px; margin-bottom: 0 } code.inset > a { color: #222 } code.inset > a:hover { color: blue; text-decoration: underline } select.repository-select, input.remote, input.workbranch, input.upstreamcommit { width: 40em } input.remote, input.workbranch, input.upstreamcommit { font-family: monospace }
src/resources/createreview.css
body { font-size: 12px; font-family: sans-serif } input.submit { font-size: 20px; background-color: lime } div.main table.basic tr.line td { padding-top: 0.5em } div.main table.basic td.heading { font-family: serif; font-weight: bold; text-align: right; width: 20% } div.main table.basic tr.line.description td.heading, div.main table.basic tr.line.recipients td.heading { vertical-align: top; } div.main table.basic td.value { font-family: monospace; } div.main table.basic td.value input, div.main table.basic td.value textarea { font: 10pt monospace; width: 90%; } #branch_name { /* subtract width of "r/" prefix */ width: calc(90% - 1.34em); } div.main table.basic td.value span.mode { font-style: italic } div.main table.basic td.value div.buttons { float: right } div.main table.basic td.status { text-align: right; width: 20%; font-weight: bold } div.main table.basic td.help { font-style: italic; border-bottom: 1px solid #cca; padding-left: 30% } div.main table.filters tr.applyfilters td.value { padding-top: 0.5em; text-align: right } div.main table.filters tr.applyfilters td.legend { padding-top: 0.5em; font-weight: bold } div.main table.filters tr.reviewers td { padding-top: 0.5em } div.main table.filters tr.reviewers td.reviewers { font-weight: bold; text-align: right; width: 30% } div.main table.filters tr.reviewers td.files { font-family: monospace; width: 70% } div.main table.filters tr.reviewers td.files span.file { white-space: pre } div.main table.filters tr.reviewers td.no-one { text-align: right; color: red; font-weight: bold } div.main table.filters tr.watchers td.spacer { padding-top: 0; border-bottom: 1px solid #cca } div.main table.filters tr.watchers td.heading { padding-top: 0.5em; text-align: right; font-weight: bold } div.main table.filters tr.watchers td.watchers { padding-top: 0.5em; } div.main table.filters tr.buttons td.spacer { padding-top: 0; border-bottom: 1px solid #cca } div.main table.filters tr.buttons td.buttons { padding-top: 0.5em; text-align: right } div.comment > div.text { font-family: monospace; font-size: 11px; background-color: #fff; border: 1px solid #bbb; margin-top: 3px; padding: 5px; white-space: pre-wrap } div.comment > div.text > textarea { font-family: monospace; font-size: 11px; background-color: #fff; border: none; width: 100%; resize: none } div#recipients table { width: 100% } div#recipients .key { font-weight: bold } div#recipients select { width: 100% } div#recipients input { font-family: monospace; width: 100% } p.remotehost { margin-top: 0; margin-bottom: 3px } p.remotepath { margin-top: 3px; margin-bottom: 0 } code.inset > a { color: #222 } code.inset > a:hover { color: blue; text-decoration: underline } select.repository-select, input.remote, input.workbranch, input.upstreamcommit { width: 40em } input.remote, input.workbranch, input.upstreamcommit { font-family: monospace }
0.575827
0.238983
.admin-bar .site-navigation-fixed.navigation-top { top: 30px; } header .navigation-top { background: #301659; border-bottom: none; } header .navigation-top .wrap { width: 100%; padding-left: 60px; padding-right: 60px; max-width: 100% !important; } header .navigation-top .custom-logo-link { display: none; float: left; } header .navigation-top #site-navigation { clear: none; float: right; margin-top: 15px; } header .navigation-top .current-menu-item > a, header .navigation-top .navigation-top .current_page_item > a { color: #FFFFFF; } header .site-navigation-fixed .custom-logo-link { display: block; } .panel-content .wrap { padding-top: 8em; } .w-100 { width: 100%; } .container { float: none; margin: 0 auto; width: 100%; } .container.container--wide { max-width: 1320px; } .container.container--wide .container--wide-content { transform: matrix(1, 0, 0, 1, 0, 0); max-width: 960px; padding: 80px 9.09091%; background-color: #4663CE; box-shadow: 0 4px 37px rgba(26, 16, 51, 0.15); margin-top: -8%; position: relative; z-index: 2; } .container.container--wide .container--wide-content h1 { position: relative; padding-bottom: 20px; } .container.container--wide .container--wide-content h1:after { content: ""; position: absolute; width: 40px; height: 5px; background: #FFFFFF; bottom: 0; left: 0; } .header-slider { padding-left: 60px; padding-right: 60px; position: relative; padding-bottom: 40px; background: #301659; } .header-slider:after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100vw; height: 100px; background-color: #f5f5f5; z-index: 1; } .header-slider .header-inner { position: relative; z-index: 2; } .header-slider .header-inner .slider-container { position: relative; width: 100%; height: 0; padding-bottom: 48.02343%; overflow: hidden; } .header-slider .header-inner .slider-container .slider { overflow: hidden; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .header-slider .header-inner .slider-container .slider .slick-prev { left: 25px; z-index: 2; } .header-slider .header-inner .slider-container .slider .slick-next { right: 25px; } .header-slider .header-inner .slider-container .slider .slide-img { width: 100%; } .up-slider-text { position: relative; } h1 { font-family: CircularStd-Book, Arial, Helvetica, sans-serif; font-size: 55px; color: #FFFFFF; } .white-text { color: #FFFFFF; } p.white-text { font-family: CircularStd-Book, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 22px; }
css/style.css
.admin-bar .site-navigation-fixed.navigation-top { top: 30px; } header .navigation-top { background: #301659; border-bottom: none; } header .navigation-top .wrap { width: 100%; padding-left: 60px; padding-right: 60px; max-width: 100% !important; } header .navigation-top .custom-logo-link { display: none; float: left; } header .navigation-top #site-navigation { clear: none; float: right; margin-top: 15px; } header .navigation-top .current-menu-item > a, header .navigation-top .navigation-top .current_page_item > a { color: #FFFFFF; } header .site-navigation-fixed .custom-logo-link { display: block; } .panel-content .wrap { padding-top: 8em; } .w-100 { width: 100%; } .container { float: none; margin: 0 auto; width: 100%; } .container.container--wide { max-width: 1320px; } .container.container--wide .container--wide-content { transform: matrix(1, 0, 0, 1, 0, 0); max-width: 960px; padding: 80px 9.09091%; background-color: #4663CE; box-shadow: 0 4px 37px rgba(26, 16, 51, 0.15); margin-top: -8%; position: relative; z-index: 2; } .container.container--wide .container--wide-content h1 { position: relative; padding-bottom: 20px; } .container.container--wide .container--wide-content h1:after { content: ""; position: absolute; width: 40px; height: 5px; background: #FFFFFF; bottom: 0; left: 0; } .header-slider { padding-left: 60px; padding-right: 60px; position: relative; padding-bottom: 40px; background: #301659; } .header-slider:after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100vw; height: 100px; background-color: #f5f5f5; z-index: 1; } .header-slider .header-inner { position: relative; z-index: 2; } .header-slider .header-inner .slider-container { position: relative; width: 100%; height: 0; padding-bottom: 48.02343%; overflow: hidden; } .header-slider .header-inner .slider-container .slider { overflow: hidden; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .header-slider .header-inner .slider-container .slider .slick-prev { left: 25px; z-index: 2; } .header-slider .header-inner .slider-container .slider .slick-next { right: 25px; } .header-slider .header-inner .slider-container .slider .slide-img { width: 100%; } .up-slider-text { position: relative; } h1 { font-family: CircularStd-Book, Arial, Helvetica, sans-serif; font-size: 55px; color: #FFFFFF; } .white-text { color: #FFFFFF; } p.white-text { font-family: CircularStd-Book, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 22px; }
0.404625
0.044869
* { margin: 0; padding: 0; box-sizing: border-box; } h1, h2, h3, h4, h5, h6 { margin: 1.5em 0; } h1 { text-align: center; } hr { margin: 50px 0; } body { max-width: 1200px; margin: 0 auto; padding: 50px; } p { margin: 20px 0; font-size: 20px; line-height: 30px; } img { max-width: 100%; } ul { padding-left: 50px; margin-bottom: 50px; } .wrapper, .wrapper-2, .wrapper-3, .wrapper-4, .wrapper-5 { grid-gap: 10px; background: #FFF4E6; border: 2px solid #F76707; border-radius: 5px; margin-bottom: 50px; } .wrapper > div, .wrapper-2 > div, .wrapper-3 > div, .wrapper-4 > div, .wrapper-5 > div { padding: 20px; background: #FFD8A8; color: #DC4838; border: 2px solid #FFA94D; border-radius: 5px; } .nested { padding: 20px; background: #FFFAD9; color: #DC4838; border: 2px solid #FFEC8F; border-radius: 5px; } .header { grid-area: hd; } .footer { grid-area: ft; } .sidebar { grid-area: sd; } .content { grid-area: main; } /* ---------------------------------------------------------------- */ .basic-example .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); } /* --------------------------------------------------------------- */ .position-by-number .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); } .position-by-number .wrapper .box1 { grid-column-start: 1; grid-column-end: 2; grid-row-start: 1; grid-row-end: 4; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 1 / 2; grid-row: 1 / 4; /* --------Default spans - one track-------- */ grid-column: 1 ; grid-row: 1 / 4; /* -------The grid-area property--------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 1 / 4 / 2; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -4; grid-column-end: -3; grid-row-start: -1; grid-row-end: -4; /* Using the span keyword */ grid-column: 1; grid-row: 1 / span 3; } .position-by-number .wrapper .box2 { grid-column-start: 3; grid-column-end: 4; grid-row-start: 1; grid-row-end: 3; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 3 / 4; grid-row: 1 / 3; /* --------Default spans - one track-------- */ grid-column: 3 ; grid-row: 1 / 3; /* --------The grid-area property-------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 3 / 3 / 4; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -1; grid-column-end: -2; grid-row-start: -2; grid-row-end: -4; /* Using the span keyword */ grid-column: 3; grid-row: 1 / span 2; } .position-by-number .wrapper .box3 { grid-column-start: 2; grid-column-end: 3; grid-row-start: 1; grid-row-end: 2; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 2 / 3; grid-row: 1 / 2; /* --------Default spans - one track-------- */ grid-column: 2 ; grid-row: 1 ; /* ---------The grid-area property------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 2 / 2 / 3; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -2; grid-column-end: -3; grid-row-start: -3; grid-row-end: -4; /* Using the span keyword */ grid-column: 2; grid-row: 1; } .position-by-number .wrapper .box4 { grid-column-start: 2; grid-column-end: 4; grid-row-start: 3; grid-row-end: 4; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 2 / 4; grid-row: 3 / 4; /* --------Default spans - one track-------- */ grid-column: 2 / 4; grid-row: 3 ; /* -------The grid-area property--------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 3 / 2 / 4 / 4; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -1; grid-column-end: -3; grid-row-start: -2; grid-row-end: -1; /* Using the span keyword */ grid-column: 2 / span 2; grid-row: 3; } /* ----------------------------------------------------------------------------------- */ .stretch .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); /* Gaps only appear between tracks of the grid, they do not add space to the top and bottom, left or right of the container. */ grid-column-gap: 20px; grid-row-gap: 1em; /* The two properties can also be expressed as a shorthand, grid-gap. */ grid-gap: 1em 20px; } .stretch .wrapper .box2 { grid-column: 1 / -1; }
05A. CSS Fundamentals/09. CSS Grid/Demos/11. Line-based placement with CSS Grid/styles.css
* { margin: 0; padding: 0; box-sizing: border-box; } h1, h2, h3, h4, h5, h6 { margin: 1.5em 0; } h1 { text-align: center; } hr { margin: 50px 0; } body { max-width: 1200px; margin: 0 auto; padding: 50px; } p { margin: 20px 0; font-size: 20px; line-height: 30px; } img { max-width: 100%; } ul { padding-left: 50px; margin-bottom: 50px; } .wrapper, .wrapper-2, .wrapper-3, .wrapper-4, .wrapper-5 { grid-gap: 10px; background: #FFF4E6; border: 2px solid #F76707; border-radius: 5px; margin-bottom: 50px; } .wrapper > div, .wrapper-2 > div, .wrapper-3 > div, .wrapper-4 > div, .wrapper-5 > div { padding: 20px; background: #FFD8A8; color: #DC4838; border: 2px solid #FFA94D; border-radius: 5px; } .nested { padding: 20px; background: #FFFAD9; color: #DC4838; border: 2px solid #FFEC8F; border-radius: 5px; } .header { grid-area: hd; } .footer { grid-area: ft; } .sidebar { grid-area: sd; } .content { grid-area: main; } /* ---------------------------------------------------------------- */ .basic-example .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); } /* --------------------------------------------------------------- */ .position-by-number .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); } .position-by-number .wrapper .box1 { grid-column-start: 1; grid-column-end: 2; grid-row-start: 1; grid-row-end: 4; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 1 / 2; grid-row: 1 / 4; /* --------Default spans - one track-------- */ grid-column: 1 ; grid-row: 1 / 4; /* -------The grid-area property--------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 1 / 4 / 2; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -4; grid-column-end: -3; grid-row-start: -1; grid-row-end: -4; /* Using the span keyword */ grid-column: 1; grid-row: 1 / span 3; } .position-by-number .wrapper .box2 { grid-column-start: 3; grid-column-end: 4; grid-row-start: 1; grid-row-end: 3; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 3 / 4; grid-row: 1 / 3; /* --------Default spans - one track-------- */ grid-column: 3 ; grid-row: 1 / 3; /* --------The grid-area property-------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 3 / 3 / 4; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -1; grid-column-end: -2; grid-row-start: -2; grid-row-end: -4; /* Using the span keyword */ grid-column: 3; grid-row: 1 / span 2; } .position-by-number .wrapper .box3 { grid-column-start: 2; grid-column-end: 3; grid-row-start: 1; grid-row-end: 2; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 2 / 3; grid-row: 1 / 2; /* --------Default spans - one track-------- */ grid-column: 2 ; grid-row: 1 ; /* ---------The grid-area property------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 1 / 2 / 2 / 3; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -2; grid-column-end: -3; grid-row-start: -3; grid-row-end: -4; /* Using the span keyword */ grid-column: 2; grid-row: 1; } .position-by-number .wrapper .box4 { grid-column-start: 2; grid-column-end: 4; grid-row-start: 3; grid-row-end: 4; /* --------The grid-column and grid-row shorthands-------- */ grid-column: 2 / 4; grid-row: 3 / 4; /* --------Default spans - one track-------- */ grid-column: 2 / 4; grid-row: 3 ; /* -------The grid-area property--------- */ /* grid-row-start grid-column-start grid-row-end grid-column-end */ grid-area: 3 / 2 / 4 / 4; /* --------Counting backwards-------- */ /* We can also count backwards from the block and inline end of the grid, for English that would be the right hand column line and final row line. These lines can be addressed as -1, and you can count back from there – so the penultimate line is -2. */ /* It is worth noting that the final line is the final line of the explicit grid, the grid defined by grid-template-columns and grid-template-rows, and does not take into account any rows or columns added in the implicit grid outside of that. */ grid-column-start: -1; grid-column-end: -3; grid-row-start: -2; grid-row-end: -1; /* Using the span keyword */ grid-column: 2 / span 2; grid-row: 3; } /* ----------------------------------------------------------------------------------- */ .stretch .wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 100px); /* Gaps only appear between tracks of the grid, they do not add space to the top and bottom, left or right of the container. */ grid-column-gap: 20px; grid-row-gap: 1em; /* The two properties can also be expressed as a shorthand, grid-gap. */ grid-gap: 1em 20px; } .stretch .wrapper .box2 { grid-column: 1 / -1; }
0.588416
0.316316
html, body { height: 100%; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .paddings .modal-btns { padding: 20px !important; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, a.desc:after { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; padding-left: 5px; } a.asc:after { content: "\e151"; } a.desc:after { content: "\e152"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view td { white-space: nowrap; } .grid-view .filters input, .grid-view .filters select { min-width: 50px; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } /* align the logout "link" (button in form) of the navbar */ .nav li > form > button.logout { padding: 15px; border: none; } @media(max-width:767px) { .nav li > form > button.logout { display:block; text-align: left; width: 100%; padding: 10px 15px; } } .nav > li > form > button.logout:focus, .nav > li > form > button.logout:hover { text-decoration: none; } .nav > li > form > button.logout:focus { outline: none; } /* Estilos para cards de imagenes */ .card .card-image{ overflow: hidden; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -ms-transform-style: preserve-3d; -o-transform-style: preserve-3d; transform-style: preserve-3d; } .card .card-image img{ -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } .card .card-image:hover img{ -webkit-transform: scale(1.2) rotate(-7deg); -moz-transform: scale(1.2) rotate(-7deg); -ms-transform: scale(1.2) rotate(-7deg); -o-transform: scale(1.2) rotate(-7deg); transform: scale(1.2) rotate(-7deg); } .card{ font-family: 'Roboto', sans-serif; margin-top: 10px; position: relative; -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); box-shadow: 4 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } .card .card-content { padding: 10px; } .card .card-content .card-title, .card-reveal .card-title{ font-size: 24px; font-weight: 200; } .card .card-action{ padding: 20px; border-top: 1px solid rgba(160, 160, 160, 0.2); } .card .card-action a{ font-size: 15px; text-transform:uppercase; margin-right: 20px; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -o-transition: color 0.3s ease; -ms-transition: color 0.3s ease; transition: color 0.3s ease; } .card .card-action a:hover{ /*color:#ffd8a6;*/ text-decoration:none; } .card .card-reveal{ padding: 20px; position: absolute; background-color: #FFF; width: 100%; overflow-y: auto; /*top: 0;*/ left:0; bottom:0; height: 100%; z-index: 1; display: none; } .card .card-reveal p{ color: rgba(0, 0, 0, 0.71); margin:20px ; } .btn-custom{ background-color: transparent; font-size:18px; } header a{ color: #fff; } header a:hover{ color: #E9E9E9; } .sidebar a{ color: #000; } .sidebar a:hover{ color: #ff084e; } #loading-screen { background-color: rgba(25,25,25,0.7); height: 100%; width: 100%; position: fixed; z-index: 9999; margin-top: 0; top: 0; text-align: center; } #loading-screen img { width: 100px; height: 100px; position: relative; margin-top: -50px; margin-left: -50px; top: 50%; } .sp-krajee.sp-replacer{ display: flex; } .main-header .logo .logo-lg img{ max-height: 42px !important; }
frontend/web/css/site.css
html, body { height: 100%; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .paddings .modal-btns { padding: 20px !important; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, a.desc:after { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; padding-left: 5px; } a.asc:after { content: "\e151"; } a.desc:after { content: "\e152"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view td { white-space: nowrap; } .grid-view .filters input, .grid-view .filters select { min-width: 50px; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } /* align the logout "link" (button in form) of the navbar */ .nav li > form > button.logout { padding: 15px; border: none; } @media(max-width:767px) { .nav li > form > button.logout { display:block; text-align: left; width: 100%; padding: 10px 15px; } } .nav > li > form > button.logout:focus, .nav > li > form > button.logout:hover { text-decoration: none; } .nav > li > form > button.logout:focus { outline: none; } /* Estilos para cards de imagenes */ .card .card-image{ overflow: hidden; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -ms-transform-style: preserve-3d; -o-transform-style: preserve-3d; transform-style: preserve-3d; } .card .card-image img{ -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } .card .card-image:hover img{ -webkit-transform: scale(1.2) rotate(-7deg); -moz-transform: scale(1.2) rotate(-7deg); -ms-transform: scale(1.2) rotate(-7deg); -o-transform: scale(1.2) rotate(-7deg); transform: scale(1.2) rotate(-7deg); } .card{ font-family: 'Roboto', sans-serif; margin-top: 10px; position: relative; -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); box-shadow: 4 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } .card .card-content { padding: 10px; } .card .card-content .card-title, .card-reveal .card-title{ font-size: 24px; font-weight: 200; } .card .card-action{ padding: 20px; border-top: 1px solid rgba(160, 160, 160, 0.2); } .card .card-action a{ font-size: 15px; text-transform:uppercase; margin-right: 20px; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -o-transition: color 0.3s ease; -ms-transition: color 0.3s ease; transition: color 0.3s ease; } .card .card-action a:hover{ /*color:#ffd8a6;*/ text-decoration:none; } .card .card-reveal{ padding: 20px; position: absolute; background-color: #FFF; width: 100%; overflow-y: auto; /*top: 0;*/ left:0; bottom:0; height: 100%; z-index: 1; display: none; } .card .card-reveal p{ color: rgba(0, 0, 0, 0.71); margin:20px ; } .btn-custom{ background-color: transparent; font-size:18px; } header a{ color: #fff; } header a:hover{ color: #E9E9E9; } .sidebar a{ color: #000; } .sidebar a:hover{ color: #ff084e; } #loading-screen { background-color: rgba(25,25,25,0.7); height: 100%; width: 100%; position: fixed; z-index: 9999; margin-top: 0; top: 0; text-align: center; } #loading-screen img { width: 100px; height: 100px; position: relative; margin-top: -50px; margin-left: -50px; top: 50%; } .sp-krajee.sp-replacer{ display: flex; } .main-header .logo .logo-lg img{ max-height: 42px !important; }
0.460046
0.099034
body { margin: 0; padding: 0; font-family: 'Lancelot', cursive; helvetica; } .top_contato { height: 30px; background-color:#000; color: #b9c4d1; display: flex; justify-content: center; } .top_contato_int { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; } .social { width: 300px; height: 100%; } .icons { width: 30px; height: 95%; float: right; margin-left: 5px; } .header { height: 100px; width: 100%; background-color: #b9c4d1; display: flex; align-items: center; justify-content: center; } .header_int { width: 100%; max-width: 1200px; height: 100%; display: flex; justify-content: space-between; } .header_int_left { width: 200px; display: flex; justify-content:center; align-items: center; font-size: 35px; font-weight: bold; text-align: center; color: #463b2e; } .header_int_right { flex: 1; display: flex; justify-content:flex-end; align-items: center; } .header_int ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; } .header_int li { float: left; margin-right: 5px; font-size: 22px; font-weight: bold; text-decoration: none; color: #463b2e; height: 100%; width: 100px; display: flex; justify-content: center; align-items: center; padding: 10px; border-radius: 2px; } .header_int_icons { display: flex; align-items: center; margin-left: 20px; } .header_int li:hover { background-color:#463b2e; color: #b9c4d1; } #footer { min-height: 100px; margin-top: 200px; background-color: #b9c4d1; display: flex; justify-content:center; align-items: center; } .footer_int { width: 100%; max-width: 1200px; display: flex; font-size: 14px; font-weight: bold; color: #463b2e; } .footer_box { flex:1; margin: 3px; height: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .footer_block { margin-bottom: 30px; } .footer_block a { font-size: 20px; text-decoration: none; color: #000; } .footer_icon { float: left; margin-right: 10px; }
projetosite/site-interiores/assets/css/template.css
body { margin: 0; padding: 0; font-family: 'Lancelot', cursive; helvetica; } .top_contato { height: 30px; background-color:#000; color: #b9c4d1; display: flex; justify-content: center; } .top_contato_int { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; } .social { width: 300px; height: 100%; } .icons { width: 30px; height: 95%; float: right; margin-left: 5px; } .header { height: 100px; width: 100%; background-color: #b9c4d1; display: flex; align-items: center; justify-content: center; } .header_int { width: 100%; max-width: 1200px; height: 100%; display: flex; justify-content: space-between; } .header_int_left { width: 200px; display: flex; justify-content:center; align-items: center; font-size: 35px; font-weight: bold; text-align: center; color: #463b2e; } .header_int_right { flex: 1; display: flex; justify-content:flex-end; align-items: center; } .header_int ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; } .header_int li { float: left; margin-right: 5px; font-size: 22px; font-weight: bold; text-decoration: none; color: #463b2e; height: 100%; width: 100px; display: flex; justify-content: center; align-items: center; padding: 10px; border-radius: 2px; } .header_int_icons { display: flex; align-items: center; margin-left: 20px; } .header_int li:hover { background-color:#463b2e; color: #b9c4d1; } #footer { min-height: 100px; margin-top: 200px; background-color: #b9c4d1; display: flex; justify-content:center; align-items: center; } .footer_int { width: 100%; max-width: 1200px; display: flex; font-size: 14px; font-weight: bold; color: #463b2e; } .footer_box { flex:1; margin: 3px; height: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .footer_block { margin-bottom: 30px; } .footer_block a { font-size: 20px; text-decoration: none; color: #000; } .footer_icon { float: left; margin-right: 10px; }
0.314682
0.074703
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-size: 62.5%; } html * { -webkit-box-sizing: border-box; box-sizing: border-box; } body { font-weight: 400; font-size: 14px; line-height: 1.5; margin: 0; color: #808080; } h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 0; } p { margin: 0; } a { color: inherit; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects; } a:active, a:hover { outline-width: 0; } img { vertical-align: top; max-width: 100%; border-style: none; } section { position: relative; overflow: hidden; } ul { list-style: none; margin: 0; padding: 0; } button, hr, input { overflow: visible; } [type=checkbox], [type=radio], legend { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { display: block; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; } button, input, select, textarea { font: inherit; margin: 0; } optgroup { font-weight: 700; } 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; padding: 0; } [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { outline: ButtonText dotted 1px; } fieldset { border: 1px solid silver; margin: 0 2px; padding: .35em .625em .75em; } legend { color: inherit; display: table; max-width: 100%; white-space: normal; } textarea { overflow: auto; } [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: .54; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
public/css/common.css
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-size: 62.5%; } html * { -webkit-box-sizing: border-box; box-sizing: border-box; } body { font-weight: 400; font-size: 14px; line-height: 1.5; margin: 0; color: #808080; } h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 0; } p { margin: 0; } a { color: inherit; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects; } a:active, a:hover { outline-width: 0; } img { vertical-align: top; max-width: 100%; border-style: none; } section { position: relative; overflow: hidden; } ul { list-style: none; margin: 0; padding: 0; } button, hr, input { overflow: visible; } [type=checkbox], [type=radio], legend { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { display: block; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; } button, input, select, textarea { font: inherit; margin: 0; } optgroup { font-weight: 700; } 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; padding: 0; } [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { outline: ButtonText dotted 1px; } fieldset { border: 1px solid silver; margin: 0 2px; padding: .35em .625em .75em; } legend { color: inherit; display: table; max-width: 100%; white-space: normal; } textarea { overflow: auto; } [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: .54; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
0.42668
0.086362
@-moz-document domain(trello.com) { body { background: #f8f8f7 !important; font-family: "Gotham", "Proxima Nova", "Gotham", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; font-size: .95em; } button, html, input, select, textarea { font-family: "Gotham","Proxima Nova", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; } .header-woof { display: none !important } #header { padding: 10px !important; } .js-open-board { background: #979798 !important; font-weight: 300 !important; } .board-canvas { padding-top: 20px } .thumbnail { background: #979798 !important } .sidebar-section-header-title { text-decoration: none !important; font-weight: 300 !important } #search-text { border-radius: 0px !important } .board-header { background: #333; margin-bottom: 10px; } .header-btn:hover { background: none !important; } .header-user { top: 10px !important; right: 5px !important; font-weight: 300 !important } .header-btn-text { font-weight: 300 !important } .text { text-decoration: none !important; } .header-member { background: none !important; } .member { border-radius: 20px !important; border: none !important; background: none !important; } .member img { border-radius: 0 !important; border: none !important; } .list-header-name, .card-label { text-transform: uppercase; letter-spacing: .1em; font-size: .8em; text-shadow: none; } .card-label.mod-card-front{ height: 5px; } .list-card-title{ display: inline; } .list-header-name { margin: 0 !important; } .list-area { margin-top: 30px !important; } .list-wrapper { width: 350px; } .list { background: #fff !important; } .list-card { margin-bottom: 0; border-radius: 0; max-width: 100%; border-bottom: 1px solid #eee; } .list-card.active-card { border-bottom: 1px solid #eee !important; } .list-card-details { margin-bottom: 4px !important; } .list-card-details .badges { float: none; display: inline; margin-left: 4px; } .badge { min-height: 15px; } .badge, .icon-lg.mod-inline, .icon-sm{ line-height: 16px; font-size: 8pt; height: 16px; } .add-list { background: none !important; } .add-list:hover { background: #fff !important; } .list-card-members { display: none; } .open-card-composer:hover { text-decoration: none !important; background: none !important; } .window-wrapper { background: #fff !important; } .window-wrapper h3 { font-weight: normal !important } .window-wrapper a { text-decoration: none !important } }
data/usercss/127440.user.css
@-moz-document domain(trello.com) { body { background: #f8f8f7 !important; font-family: "Gotham", "Proxima Nova", "Gotham", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; font-size: .95em; } button, html, input, select, textarea { font-family: "Gotham","Proxima Nova", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; } .header-woof { display: none !important } #header { padding: 10px !important; } .js-open-board { background: #979798 !important; font-weight: 300 !important; } .board-canvas { padding-top: 20px } .thumbnail { background: #979798 !important } .sidebar-section-header-title { text-decoration: none !important; font-weight: 300 !important } #search-text { border-radius: 0px !important } .board-header { background: #333; margin-bottom: 10px; } .header-btn:hover { background: none !important; } .header-user { top: 10px !important; right: 5px !important; font-weight: 300 !important } .header-btn-text { font-weight: 300 !important } .text { text-decoration: none !important; } .header-member { background: none !important; } .member { border-radius: 20px !important; border: none !important; background: none !important; } .member img { border-radius: 0 !important; border: none !important; } .list-header-name, .card-label { text-transform: uppercase; letter-spacing: .1em; font-size: .8em; text-shadow: none; } .card-label.mod-card-front{ height: 5px; } .list-card-title{ display: inline; } .list-header-name { margin: 0 !important; } .list-area { margin-top: 30px !important; } .list-wrapper { width: 350px; } .list { background: #fff !important; } .list-card { margin-bottom: 0; border-radius: 0; max-width: 100%; border-bottom: 1px solid #eee; } .list-card.active-card { border-bottom: 1px solid #eee !important; } .list-card-details { margin-bottom: 4px !important; } .list-card-details .badges { float: none; display: inline; margin-left: 4px; } .badge { min-height: 15px; } .badge, .icon-lg.mod-inline, .icon-sm{ line-height: 16px; font-size: 8pt; height: 16px; } .add-list { background: none !important; } .add-list:hover { background: #fff !important; } .list-card-members { display: none; } .open-card-composer:hover { text-decoration: none !important; background: none !important; } .window-wrapper { background: #fff !important; } .window-wrapper h3 { font-weight: normal !important } .window-wrapper a { text-decoration: none !important } }
0.213623
0.068787
:root { /* Gradients */ --default-gradient: 315deg, #854542 0%, #753a38 74% !important; --special-gradient: 315deg, #8980F0 0%, #D577F0 74% !important; --red-gradient: 315deg, #854542 0%, #753a38 74% !important; --yellow-gradient: 315deg, #C2831B 0%, #FFB740 74% !important; --green-gradient: 315deg, #58d38b 0%, #58d38b 74% !important; --grey-gradient: 315deg, #432520 0%, #4d2f28 74% !important; --white-gradient: 315deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 74% !important; /* Transitions */ --font-normal: 500 !important; --font-hover: bold !important; --font-size-hover: 15px !important; --hover-transition: 0.1s linear !important; --transform-normal: scale(1) !important; --hover-transform: scale(1.15) !important; --setting-hover-transform: scale(1.025) !important; --button-hover-transform: scale(1.03) !important; /* Radial Status */ --rs-small-spacing: 0px !important; /* Spacing between avatar and status | MUST end in px */ --rs-width: 2px !important; /* Width/thickness of status border */ --rs-avatar-shape: var(--avatar-border-radius) !important; /* 50% for round - 0% for square */ --rs-online-color: var(--alt-color2) !important; /* Colour for online status */ --rs-idle-color: #faa61a !important; /* Colour for idle status */ --rs-dnd-color: #f04747 !important; /* Colour for dnd status */ --rs-offline-color: #636b75 !important; /* Colour for offline status */ --rs-streaming-color: #643da7 !important; /* Colour for streaming status */ --rs-invisible-color: #747f8d !important; /* Colour for invisible status - Note: this will only show for your own invisibility */ --rs-phone-visible: block !important; /* Visibility of the phone icon next to a users avatar. | block = visible | none = hidden */ --rs-phone-color: var(--rs-online-color) !important; /* Colour of the ring and phone icon when a user is on their phone | */ } /* Lode Dark */ .theme-dark { /* Lode Specific */ --alt-color: 223, 111, 107 !important; /* RGB */ --alt-color2: #df6f6b !important; /* HEX */ --icons-color: #eef3f2 !important; --icons-color-hover: #aa4c49 !important; --yellow-color: #aa4c49 !important; --green-color: #aa4c49 !important; --green-bar-on: var(--green-color) !important; --green-bar-bg: #251915 !important; --green-slider-on: var(--green-color) !important; --green-slider-off: #aa4c49 !important; --green-slider-dot: #fff !important; /* Icons */ --home-icon: url(https://discord.com/assets/89576a4bb71f927eb20e8aef987b499b.svg) !important; /* Other */ --call-bg: url(https://i.imgur.com/iCMBq4x.jpg) !important; /* None To Disable */ --call-bg-colour: var(--background-accent) !important; /* Image Overwrites */ /* Spotify Crenshaw Plugin */ --album-blur-amount: 4px !important; --subtext-color: #000 !important; /* Keeping Consistancy With Discord */ --serverlist-background: var(--background-tertiary) !important; --memberlist-background: #472222 !important; --win-titlebar: var(--background-tertiary) !important; /* Making Things Round */ /* Four Numbers = Four Corners */ --modal-border-radius: 15px 15px 15px 15px !important; --floating-border-radius: 15px 15px 15px 15px !important; --expanded-border-radius: 15px 15px 15px 15px !important; --hover-border-radius: 10px 10px 10px 10px !important; --avatar-border-radius: 11.5px !important; /* Serverlist Too */ --avatar-border-radius-hover: 5.5px 5.5px 5.5px 5.5px !important; --chat-text-border-radius: 12px 12px 12px 12px !important; /* ROUND THINGS */ --borders-radius: 12px !important; --borders-radius-right: 6px !important; --borders-radius-left: 8px !important; --borders-radius-bottom: 8px !important; --borders-radius-top: 5px !important; --titlebar-borders-radius: 12px !important; --titlebar-borders-radius-right: 12px !important; --titlebar-borders-radius-left: 8px !important; --titlebar-borders-radius-bottom: 10px !important; --titlebar-borders-radius-top: 8px !important; --chatbox-border-radius: 22px !important; --spotify-right: 1.7rem !important; /* Watermark */ --watermark-text: "LODE" !important; --watermark-version: "v1.0.4" !important; --watermark-text-top: 14px !important; --watermark-text-left: 3.4rem !important; --watermark-gradient: 270deg, rgb(202, 70, 70), rgb(192, 132, 53) !important; /* Header Colours Colors */ --modal-normal-primary-color: var(--background-secondary) !important; --modal-normal-secondary-color: var(--background-secondary) !important; --spotify-color: var(--alt-color2) !important; --playing-color: var(--alt-color2) !important; --streaming-color: #4d2b86 !important; /* Header Colors */ --header-primary: #EAE1DF !important; --header-secondary: rgb(159, 161, 163) !important; /* Powercord Toast Colors */ --toast-background: var(--background-primary) !important; --toast-header: var(--background-secondary) !important; --toast-content: #252B3B !important; --toast-box-shadow: rgba(24, 21, 21, 0.932) !important; --toast-border: rgba(21, 22, 22, 0) !important; --toast-gradient: to right, rgb(172, 64, 64), rgb(192, 132, 53) !important; /* Text Colours */ --text-normal: #fce9e9 !important; --text-muted: #ffe2e2 !important; --text-link: var(--alt-color2) !important; --channels-default: #fce9e9 !important; --interactive-normal: #fce9e9 !important; --interactive-hover: #fce9e9 !important; --interactive-active: #f8cbcb !important; --interactive-muted: #8b5b5b !important; /* Chat */ --channeltextarea-background: var(--background-primary) !important; --channeltextarea-background-hover: var(--background-secondary) !important; /* Background Colours */ --background-primary: #472222 !important; --background-titlebar: #572b2b !important; --background-primary-alt: #472222 !important; --background-secondary: #572b2b !important; --background-secondary-alt: #572b2b !important; --background-tertiary: #301818 !important; --background-accent: var(--alt-color2) !important; --background-accent-gradient: var(--alt-color2) !important; --background-floating: #2b3341 !important; /* Hovering Colours */ --background-modifier-hover: rgba(65, 31, 31, 0.432) !important; --background-modifier-active: rgba(88, 36, 36, 0.596) !important; --background-modifier-selected: rgba(173, 54, 54, 0.404) !important; --background-modifier-accent: rgba(129, 69, 54, 0.815) !important; --background-message-hover: transparent !important; /* Mentioned Colours */ --background-mentioned: rgba(65, 31, 31, 0.397) !important; --background-mentioned-hover: rgba(65, 31, 31, 0.637) !important; --background-mentioned-bar: var(--background-accent) !important; --background-help-warning: rgba(116, 49, 49, 0.363) !important; --background-help-info: rgba(244, 8, 0, 0.164) !important; /* Scrollbar Colours */ --scrollbar-thin-thumb: rgba(65, 31, 31, 0.432) !important; --scrollbar-thin-track: transparent !important; --scrollbar-auto-thumb: rgba(65, 31, 31, 0.432) !important; --scrollbar-auto-track: rgba(65, 31, 31, 0.432) !important; --scrollbar-auto-scrollbar-color-thumb: rgba(65, 31, 31, 0.432) !important; /* Box Shadow On Floating Elements Colours */ --elevation-stroke: 0 0 0 1px rgba(22, 24, 26, 0.329) !important; --elevation-low: 0 1px 0 rgba(22, 25, 26, 0.329) !important; --elevation-medium: 0 4px 4px rgba(22, 25, 26, 0.329) !important; --elevation-high: 0 8px 16px rgba(22, 25, 26, 0.329) !important; /* Other */ --radio-group-dot-foreground: var(--alt-color) !important; }
default/lode-schemes/crimson.css
:root { /* Gradients */ --default-gradient: 315deg, #854542 0%, #753a38 74% !important; --special-gradient: 315deg, #8980F0 0%, #D577F0 74% !important; --red-gradient: 315deg, #854542 0%, #753a38 74% !important; --yellow-gradient: 315deg, #C2831B 0%, #FFB740 74% !important; --green-gradient: 315deg, #58d38b 0%, #58d38b 74% !important; --grey-gradient: 315deg, #432520 0%, #4d2f28 74% !important; --white-gradient: 315deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 74% !important; /* Transitions */ --font-normal: 500 !important; --font-hover: bold !important; --font-size-hover: 15px !important; --hover-transition: 0.1s linear !important; --transform-normal: scale(1) !important; --hover-transform: scale(1.15) !important; --setting-hover-transform: scale(1.025) !important; --button-hover-transform: scale(1.03) !important; /* Radial Status */ --rs-small-spacing: 0px !important; /* Spacing between avatar and status | MUST end in px */ --rs-width: 2px !important; /* Width/thickness of status border */ --rs-avatar-shape: var(--avatar-border-radius) !important; /* 50% for round - 0% for square */ --rs-online-color: var(--alt-color2) !important; /* Colour for online status */ --rs-idle-color: #faa61a !important; /* Colour for idle status */ --rs-dnd-color: #f04747 !important; /* Colour for dnd status */ --rs-offline-color: #636b75 !important; /* Colour for offline status */ --rs-streaming-color: #643da7 !important; /* Colour for streaming status */ --rs-invisible-color: #747f8d !important; /* Colour for invisible status - Note: this will only show for your own invisibility */ --rs-phone-visible: block !important; /* Visibility of the phone icon next to a users avatar. | block = visible | none = hidden */ --rs-phone-color: var(--rs-online-color) !important; /* Colour of the ring and phone icon when a user is on their phone | */ } /* Lode Dark */ .theme-dark { /* Lode Specific */ --alt-color: 223, 111, 107 !important; /* RGB */ --alt-color2: #df6f6b !important; /* HEX */ --icons-color: #eef3f2 !important; --icons-color-hover: #aa4c49 !important; --yellow-color: #aa4c49 !important; --green-color: #aa4c49 !important; --green-bar-on: var(--green-color) !important; --green-bar-bg: #251915 !important; --green-slider-on: var(--green-color) !important; --green-slider-off: #aa4c49 !important; --green-slider-dot: #fff !important; /* Icons */ --home-icon: url(https://discord.com/assets/89576a4bb71f927eb20e8aef987b499b.svg) !important; /* Other */ --call-bg: url(https://i.imgur.com/iCMBq4x.jpg) !important; /* None To Disable */ --call-bg-colour: var(--background-accent) !important; /* Image Overwrites */ /* Spotify Crenshaw Plugin */ --album-blur-amount: 4px !important; --subtext-color: #000 !important; /* Keeping Consistancy With Discord */ --serverlist-background: var(--background-tertiary) !important; --memberlist-background: #472222 !important; --win-titlebar: var(--background-tertiary) !important; /* Making Things Round */ /* Four Numbers = Four Corners */ --modal-border-radius: 15px 15px 15px 15px !important; --floating-border-radius: 15px 15px 15px 15px !important; --expanded-border-radius: 15px 15px 15px 15px !important; --hover-border-radius: 10px 10px 10px 10px !important; --avatar-border-radius: 11.5px !important; /* Serverlist Too */ --avatar-border-radius-hover: 5.5px 5.5px 5.5px 5.5px !important; --chat-text-border-radius: 12px 12px 12px 12px !important; /* ROUND THINGS */ --borders-radius: 12px !important; --borders-radius-right: 6px !important; --borders-radius-left: 8px !important; --borders-radius-bottom: 8px !important; --borders-radius-top: 5px !important; --titlebar-borders-radius: 12px !important; --titlebar-borders-radius-right: 12px !important; --titlebar-borders-radius-left: 8px !important; --titlebar-borders-radius-bottom: 10px !important; --titlebar-borders-radius-top: 8px !important; --chatbox-border-radius: 22px !important; --spotify-right: 1.7rem !important; /* Watermark */ --watermark-text: "LODE" !important; --watermark-version: "v1.0.4" !important; --watermark-text-top: 14px !important; --watermark-text-left: 3.4rem !important; --watermark-gradient: 270deg, rgb(202, 70, 70), rgb(192, 132, 53) !important; /* Header Colours Colors */ --modal-normal-primary-color: var(--background-secondary) !important; --modal-normal-secondary-color: var(--background-secondary) !important; --spotify-color: var(--alt-color2) !important; --playing-color: var(--alt-color2) !important; --streaming-color: #4d2b86 !important; /* Header Colors */ --header-primary: #EAE1DF !important; --header-secondary: rgb(159, 161, 163) !important; /* Powercord Toast Colors */ --toast-background: var(--background-primary) !important; --toast-header: var(--background-secondary) !important; --toast-content: #252B3B !important; --toast-box-shadow: rgba(24, 21, 21, 0.932) !important; --toast-border: rgba(21, 22, 22, 0) !important; --toast-gradient: to right, rgb(172, 64, 64), rgb(192, 132, 53) !important; /* Text Colours */ --text-normal: #fce9e9 !important; --text-muted: #ffe2e2 !important; --text-link: var(--alt-color2) !important; --channels-default: #fce9e9 !important; --interactive-normal: #fce9e9 !important; --interactive-hover: #fce9e9 !important; --interactive-active: #f8cbcb !important; --interactive-muted: #8b5b5b !important; /* Chat */ --channeltextarea-background: var(--background-primary) !important; --channeltextarea-background-hover: var(--background-secondary) !important; /* Background Colours */ --background-primary: #472222 !important; --background-titlebar: #572b2b !important; --background-primary-alt: #472222 !important; --background-secondary: #572b2b !important; --background-secondary-alt: #572b2b !important; --background-tertiary: #301818 !important; --background-accent: var(--alt-color2) !important; --background-accent-gradient: var(--alt-color2) !important; --background-floating: #2b3341 !important; /* Hovering Colours */ --background-modifier-hover: rgba(65, 31, 31, 0.432) !important; --background-modifier-active: rgba(88, 36, 36, 0.596) !important; --background-modifier-selected: rgba(173, 54, 54, 0.404) !important; --background-modifier-accent: rgba(129, 69, 54, 0.815) !important; --background-message-hover: transparent !important; /* Mentioned Colours */ --background-mentioned: rgba(65, 31, 31, 0.397) !important; --background-mentioned-hover: rgba(65, 31, 31, 0.637) !important; --background-mentioned-bar: var(--background-accent) !important; --background-help-warning: rgba(116, 49, 49, 0.363) !important; --background-help-info: rgba(244, 8, 0, 0.164) !important; /* Scrollbar Colours */ --scrollbar-thin-thumb: rgba(65, 31, 31, 0.432) !important; --scrollbar-thin-track: transparent !important; --scrollbar-auto-thumb: rgba(65, 31, 31, 0.432) !important; --scrollbar-auto-track: rgba(65, 31, 31, 0.432) !important; --scrollbar-auto-scrollbar-color-thumb: rgba(65, 31, 31, 0.432) !important; /* Box Shadow On Floating Elements Colours */ --elevation-stroke: 0 0 0 1px rgba(22, 24, 26, 0.329) !important; --elevation-low: 0 1px 0 rgba(22, 25, 26, 0.329) !important; --elevation-medium: 0 4px 4px rgba(22, 25, 26, 0.329) !important; --elevation-high: 0 8px 16px rgba(22, 25, 26, 0.329) !important; /* Other */ --radio-group-dot-foreground: var(--alt-color) !important; }
0.409811
0.150465
@charset "utf-8"; @import url('bootstrap.min.css'); @import url('animate.min.css'); @import url('theme.min.css'); @import url('plugin1.min.css'); @import url('plugin.min.css'); body { width: 100%; margin: 0px !important; padding: 0px !important; overflow-x: hidden; background-color: #fff; font-family: 'Lato', sans-serif; } *, *::after, *::before { transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; outline: none; } *:hover, *:focus { outline: none; text-decoration: none; box-shadow: none; } /* Let's get this party started */ ::-webkit-scrollbar { width: 5px; } /* Track */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); -webkit-border-radius: 10px; border-radius: 10px; } /* Handle */ ::-webkit-scrollbar-thumb { -webkit-border-radius: 10px; border-radius: 10px; background: rgba(16,49,107,1); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); } ::-webkit-scrollbar-thumb:window-inactive { background: rgba(16,49,107,1); } ul { padding: 0; margin: 0; list-style: none; } li { list-style: none; } a, a:hover, a:focus { text-decoration: none; outline: none; color: inherit; } #preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; background: #fff url(../images/loader.gif) no-repeat center center; background-size: 200px 200px; } .content_preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; display: none; background: #fff url(../images/loader.gif) no-repeat center center; background-size: 200px 200px; } .wrapper { width: 100%; float: left; position: relative; overflow-x: hidden; } .canvas_area { width: 100%; float: left; padding: 0px 5%; } .header_block { width: 100%; float: left; position: relative; top: 0; left: 0; z-index: 999; background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.15) } .header_block.is-visible { background-color: #fff; height: 100vh; overflow-y: auto; overflow-x: hidden; } .top_head_block { width: 100%; float: left; position: relative; padding: 14px 0px; background-color: #10316b; } .top_head_area { width: auto; float: right; font-size: 12px; color: #fff; font-weight: 300; line-height: 16px; letter-spacing: 0.7px; } .top_head_area a { width: auto; float: left; color: #fff; padding: 0px 0px 0px 30px; } .top_head_area a img { width: 16px; height: 16px; display: block; margin-right: 5px; float: left; } .main_head_block { width: 100%; float: left; position: relative; padding: 12px 0; background-color: #fff; } .logo { width: auto; float: left; padding: 0px; position: relative; margin-top: 0px; margin-bottom: 0px; } .logo img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .main_menu_area { width: auto;/*calc(100% - 106px)*/ float: right; padding: 3px 0px 2px 0px; } @media (max-width: 940px) { .logo img { width: 90%; } .main_menu_area { width: calc(100% - 180px); float: right; } } @media (max-width: 560px) { .top_head_block { padding: 8px 0px; } .tab_phone { display: none; } .logo img { width: 160px; } .main_menu_area { width: calc(100% - 180px); padding: 0px; } } .header_right { width: auto; float: right; } .shadow_layer { width: 100%; height: 100%; position: absolute; z-index: 99; background-color: rgba(0,0,0,0.01); display: none; } .shadow_layer.is-visible { display: block; } .slider_block { width: 100%; float: left; position: relative; } .feature_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 50px 0px; } .feature_box { width: 100%; float: left; padding: 20px; } @media (max-width: 768px) { .feature_block { padding: 20px 0px; } } .feature_icon { width: 100%; height: 64px; float: left; padding: 6px; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .feature_icon img { max-width: 100%; height: 100%; display: block; margin: 0px auto; transition-delay: 0.6s; -moz-transition-delay: 0.6s; -ms-transition-delay: 0.6s; -webkit-transition-delay: 0.6s; -o-transition-delay: 0.6s; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .feature_box h3 { width: 100%; float: left; font-family: 'Lato', sans-serif; font-size: 20px; line-height: 23px; color: #10316b; font-weight: 700; padding: 20px 0px 0px; margin: 0; text-align: center; letter-spacing: 0.7px; } .feature_box p { width: 100%; float: left; font-family: 'Lato', sans-serif; font-size: 15px; line-height: 23px; color: #626262; font-weight: 300; padding: 15px 0px 0px; margin: 0; text-align: center;letter-spacing: 0.7px; } .feature_box:hover .feature_icon { -webkit-transform: rotate3d(0,1,0,-360deg); -moz-transform: rotate3d(0,1,0,-360deg); -o-transform: rotate3d(0,1,0,-360deg); -ms-transform: rotate3d(0,1,0,-360deg); transform: rotate3d(0,1,0,-360deg); } .feature_box:hover .feature_icon img { transition-delay: 0.6s; -moz-transition-delay: 0.6s; -ms-transition-delay: 0.6s; -webkit-transition-delay: 0.6s; -o-transition-delay: 0.6s; -webkit-transform: rotate3d(0,1,0,360deg); -moz-transform: rotate3d(0,1,0,360deg); -o-transform: rotate3d(0,1,0,360deg); -ms-transform: rotate3d(0,1,0,360deg); transform: rotate3d(0,1,0,360deg); } .feature_block .owl-theme .owl-controls { text-align: right; } .about_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 80px 0px; } .about_box { position: relative; } .about_box img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .about_box h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .about_box h2::before, .about_box h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .about_box h2::after { background-color: #fdbe34; top: 21px; } .about_box p { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 400; } @media (max-width: 768px) { .about_box { width: 100%; } } .venture_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #10316b; } .venture_area { width: 100%; float: left; position: relative; padding: 30px 0px 0px; } .venture_area h3 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #fff; line-height: 40px; letter-spacing: 0.7px; font-weight: 500; position: relative; margin: 0 0 5px; } .venture_area h3::before, .venture_area h3::after { content: ''; position: absolute; width: 85px; height: 3px; left: -100px; top: 18px; background-color: #fdbe34; } .venture_area h3::after { background-color: #fff; top: 21px; } .venture_area ul { width: 100%; float: left; padding: 10px 0px; margin: 0; } .venture_area ul li { width: 100%; float: left; position: relative; padding: 5px 0px 5px 30px; text-align: left; display: block; font-family:'Lato',sans-serif; font-size: 15px; color: #fff; line-height: 25px; letter-spacing: 1px; font-weight: 500; } .venture_area ul li::before { content: ''; position: absolute; width: 6px; height: 6px; background-color: #fdbe34; top: 15px; left: 0; } @media (max-width: 992px) { .venture_block { padding: 50px 0px; } } .venture_box { width: 100%; float: left; padding: 0px 15px; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; cursor: ew-resize; } .venture_box img { width: 100%; height: auto; display: block; } @media (max-width: 768px) { .venture_box { margin: 30px 0px; } } .testimonial_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 80px 0px; } .testimonial_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .testimonial_block h2::before, .testimonial_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .testimonial_block h2::after { background-color: #fdbe34; top: 21px; } .testimonial_area { width: 100%; float: left; position: relative; padding: 30px 0px; } .testimonial_area .item { padding: 0px 15px 15px; } .testimonial_box { width: 100%; float: left; position: relative; padding: 20px; border: solid 1px rgba(0,0,0,0.18); } /*.testimonial_box::after { content: ''; position: absolute; width: 0; height: 0; bottom: -10px; left: 15px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #fff; z-index: 999; } .testimonial_box::before { content: ''; position: absolute; width: 0; height: 0; bottom: -12px; left: 13px; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid rgba(0,0,0,0.18); z-index: 998; }*/ .testimonial_box p { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 400; } .testimonial_box h3 { width: 100%; float: left; padding: 0; margin: 0px 0 5px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 17px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .testimonial_box h3::before { content: ''; position: absolute; width: 4px; height: 55px; background-color: #10316b; left: -20px; top: 0; } .testimonial_box h4 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 13px; color: #454545; line-height: 20px; letter-spacing: 0.7px; font-weight: 400; } .footer_block { width: 100%; float: left; position: relative; background-color: #0d244c; padding: 0px; } .footer_area { width: 100%; float: left; position: relative; padding: 60px 0px 30px; } .footer_logo { width: 100%; float: left; position: relative; text-align: center; } .footer_logo img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .footer_area ul { width: 100%; float: left; position: relative; text-align: center; padding: 20px 0px 0px; } .footer_area ul li { width: auto; position: relative; text-align: center; padding: 15px 2%; display: inline-block; } .footer_area ul li a { width: auto; position: relative; text-align: center; padding: 0; font-family: 'Lato', sans-serif; font-size: 14px; color: #fff; line-height: 30px; letter-spacing: 0.7px; font-weight: 400; } .footer_area ul > li + li::before { content: ""; background: #fff; background-size: 20px 20px; position: absolute; width: 1px; height: 17px; top: calc(50% - 8px); left: 0px; } .footer_soc_area { width: 100%; float: left; position: relative; text-align: center; padding: 20px 0 0; } .footer_soc_area a { width: 25px; height: 25px; margin: 0px 15px; padding: 4px; display: inline-block; } .footer_soc_area a img { width: 20px; height: 20px; display: block; } .sub_footer_area { width: 100%; float: left; position: relative; padding: 20px 0px; font-family: 'Lato', sans-serif; font-size: 13px; color: #fff; line-height: 23px; letter-spacing: 0.7px; font-weight: 500; text-align: center; background-color: rgba(0,0,0,0.25); } .sub_footer_area a { color: #fff; } .sub_footer_area a:hover { color: #fff; } .banner_block { width: 100%; float: left; position: relative; padding: 30px 0px; background: #f3f3f3; } .banner_block h1 { width: 100%; float: left; position: relative; font-size: 24px; text-transform: uppercase; margin: 0; padding: 0; color: #07080d; } .breadcrumb { width: auto; float: left; padding: 10px 0px; margin: 0; } .breadcrumb li { display: inline-block; margin-right: 5px; } .breadcrumb a { font-size: 13px; color: #686868; text-transform: uppercase; font-weight: 400; } .cd-modal { width: 370px; margin-top: 70px; } .cd-form { width: 100%; float: left; position: relative; padding: 35px; background-color: #fff; border-radius: 5px; } .cd-form h2 { width: 100%; float: left; padding: 0 0 30px; margin: 0; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: #626262; line-height: 30px; letter-spacing: 0.7px; font-weight: 600; text-align: left; text-transform: uppercase; } .cd-form fieldset { width: 100%; float: left; position: relative; padding: 0; margin: 0; } .fieldset { width: 100%; float: left; position: relative; padding: 0 0 20px; } .fieldset:last-child { padding: 0px; } .cd-form label { width: 100%; float: left; margin: 0; padding: 0 0 5px; font-size: 12px; color: #797979; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; text-transform: uppercase; } .cd-form input { width: 100%; float: left; position: relative; margin: 0; border: solid 1px #c7c7c7; padding: 10px 15px 10px 15px; border-radius: 5px; outline: none; box-shadow: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .submit_pop { width: 100%; float: left; position: relative; background-color: #10316b; color: #fff; font-size: 13px; text-transform: uppercase; line-height: 20px; padding: 12px; text-align: center; border: none; border-radius: 5px; margin: 10px 0 0; } .submit_pop:hover { box-shadow: 0px 2px 4px rgba(0,0,0,0.5); } .close_btn { width: 30px; height: 30px; position: absolute; right: -30px; top: -30px; padding: 0; margin: 0; background: transparent url("../images/close.png") no-repeat center !important; border: none; outline: none; box-shadow: none; } .error_msg { display: none; position: absolute; color: #fff; width: 184px; padding: 10px; left: 6px; bottom: -44px; font-size: 12px; font-weight: 400; background: rgba(0, 0, 0, 0.75); border-radius: 4px; letter-spacing: 0.7px; } .cd-form input:hover, .cd-form input:focus .cd-form input:visited { border: solid 1px #10316b; } .corp_block { width: 100%; float: left; position: relative; padding: 60px 0px; background-color: #fff; } .rght_block { background-color: #f4f4f4; } @media (max-width: 768px) { .corp_block { padding: 30px 0px; } } .corp_right { width: 100%; float: left; position: relative; } .corp_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .corp_left { width: 100%; float: left; position: relative; } .corp_left h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 25px; color: #10316b; line-height: 35px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .corp_left h2::before, .corp_left h2::after { content: ''; position: absolute; width: 85px; height: 3px; left: -100px; top: 18px; background-color: #10316b; } .corp_left h2::after { background-color: #fdbe34; top: 21px; } .corp_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } .md_block { width: 100%; float: left; position: relative; padding: 50px 0px; background-color: #f4f4f4; } @media (max-width: 768px) { .md_block { padding: 30px 0px; } } .md_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .md_block h2::before, .md_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .md_block h2::after { background-color: #fdbe34; top: 21px; } .md_area { width: 100%; float: left; position: relative; padding: 15px 0px 0px; } .md_area .owl-carousel { width: 100%; margin: 0px; } .md_area .item { padding: 0px 0px; } .md_box { width: 100%; float: left; padding: 0px 20px; } .md_box .md_pic { width: 100%; float: left; padding: 0 0 20px; } .md_pic img { width: 100px; height: auto; display: block; margin: 0px auto; border-radius: 100%; border: solid 1px rgba(255,255,255,0.7); } .md_box h1 { width: 100%; float: left; padding: 0; margin: 0 0 5px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: #454545; line-height: 24px; letter-spacing: 0.7px; font-weight: 600; } .md_box h3 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 15px; color: #454545; line-height: 22px; letter-spacing: 0.7px; font-weight: 400; } .md_box p { width: 100%; float: left; padding: 0; margin: 0; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 13px; color: #454545; line-height: 24px; letter-spacing: 0.7px; font-weight: 400; } .branch_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #fff; } @media (max-width: 768px) { .branch_block { padding: 30px 0px; } } .branch_block.nopadding { padding: 0px; } .branch_right { width: 100%; float: left; position: relative; } .branch_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .branch_left { width: 100%; float: left; position: relative; } .branch_left h2 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 30px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; } .branch_left h2 span { font-weight: 300; float: left; width: 100%; } .branch_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } .contact_block { width: 100%; float: left; position: relative; padding: 50px 0px; background-color: #fff; } .form_div { width: 100%; height: auto; float: left; background: #10316b; margin: 30px 0px 30px; box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15); position: relative; z-index: 10; } .form_div .left_box1 { width: 70%; float: left; background: #fff; padding: 30px 30px 35px; } .form_div .left_box1 h3 { font-size: 20px; color: #10316b; font-weight: 600; margin: 0px 0px 30px; } .form_div .left_box1 .thanks1 { margin-bottom: 25px; } .thanks1 h2 { text-align: center; color: #269431; font-size: 18px; font-weight: 400; text-indent: 0px !important; line-height: 40px; margin: 0px; padding: 0px; } .thanks1 p { text-align: center; color: #269431; padding-bottom: 20px; } .enquire_widget ul li { display: inline-block; width: 48%; float: left; margin-right: 4%; position: relative; margin-bottom: 20px; } .enquire_widget ul li label { display: inline-block; max-width: 100%; position: absolute; top: 14px; font-size: 12px; color: #797979; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; text-transform: uppercase; pointer-events: none; } .enquire_widget ul li input { width: 100%; height: 50px; border: 0px; border-bottom: 1px solid #d0d0d0; padding: 0px 15px 0px 0px; outline: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .enquire_widget ul li input[type="file"] { width: 100%; height: 50px; border: 0px; border: none; padding: 15px 15px 0px 0px; outline: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .enquire_widget ul .txt_aria { width: 100%; } .enquire_widget ul .txt_aria label { width: 100%; } .enquire_widget ul .txt_aria textarea { width: 100%; height: 100px; border: 0px; padding-top: 15px; border-bottom: 1px solid #d0d0d0; resize: none; margin-bottom: 20px; outline: none; } .enquire_widget ul li:nth-child(2n) { margin-right: 0px; } .enquire_widget ul .submit_li { float: right; width: 100%; position: relative; } .enquire_widget ul .submit_li .btn-cont { width: 170px; float: right; position: relative; background-color: #10316b; color: #fff; font-size: 13px; text-transform: uppercase; line-height: 20px; padding: 12px; text-align: center; border: none; border-radius: 5px; margin: 10px 0 0; height: 45px; } .form_div .right_box { float: left; width: 30%; height: auto; background: #10316b; padding: 30px 30px; position: relative; } .form_div .right_box h3 { font-size: 20px; color: #fff; font-weight: 600; margin: 0px 0px 30px; } .form_div .right_box ul li { font-size: 15px; width: 100%; *text-transform: uppercase; font-weight: 300; color: #fff; line-height: 22px; display: table; height: auto; margin-bottom: 35px; } .form_div .right_box .cnt-ic01 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -4px -1px; float: left; margin-right: 15px; } .form_div .right_box ul li span { width: calc(100% - 40px); float: left; font-size: 14px; font-weight: 400; color: #fff; line-height: 24px; letter-spacing: 1px; } .contact_info img { width: 40px; float: left; height: 30px; padding: 0px 10px; display: block; } .form_div .right_box .cnt-ic02 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -35px -4px; float: left; margin-right: 15px; } .form_div .right_box .cnt-ic04 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -102px -4px; float: left; margin-right: 15px; } .social_outer { width: 100%; float: left; text-align: left; position: relative; padding: 5px 0px 0px 10px; z-index: 10; } .social_outer li { width: 25px !important; height: 25px !important; margin: 0px 5px !important; padding: 4px !important; display: inline-block !important; } .social_outer li img { width: 20px; height: 20px; display: block; } .hvr-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .md-input.active label { top: -10px !important; font-size: 12px; color: #8cc63f; -moz-transition: .15s ease all; -o-transition: .15s ease all; -webkit-transition: .15s ease all; transition: .15s ease all; } .form_div .contact_shape3 { width: 180px; height: 145px; background: url(../images/contact_shape3.jpg) no-repeat; background-size: cover; position: absolute; bottom: 0px; right: 0px; z-index: 1; } .contact_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .contact_block h2::before, .contact_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .contact_block h2::after { background-color: #fdbe34; top: 21px; } .contact_block .get_in_tuch p { width: 100%; float: left; padding: 0; margin: 0 0 15px; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; text-align: center; } .map_outer { width: 100%; height: auto; position: relative; z-index: 0; float: left; } .map_outer #googleMap { width: 100%; height: 500px; position: relative; } .career_block { width: 100%; float: left; position: relative; padding: 60px 0px 0px; background-color: #fff; } .career_block2 { width: 100%; float: left; position: relative; padding: 0px 15% 60px; background-color: #fff; } .career_block2 .form_div { background-color: #fff; padding: 50px; } .career_block .get_in_tuch { width: 100%; float: left; padding: 0px 20%; margin: 0; } .career_block .get_in_tuch h2 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: center; display: block; font-family: 'Lato', sans-serif; font-size: 30px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; } .career_block .get_in_tuch h2 span { font-weight: 300; } .career_block .get_in_tuch p { width: 100%; float: left; padding: 0; margin: 0 0 15px; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; text-align: center; } .career_oppo_area { width: 100%; float: left; position: relative; padding: 30px 20px 0px; } .career_head { width: 100%; float: left; position: relative; padding: 10px 15px 10px 45px; border: solid 1px rgba(0,0,0,0.1); color: #454545; font-size: 14px; line-height: 25px; text-align: left; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; margin: 0 0 20px; } .career_head::before { content: ''; position: absolute; left: 15px; top: 50%; width: 16px; height: 16px; background: url("../images/cd-drop.png") no-repeat center center; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s; } .career_head::after { content: ''; position: absolute; left: 15px; top: 50%; width: 16px; height: 16px; background: url("../images/cd-drop.png") no-repeat center center; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); -webkit-transform: translateY(-50%) rotate(-90deg); -moz-transform: translateY(-50%) rotate(-90deg); -ms-transform: translateY(-50%) rotate(-90deg); -o-transform: translateY(-50%) rotate(-90deg); transform: translateY(-50%) rotate(-90deg); -webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s; } .career_head.opened { margin: 0px !important; } .career_head.opened::after { -webkit-transform: translateY(-50%) rotate(0deg); -moz-transform: translateY(-50%) rotate(0deg); -ms-transform: translateY(-50%) rotate(0deg); -o-transform: translateY(-50%) rotate(0deg); transform: translateY(-50%) rotate(0deg); } .career_head.opened::before { display: none; } .career_content { width: 100%; float: left; position: relative; padding: 30px 15px; border: solid 1px rgba(0,0,0,0.1); margin: 5px 0 20px; display: none; } .career_right { width: 100%; float: left; position: relative; } .career_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .career_left { width: 100%; float: left; position: relative; } .career_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } @media (max-width: 991px) { .form_div .right_box, .form_div .left_box1 { width: 50%; padding: 30px; } .enquire_widget ul li { width: 99%; } .contact_block .get_in_tuch, .career_block .get_in_tuch { padding: 0%; } .career_block2 { padding: 0px 15px 30px; } } @media (max-width: 768px) { .form_div .right_box, .form_div .left_box1 { width: 100%; padding: 30px; } } .register_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #fff; } .form_area { max-width: 720px; width: 100%; float: left; margin: 0px; padding: 40px 20px; background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.15); position: relative; left: 50%; transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); -webkit-transform: translateX(-50%); } .form_area input[type="text"] { width: calc(50% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.15); height: 50px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; cursor: initial; } .form_area select { width: calc(100% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.1); height: 50px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; } .form_area textarea { width: calc(100% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.1); height: 100px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; } .form_area input[type="submit"] { width:150px; height:40px; margin: 30px 0px 0px 15px; display:block; font-size:12px; font-weight: 600; letter-spacing: 0.7px; line-height:40px; text-decoration:none; border-radius: 5px; -webkit-border-radius: 5px; text-transform: uppercase; border: none; background-color: #10316b; color: #fff; text-align: center; -webkit-animation-delay:1.3s; animation-delay:1.3s; -webkit-animation-duration:2s; animation-duration:2s; -webkit-animation-timing-function:cubic-bezier(.23,1,.32,1); animation-timing-function:cubic-bezier(.23,1,.32,1) } .form_area input[type="submit"]:hover, .form_area input[type="submit"]:focus { color: #10316b; background:#fdbe34; box-shadow: 2px 2px 6px rgba(0,0,0,0.25); } .gallery_block { width: 100%; float: left; position: relative; padding: 80px 0px; min-height: calc(100vh - 515px); background-color: #fff; } .gallery_block p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: center; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: rgba(0,0,0,0.4); line-height: 26px; letter-spacing: 1px; font-weight: 500; } .activity_block { width: 100%; float: left; position: relative; padding: 80px 0px; } .activity_left_area { width: 250px; float: left; position: relative; } .activity_left_area ul { width: 100%; float: left; } .activity_left_area ul li { width: 100%; float: left; padding: 15px; position: relative; margin: 0 0 5px; border: solid 1px rgba(0,0,0,0.15); background-color: #fff; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::after { content: ''; position: absolute; width: 0; height: 0; top: 16px; right: -10px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 11px solid #fff; z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::before { content: ''; position: absolute; width: 0; height: 0; top: 15px; right: -12px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 12px solid rgba(0,0,0,0.15); z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; } .activity_left_area ul li:hover::after, .activity_left_area ul li.active::after, .activity_left_area ul li:hover::before, .activity_left_area ul li.active::before { border-left: 11px solid #10316b; } .activity_left_area ul li a { width: 100%; float: left; position: relative; padding: 0; font-size: 14px; line-height: 25px; color: #4e4e4e; text-transform: uppercase; font-weight: 700; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li:hover, .activity_left_area ul li.active { background-color: #10316b; } .activity_left_area ul li:hover a, .activity_left_area ul li.active a { color: #fdbe34; } .activity_right_area { width: calc(100% - 250px); float: left; position: relative; padding: 0 0 0 30px; } .activity_area { width: 100%; float: left; position: relative; padding: 0; display: none; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_area p { width: 100%; float: left; position: relative; padding: 0; margin: 0; text-align: center; font-size: 14px; line-height: 24px; color: #4e4e4e; font-weight: 400; } @media (max-width: 992px) { .activity_left_area { width: 100%; margin: 0 0 20px; } .activity_left_area ul { text-align: center; } .activity_left_area ul li { display: inline-block; width: auto; float: none; padding: 10px 25px; } .activity_left_area ul li::after { content: ''; position: absolute; width: 0; height: 0; top: 100%; right: calc(50% - 11px); border-left: 11px solid transparent; border-right: 11px solid transparent; border-top: 11px solid #fff; z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::before { content: ''; position: absolute; width: 0; height: 0; top: 100%; right: calc(50% - 12px); border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid rgba(0,0,0,0.15); z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; } .activity_left_area ul li:hover::after, .activity_left_area ul li.active::after, .activity_left_area ul li:hover::before, .activity_left_area ul li.active::before { border-top: 12px solid #10316b; border-left: 12px solid transparent; } .activity_right_area { width: 100%; float: left; padding: 0; } } .gallery_area { width: 100%; float: left; position: relative; padding: 10px 0 0; } .deal_box { width: 100%; float: left; position: relative; padding: 0px; overflow: hidden; margin: 0 0 30px; } .deal_box img { width: 100%; height: auto; display: block; margin: 0; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; } .deal_box:hover img { transform: translateY(-100%); -moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); -webkit-transform: translateY(-100%); } .deal_caption { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: #10316b; overflow: hidden; padding: 20px; z-index: 10; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); -webkit-transform: translateY(100%); } .deal_box:hover .deal_caption { transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); -webkit-transform: translateY(0%); } .deal_caption h3 { width: 100%; float: left; position: relative; padding: 0; top: 50%; margin: 10px 0 0px; text-align: center; display: block; font-size: 18px; color: #fff; line-height: 25px; letter-spacing: 1px; font-weight: 400; text-transform: uppercase; transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); -webkit-transform: translateY(-50%); } .deal_caption h5 { width: 100%; float: left; padding: 0; margin: 0px; text-align: center; display: block; font-family: 'Roboto', sans-serif; font-size: 13px; color: #fff; line-height: 22px; letter-spacing: 1px; font-weight: 400; } .gallery_box { width: 100%; float: left; position: relative; padding: 0px; overflow: hidden; margin: 0 0 30px; cursor: url(../images/zoom-in.png), auto; } .gallery_box img { width: 100%; height: auto; display: block; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; } .gallery_box::after { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0,0,0,0.35); overflow: hidden; padding: 20px; z-index: 10; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); -webkit-transform: translateY(100%); } .gallery_box:hover::after { transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); -webkit-transform: translateY(0%); }
design/css/go.css
@charset "utf-8"; @import url('bootstrap.min.css'); @import url('animate.min.css'); @import url('theme.min.css'); @import url('plugin1.min.css'); @import url('plugin.min.css'); body { width: 100%; margin: 0px !important; padding: 0px !important; overflow-x: hidden; background-color: #fff; font-family: 'Lato', sans-serif; } *, *::after, *::before { transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; outline: none; } *:hover, *:focus { outline: none; text-decoration: none; box-shadow: none; } /* Let's get this party started */ ::-webkit-scrollbar { width: 5px; } /* Track */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); -webkit-border-radius: 10px; border-radius: 10px; } /* Handle */ ::-webkit-scrollbar-thumb { -webkit-border-radius: 10px; border-radius: 10px; background: rgba(16,49,107,1); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); } ::-webkit-scrollbar-thumb:window-inactive { background: rgba(16,49,107,1); } ul { padding: 0; margin: 0; list-style: none; } li { list-style: none; } a, a:hover, a:focus { text-decoration: none; outline: none; color: inherit; } #preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; background: #fff url(../images/loader.gif) no-repeat center center; background-size: 200px 200px; } .content_preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; display: none; background: #fff url(../images/loader.gif) no-repeat center center; background-size: 200px 200px; } .wrapper { width: 100%; float: left; position: relative; overflow-x: hidden; } .canvas_area { width: 100%; float: left; padding: 0px 5%; } .header_block { width: 100%; float: left; position: relative; top: 0; left: 0; z-index: 999; background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.15) } .header_block.is-visible { background-color: #fff; height: 100vh; overflow-y: auto; overflow-x: hidden; } .top_head_block { width: 100%; float: left; position: relative; padding: 14px 0px; background-color: #10316b; } .top_head_area { width: auto; float: right; font-size: 12px; color: #fff; font-weight: 300; line-height: 16px; letter-spacing: 0.7px; } .top_head_area a { width: auto; float: left; color: #fff; padding: 0px 0px 0px 30px; } .top_head_area a img { width: 16px; height: 16px; display: block; margin-right: 5px; float: left; } .main_head_block { width: 100%; float: left; position: relative; padding: 12px 0; background-color: #fff; } .logo { width: auto; float: left; padding: 0px; position: relative; margin-top: 0px; margin-bottom: 0px; } .logo img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .main_menu_area { width: auto;/*calc(100% - 106px)*/ float: right; padding: 3px 0px 2px 0px; } @media (max-width: 940px) { .logo img { width: 90%; } .main_menu_area { width: calc(100% - 180px); float: right; } } @media (max-width: 560px) { .top_head_block { padding: 8px 0px; } .tab_phone { display: none; } .logo img { width: 160px; } .main_menu_area { width: calc(100% - 180px); padding: 0px; } } .header_right { width: auto; float: right; } .shadow_layer { width: 100%; height: 100%; position: absolute; z-index: 99; background-color: rgba(0,0,0,0.01); display: none; } .shadow_layer.is-visible { display: block; } .slider_block { width: 100%; float: left; position: relative; } .feature_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 50px 0px; } .feature_box { width: 100%; float: left; padding: 20px; } @media (max-width: 768px) { .feature_block { padding: 20px 0px; } } .feature_icon { width: 100%; height: 64px; float: left; padding: 6px; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .feature_icon img { max-width: 100%; height: 100%; display: block; margin: 0px auto; transition-delay: 0.6s; -moz-transition-delay: 0.6s; -ms-transition-delay: 0.6s; -webkit-transition-delay: 0.6s; -o-transition-delay: 0.6s; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .feature_box h3 { width: 100%; float: left; font-family: 'Lato', sans-serif; font-size: 20px; line-height: 23px; color: #10316b; font-weight: 700; padding: 20px 0px 0px; margin: 0; text-align: center; letter-spacing: 0.7px; } .feature_box p { width: 100%; float: left; font-family: 'Lato', sans-serif; font-size: 15px; line-height: 23px; color: #626262; font-weight: 300; padding: 15px 0px 0px; margin: 0; text-align: center;letter-spacing: 0.7px; } .feature_box:hover .feature_icon { -webkit-transform: rotate3d(0,1,0,-360deg); -moz-transform: rotate3d(0,1,0,-360deg); -o-transform: rotate3d(0,1,0,-360deg); -ms-transform: rotate3d(0,1,0,-360deg); transform: rotate3d(0,1,0,-360deg); } .feature_box:hover .feature_icon img { transition-delay: 0.6s; -moz-transition-delay: 0.6s; -ms-transition-delay: 0.6s; -webkit-transition-delay: 0.6s; -o-transition-delay: 0.6s; -webkit-transform: rotate3d(0,1,0,360deg); -moz-transform: rotate3d(0,1,0,360deg); -o-transform: rotate3d(0,1,0,360deg); -ms-transform: rotate3d(0,1,0,360deg); transform: rotate3d(0,1,0,360deg); } .feature_block .owl-theme .owl-controls { text-align: right; } .about_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 80px 0px; } .about_box { position: relative; } .about_box img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .about_box h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .about_box h2::before, .about_box h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .about_box h2::after { background-color: #fdbe34; top: 21px; } .about_box p { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 400; } @media (max-width: 768px) { .about_box { width: 100%; } } .venture_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #10316b; } .venture_area { width: 100%; float: left; position: relative; padding: 30px 0px 0px; } .venture_area h3 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #fff; line-height: 40px; letter-spacing: 0.7px; font-weight: 500; position: relative; margin: 0 0 5px; } .venture_area h3::before, .venture_area h3::after { content: ''; position: absolute; width: 85px; height: 3px; left: -100px; top: 18px; background-color: #fdbe34; } .venture_area h3::after { background-color: #fff; top: 21px; } .venture_area ul { width: 100%; float: left; padding: 10px 0px; margin: 0; } .venture_area ul li { width: 100%; float: left; position: relative; padding: 5px 0px 5px 30px; text-align: left; display: block; font-family:'Lato',sans-serif; font-size: 15px; color: #fff; line-height: 25px; letter-spacing: 1px; font-weight: 500; } .venture_area ul li::before { content: ''; position: absolute; width: 6px; height: 6px; background-color: #fdbe34; top: 15px; left: 0; } @media (max-width: 992px) { .venture_block { padding: 50px 0px; } } .venture_box { width: 100%; float: left; padding: 0px 15px; -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; cursor: ew-resize; } .venture_box img { width: 100%; height: auto; display: block; } @media (max-width: 768px) { .venture_box { margin: 30px 0px; } } .testimonial_block { width: 100%; float: left; position: relative; background-color: #fff; padding: 80px 0px; } .testimonial_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .testimonial_block h2::before, .testimonial_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .testimonial_block h2::after { background-color: #fdbe34; top: 21px; } .testimonial_area { width: 100%; float: left; position: relative; padding: 30px 0px; } .testimonial_area .item { padding: 0px 15px 15px; } .testimonial_box { width: 100%; float: left; position: relative; padding: 20px; border: solid 1px rgba(0,0,0,0.18); } /*.testimonial_box::after { content: ''; position: absolute; width: 0; height: 0; bottom: -10px; left: 15px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #fff; z-index: 999; } .testimonial_box::before { content: ''; position: absolute; width: 0; height: 0; bottom: -12px; left: 13px; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid rgba(0,0,0,0.18); z-index: 998; }*/ .testimonial_box p { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 400; } .testimonial_box h3 { width: 100%; float: left; padding: 0; margin: 0px 0 5px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 17px; color: #454545; line-height: 26px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .testimonial_box h3::before { content: ''; position: absolute; width: 4px; height: 55px; background-color: #10316b; left: -20px; top: 0; } .testimonial_box h4 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 13px; color: #454545; line-height: 20px; letter-spacing: 0.7px; font-weight: 400; } .footer_block { width: 100%; float: left; position: relative; background-color: #0d244c; padding: 0px; } .footer_area { width: 100%; float: left; position: relative; padding: 60px 0px 30px; } .footer_logo { width: 100%; float: left; position: relative; text-align: center; } .footer_logo img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .footer_area ul { width: 100%; float: left; position: relative; text-align: center; padding: 20px 0px 0px; } .footer_area ul li { width: auto; position: relative; text-align: center; padding: 15px 2%; display: inline-block; } .footer_area ul li a { width: auto; position: relative; text-align: center; padding: 0; font-family: 'Lato', sans-serif; font-size: 14px; color: #fff; line-height: 30px; letter-spacing: 0.7px; font-weight: 400; } .footer_area ul > li + li::before { content: ""; background: #fff; background-size: 20px 20px; position: absolute; width: 1px; height: 17px; top: calc(50% - 8px); left: 0px; } .footer_soc_area { width: 100%; float: left; position: relative; text-align: center; padding: 20px 0 0; } .footer_soc_area a { width: 25px; height: 25px; margin: 0px 15px; padding: 4px; display: inline-block; } .footer_soc_area a img { width: 20px; height: 20px; display: block; } .sub_footer_area { width: 100%; float: left; position: relative; padding: 20px 0px; font-family: 'Lato', sans-serif; font-size: 13px; color: #fff; line-height: 23px; letter-spacing: 0.7px; font-weight: 500; text-align: center; background-color: rgba(0,0,0,0.25); } .sub_footer_area a { color: #fff; } .sub_footer_area a:hover { color: #fff; } .banner_block { width: 100%; float: left; position: relative; padding: 30px 0px; background: #f3f3f3; } .banner_block h1 { width: 100%; float: left; position: relative; font-size: 24px; text-transform: uppercase; margin: 0; padding: 0; color: #07080d; } .breadcrumb { width: auto; float: left; padding: 10px 0px; margin: 0; } .breadcrumb li { display: inline-block; margin-right: 5px; } .breadcrumb a { font-size: 13px; color: #686868; text-transform: uppercase; font-weight: 400; } .cd-modal { width: 370px; margin-top: 70px; } .cd-form { width: 100%; float: left; position: relative; padding: 35px; background-color: #fff; border-radius: 5px; } .cd-form h2 { width: 100%; float: left; padding: 0 0 30px; margin: 0; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: #626262; line-height: 30px; letter-spacing: 0.7px; font-weight: 600; text-align: left; text-transform: uppercase; } .cd-form fieldset { width: 100%; float: left; position: relative; padding: 0; margin: 0; } .fieldset { width: 100%; float: left; position: relative; padding: 0 0 20px; } .fieldset:last-child { padding: 0px; } .cd-form label { width: 100%; float: left; margin: 0; padding: 0 0 5px; font-size: 12px; color: #797979; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; text-transform: uppercase; } .cd-form input { width: 100%; float: left; position: relative; margin: 0; border: solid 1px #c7c7c7; padding: 10px 15px 10px 15px; border-radius: 5px; outline: none; box-shadow: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .submit_pop { width: 100%; float: left; position: relative; background-color: #10316b; color: #fff; font-size: 13px; text-transform: uppercase; line-height: 20px; padding: 12px; text-align: center; border: none; border-radius: 5px; margin: 10px 0 0; } .submit_pop:hover { box-shadow: 0px 2px 4px rgba(0,0,0,0.5); } .close_btn { width: 30px; height: 30px; position: absolute; right: -30px; top: -30px; padding: 0; margin: 0; background: transparent url("../images/close.png") no-repeat center !important; border: none; outline: none; box-shadow: none; } .error_msg { display: none; position: absolute; color: #fff; width: 184px; padding: 10px; left: 6px; bottom: -44px; font-size: 12px; font-weight: 400; background: rgba(0, 0, 0, 0.75); border-radius: 4px; letter-spacing: 0.7px; } .cd-form input:hover, .cd-form input:focus .cd-form input:visited { border: solid 1px #10316b; } .corp_block { width: 100%; float: left; position: relative; padding: 60px 0px; background-color: #fff; } .rght_block { background-color: #f4f4f4; } @media (max-width: 768px) { .corp_block { padding: 30px 0px; } } .corp_right { width: 100%; float: left; position: relative; } .corp_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .corp_left { width: 100%; float: left; position: relative; } .corp_left h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 25px; color: #10316b; line-height: 35px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .corp_left h2::before, .corp_left h2::after { content: ''; position: absolute; width: 85px; height: 3px; left: -100px; top: 18px; background-color: #10316b; } .corp_left h2::after { background-color: #fdbe34; top: 21px; } .corp_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } .md_block { width: 100%; float: left; position: relative; padding: 50px 0px; background-color: #f4f4f4; } @media (max-width: 768px) { .md_block { padding: 30px 0px; } } .md_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .md_block h2::before, .md_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .md_block h2::after { background-color: #fdbe34; top: 21px; } .md_area { width: 100%; float: left; position: relative; padding: 15px 0px 0px; } .md_area .owl-carousel { width: 100%; margin: 0px; } .md_area .item { padding: 0px 0px; } .md_box { width: 100%; float: left; padding: 0px 20px; } .md_box .md_pic { width: 100%; float: left; padding: 0 0 20px; } .md_pic img { width: 100px; height: auto; display: block; margin: 0px auto; border-radius: 100%; border: solid 1px rgba(255,255,255,0.7); } .md_box h1 { width: 100%; float: left; padding: 0; margin: 0 0 5px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: #454545; line-height: 24px; letter-spacing: 0.7px; font-weight: 600; } .md_box h3 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 15px; color: #454545; line-height: 22px; letter-spacing: 0.7px; font-weight: 400; } .md_box p { width: 100%; float: left; padding: 0; margin: 0; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 13px; color: #454545; line-height: 24px; letter-spacing: 0.7px; font-weight: 400; } .branch_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #fff; } @media (max-width: 768px) { .branch_block { padding: 30px 0px; } } .branch_block.nopadding { padding: 0px; } .branch_right { width: 100%; float: left; position: relative; } .branch_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .branch_left { width: 100%; float: left; position: relative; } .branch_left h2 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 30px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; } .branch_left h2 span { font-weight: 300; float: left; width: 100%; } .branch_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } .contact_block { width: 100%; float: left; position: relative; padding: 50px 0px; background-color: #fff; } .form_div { width: 100%; height: auto; float: left; background: #10316b; margin: 30px 0px 30px; box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15); position: relative; z-index: 10; } .form_div .left_box1 { width: 70%; float: left; background: #fff; padding: 30px 30px 35px; } .form_div .left_box1 h3 { font-size: 20px; color: #10316b; font-weight: 600; margin: 0px 0px 30px; } .form_div .left_box1 .thanks1 { margin-bottom: 25px; } .thanks1 h2 { text-align: center; color: #269431; font-size: 18px; font-weight: 400; text-indent: 0px !important; line-height: 40px; margin: 0px; padding: 0px; } .thanks1 p { text-align: center; color: #269431; padding-bottom: 20px; } .enquire_widget ul li { display: inline-block; width: 48%; float: left; margin-right: 4%; position: relative; margin-bottom: 20px; } .enquire_widget ul li label { display: inline-block; max-width: 100%; position: absolute; top: 14px; font-size: 12px; color: #797979; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; text-transform: uppercase; pointer-events: none; } .enquire_widget ul li input { width: 100%; height: 50px; border: 0px; border-bottom: 1px solid #d0d0d0; padding: 0px 15px 0px 0px; outline: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .enquire_widget ul li input[type="file"] { width: 100%; height: 50px; border: 0px; border: none; padding: 15px 15px 0px 0px; outline: none; font-size: 13px; color: #454545; line-height: 20px; text-align: left; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: 0.7px; } .enquire_widget ul .txt_aria { width: 100%; } .enquire_widget ul .txt_aria label { width: 100%; } .enquire_widget ul .txt_aria textarea { width: 100%; height: 100px; border: 0px; padding-top: 15px; border-bottom: 1px solid #d0d0d0; resize: none; margin-bottom: 20px; outline: none; } .enquire_widget ul li:nth-child(2n) { margin-right: 0px; } .enquire_widget ul .submit_li { float: right; width: 100%; position: relative; } .enquire_widget ul .submit_li .btn-cont { width: 170px; float: right; position: relative; background-color: #10316b; color: #fff; font-size: 13px; text-transform: uppercase; line-height: 20px; padding: 12px; text-align: center; border: none; border-radius: 5px; margin: 10px 0 0; height: 45px; } .form_div .right_box { float: left; width: 30%; height: auto; background: #10316b; padding: 30px 30px; position: relative; } .form_div .right_box h3 { font-size: 20px; color: #fff; font-weight: 600; margin: 0px 0px 30px; } .form_div .right_box ul li { font-size: 15px; width: 100%; *text-transform: uppercase; font-weight: 300; color: #fff; line-height: 22px; display: table; height: auto; margin-bottom: 35px; } .form_div .right_box .cnt-ic01 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -4px -1px; float: left; margin-right: 15px; } .form_div .right_box ul li span { width: calc(100% - 40px); float: left; font-size: 14px; font-weight: 400; color: #fff; line-height: 24px; letter-spacing: 1px; } .contact_info img { width: 40px; float: left; height: 30px; padding: 0px 10px; display: block; } .form_div .right_box .cnt-ic02 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -35px -4px; float: left; margin-right: 15px; } .form_div .right_box .cnt-ic04 { width: 25px; height: 25px; background: url(../images/contact_icon.png) no-repeat; background-position: -102px -4px; float: left; margin-right: 15px; } .social_outer { width: 100%; float: left; text-align: left; position: relative; padding: 5px 0px 0px 10px; z-index: 10; } .social_outer li { width: 25px !important; height: 25px !important; margin: 0px 5px !important; padding: 4px !important; display: inline-block !important; } .social_outer li img { width: 20px; height: 20px; display: block; } .hvr-bob { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px transparent; -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; } .md-input.active label { top: -10px !important; font-size: 12px; color: #8cc63f; -moz-transition: .15s ease all; -o-transition: .15s ease all; -webkit-transition: .15s ease all; transition: .15s ease all; } .form_div .contact_shape3 { width: 180px; height: 145px; background: url(../images/contact_shape3.jpg) no-repeat; background-size: cover; position: absolute; bottom: 0px; right: 0px; z-index: 1; } .contact_block h2 { width: 100%; float: left; padding: 0 20px 0 0; margin: 0 0 25px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 32px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; position: relative; } .contact_block h2::before, .contact_block h2::after { content: ''; position: absolute; width: 10%; height: 3px; left: -12%; top: 18px; background-color: #10316b; } .contact_block h2::after { background-color: #fdbe34; top: 21px; } .contact_block .get_in_tuch p { width: 100%; float: left; padding: 0; margin: 0 0 15px; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; text-align: center; } .map_outer { width: 100%; height: auto; position: relative; z-index: 0; float: left; } .map_outer #googleMap { width: 100%; height: 500px; position: relative; } .career_block { width: 100%; float: left; position: relative; padding: 60px 0px 0px; background-color: #fff; } .career_block2 { width: 100%; float: left; position: relative; padding: 0px 15% 60px; background-color: #fff; } .career_block2 .form_div { background-color: #fff; padding: 50px; } .career_block .get_in_tuch { width: 100%; float: left; padding: 0px 20%; margin: 0; } .career_block .get_in_tuch h2 { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: center; display: block; font-family: 'Lato', sans-serif; font-size: 30px; color: #10316b; line-height: 40px; letter-spacing: 0.7px; font-weight: 600; } .career_block .get_in_tuch h2 span { font-weight: 300; } .career_block .get_in_tuch p { width: 100%; float: left; padding: 0; margin: 0 0 15px; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; text-align: center; } .career_oppo_area { width: 100%; float: left; position: relative; padding: 30px 20px 0px; } .career_head { width: 100%; float: left; position: relative; padding: 10px 15px 10px 45px; border: solid 1px rgba(0,0,0,0.1); color: #454545; font-size: 14px; line-height: 25px; text-align: left; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; margin: 0 0 20px; } .career_head::before { content: ''; position: absolute; left: 15px; top: 50%; width: 16px; height: 16px; background: url("../images/cd-drop.png") no-repeat center center; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s; } .career_head::after { content: ''; position: absolute; left: 15px; top: 50%; width: 16px; height: 16px; background: url("../images/cd-drop.png") no-repeat center center; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); -webkit-transform: translateY(-50%) rotate(-90deg); -moz-transform: translateY(-50%) rotate(-90deg); -ms-transform: translateY(-50%) rotate(-90deg); -o-transform: translateY(-50%) rotate(-90deg); transform: translateY(-50%) rotate(-90deg); -webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s; } .career_head.opened { margin: 0px !important; } .career_head.opened::after { -webkit-transform: translateY(-50%) rotate(0deg); -moz-transform: translateY(-50%) rotate(0deg); -ms-transform: translateY(-50%) rotate(0deg); -o-transform: translateY(-50%) rotate(0deg); transform: translateY(-50%) rotate(0deg); } .career_head.opened::before { display: none; } .career_content { width: 100%; float: left; position: relative; padding: 30px 15px; border: solid 1px rgba(0,0,0,0.1); margin: 5px 0 20px; display: none; } .career_right { width: 100%; float: left; position: relative; } .career_right img { max-width: 100%; height: auto; display: block; margin: 0px auto; } .career_left { width: 100%; float: left; position: relative; } .career_left p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: left; display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #626262; line-height: 23px; letter-spacing: 0.7px; font-weight: 300; } @media (max-width: 991px) { .form_div .right_box, .form_div .left_box1 { width: 50%; padding: 30px; } .enquire_widget ul li { width: 99%; } .contact_block .get_in_tuch, .career_block .get_in_tuch { padding: 0%; } .career_block2 { padding: 0px 15px 30px; } } @media (max-width: 768px) { .form_div .right_box, .form_div .left_box1 { width: 100%; padding: 30px; } } .register_block { width: 100%; float: left; position: relative; padding: 80px 0px; background-color: #fff; } .form_area { max-width: 720px; width: 100%; float: left; margin: 0px; padding: 40px 20px; background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.15); position: relative; left: 50%; transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); -webkit-transform: translateX(-50%); } .form_area input[type="text"] { width: calc(50% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.15); height: 50px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; cursor: initial; } .form_area select { width: calc(100% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.1); height: 50px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; } .form_area textarea { width: calc(100% - 30px); float: left; position: relative; padding: 10px; border: solid 1px rgba(0,0,0,0.1); height: 100px; color: #454545; font-size: 14px; margin: 0 15px 20px; border-radius: 2px; } .form_area input[type="submit"] { width:150px; height:40px; margin: 30px 0px 0px 15px; display:block; font-size:12px; font-weight: 600; letter-spacing: 0.7px; line-height:40px; text-decoration:none; border-radius: 5px; -webkit-border-radius: 5px; text-transform: uppercase; border: none; background-color: #10316b; color: #fff; text-align: center; -webkit-animation-delay:1.3s; animation-delay:1.3s; -webkit-animation-duration:2s; animation-duration:2s; -webkit-animation-timing-function:cubic-bezier(.23,1,.32,1); animation-timing-function:cubic-bezier(.23,1,.32,1) } .form_area input[type="submit"]:hover, .form_area input[type="submit"]:focus { color: #10316b; background:#fdbe34; box-shadow: 2px 2px 6px rgba(0,0,0,0.25); } .gallery_block { width: 100%; float: left; position: relative; padding: 80px 0px; min-height: calc(100vh - 515px); background-color: #fff; } .gallery_block p { width: 100%; float: left; padding: 0; margin: 0 0 15px; text-align: center; display: block; font-family: 'Lato', sans-serif; font-size: 18px; color: rgba(0,0,0,0.4); line-height: 26px; letter-spacing: 1px; font-weight: 500; } .activity_block { width: 100%; float: left; position: relative; padding: 80px 0px; } .activity_left_area { width: 250px; float: left; position: relative; } .activity_left_area ul { width: 100%; float: left; } .activity_left_area ul li { width: 100%; float: left; padding: 15px; position: relative; margin: 0 0 5px; border: solid 1px rgba(0,0,0,0.15); background-color: #fff; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::after { content: ''; position: absolute; width: 0; height: 0; top: 16px; right: -10px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 11px solid #fff; z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::before { content: ''; position: absolute; width: 0; height: 0; top: 15px; right: -12px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 12px solid rgba(0,0,0,0.15); z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; } .activity_left_area ul li:hover::after, .activity_left_area ul li.active::after, .activity_left_area ul li:hover::before, .activity_left_area ul li.active::before { border-left: 11px solid #10316b; } .activity_left_area ul li a { width: 100%; float: left; position: relative; padding: 0; font-size: 14px; line-height: 25px; color: #4e4e4e; text-transform: uppercase; font-weight: 700; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li:hover, .activity_left_area ul li.active { background-color: #10316b; } .activity_left_area ul li:hover a, .activity_left_area ul li.active a { color: #fdbe34; } .activity_right_area { width: calc(100% - 250px); float: left; position: relative; padding: 0 0 0 30px; } .activity_area { width: 100%; float: left; position: relative; padding: 0; display: none; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_area p { width: 100%; float: left; position: relative; padding: 0; margin: 0; text-align: center; font-size: 14px; line-height: 24px; color: #4e4e4e; font-weight: 400; } @media (max-width: 992px) { .activity_left_area { width: 100%; margin: 0 0 20px; } .activity_left_area ul { text-align: center; } .activity_left_area ul li { display: inline-block; width: auto; float: none; padding: 10px 25px; } .activity_left_area ul li::after { content: ''; position: absolute; width: 0; height: 0; top: 100%; right: calc(50% - 11px); border-left: 11px solid transparent; border-right: 11px solid transparent; border-top: 11px solid #fff; z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; } .activity_left_area ul li::before { content: ''; position: absolute; width: 0; height: 0; top: 100%; right: calc(50% - 12px); border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid rgba(0,0,0,0.15); z-index: 998; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; } .activity_left_area ul li:hover::after, .activity_left_area ul li.active::after, .activity_left_area ul li:hover::before, .activity_left_area ul li.active::before { border-top: 12px solid #10316b; border-left: 12px solid transparent; } .activity_right_area { width: 100%; float: left; padding: 0; } } .gallery_area { width: 100%; float: left; position: relative; padding: 10px 0 0; } .deal_box { width: 100%; float: left; position: relative; padding: 0px; overflow: hidden; margin: 0 0 30px; } .deal_box img { width: 100%; height: auto; display: block; margin: 0; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; } .deal_box:hover img { transform: translateY(-100%); -moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); -webkit-transform: translateY(-100%); } .deal_caption { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: #10316b; overflow: hidden; padding: 20px; z-index: 10; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); -webkit-transform: translateY(100%); } .deal_box:hover .deal_caption { transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); -webkit-transform: translateY(0%); } .deal_caption h3 { width: 100%; float: left; position: relative; padding: 0; top: 50%; margin: 10px 0 0px; text-align: center; display: block; font-size: 18px; color: #fff; line-height: 25px; letter-spacing: 1px; font-weight: 400; text-transform: uppercase; transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); -webkit-transform: translateY(-50%); } .deal_caption h5 { width: 100%; float: left; padding: 0; margin: 0px; text-align: center; display: block; font-family: 'Roboto', sans-serif; font-size: 13px; color: #fff; line-height: 22px; letter-spacing: 1px; font-weight: 400; } .gallery_box { width: 100%; float: left; position: relative; padding: 0px; overflow: hidden; margin: 0 0 30px; cursor: url(../images/zoom-in.png), auto; } .gallery_box img { width: 100%; height: auto; display: block; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; } .gallery_box::after { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0,0,0,0.35); overflow: hidden; padding: 20px; z-index: 10; transition: all linear 0.5s; -moz-transition: all linear 0.5s; -ms-transition: all linear 0.5s; -o-transition: all linear 0.5s; -webkit-transition: all linear 0.5s; transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); -webkit-transform: translateY(100%); } .gallery_box:hover::after { transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); -webkit-transform: translateY(0%); }
0.202207
0.042463
body { font-family: 'Roboto', sans-serif; } /* Header styling */ header { height: 100vh; width: 100%; position: relative; background-color: black; background-image: url("../images/image2.png"); background-repeat: no-repeat; background-size: cover; } /* Nav bar */ .navbar { display: flex; align-items: center; justify-content: space-between; position: absolute; top: 0; left: 0; width: 100%; background: rgba(0, 0, 0, 0.5); height: 15%; } .logo { height: 100%; display: flex; align-items: center; } .active{ color: #F19201; } nav { display: flex; align-items: center; justify-content: space-around; width: 60%; height: 100vh; } .logo h2 { color: #F19201; } nav ul { display: flex; align-items: center; justify-content: space-between; width: 80%; height: 100%; } nav ul li { display: flex; align-items: center; justify-content: space-between; list-style: none; height: 100%; } nav ul li a { text-decoration: none; font-weight: 800; color: white; } nav ul li a:hover{ color: #F19201; } /* below nav bar */ .nav-btn { position: relative; display: flex; align-items: center; justify-content: center; margin-right: 4rem; } .nav-btn-main{ position: relative; display: flex; color: #F19201; align-items: center; margin-right: 64px; } .nav-btn-main button{ text-align: center; border: none; color: white; padding: 20px 30px; font-size: 16px; text-decoration: none; display: inline-block; background-color: #F19201; } .nav-btn button { text-align: center; text-decoration: none; display: inline-block; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } .btn-moringa{ text-align: center; text-decoration: none; display: inline-block; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } .nav-bar-content { display: flex; flex-direction: column; width: 100%; height: 100%; } .nav-bar-content-main { width: 50%; height: 100%; display: flex; margin-top: 150px; flex-direction: column; float: left; margin-left: 50px; } .nav-bar-content-main p { color: white; font-weight: 600; font-size: xx-large; } .content-main{ display: block; } .moringa-btn { text-align: center; float: left; clear: left; text-decoration: none; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } /* services styles */ .services { width: 100%; margin: auto; text-align: center; padding-top: 50px; background-color: #bdb4a8; } .services>p { font-style: italic; } .services>h1 { color: #F19201; font-size: 40px; font-weight: 700; } /* This is the review section */ .review>.review-content>p { font-style: italic; } .row { margin-top: 50px; display: flex; justify-content: space-around; } .food-item { background-color: white; margin-bottom: 10%; box-sizing: border-box; height: 200px; padding: 25px 17px; flex-basis: 30%; } .food-item p{ font-weight: 800; } .food-item>h2 { width: 30px; text-align: center; margin: auto; background-color: #F19201; border-radius: 50%; } .review { display: flex; background-color: black; } .review img { width: 100%; height: auto; max-width: 600px; } .review-content { margin: auto; text-align: center; padding-top: 50px; } .review h1 { color: white; text-decoration: underline; } .review h2 { color: white; } .review p { color: white; } /* Menu section */ .menu { display: flex; flex-direction: column; align-items: center; background-color: #bdb4a8; } .menu h1 { text-align: center; color: #F19201; font-size: 40px; font-weight: 700; } .menu>p { width: 70%; text-align: center; font-style: italic; } .menu-item { width: 30%; margin: 1%; display: flex; float: left; flex-direction: row; padding: 2%; background-color: white; } .menu-item-img { width: 200px; height: 200px; float: left; } .menu-item-content { width: 70%; float: left; margin-left: 20px; } .menu-holder { display: flex; flex-wrap: wrap; justify-content: center; } .food-price { font-size: 1rem; font-weight: 800; margin: 5% 0; color: #F19201; font-style: normal; } .food-detail { font-size: 1rem; } .img-responsive { width: 100%; } .btn-order { padding: 5%; border: none; font-size: 1rem; border-radius: 5px; } /* Footer section styling */ .footer .footer-head { background-image: url("../images/image8.png"); background-repeat: no-repeat; display: flex; flex-direction: column; align-items: center; height: 400px; background-size: cover; justify-content: center; } .footer .footer-head p, .footer .footer-head h1 { color: white; } .footer .footer-head button { background-color: transparent; background-repeat: no-repeat; border: 2px solid #ffffff; padding: 15px 32px; color: white; } .footer .footer-tail { background-color: black; display: flex; justify-content: center; } .footer .footer-tail p { color: white; }
css/style.css
body { font-family: 'Roboto', sans-serif; } /* Header styling */ header { height: 100vh; width: 100%; position: relative; background-color: black; background-image: url("../images/image2.png"); background-repeat: no-repeat; background-size: cover; } /* Nav bar */ .navbar { display: flex; align-items: center; justify-content: space-between; position: absolute; top: 0; left: 0; width: 100%; background: rgba(0, 0, 0, 0.5); height: 15%; } .logo { height: 100%; display: flex; align-items: center; } .active{ color: #F19201; } nav { display: flex; align-items: center; justify-content: space-around; width: 60%; height: 100vh; } .logo h2 { color: #F19201; } nav ul { display: flex; align-items: center; justify-content: space-between; width: 80%; height: 100%; } nav ul li { display: flex; align-items: center; justify-content: space-between; list-style: none; height: 100%; } nav ul li a { text-decoration: none; font-weight: 800; color: white; } nav ul li a:hover{ color: #F19201; } /* below nav bar */ .nav-btn { position: relative; display: flex; align-items: center; justify-content: center; margin-right: 4rem; } .nav-btn-main{ position: relative; display: flex; color: #F19201; align-items: center; margin-right: 64px; } .nav-btn-main button{ text-align: center; border: none; color: white; padding: 20px 30px; font-size: 16px; text-decoration: none; display: inline-block; background-color: #F19201; } .nav-btn button { text-align: center; text-decoration: none; display: inline-block; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } .btn-moringa{ text-align: center; text-decoration: none; display: inline-block; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } .nav-bar-content { display: flex; flex-direction: column; width: 100%; height: 100%; } .nav-bar-content-main { width: 50%; height: 100%; display: flex; margin-top: 150px; flex-direction: column; float: left; margin-left: 50px; } .nav-bar-content-main p { color: white; font-weight: 600; font-size: xx-large; } .content-main{ display: block; } .moringa-btn { text-align: center; float: left; clear: left; text-decoration: none; background-color: #F19201; border: none; color: white; padding: 15px 32px; font-size: 16px; } /* services styles */ .services { width: 100%; margin: auto; text-align: center; padding-top: 50px; background-color: #bdb4a8; } .services>p { font-style: italic; } .services>h1 { color: #F19201; font-size: 40px; font-weight: 700; } /* This is the review section */ .review>.review-content>p { font-style: italic; } .row { margin-top: 50px; display: flex; justify-content: space-around; } .food-item { background-color: white; margin-bottom: 10%; box-sizing: border-box; height: 200px; padding: 25px 17px; flex-basis: 30%; } .food-item p{ font-weight: 800; } .food-item>h2 { width: 30px; text-align: center; margin: auto; background-color: #F19201; border-radius: 50%; } .review { display: flex; background-color: black; } .review img { width: 100%; height: auto; max-width: 600px; } .review-content { margin: auto; text-align: center; padding-top: 50px; } .review h1 { color: white; text-decoration: underline; } .review h2 { color: white; } .review p { color: white; } /* Menu section */ .menu { display: flex; flex-direction: column; align-items: center; background-color: #bdb4a8; } .menu h1 { text-align: center; color: #F19201; font-size: 40px; font-weight: 700; } .menu>p { width: 70%; text-align: center; font-style: italic; } .menu-item { width: 30%; margin: 1%; display: flex; float: left; flex-direction: row; padding: 2%; background-color: white; } .menu-item-img { width: 200px; height: 200px; float: left; } .menu-item-content { width: 70%; float: left; margin-left: 20px; } .menu-holder { display: flex; flex-wrap: wrap; justify-content: center; } .food-price { font-size: 1rem; font-weight: 800; margin: 5% 0; color: #F19201; font-style: normal; } .food-detail { font-size: 1rem; } .img-responsive { width: 100%; } .btn-order { padding: 5%; border: none; font-size: 1rem; border-radius: 5px; } /* Footer section styling */ .footer .footer-head { background-image: url("../images/image8.png"); background-repeat: no-repeat; display: flex; flex-direction: column; align-items: center; height: 400px; background-size: cover; justify-content: center; } .footer .footer-head p, .footer .footer-head h1 { color: white; } .footer .footer-head button { background-color: transparent; background-repeat: no-repeat; border: 2px solid #ffffff; padding: 15px 32px; color: white; } .footer .footer-tail { background-color: black; display: flex; justify-content: center; } .footer .footer-tail p { color: white; }
0.441191
0.070368
.g2v2-sprite-cart span { background-image: url(../img/spritesheet_medium_g2v2_cart.png); background-repeat: no-repeat; display: block; } #menu.g2v2-sprite-cart span { float: left; } .g2v2-sprite-cart-152 { width: 72px; height: 72px; background-position: -5px -5px; } .g2v2-sprite-cart-153 { width: 72px; height: 72px; background-position: -87px -5px; } .g2v2-sprite-cart-154 { width: 72px; height: 72px; background-position: -169px -5px; } .g2v2-sprite-cart-155 { width: 72px; height: 72px; background-position: -251px -5px; } .g2v2-sprite-cart-156 { width: 72px; height: 72px; background-position: -333px -5px; } .g2v2-sprite-cart-157 { width: 72px; height: 72px; background-position: -415px -5px; } .g2v2-sprite-cart-158 { width: 72px; height: 72px; background-position: -497px -5px; } .g2v2-sprite-cart-159 { width: 72px; height: 72px; background-position: -579px -5px; } .g2v2-sprite-cart-160 { width: 72px; height: 72px; background-position: -661px -5px; } .g2v2-sprite-cart-161 { width: 72px; height: 72px; background-position: -743px -5px; } .g2v2-sprite-cart-162 { width: 72px; height: 72px; background-position: -5px -87px; } .g2v2-sprite-cart-163 { width: 72px; height: 72px; background-position: -87px -87px; } .g2v2-sprite-cart-164 { width: 72px; height: 72px; background-position: -169px -87px; } .g2v2-sprite-cart-165 { width: 72px; height: 72px; background-position: -251px -87px; } .g2v2-sprite-cart-166 { width: 72px; height: 72px; background-position: -333px -87px; } .g2v2-sprite-cart-167 { width: 72px; height: 72px; background-position: -415px -87px; } .g2v2-sprite-cart-168 { width: 72px; height: 72px; background-position: -497px -87px; } .g2v2-sprite-cart-169 { width: 72px; height: 72px; background-position: -579px -87px; } .g2v2-sprite-cart-170 { width: 72px; height: 72px; background-position: -661px -87px; } .g2v2-sprite-cart-171 { width: 72px; height: 72px; background-position: -743px -87px; } .g2v2-sprite-cart-172 { width: 72px; height: 72px; background-position: -5px -169px; } .g2v2-sprite-cart-173 { width: 72px; height: 72px; background-position: -87px -169px; } .g2v2-sprite-cart-174 { width: 72px; height: 72px; background-position: -169px -169px; } .g2v2-sprite-cart-175 { width: 72px; height: 72px; background-position: -251px -169px; } .g2v2-sprite-cart-176 { width: 72px; height: 72px; background-position: -333px -169px; } .g2v2-sprite-cart-177 { width: 72px; height: 72px; background-position: -415px -169px; } .g2v2-sprite-cart-178 { width: 72px; height: 72px; background-position: -497px -169px; } .g2v2-sprite-cart-179 { width: 72px; height: 72px; background-position: -579px -169px; } .g2v2-sprite-cart-180 { width: 72px; height: 72px; background-position: -661px -169px; } .g2v2-sprite-cart-181 { width: 72px; height: 72px; background-position: -743px -169px; } .g2v2-sprite-cart-182 { width: 72px; height: 72px; background-position: -5px -251px; } .g2v2-sprite-cart-183 { width: 72px; height: 72px; background-position: -87px -251px; } .g2v2-sprite-cart-184 { width: 72px; height: 72px; background-position: -169px -251px; } .g2v2-sprite-cart-185 { width: 72px; height: 72px; background-position: -251px -251px; } .g2v2-sprite-cart-186 { width: 72px; height: 72px; background-position: -333px -251px; } .g2v2-sprite-cart-187 { width: 72px; height: 72px; background-position: -415px -251px; } .g2v2-sprite-cart-188 { width: 72px; height: 72px; background-position: -497px -251px; } .g2v2-sprite-cart-189 { width: 72px; height: 72px; background-position: -579px -251px; } .g2v2-sprite-cart-190 { width: 72px; height: 72px; background-position: -661px -251px; } .g2v2-sprite-cart-191 { width: 72px; height: 72px; background-position: -743px -251px; } .g2v2-sprite-cart-192 { width: 72px; height: 72px; background-position: -5px -333px; } .g2v2-sprite-cart-193 { width: 72px; height: 72px; background-position: -87px -333px; } .g2v2-sprite-cart-194 { width: 72px; height: 72px; background-position: -169px -333px; } .g2v2-sprite-cart-195 { width: 72px; height: 72px; background-position: -251px -333px; } .g2v2-sprite-cart-196 { width: 72px; height: 72px; background-position: -333px -333px; } .g2v2-sprite-cart-197 { width: 72px; height: 72px; background-position: -415px -333px; } .g2v2-sprite-cart-198 { width: 72px; height: 72px; background-position: -497px -333px; } .g2v2-sprite-cart-199 { width: 72px; height: 72px; background-position: -579px -333px; } .g2v2-sprite-cart-200 { width: 72px; height: 72px; background-position: -661px -333px; } .g2v2-sprite-cart-201 { width: 72px; height: 72px; background-position: -743px -333px; } .g2v2-sprite-cart-202 { width: 72px; height: 72px; background-position: -5px -415px; } .g2v2-sprite-cart-203 { width: 72px; height: 72px; background-position: -87px -415px; } .g2v2-sprite-cart-204 { width: 72px; height: 72px; background-position: -169px -415px; } .g2v2-sprite-cart-205 { width: 72px; height: 72px; background-position: -251px -415px; } .g2v2-sprite-cart-206 { width: 72px; height: 72px; background-position: -333px -415px; } .g2v2-sprite-cart-207 { width: 72px; height: 72px; background-position: -415px -415px; } .g2v2-sprite-cart-208 { width: 72px; height: 72px; background-position: -497px -415px; } .g2v2-sprite-cart-209 { width: 72px; height: 72px; background-position: -579px -415px; } .g2v2-sprite-cart-210 { width: 72px; height: 72px; background-position: -661px -415px; } .g2v2-sprite-cart-211 { width: 72px; height: 72px; background-position: -743px -415px; } .g2v2-sprite-cart-212 { width: 72px; height: 72px; background-position: -5px -497px; } .g2v2-sprite-cart-213 { width: 72px; height: 72px; background-position: -87px -497px; } .g2v2-sprite-cart-214 { width: 72px; height: 72px; background-position: -169px -497px; } .g2v2-sprite-cart-215 { width: 72px; height: 72px; background-position: -251px -497px; } .g2v2-sprite-cart-216 { width: 72px; height: 72px; background-position: -333px -497px; } .g2v2-sprite-cart-217 { width: 72px; height: 72px; background-position: -415px -497px; } .g2v2-sprite-cart-218 { width: 72px; height: 72px; background-position: -497px -497px; } .g2v2-sprite-cart-219 { width: 72px; height: 72px; background-position: -579px -497px; } .g2v2-sprite-cart-220 { width: 72px; height: 72px; background-position: -661px -497px; } .g2v2-sprite-cart-221 { width: 72px; height: 72px; background-position: -743px -497px; } .g2v2-sprite-cart-222 { width: 72px; height: 72px; background-position: -5px -579px; } .g2v2-sprite-cart-223 { width: 72px; height: 72px; background-position: -87px -579px; } .g2v2-sprite-cart-224 { width: 72px; height: 72px; background-position: -169px -579px; } .g2v2-sprite-cart-225 { width: 72px; height: 72px; background-position: -251px -579px; } .g2v2-sprite-cart-226 { width: 72px; height: 72px; background-position: -333px -579px; } .g2v2-sprite-cart-227 { width: 72px; height: 72px; background-position: -415px -579px; } .g2v2-sprite-cart-228 { width: 72px; height: 72px; background-position: -497px -579px; } .g2v2-sprite-cart-229 { width: 72px; height: 72px; background-position: -579px -579px; } .g2v2-sprite-cart-230 { width: 72px; height: 72px; background-position: -661px -579px; } .g2v2-sprite-cart-231 { width: 72px; height: 72px; background-position: -743px -579px; } .g2v2-sprite-cart-232 { width: 72px; height: 72px; background-position: -5px -661px; } .g2v2-sprite-cart-233 { width: 72px; height: 72px; background-position: -87px -661px; } .g2v2-sprite-cart-234 { width: 72px; height: 72px; background-position: -169px -661px; } .g2v2-sprite-cart-235 { width: 72px; height: 72px; background-position: -251px -661px; } .g2v2-sprite-cart-236 { width: 72px; height: 72px; background-position: -333px -661px; } .g2v2-sprite-cart-237 { width: 72px; height: 72px; background-position: -415px -661px; } .g2v2-sprite-cart-238 { width: 72px; height: 72px; background-position: -497px -661px; } .g2v2-sprite-cart-239 { width: 72px; height: 72px; background-position: -579px -661px; } .g2v2-sprite-cart-240 { width: 72px; height: 72px; background-position: -661px -661px; } .g2v2-sprite-cart-241 { width: 72px; height: 72px; background-position: -743px -661px; } .g2v2-sprite-cart-242 { width: 72px; height: 72px; background-position: -5px -743px; } .g2v2-sprite-cart-243 { width: 72px; height: 72px; background-position: -87px -743px; } .g2v2-sprite-cart-244 { width: 72px; height: 72px; background-position: -169px -743px; } .g2v2-sprite-cart-245 { width: 72px; height: 72px; background-position: -251px -743px; } .g2v2-sprite-cart-246 { width: 72px; height: 72px; background-position: -333px -743px; } .g2v2-sprite-cart-247 { width: 72px; height: 72px; background-position: -415px -743px; } .g2v2-sprite-cart-248 { width: 72px; height: 72px; background-position: -497px -743px; } .g2v2-sprite-cart-249 { width: 72px; height: 72px; background-position: -579px -743px; } .g2v2-sprite-cart-250 { width: 72px; height: 72px; background-position: -661px -743px; } .g2v2-sprite-cart-251 { width: 72px; height: 72px; background-position: -743px -743px; }
monocle/static/css/spritesheet_medium_g2v2_cart.css
.g2v2-sprite-cart span { background-image: url(../img/spritesheet_medium_g2v2_cart.png); background-repeat: no-repeat; display: block; } #menu.g2v2-sprite-cart span { float: left; } .g2v2-sprite-cart-152 { width: 72px; height: 72px; background-position: -5px -5px; } .g2v2-sprite-cart-153 { width: 72px; height: 72px; background-position: -87px -5px; } .g2v2-sprite-cart-154 { width: 72px; height: 72px; background-position: -169px -5px; } .g2v2-sprite-cart-155 { width: 72px; height: 72px; background-position: -251px -5px; } .g2v2-sprite-cart-156 { width: 72px; height: 72px; background-position: -333px -5px; } .g2v2-sprite-cart-157 { width: 72px; height: 72px; background-position: -415px -5px; } .g2v2-sprite-cart-158 { width: 72px; height: 72px; background-position: -497px -5px; } .g2v2-sprite-cart-159 { width: 72px; height: 72px; background-position: -579px -5px; } .g2v2-sprite-cart-160 { width: 72px; height: 72px; background-position: -661px -5px; } .g2v2-sprite-cart-161 { width: 72px; height: 72px; background-position: -743px -5px; } .g2v2-sprite-cart-162 { width: 72px; height: 72px; background-position: -5px -87px; } .g2v2-sprite-cart-163 { width: 72px; height: 72px; background-position: -87px -87px; } .g2v2-sprite-cart-164 { width: 72px; height: 72px; background-position: -169px -87px; } .g2v2-sprite-cart-165 { width: 72px; height: 72px; background-position: -251px -87px; } .g2v2-sprite-cart-166 { width: 72px; height: 72px; background-position: -333px -87px; } .g2v2-sprite-cart-167 { width: 72px; height: 72px; background-position: -415px -87px; } .g2v2-sprite-cart-168 { width: 72px; height: 72px; background-position: -497px -87px; } .g2v2-sprite-cart-169 { width: 72px; height: 72px; background-position: -579px -87px; } .g2v2-sprite-cart-170 { width: 72px; height: 72px; background-position: -661px -87px; } .g2v2-sprite-cart-171 { width: 72px; height: 72px; background-position: -743px -87px; } .g2v2-sprite-cart-172 { width: 72px; height: 72px; background-position: -5px -169px; } .g2v2-sprite-cart-173 { width: 72px; height: 72px; background-position: -87px -169px; } .g2v2-sprite-cart-174 { width: 72px; height: 72px; background-position: -169px -169px; } .g2v2-sprite-cart-175 { width: 72px; height: 72px; background-position: -251px -169px; } .g2v2-sprite-cart-176 { width: 72px; height: 72px; background-position: -333px -169px; } .g2v2-sprite-cart-177 { width: 72px; height: 72px; background-position: -415px -169px; } .g2v2-sprite-cart-178 { width: 72px; height: 72px; background-position: -497px -169px; } .g2v2-sprite-cart-179 { width: 72px; height: 72px; background-position: -579px -169px; } .g2v2-sprite-cart-180 { width: 72px; height: 72px; background-position: -661px -169px; } .g2v2-sprite-cart-181 { width: 72px; height: 72px; background-position: -743px -169px; } .g2v2-sprite-cart-182 { width: 72px; height: 72px; background-position: -5px -251px; } .g2v2-sprite-cart-183 { width: 72px; height: 72px; background-position: -87px -251px; } .g2v2-sprite-cart-184 { width: 72px; height: 72px; background-position: -169px -251px; } .g2v2-sprite-cart-185 { width: 72px; height: 72px; background-position: -251px -251px; } .g2v2-sprite-cart-186 { width: 72px; height: 72px; background-position: -333px -251px; } .g2v2-sprite-cart-187 { width: 72px; height: 72px; background-position: -415px -251px; } .g2v2-sprite-cart-188 { width: 72px; height: 72px; background-position: -497px -251px; } .g2v2-sprite-cart-189 { width: 72px; height: 72px; background-position: -579px -251px; } .g2v2-sprite-cart-190 { width: 72px; height: 72px; background-position: -661px -251px; } .g2v2-sprite-cart-191 { width: 72px; height: 72px; background-position: -743px -251px; } .g2v2-sprite-cart-192 { width: 72px; height: 72px; background-position: -5px -333px; } .g2v2-sprite-cart-193 { width: 72px; height: 72px; background-position: -87px -333px; } .g2v2-sprite-cart-194 { width: 72px; height: 72px; background-position: -169px -333px; } .g2v2-sprite-cart-195 { width: 72px; height: 72px; background-position: -251px -333px; } .g2v2-sprite-cart-196 { width: 72px; height: 72px; background-position: -333px -333px; } .g2v2-sprite-cart-197 { width: 72px; height: 72px; background-position: -415px -333px; } .g2v2-sprite-cart-198 { width: 72px; height: 72px; background-position: -497px -333px; } .g2v2-sprite-cart-199 { width: 72px; height: 72px; background-position: -579px -333px; } .g2v2-sprite-cart-200 { width: 72px; height: 72px; background-position: -661px -333px; } .g2v2-sprite-cart-201 { width: 72px; height: 72px; background-position: -743px -333px; } .g2v2-sprite-cart-202 { width: 72px; height: 72px; background-position: -5px -415px; } .g2v2-sprite-cart-203 { width: 72px; height: 72px; background-position: -87px -415px; } .g2v2-sprite-cart-204 { width: 72px; height: 72px; background-position: -169px -415px; } .g2v2-sprite-cart-205 { width: 72px; height: 72px; background-position: -251px -415px; } .g2v2-sprite-cart-206 { width: 72px; height: 72px; background-position: -333px -415px; } .g2v2-sprite-cart-207 { width: 72px; height: 72px; background-position: -415px -415px; } .g2v2-sprite-cart-208 { width: 72px; height: 72px; background-position: -497px -415px; } .g2v2-sprite-cart-209 { width: 72px; height: 72px; background-position: -579px -415px; } .g2v2-sprite-cart-210 { width: 72px; height: 72px; background-position: -661px -415px; } .g2v2-sprite-cart-211 { width: 72px; height: 72px; background-position: -743px -415px; } .g2v2-sprite-cart-212 { width: 72px; height: 72px; background-position: -5px -497px; } .g2v2-sprite-cart-213 { width: 72px; height: 72px; background-position: -87px -497px; } .g2v2-sprite-cart-214 { width: 72px; height: 72px; background-position: -169px -497px; } .g2v2-sprite-cart-215 { width: 72px; height: 72px; background-position: -251px -497px; } .g2v2-sprite-cart-216 { width: 72px; height: 72px; background-position: -333px -497px; } .g2v2-sprite-cart-217 { width: 72px; height: 72px; background-position: -415px -497px; } .g2v2-sprite-cart-218 { width: 72px; height: 72px; background-position: -497px -497px; } .g2v2-sprite-cart-219 { width: 72px; height: 72px; background-position: -579px -497px; } .g2v2-sprite-cart-220 { width: 72px; height: 72px; background-position: -661px -497px; } .g2v2-sprite-cart-221 { width: 72px; height: 72px; background-position: -743px -497px; } .g2v2-sprite-cart-222 { width: 72px; height: 72px; background-position: -5px -579px; } .g2v2-sprite-cart-223 { width: 72px; height: 72px; background-position: -87px -579px; } .g2v2-sprite-cart-224 { width: 72px; height: 72px; background-position: -169px -579px; } .g2v2-sprite-cart-225 { width: 72px; height: 72px; background-position: -251px -579px; } .g2v2-sprite-cart-226 { width: 72px; height: 72px; background-position: -333px -579px; } .g2v2-sprite-cart-227 { width: 72px; height: 72px; background-position: -415px -579px; } .g2v2-sprite-cart-228 { width: 72px; height: 72px; background-position: -497px -579px; } .g2v2-sprite-cart-229 { width: 72px; height: 72px; background-position: -579px -579px; } .g2v2-sprite-cart-230 { width: 72px; height: 72px; background-position: -661px -579px; } .g2v2-sprite-cart-231 { width: 72px; height: 72px; background-position: -743px -579px; } .g2v2-sprite-cart-232 { width: 72px; height: 72px; background-position: -5px -661px; } .g2v2-sprite-cart-233 { width: 72px; height: 72px; background-position: -87px -661px; } .g2v2-sprite-cart-234 { width: 72px; height: 72px; background-position: -169px -661px; } .g2v2-sprite-cart-235 { width: 72px; height: 72px; background-position: -251px -661px; } .g2v2-sprite-cart-236 { width: 72px; height: 72px; background-position: -333px -661px; } .g2v2-sprite-cart-237 { width: 72px; height: 72px; background-position: -415px -661px; } .g2v2-sprite-cart-238 { width: 72px; height: 72px; background-position: -497px -661px; } .g2v2-sprite-cart-239 { width: 72px; height: 72px; background-position: -579px -661px; } .g2v2-sprite-cart-240 { width: 72px; height: 72px; background-position: -661px -661px; } .g2v2-sprite-cart-241 { width: 72px; height: 72px; background-position: -743px -661px; } .g2v2-sprite-cart-242 { width: 72px; height: 72px; background-position: -5px -743px; } .g2v2-sprite-cart-243 { width: 72px; height: 72px; background-position: -87px -743px; } .g2v2-sprite-cart-244 { width: 72px; height: 72px; background-position: -169px -743px; } .g2v2-sprite-cart-245 { width: 72px; height: 72px; background-position: -251px -743px; } .g2v2-sprite-cart-246 { width: 72px; height: 72px; background-position: -333px -743px; } .g2v2-sprite-cart-247 { width: 72px; height: 72px; background-position: -415px -743px; } .g2v2-sprite-cart-248 { width: 72px; height: 72px; background-position: -497px -743px; } .g2v2-sprite-cart-249 { width: 72px; height: 72px; background-position: -579px -743px; } .g2v2-sprite-cart-250 { width: 72px; height: 72px; background-position: -661px -743px; } .g2v2-sprite-cart-251 { width: 72px; height: 72px; background-position: -743px -743px; }
0.306735
0.197174
@import url('https://fonts.googleapis.com/css?family=Pacifico|Roboto+Condensed'); @import '~antd/dist/antd.css'; * { margin: 0; padding: 0; box-sizing: border-box; } :root { --main-dark-color: #343a40; --main-font-family: 'Roboto Condensed', sans-serif; --crispy-font: 'Pacifico', cursive; --secondary-color: #444; --overlay-color: rgba(0, 0, 0, 0.7); } body { font-family: var(--main-font-family) !important; width: 100vw; } /* miscellaneous */ .fixed-top { z-index: 100 !important; } .bg-grey { background: #e3e3e3; height: 100vh; width: 100vw; box-sizing: border-box; } .tbody-tertiary { background: rgba(232, 219, 219, 0.851); } .admin-sider { z-index: 15 !important; } .ant-menu.ant-menu-dark .ant-menu-item-selected { background-color: inherit !important; border-left: 5px solid salmon; } .navbar-brand, .cris { font-family: var(--crispy-font); } .title { font-size: 2.5rem; padding-top: 1rem; color: #f3f3f3; } .absolute-data { position: absolute; width: 100%; } .details { color: #007bff; cursor: pointer; } .sort { width: fit-content; height: fit-content; cursor: pointer; border-radius: 5px; margin-right: 10px; } .hide-sm { display: block; } .img-resize { max-width: 100%; max-height: 100%; } .overflow-landing { overflow-x: hidden; } .card-head { height: 200px; } .mafe { border-radius: 10px; } .container-fluid { width: 100% !important; margin: 0 !important; padding: 0 !important; } .forgot_content { width: 40%; margin: auto; } .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-color); } .section-a-inner h3 { font-size: 2rem; } .section-a-inner p { font-size: 1.5rem; margin-top: 1rem; } .landPagebg { position: relative; background: url(./img/landingPagebg.jpg); height: 100vh; width: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 0 20px; } .section-a-inner { display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; height: 100%; max-width: 850px; padding: 5rem 0; margin: auto; text-align: center; } .section-a-inner h3 { color: #fff !important; } .content-1 { width: 80%; } .tops h1 { font-size: 2.5rem; padding-top: 1rem; } .top-line { position: relative; margin: auto; width: fit-content; text-align: center; margin-bottom: 1.6rem; } .top-line::after { content: ''; width: calc(100% - 90%); position: absolute; top: 75px; margin-left: -25px; height: 3px; } .tops .top-line::after { background: var(--main-dark-color); } .tips-text { color: brown; } .toggler { cursor: pointer; visibility: hidden; } .toggler:focus { outline: none; } /* menu */ .menu-section { width: 90%; margin: 0 auto; margin-top: 75px; min-height: calc(100vh - 20vh); } .custom-menu1 { height: 300px; background: #f3f3f3; margin-bottom: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 5px; border-radius: 5px; padding: 10px; position: relative; } .menu-cris { font-family: var(--crispy-font); position: absolute; font-size: 3.5rem; background: rgba(0, 0, 0, 0.6); padding: 5px; border-radius: 0 0 10px 0; color: #fff; } .custom-menu1 img { width: 100%; height: 300px; border-radius: 5px; } .custom-menu2 { background: #fff; color: var(--main-dark-color); padding: 1rem; } .custom-menu2 h4 { margin-bottom: 1rem; } .menu-bg { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/menu-bg.jpg'); /* height: 100%; */ width: 100%; background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat; height: 100vh; z-index: -4; } .menu-section-b { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 5px; box-sizing: border-box; margin-bottom: 50px; } .card-menu { position: relative; background: rgba(0, 0, 0, 0.1) !important; border-radius: 5px; /* width: 200px; */ height: 230px; margin-bottom: 10px; cursor: pointer; overflow: hidden; transition: all 0.5s; box-sizing: border-box; } .card-menu span { padding: 5px; position: absolute; right: 0; bottom: 0; background: #3a72da; color: #fff; border-radius: 5px 0 0 0; transform: translate(100%, 100%); transition: all 0.5s; } .card-menu:hover span { transform: translate(0, 0); } .card-menu:hover span:hover { color: #3a72da; background: #fff; } .card-img-top { width: inherit; height: 150px; margin: auto; text-align: center; } .card-img-top img { width: 150px; height: 150px; border-radius: 50%; } .card-img-body { padding: 0 5px; } .card-img-body p { padding: 0; margin: 0; font-size: 1rem; } .card-img-body p:nth-child(2) { font-weight: bold; } /* cart */ .all-cart { width: 90%; margin-top: 50px; padding: 15px; } .all-cart .table .update-btn span { min-width: 30px; border: 1px solid orangered; outline: transparent; border-radius: 5px; padding: 5px; margin-right: 5px; text-transform: capitalize; font-size: .8rem !important; } .btn-quantity { background: transparent; cursor: pointer; } .btn-quantity:hover { background: orangered; color: #fff; border: 1px solid #fff; } .all-cart td { background: rgba(232, 219, 219, 0.851); } .fa-trash { cursor: pointer; } .all-cart .table td, .all-cart .table th { padding: 0.5rem; text-align: center; } .all-cart .table tr { width: 100%; } .orderImg { margin-right: 15px; } .all-cart .table td:nth-child(1) { text-align: left; display: flex; } .all-cart .table td img { width: 50px; height: 50px; } /* order history */ .shopping_container { width: 60%; margin: auto; } /* footer */ .footer-grid ul { list-style: none; text-align: left; } .footer-grid { position: relative; text-align: center; padding: 1rem; font-size: 14px; } .footer-grid a { color: inherit; } .footer-grid ul li:first-child { font-size: 1.2rem; padding-bottom: 0.5rem; border-bottom: #666 solid 1px; /* margin-bottom: 1rem; */ } .footer-bottom { display: flex; align-items: center; justify-content: center; flex-direction: column; background: #333; padding-top: 10px; color: #fff; } .social-icon ul li:not(:first-child) { display: inline; font-size: 1.5rem; transition: all 0.5s; margin: 10px; } .social-icon ul li:not(:first-child):hover { opacity: 0.3; } .login { /* background: rgba(0, 0, 0, 0.2); */ color: #fff; padding: 1.2rem; border-radius: 5px; } .login-bg, .register-bg { position: fixed; height: 100vh; width: 100%; background-size: cover; } .login-bg { background: url(./img/chef.png) center no-repeat; } .register-bg { background: url(./img/ice-cream-boy.png) center no-repeat; } .login-text { font-size: 2.5rem; line-height: 5rem; } .create-login { width: 85%; margin: auto; position: relative; height: 100vh; /* overflow: hidden; */ } .crispy-text { font-size: 3rem; font-family: var(--crispy-font); color: orange; } .or { display: flex; align-items: center; justify-content: center; margin-top: -15px; } .or hr { flex: auto; margin-right: 10px !important; margin-left: 10px !important; background: var(--main-dark-color); } /* admin */ .admin-bgImg { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/menu-bg.jpg'); height: 100vh; width: 100%; background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -4; } .action { position: relative; } .dropdown-action { position: absolute; left: 0; display: none; background: #fff; color: #212529; text-align: left; padding: 0.12rem 0; font-size: 1rem; border-radius: 0.35rem; z-index: 1000; } .dropdown-action.show { display: block; } .admin-sider { padding-top: 55px; min-height: 100vh; position: fixed !important; z-index: 3; } .admin-sider a { color: inherit; } .admin-sider a:hover { color: inherit; text-decoration: none; } .admin-content { margin-left: 200px; width: 80%; right: 0; } .inline { display: inline-flex; } .foodTable { margin-top: 20px; border-radius: 5px; border-collapse: collapse; border-spacing: 0px; width: 100%; } tr { width: inherit; } .foodTable .tbody { background-color: rgba(232, 219, 219, 0.851); } .foodTable a { color: inherit !important; } .foodTable a:hover { text-decoration: none !important; } .foodTable td:nth-child(1), .foodTable td:nth-child(3) { width: 10%; } .foodTable td:nth-child(2) { width: 40%; } .foodTable td:nth-child(4) { width: 20%; } .foodTable .table td:nth-child(5) { width: 20%; } .foodTable td { padding: 0.5rem; vertical-align: top; border-top: 1px solid #dee2e6; } .foodTable thead tr { color: #fff; vertical-align: bottom; border-bottom: 2px solid #dee2e6; } .foodTable tbody tr { transition: all 0.5s linear; } .admin-history-table .tbody td { background: #e8dbdbd9; } /* Not found */ .not-found { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/not-found.png'); height: 100vh; width: 100%; background-attachment: fixed; background-size: contain; background-position: center; background-repeat: no-repeat; z-index: -2; } .not-found h1 { font-size: 3.5rem; } .not-found h1, .not-found span { font-family: var(--crispy-font); } /* media queries */ @media (max-width: 990px) { .toggler { visibility: visible; } .admin-content { margin-left: 0px; width: 90%; } .hide-md { display: none; } } @media (max-width: 780px) { .responsive { display: block; } .hide-sm { display: none; } .menu-section-b { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 580px) { .forgot_content { width: 90%; } .create-login { width: 100%; } .logo { width: 150px; height: 150px; } .custom-menu1 { display: none; } .food-menu { display: grid; grid-template-columns: 1fr; grid-gap: 1rem; } .section-a-inner h3 { font-size: 1.8rem; } .landPagebg { height: 50vh; } .top-line h1 { font-size: 1.8rem; line-height: 1rem; } .top-line::after { top: 40px; margin-left: -10px; } .menu-section-b { grid-template-columns: repeat(2, 1fr); } .shopping_container { width: 80%; margin: auto; } }
client/src/App.css
@import url('https://fonts.googleapis.com/css?family=Pacifico|Roboto+Condensed'); @import '~antd/dist/antd.css'; * { margin: 0; padding: 0; box-sizing: border-box; } :root { --main-dark-color: #343a40; --main-font-family: 'Roboto Condensed', sans-serif; --crispy-font: 'Pacifico', cursive; --secondary-color: #444; --overlay-color: rgba(0, 0, 0, 0.7); } body { font-family: var(--main-font-family) !important; width: 100vw; } /* miscellaneous */ .fixed-top { z-index: 100 !important; } .bg-grey { background: #e3e3e3; height: 100vh; width: 100vw; box-sizing: border-box; } .tbody-tertiary { background: rgba(232, 219, 219, 0.851); } .admin-sider { z-index: 15 !important; } .ant-menu.ant-menu-dark .ant-menu-item-selected { background-color: inherit !important; border-left: 5px solid salmon; } .navbar-brand, .cris { font-family: var(--crispy-font); } .title { font-size: 2.5rem; padding-top: 1rem; color: #f3f3f3; } .absolute-data { position: absolute; width: 100%; } .details { color: #007bff; cursor: pointer; } .sort { width: fit-content; height: fit-content; cursor: pointer; border-radius: 5px; margin-right: 10px; } .hide-sm { display: block; } .img-resize { max-width: 100%; max-height: 100%; } .overflow-landing { overflow-x: hidden; } .card-head { height: 200px; } .mafe { border-radius: 10px; } .container-fluid { width: 100% !important; margin: 0 !important; padding: 0 !important; } .forgot_content { width: 40%; margin: auto; } .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-color); } .section-a-inner h3 { font-size: 2rem; } .section-a-inner p { font-size: 1.5rem; margin-top: 1rem; } .landPagebg { position: relative; background: url(./img/landingPagebg.jpg); height: 100vh; width: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 0 20px; } .section-a-inner { display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; height: 100%; max-width: 850px; padding: 5rem 0; margin: auto; text-align: center; } .section-a-inner h3 { color: #fff !important; } .content-1 { width: 80%; } .tops h1 { font-size: 2.5rem; padding-top: 1rem; } .top-line { position: relative; margin: auto; width: fit-content; text-align: center; margin-bottom: 1.6rem; } .top-line::after { content: ''; width: calc(100% - 90%); position: absolute; top: 75px; margin-left: -25px; height: 3px; } .tops .top-line::after { background: var(--main-dark-color); } .tips-text { color: brown; } .toggler { cursor: pointer; visibility: hidden; } .toggler:focus { outline: none; } /* menu */ .menu-section { width: 90%; margin: 0 auto; margin-top: 75px; min-height: calc(100vh - 20vh); } .custom-menu1 { height: 300px; background: #f3f3f3; margin-bottom: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 5px; border-radius: 5px; padding: 10px; position: relative; } .menu-cris { font-family: var(--crispy-font); position: absolute; font-size: 3.5rem; background: rgba(0, 0, 0, 0.6); padding: 5px; border-radius: 0 0 10px 0; color: #fff; } .custom-menu1 img { width: 100%; height: 300px; border-radius: 5px; } .custom-menu2 { background: #fff; color: var(--main-dark-color); padding: 1rem; } .custom-menu2 h4 { margin-bottom: 1rem; } .menu-bg { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/menu-bg.jpg'); /* height: 100%; */ width: 100%; background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat; height: 100vh; z-index: -4; } .menu-section-b { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 5px; box-sizing: border-box; margin-bottom: 50px; } .card-menu { position: relative; background: rgba(0, 0, 0, 0.1) !important; border-radius: 5px; /* width: 200px; */ height: 230px; margin-bottom: 10px; cursor: pointer; overflow: hidden; transition: all 0.5s; box-sizing: border-box; } .card-menu span { padding: 5px; position: absolute; right: 0; bottom: 0; background: #3a72da; color: #fff; border-radius: 5px 0 0 0; transform: translate(100%, 100%); transition: all 0.5s; } .card-menu:hover span { transform: translate(0, 0); } .card-menu:hover span:hover { color: #3a72da; background: #fff; } .card-img-top { width: inherit; height: 150px; margin: auto; text-align: center; } .card-img-top img { width: 150px; height: 150px; border-radius: 50%; } .card-img-body { padding: 0 5px; } .card-img-body p { padding: 0; margin: 0; font-size: 1rem; } .card-img-body p:nth-child(2) { font-weight: bold; } /* cart */ .all-cart { width: 90%; margin-top: 50px; padding: 15px; } .all-cart .table .update-btn span { min-width: 30px; border: 1px solid orangered; outline: transparent; border-radius: 5px; padding: 5px; margin-right: 5px; text-transform: capitalize; font-size: .8rem !important; } .btn-quantity { background: transparent; cursor: pointer; } .btn-quantity:hover { background: orangered; color: #fff; border: 1px solid #fff; } .all-cart td { background: rgba(232, 219, 219, 0.851); } .fa-trash { cursor: pointer; } .all-cart .table td, .all-cart .table th { padding: 0.5rem; text-align: center; } .all-cart .table tr { width: 100%; } .orderImg { margin-right: 15px; } .all-cart .table td:nth-child(1) { text-align: left; display: flex; } .all-cart .table td img { width: 50px; height: 50px; } /* order history */ .shopping_container { width: 60%; margin: auto; } /* footer */ .footer-grid ul { list-style: none; text-align: left; } .footer-grid { position: relative; text-align: center; padding: 1rem; font-size: 14px; } .footer-grid a { color: inherit; } .footer-grid ul li:first-child { font-size: 1.2rem; padding-bottom: 0.5rem; border-bottom: #666 solid 1px; /* margin-bottom: 1rem; */ } .footer-bottom { display: flex; align-items: center; justify-content: center; flex-direction: column; background: #333; padding-top: 10px; color: #fff; } .social-icon ul li:not(:first-child) { display: inline; font-size: 1.5rem; transition: all 0.5s; margin: 10px; } .social-icon ul li:not(:first-child):hover { opacity: 0.3; } .login { /* background: rgba(0, 0, 0, 0.2); */ color: #fff; padding: 1.2rem; border-radius: 5px; } .login-bg, .register-bg { position: fixed; height: 100vh; width: 100%; background-size: cover; } .login-bg { background: url(./img/chef.png) center no-repeat; } .register-bg { background: url(./img/ice-cream-boy.png) center no-repeat; } .login-text { font-size: 2.5rem; line-height: 5rem; } .create-login { width: 85%; margin: auto; position: relative; height: 100vh; /* overflow: hidden; */ } .crispy-text { font-size: 3rem; font-family: var(--crispy-font); color: orange; } .or { display: flex; align-items: center; justify-content: center; margin-top: -15px; } .or hr { flex: auto; margin-right: 10px !important; margin-left: 10px !important; background: var(--main-dark-color); } /* admin */ .admin-bgImg { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/menu-bg.jpg'); height: 100vh; width: 100%; background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -4; } .action { position: relative; } .dropdown-action { position: absolute; left: 0; display: none; background: #fff; color: #212529; text-align: left; padding: 0.12rem 0; font-size: 1rem; border-radius: 0.35rem; z-index: 1000; } .dropdown-action.show { display: block; } .admin-sider { padding-top: 55px; min-height: 100vh; position: fixed !important; z-index: 3; } .admin-sider a { color: inherit; } .admin-sider a:hover { color: inherit; text-decoration: none; } .admin-content { margin-left: 200px; width: 80%; right: 0; } .inline { display: inline-flex; } .foodTable { margin-top: 20px; border-radius: 5px; border-collapse: collapse; border-spacing: 0px; width: 100%; } tr { width: inherit; } .foodTable .tbody { background-color: rgba(232, 219, 219, 0.851); } .foodTable a { color: inherit !important; } .foodTable a:hover { text-decoration: none !important; } .foodTable td:nth-child(1), .foodTable td:nth-child(3) { width: 10%; } .foodTable td:nth-child(2) { width: 40%; } .foodTable td:nth-child(4) { width: 20%; } .foodTable .table td:nth-child(5) { width: 20%; } .foodTable td { padding: 0.5rem; vertical-align: top; border-top: 1px solid #dee2e6; } .foodTable thead tr { color: #fff; vertical-align: bottom; border-bottom: 2px solid #dee2e6; } .foodTable tbody tr { transition: all 0.5s linear; } .admin-history-table .tbody td { background: #e8dbdbd9; } /* Not found */ .not-found { position: fixed; top: 0; left: 0; background-image: linear-gradient(rgba(230, 207, 207, 0.3), rgba(231, 206, 206, 0.3)), url('./img/not-found.png'); height: 100vh; width: 100%; background-attachment: fixed; background-size: contain; background-position: center; background-repeat: no-repeat; z-index: -2; } .not-found h1 { font-size: 3.5rem; } .not-found h1, .not-found span { font-family: var(--crispy-font); } /* media queries */ @media (max-width: 990px) { .toggler { visibility: visible; } .admin-content { margin-left: 0px; width: 90%; } .hide-md { display: none; } } @media (max-width: 780px) { .responsive { display: block; } .hide-sm { display: none; } .menu-section-b { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 580px) { .forgot_content { width: 90%; } .create-login { width: 100%; } .logo { width: 150px; height: 150px; } .custom-menu1 { display: none; } .food-menu { display: grid; grid-template-columns: 1fr; grid-gap: 1rem; } .section-a-inner h3 { font-size: 1.8rem; } .landPagebg { height: 50vh; } .top-line h1 { font-size: 1.8rem; line-height: 1rem; } .top-line::after { top: 40px; margin-left: -10px; } .menu-section-b { grid-template-columns: repeat(2, 1fr); } .shopping_container { width: 80%; margin: auto; } }
0.385375
0.073963
@media screen and (max-width: 320px) { /* comes into effect for screens less than or equal to 320 pixels */ #heading { font-size: 40px; } .fa { font-size: 10px; } } @media screen and (min-width: 321px) and (max-width: 480px) { /* comes into effect for screens between 321 and 480 pixels (inclusive) */ #heading { font-size: 24px; font-size: 8vw; } .fa { font-size: 10px; } } @media screen and (min-width: 481px) { /* comes into effect for screens larger than or equal to 481 pixels */ #heading { font-size: 28px; font-size: 6vw; } .fa { font-size: 10px; } } /*end of media queries*/ /*Controls drop-down navbar*/ /* Dropdown Button */ .dropbtn { background-color: rgba(0,0,0,0.0); color: white; padding: 16px 10px; font-size: 16px; line-height:5px; border: none; } /* The container <div> - needed to position the dropdown content */ .dropdown { position: relative; display: inline-block; } /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } /* Links inside the dropdown */ .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } /* Change color of dropdown links on hover */ .dropdown-content a:hover {background-color: #C5A9AF} /* Show the dropdown menu on hover */ .dropdown:hover .dropdown-content { display: block; } /* Change the background color of the dropdown button when the dropdown content is shown */ .dropdown:hover .dropbtn { background-color: #A57982; } /*Controls navbar - excluding text*/ .navbar{ position: relative; top: 0; left: 0; z-index: 9999; width: 100%; height: 50px; background-color: rgba(0,0,0,0.2); padding:7px 30px; } .fixed-nav-bar { position: fixed; top: 0; left: 0; z-index: 9999; width: 100%; height: 50px; background-color: rgba(0,0,0,0.2); padding:16px 30px; line-height:50px; text-align: center; } /*Controls navbar text*/ nav a{ color:white; border-left: 10px solid rgba(0,0,0,0); border-right: 6px transparent #fff; font-family: 'Open Sans Condensed', sans-serif; font-size: 18px; } /*Controls the background image*/ body { background-image: url("https://blogs.ubc.ca/agutierrez/files/2016/08/IMG_9900.jpg"); background-size: cover; height: 100%; background-position: center; background-attachment: fixed; } h1{ font-family: 'Raleway', sans-serif; font-size: 70px; } #Alyssa { text-align: center; } #About { width: 90%; padding-left: 30px; text-align: center; } #Projects { height: 55%; width: 90%; padding-left: 30px; padding-right: 30px; padding-bottom: 5%; display: inline-block; background-color: rgba(139, 182, 203, 0.11); } h2{ font-family: 'Raleway', sans-serif; color: #000; } #Contact{ width: 90%; height: 45%; padding-top: 1%; padding-left: 30px; padding-right: 30px; padding-bottom: 1%; background-color: rgba(139, 182, 203, 0.11); } h5{ font-family: 'Open Sans Condensed', sans-serif; text-align: center; }
responsive.css
@media screen and (max-width: 320px) { /* comes into effect for screens less than or equal to 320 pixels */ #heading { font-size: 40px; } .fa { font-size: 10px; } } @media screen and (min-width: 321px) and (max-width: 480px) { /* comes into effect for screens between 321 and 480 pixels (inclusive) */ #heading { font-size: 24px; font-size: 8vw; } .fa { font-size: 10px; } } @media screen and (min-width: 481px) { /* comes into effect for screens larger than or equal to 481 pixels */ #heading { font-size: 28px; font-size: 6vw; } .fa { font-size: 10px; } } /*end of media queries*/ /*Controls drop-down navbar*/ /* Dropdown Button */ .dropbtn { background-color: rgba(0,0,0,0.0); color: white; padding: 16px 10px; font-size: 16px; line-height:5px; border: none; } /* The container <div> - needed to position the dropdown content */ .dropdown { position: relative; display: inline-block; } /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } /* Links inside the dropdown */ .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } /* Change color of dropdown links on hover */ .dropdown-content a:hover {background-color: #C5A9AF} /* Show the dropdown menu on hover */ .dropdown:hover .dropdown-content { display: block; } /* Change the background color of the dropdown button when the dropdown content is shown */ .dropdown:hover .dropbtn { background-color: #A57982; } /*Controls navbar - excluding text*/ .navbar{ position: relative; top: 0; left: 0; z-index: 9999; width: 100%; height: 50px; background-color: rgba(0,0,0,0.2); padding:7px 30px; } .fixed-nav-bar { position: fixed; top: 0; left: 0; z-index: 9999; width: 100%; height: 50px; background-color: rgba(0,0,0,0.2); padding:16px 30px; line-height:50px; text-align: center; } /*Controls navbar text*/ nav a{ color:white; border-left: 10px solid rgba(0,0,0,0); border-right: 6px transparent #fff; font-family: 'Open Sans Condensed', sans-serif; font-size: 18px; } /*Controls the background image*/ body { background-image: url("https://blogs.ubc.ca/agutierrez/files/2016/08/IMG_9900.jpg"); background-size: cover; height: 100%; background-position: center; background-attachment: fixed; } h1{ font-family: 'Raleway', sans-serif; font-size: 70px; } #Alyssa { text-align: center; } #About { width: 90%; padding-left: 30px; text-align: center; } #Projects { height: 55%; width: 90%; padding-left: 30px; padding-right: 30px; padding-bottom: 5%; display: inline-block; background-color: rgba(139, 182, 203, 0.11); } h2{ font-family: 'Raleway', sans-serif; color: #000; } #Contact{ width: 90%; height: 45%; padding-top: 1%; padding-left: 30px; padding-right: 30px; padding-bottom: 1%; background-color: rgba(139, 182, 203, 0.11); } h5{ font-family: 'Open Sans Condensed', sans-serif; text-align: center; }
0.449393
0.097648
.icons { margin-bottom: 2em; display: inline-block; } .icons li { display: inline-block; padding-right: 2.5em; } .icons li:last-child { padding-right: 0; } .icons a { -moz-transition: all .2s ease-in; -o-transition: all .2s ease-in; -webkit-transition: all .2s ease-in; transition: all .2s ease-in; text-decoration: none; color: #525659; border: 2px solid #999; border-radius: 50%; text-align: center; display: inline-block; width: 55px; height: 55px; line-height: 60px; } .icons a .fa { font-size: 1.6em; } .icons a:hover, .icons a:active { color: #034D2F; border-color: transparent; } .icons a:hover.icon, .icons a:active.icon { background-color: #C0D4C1; } .icons a:hover.icon-search, .icons a:active.icon-search { background-color: white; } .icons a:hover.icon-email, .icons a:active.icon-email { background-color: grey; } .icons a:hover.icon-github, .icons a:active.icon-github { background-color: #222; } .icons a:hover.icon-facebook, .icons a:active.icon-facebook { background-color: #3765A3; } .icons a:hover.icon-twitter, .icons a:active.icon-twitter { background-color: #5EA9DD; } .icons a:hover.icon-instagram, .icons a:active.icon-instagram { background-color: #323232; } .icons a:hover.icon-linkedin, .icons a:active.icon-linkedin { background-color: #0274B3; } .antispam { display: none; } /* label color */ .input-field label { color: #9e9e9e; } /* label focus color */ .input-field input[type=text]:focus + label, .input-field input[type=email]:focus + label, textarea:focus + label { color: #034D2F !important; } /* label underline focus color */ .input-field input[type=text]:focus, .input-field input[type=email]:focus, textarea:focus { border-bottom: 1px solid #034D2F !important; box-shadow: 0 1px 0 0 #034D2F !important; } /* valid color */ /* icon prefix focus color */ .input-field .prefix.active { color: #034D2F !important; } .icon-block { box-shadow: 0px 0px 70px 0px rgba(3, 77, 47, 0.45); padding: 2rem; margin: 1rem 1rem; } .contentButton { display: flex; justify-content: center; align-items: center; } .contentTitle { color: #034D2F; } .contentText { color: #034D2F; font-size: 2em; margin: 0.5em; } @media only screen and (max-width: 600px) { .contentText { font-size: 2em; } } .contentIcon { margin: 0; } .mobileServiceHeader { display: none; } @media only screen and (max-width: 1000px) { .mobileServiceHeader { display: block; } } .desktopServiceHeader { display: block; } @media only screen and (max-width: 1000px) { .desktopServiceHeader { display: none; } } .img-wrap { width: 100%; height: 100%; position: relative; display: inline-block; overflow: hidden; margin: 0; box-shadow: 0px 0px 70px 0px rgba(3, 77, 47, 0.45); padding: 0; margin: 1rem 0rem; } .img-wrap > img { width: 100%; height: auto; } .mobile-button { display: none; } @media only screen and (max-width: 800px) { .mobile-button { display: inline-block; } } .desktop-button { display: inline-block; } @media only screen and (max-width: 800px) { .desktop-button { display: none; } } /* Custom Stylesheet */ h1, h2, h3, h4, h5, h6 { font-family: 'Goudy Bookletter 1911', serif; } #index-banner { height: 90vh; display: flex; justify-content: center; align-items: center; } @media only screen and (max-width: 600px) { #bottom-section { min-height: 30vh; } } .mid-title { font-size: 2.5em; text-shadow: 2px 0 0 #034D2F, -2px 0 0 #034D2F, 0 2px 0 #034D2F, 0 -2px 0 #034D2F, 1px 1px #034D2F, -1px -1px 0 #034D2F, 1px -1px 0 #034D2F, -1px 1px 0 #034D2F; } .mid-title br { display: none; } @media only screen and (max-width: 600px) { .mid-title { font-size: 2em; margin-top: -10%; } .mid-title br { display: block; } } .mobile-menu-item { font-size: 1.5em !important; padding-top: 5% !important; padding-bottom: 5% !important; } .myTint .after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.3); } .main-logo { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 6em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } .main-logo br { display: none; } @media only screen and (max-width: 600px) { .main-logo { font-size: 4em; } .main-logo br { display: block; } } .main-logo-picture { width: 10%; vertical-align: middle; margin-top: -10px; } @media only screen and (max-width: 600px) { .main-logo-picture { display: none; margin-top: 0; width: 30%; } } .sub-logo { font-size: 3em; text-shadow: 2px 0 0 #034D2F, -2px 0 0 #034D2F, 0 2px 0 #034D2F, 0 -2px 0 #034D2F, 1px 1px #034D2F, -1px -1px 0 #034D2F, 1px -1px 0 #034D2F, -1px 1px 0 #034D2F; } @media only screen and (max-width: 600px) { .sub-logo { font-size: 2em; } .sub-logo br { display: block; } } .startContent { display: none; } #services { height: 500px; } @media only screen and (max-width: 600px) { #services { height: auto; } } .myButton { color: #C0D4C1; background-color: #034D2F; } .myButton:hover { background-color: #07af6b; } .myButton:focus { background-color: #b9fce1; } .myLightGreen.text { color: #C0D4C1; } .myLightGreen.background { background-color: #C0D4C1; } .myDarkGreen.text { color: #034D2F; } .myDarkGreen.background { background-color: #034D2F; } .white-background { background-color: white; } .footer-picture { width: 30%; height: 30%; } .nav-logo { width: auto; height: 50px; margin-top: 6px; } @media only screen and (max-width: 992px) { .nav-logo { margin-top: 3px; } } nav ul a, nav .brand-logo { color: #444; } p { line-height: 2rem; } .button-collapse { color: #26a69a; } .parallax-container { min-height: 380px; line-height: 0; height: auto; color: rgba(255, 255, 255, 0.9); } .parallax-container .section { width: 100%; } @media only screen and (max-width: 992px) { .parallax-container .section { position: absolute; bottom: 0; } #index-banner .section { top: 10%; } } @media only screen and (max-width: 600px) { #index-banner .section { top: 0; } } #contact-us-banner { background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(100, 100, 100, 0.4) 65%, white 80%); } #contact-us-container { vertical-align: bottom; position: absolute; bottom: 0; } #contact-us-text { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 5em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } @media only screen and (max-width: 600px) { #contact-us-text { font-size: 4em; } } .serviceHeader { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 5em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } @media only screen and (max-width: 600px) { .serviceHeader { font-size: 4em; } } .icon-block .material-icons { font-size: inherit; } footer.page-footer { margin: 0; } #outerServices { min-height: 100vh; } /*# sourceMappingURL=style.css.map */
css/style.css
.icons { margin-bottom: 2em; display: inline-block; } .icons li { display: inline-block; padding-right: 2.5em; } .icons li:last-child { padding-right: 0; } .icons a { -moz-transition: all .2s ease-in; -o-transition: all .2s ease-in; -webkit-transition: all .2s ease-in; transition: all .2s ease-in; text-decoration: none; color: #525659; border: 2px solid #999; border-radius: 50%; text-align: center; display: inline-block; width: 55px; height: 55px; line-height: 60px; } .icons a .fa { font-size: 1.6em; } .icons a:hover, .icons a:active { color: #034D2F; border-color: transparent; } .icons a:hover.icon, .icons a:active.icon { background-color: #C0D4C1; } .icons a:hover.icon-search, .icons a:active.icon-search { background-color: white; } .icons a:hover.icon-email, .icons a:active.icon-email { background-color: grey; } .icons a:hover.icon-github, .icons a:active.icon-github { background-color: #222; } .icons a:hover.icon-facebook, .icons a:active.icon-facebook { background-color: #3765A3; } .icons a:hover.icon-twitter, .icons a:active.icon-twitter { background-color: #5EA9DD; } .icons a:hover.icon-instagram, .icons a:active.icon-instagram { background-color: #323232; } .icons a:hover.icon-linkedin, .icons a:active.icon-linkedin { background-color: #0274B3; } .antispam { display: none; } /* label color */ .input-field label { color: #9e9e9e; } /* label focus color */ .input-field input[type=text]:focus + label, .input-field input[type=email]:focus + label, textarea:focus + label { color: #034D2F !important; } /* label underline focus color */ .input-field input[type=text]:focus, .input-field input[type=email]:focus, textarea:focus { border-bottom: 1px solid #034D2F !important; box-shadow: 0 1px 0 0 #034D2F !important; } /* valid color */ /* icon prefix focus color */ .input-field .prefix.active { color: #034D2F !important; } .icon-block { box-shadow: 0px 0px 70px 0px rgba(3, 77, 47, 0.45); padding: 2rem; margin: 1rem 1rem; } .contentButton { display: flex; justify-content: center; align-items: center; } .contentTitle { color: #034D2F; } .contentText { color: #034D2F; font-size: 2em; margin: 0.5em; } @media only screen and (max-width: 600px) { .contentText { font-size: 2em; } } .contentIcon { margin: 0; } .mobileServiceHeader { display: none; } @media only screen and (max-width: 1000px) { .mobileServiceHeader { display: block; } } .desktopServiceHeader { display: block; } @media only screen and (max-width: 1000px) { .desktopServiceHeader { display: none; } } .img-wrap { width: 100%; height: 100%; position: relative; display: inline-block; overflow: hidden; margin: 0; box-shadow: 0px 0px 70px 0px rgba(3, 77, 47, 0.45); padding: 0; margin: 1rem 0rem; } .img-wrap > img { width: 100%; height: auto; } .mobile-button { display: none; } @media only screen and (max-width: 800px) { .mobile-button { display: inline-block; } } .desktop-button { display: inline-block; } @media only screen and (max-width: 800px) { .desktop-button { display: none; } } /* Custom Stylesheet */ h1, h2, h3, h4, h5, h6 { font-family: 'Goudy Bookletter 1911', serif; } #index-banner { height: 90vh; display: flex; justify-content: center; align-items: center; } @media only screen and (max-width: 600px) { #bottom-section { min-height: 30vh; } } .mid-title { font-size: 2.5em; text-shadow: 2px 0 0 #034D2F, -2px 0 0 #034D2F, 0 2px 0 #034D2F, 0 -2px 0 #034D2F, 1px 1px #034D2F, -1px -1px 0 #034D2F, 1px -1px 0 #034D2F, -1px 1px 0 #034D2F; } .mid-title br { display: none; } @media only screen and (max-width: 600px) { .mid-title { font-size: 2em; margin-top: -10%; } .mid-title br { display: block; } } .mobile-menu-item { font-size: 1.5em !important; padding-top: 5% !important; padding-bottom: 5% !important; } .myTint .after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.3); } .main-logo { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 6em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } .main-logo br { display: none; } @media only screen and (max-width: 600px) { .main-logo { font-size: 4em; } .main-logo br { display: block; } } .main-logo-picture { width: 10%; vertical-align: middle; margin-top: -10px; } @media only screen and (max-width: 600px) { .main-logo-picture { display: none; margin-top: 0; width: 30%; } } .sub-logo { font-size: 3em; text-shadow: 2px 0 0 #034D2F, -2px 0 0 #034D2F, 0 2px 0 #034D2F, 0 -2px 0 #034D2F, 1px 1px #034D2F, -1px -1px 0 #034D2F, 1px -1px 0 #034D2F, -1px 1px 0 #034D2F; } @media only screen and (max-width: 600px) { .sub-logo { font-size: 2em; } .sub-logo br { display: block; } } .startContent { display: none; } #services { height: 500px; } @media only screen and (max-width: 600px) { #services { height: auto; } } .myButton { color: #C0D4C1; background-color: #034D2F; } .myButton:hover { background-color: #07af6b; } .myButton:focus { background-color: #b9fce1; } .myLightGreen.text { color: #C0D4C1; } .myLightGreen.background { background-color: #C0D4C1; } .myDarkGreen.text { color: #034D2F; } .myDarkGreen.background { background-color: #034D2F; } .white-background { background-color: white; } .footer-picture { width: 30%; height: 30%; } .nav-logo { width: auto; height: 50px; margin-top: 6px; } @media only screen and (max-width: 992px) { .nav-logo { margin-top: 3px; } } nav ul a, nav .brand-logo { color: #444; } p { line-height: 2rem; } .button-collapse { color: #26a69a; } .parallax-container { min-height: 380px; line-height: 0; height: auto; color: rgba(255, 255, 255, 0.9); } .parallax-container .section { width: 100%; } @media only screen and (max-width: 992px) { .parallax-container .section { position: absolute; bottom: 0; } #index-banner .section { top: 10%; } } @media only screen and (max-width: 600px) { #index-banner .section { top: 0; } } #contact-us-banner { background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(100, 100, 100, 0.4) 65%, white 80%); } #contact-us-container { vertical-align: bottom; position: absolute; bottom: 0; } #contact-us-text { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 5em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } @media only screen and (max-width: 600px) { #contact-us-text { font-size: 4em; } } .serviceHeader { width: 100%; font-family: 'Goudy Bookletter 1911', serif; font-size: 5em; color: #034D2F; text-shadow: 2px 0 0 #C0D4C1, -2px 0 0 #C0D4C1, 0 2px 0 #C0D4C1, 0 -2px 0 #C0D4C1, 1px 1px #C0D4C1, -1px -1px 0 #C0D4C1, 1px -1px 0 #C0D4C1, -1px 1px 0 #C0D4C1; } @media only screen and (max-width: 600px) { .serviceHeader { font-size: 4em; } } .icon-block .material-icons { font-size: inherit; } footer.page-footer { margin: 0; } #outerServices { min-height: 100vh; } /*# sourceMappingURL=style.css.map */
0.360377
0.114715
@-moz-document domain("forum.paokmania.gr") { body{ color: #bbb; } #wrap, .forumbg, .forabg{ background-color: #171717 !important; background-clip: border-box !important; background-origin: padding-box !important; background-attachment: scroll !important; background-repeat: repeat !important; background-size: auto !important; background-position: left top !important; background-image: none; color: #bbb; box-shadow: none; } #cp-main .panel, .panel{ background-color: #333 !important; } .forumbg, .forabg{ box-shadow:0px 0px 20px 3px black; } a:visited, .postprofile a:visited, li.row:hover a:visited{ color: #666666; } .navbar { background-color: #00000035; color: #bbb; } .bg1, .bg2, .bg3, .bg4, ul.forums{ background-color: transparent; background-image: none; box-shadow: none; } li.row:hover { background-color: #00000045; } a:link, .postprofile a:link, li.row:hover a:link, .inputbox:focus, dt label:hover{ color: #bbe; } h2, .content, .postbody, .postprofile, #message-box textarea, .inputbox{ color: #c3c3c3; } h3 { color: #989898; } .postprofile strong, .content h2, .panel h2, .panel, dd label, .post:target .content, .post:target h3 a{ color: #eee; } blockquote { background-color: #1b1b1b; } blockquote blockquote{ background-color: #272727 !important; } hr.divider { display: none } hr { border-top-color: #2CaCaC; } .post { border-bottom-style: solid; margin-bottom: 1px; padding-bottom: 15px; border-width: 1px; border-bottom-color: #666666 ; } ::-moz-selection { background-color: #11148f !important; background: #34495e !important; color: white !important; } ::selection { background-color: #11148f !important; background: #34495e !important; color: white !important; } .inputbox { background-color: #111126; } span.corners-top, span.corners-top span, span.corners-bottom, span.corners-bottom span { background-image: none !important; } }
data/usercss/147719.user.css
@-moz-document domain("forum.paokmania.gr") { body{ color: #bbb; } #wrap, .forumbg, .forabg{ background-color: #171717 !important; background-clip: border-box !important; background-origin: padding-box !important; background-attachment: scroll !important; background-repeat: repeat !important; background-size: auto !important; background-position: left top !important; background-image: none; color: #bbb; box-shadow: none; } #cp-main .panel, .panel{ background-color: #333 !important; } .forumbg, .forabg{ box-shadow:0px 0px 20px 3px black; } a:visited, .postprofile a:visited, li.row:hover a:visited{ color: #666666; } .navbar { background-color: #00000035; color: #bbb; } .bg1, .bg2, .bg3, .bg4, ul.forums{ background-color: transparent; background-image: none; box-shadow: none; } li.row:hover { background-color: #00000045; } a:link, .postprofile a:link, li.row:hover a:link, .inputbox:focus, dt label:hover{ color: #bbe; } h2, .content, .postbody, .postprofile, #message-box textarea, .inputbox{ color: #c3c3c3; } h3 { color: #989898; } .postprofile strong, .content h2, .panel h2, .panel, dd label, .post:target .content, .post:target h3 a{ color: #eee; } blockquote { background-color: #1b1b1b; } blockquote blockquote{ background-color: #272727 !important; } hr.divider { display: none } hr { border-top-color: #2CaCaC; } .post { border-bottom-style: solid; margin-bottom: 1px; padding-bottom: 15px; border-width: 1px; border-bottom-color: #666666 ; } ::-moz-selection { background-color: #11148f !important; background: #34495e !important; color: white !important; } ::selection { background-color: #11148f !important; background: #34495e !important; color: white !important; } .inputbox { background-color: #111126; } span.corners-top, span.corners-top span, span.corners-bottom, span.corners-bottom span { background-image: none !important; } }
0.214445
0.066509
@charset "utf-8"; /*主控区*/ html { height:100%; } body { height:100%; margin:0px; padding:0px; color: #000000; font-family: 宋体, sans-serif, arial, verdana; font-size: 12px; overflow:hidden; background-color:#CCE8CC; } form, ul, li, p, dl, dt, dd, h1, h2, h3, h4, h5, h6 { margin:0px; padding:0px; } img { border:0px;} a { color:#000; text-decoration: none; } a:hover { text-decoration:underline; } /*一级导航区*/ .nav { height:30px; background-color:#4E6A81; } .nav div { height:100%; width:100%; position:relative; } .nav .title { position:absolute; top:5px; left:10px; font-size:16px; font-weight:bold; color:#FFF; overflow:hidden; white-space:nowrap; } .nav .uinfo { font-weight:normal; font-size: 12px;} .nav .uinfo em{ color:#FF9931; cursor:pointer;} #loading { background-color:#CCC; position:absolute; right:3px; bottom:3px; text-align:right; display:none; } /*菜单栏(二级导航区)*/ .menu { width:160px; } .menu div { height:100%; width:160px; overflow:auto; } .menu ul { padding:0px; list-style-type:none; } .menu ul ul { margin-left:2em;} .menu ol { padding:0px; margin:0px; white-space:nowrap; } .menu ol a { color: #000000; display: block; margin: 0 0 0 4px; padding: 4px 0 3px 10px; } .menu ol .notEmptyDir{ background: url("../images/liIcon.gif") no-repeat scroll 0px center transparent;} .menu ol a:hover { color: #5676B3; text-decoration: none; } /*主操作区*/ .main div { height:100%; width:100%; overflow:auto; } #fileList { position:relative; } #fileList span { float:left; margin:5px; cursor:pointer; position:relative; white-space:nowrap; } #fileDownload { position:absolute; z-index:1; top:100%; right:0px; border:1px solid #FFFFFF; padding:2px; background-color:#FFF; width:41px; height:14px; cursor:pointer;} #fileDownload img { float:left;} #fileDownload strong { float:left;} #operation { width:200px; } #operation input{ border:0px; height:15px; margin-top:-4px; background-color:transparent; } #operation th{ text-align:center;} #operation td{ text-align:left;} #operation ul{ border:1px solid #999; background-color:#C1BFC4; margin-top:-0px; float:left; position:absolute; text-indent:0em; }/*无限菜单扩展 right:0px; margin-right:50px; 从右到左扩展*/ #operation ul ul{ margin-top:-25px; margin-top:-23px \9; right:0px; margin-right:120px;} #operation ol{ padding:0px 0px 5px; margin:0px; width:120px; } #operation ol a{ padding:0px; margin:5px 5px 0px 5px; width:110px; display:block; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; } #fileQueue {width:180px; float:right; display:none; } #fileQueue div{width:auto;} /*进度条样式*/ #fileQueue .uploadifyQueueItem { font: 11px Verdana, Geneva, sans-serif; border: 2px solid #E5E5E5; background-color: #F5F5F5; margin-top: 5px; width: 176px;} #fileQueue .uploadifyQueueItem span{ display:block !important;} #fileQueue .uploadifyError { border: 2px solid #FBCBBC !important; background-color: #FDE5DD !important;} #fileQueue .uploadifyQueueItem .cancel { float: right;} #fileQueue .uploadifyProgress { background-color: #FFFFFF; border-top: 1px solid #808080; border-left: 1px solid #808080; border-right: 1px solid #C5C5C5; border-bottom: 1px solid #C5C5C5; margin-top: 10px; width: 174px; height: 3px;} #fileQueue .uploadifyProgressBar { background-color: #0099FF; width: 1px; height: 3px;} #fileQueue .percentage{ float:right; margin-top:-10px; } /*菜单栏切换*/ .menuSwitch { width:7px; cursor:pointer; background-color:#6F777A; } /*页脚*/ .footer { height:20px; background-color:#4E6A81; } .footer div { height:100%; width:100%; color:#FFF; position:relative; } .footer div span { position:absolute; left:5px; top:3px; }
include/of/addin/oFileManager/style/oFileManager.css
@charset "utf-8"; /*主控区*/ html { height:100%; } body { height:100%; margin:0px; padding:0px; color: #000000; font-family: 宋体, sans-serif, arial, verdana; font-size: 12px; overflow:hidden; background-color:#CCE8CC; } form, ul, li, p, dl, dt, dd, h1, h2, h3, h4, h5, h6 { margin:0px; padding:0px; } img { border:0px;} a { color:#000; text-decoration: none; } a:hover { text-decoration:underline; } /*一级导航区*/ .nav { height:30px; background-color:#4E6A81; } .nav div { height:100%; width:100%; position:relative; } .nav .title { position:absolute; top:5px; left:10px; font-size:16px; font-weight:bold; color:#FFF; overflow:hidden; white-space:nowrap; } .nav .uinfo { font-weight:normal; font-size: 12px;} .nav .uinfo em{ color:#FF9931; cursor:pointer;} #loading { background-color:#CCC; position:absolute; right:3px; bottom:3px; text-align:right; display:none; } /*菜单栏(二级导航区)*/ .menu { width:160px; } .menu div { height:100%; width:160px; overflow:auto; } .menu ul { padding:0px; list-style-type:none; } .menu ul ul { margin-left:2em;} .menu ol { padding:0px; margin:0px; white-space:nowrap; } .menu ol a { color: #000000; display: block; margin: 0 0 0 4px; padding: 4px 0 3px 10px; } .menu ol .notEmptyDir{ background: url("../images/liIcon.gif") no-repeat scroll 0px center transparent;} .menu ol a:hover { color: #5676B3; text-decoration: none; } /*主操作区*/ .main div { height:100%; width:100%; overflow:auto; } #fileList { position:relative; } #fileList span { float:left; margin:5px; cursor:pointer; position:relative; white-space:nowrap; } #fileDownload { position:absolute; z-index:1; top:100%; right:0px; border:1px solid #FFFFFF; padding:2px; background-color:#FFF; width:41px; height:14px; cursor:pointer;} #fileDownload img { float:left;} #fileDownload strong { float:left;} #operation { width:200px; } #operation input{ border:0px; height:15px; margin-top:-4px; background-color:transparent; } #operation th{ text-align:center;} #operation td{ text-align:left;} #operation ul{ border:1px solid #999; background-color:#C1BFC4; margin-top:-0px; float:left; position:absolute; text-indent:0em; }/*无限菜单扩展 right:0px; margin-right:50px; 从右到左扩展*/ #operation ul ul{ margin-top:-25px; margin-top:-23px \9; right:0px; margin-right:120px;} #operation ol{ padding:0px 0px 5px; margin:0px; width:120px; } #operation ol a{ padding:0px; margin:5px 5px 0px 5px; width:110px; display:block; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; } #fileQueue {width:180px; float:right; display:none; } #fileQueue div{width:auto;} /*进度条样式*/ #fileQueue .uploadifyQueueItem { font: 11px Verdana, Geneva, sans-serif; border: 2px solid #E5E5E5; background-color: #F5F5F5; margin-top: 5px; width: 176px;} #fileQueue .uploadifyQueueItem span{ display:block !important;} #fileQueue .uploadifyError { border: 2px solid #FBCBBC !important; background-color: #FDE5DD !important;} #fileQueue .uploadifyQueueItem .cancel { float: right;} #fileQueue .uploadifyProgress { background-color: #FFFFFF; border-top: 1px solid #808080; border-left: 1px solid #808080; border-right: 1px solid #C5C5C5; border-bottom: 1px solid #C5C5C5; margin-top: 10px; width: 174px; height: 3px;} #fileQueue .uploadifyProgressBar { background-color: #0099FF; width: 1px; height: 3px;} #fileQueue .percentage{ float:right; margin-top:-10px; } /*菜单栏切换*/ .menuSwitch { width:7px; cursor:pointer; background-color:#6F777A; } /*页脚*/ .footer { height:20px; background-color:#4E6A81; } .footer div { height:100%; width:100%; color:#FFF; position:relative; } .footer div span { position:absolute; left:5px; top:3px; }
0.269518
0.109992
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("chomikuj.pl") { /* 1 ukrywa spamerskie obrazki zajmujące pół ekranu w chomikowych rozmowach */ .message table,.message tbody,.message td,.message div,.message .FriendPhotoManiac,.message .PhotoLink{ display:inline !important; background: none !important; } .message * { font-size: 10pt !important; } /* '14-06-04: reklamy typu <a style="background:... */ #chat-messages a.orangeButtonCSS{ max-height: 40px !important; background-image: none !important; text-shadow: none !important; box-shadow: none !important; } /* 2 wywala równie uciążliwe opisy niektórych folderów */ #folderDescription div, #folderDescription .FriendPhotoManiac,#folderDescription .PhotoLink { display:inline !important; background: none !important; } #folderDescription * { font-size: 10pt !important; } #folderDescription img { max-height: 150px !important; } #folderDescription table,#folderDescription tbody,#folderDescription td{ /*srsly, kto uzywa tabelek w opisach folderow? */ display: none; } } /* 3 pozbywa się uciążliwych flashy z opisu chomika */ @-moz-document domain("opis-chomikuj.pl"){ embed,object,#edodatki_widget_clock,iframe{ display: none !important; } } /* Ukrycie spamu w Chomikowych Rozmowach Copysrajt (:P) 2012 Laststorm Niniejszy program jest wolnym oprogramowaniem - cokolwiek to znaczy. Możesz go rozprowadzać dalej, modyfikować, plagiatować na warunkach Powszechnej Licencji Wolvera SRAQ wydanej przez Fundację Polsat Dzieciom według wersji 666 tej Licencji, możesz równiesz wsadzić go sobie w dupę, jeśli ci się to podoba. Niniejszy program rozpowszechniany jest z nadzieją, iż jakiś idiota go ściągnie. Autor nie bierze żadnej odpowiedzialności za to co zrobisz z tym oprogramowaniem. Podsumowując - jeżeli nie znasz się na tym programie, skasuj go natychmiast. Powinieneś otrzymać papierową kopię tej licencji w ilości pół miliona sztuk. Jeśli licencja nie została dostarczona lub Ci się nie podoba, odwiedź adres http://www.google.com/search?q=software+license i znajdź sobie inną, która ci odpowiada. Pełny tekst licencji dostępny jest pod adresem: http://pastebin.com/raw.php?i=svj04kAe */
data/usercss/80235.user.css
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("chomikuj.pl") { /* 1 ukrywa spamerskie obrazki zajmujące pół ekranu w chomikowych rozmowach */ .message table,.message tbody,.message td,.message div,.message .FriendPhotoManiac,.message .PhotoLink{ display:inline !important; background: none !important; } .message * { font-size: 10pt !important; } /* '14-06-04: reklamy typu <a style="background:... */ #chat-messages a.orangeButtonCSS{ max-height: 40px !important; background-image: none !important; text-shadow: none !important; box-shadow: none !important; } /* 2 wywala równie uciążliwe opisy niektórych folderów */ #folderDescription div, #folderDescription .FriendPhotoManiac,#folderDescription .PhotoLink { display:inline !important; background: none !important; } #folderDescription * { font-size: 10pt !important; } #folderDescription img { max-height: 150px !important; } #folderDescription table,#folderDescription tbody,#folderDescription td{ /*srsly, kto uzywa tabelek w opisach folderow? */ display: none; } } /* 3 pozbywa się uciążliwych flashy z opisu chomika */ @-moz-document domain("opis-chomikuj.pl"){ embed,object,#edodatki_widget_clock,iframe{ display: none !important; } } /* Ukrycie spamu w Chomikowych Rozmowach Copysrajt (:P) 2012 Laststorm Niniejszy program jest wolnym oprogramowaniem - cokolwiek to znaczy. Możesz go rozprowadzać dalej, modyfikować, plagiatować na warunkach Powszechnej Licencji Wolvera SRAQ wydanej przez Fundację Polsat Dzieciom według wersji 666 tej Licencji, możesz równiesz wsadzić go sobie w dupę, jeśli ci się to podoba. Niniejszy program rozpowszechniany jest z nadzieją, iż jakiś idiota go ściągnie. Autor nie bierze żadnej odpowiedzialności za to co zrobisz z tym oprogramowaniem. Podsumowując - jeżeli nie znasz się na tym programie, skasuj go natychmiast. Powinieneś otrzymać papierową kopię tej licencji w ilości pół miliona sztuk. Jeśli licencja nie została dostarczona lub Ci się nie podoba, odwiedź adres http://www.google.com/search?q=software+license i znajdź sobie inną, która ci odpowiada. Pełny tekst licencji dostępny jest pod adresem: http://pastebin.com/raw.php?i=svj04kAe */
0.136551
0.105625
body{background:#eee} footer{background: -webkit-linear-gradient(45deg, #df01e1 0%, #420de0 100%);} .content > .left{border-right:1px solid #F6F6F6;padding-top:50px;width:180px;overflow:hidden} .content > .left li{margin-bottom:15px} .content > .left li a{height:55px;line-height:55px;display:block;font-size:15px;padding-left:30px;padding-right:10px;overflow:hidden;cursor:pointer;color:#333;transition:0.2s all} .content > .left li a:hover{color:#20c4ab} .content > .left li a img{height:18px;width:18px;vertical-align:middle;margin-top:-3px;margin-right:12px} .content > .left li .hover{background:#20c4ab;color:#FFF} .content > .left li .hover:hover{color:#FFF} .content > .right{width:calc(100% - 180px - 20px);padding-top:50px} .content > .right .ulttile{padding:0px 10px} .content > .right .ulttile div{float:left;font-size:15px;height:55px;line-height:55px;color:#333;padding-left:20px} .content > .right .ulttile div:nth-child(1){width:15%} .content > .right .ulttile div:nth-child(2){width:40%} .content > .right .ulttile div:nth-child(3){width:17.5%} .content > .right .ulttile div:nth-child(4){width:17.5%} .content > .right .ulttile div:nth-child(5){width:10%;padding-left:0;text-align:center} .content > .right .updatelist{position:relative;margin-top:20px;min-height:600px} .content > .right .updatelist li{padding:15px 10px} .content > .right .updatelist li:hover{background:#fbfbfb} .content > .right .updatelist li div{float:left;font-size:15px;height:35px;line-height:33px;color:#333;padding-left:20px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} .content > .right .updatelist li div:nth-child(1){width:15%} .content > .right .updatelist li div:nth-child(2){width:40%} .content > .right .updatelist li div:nth-child(2) .url{color:#333!important} .content > .right .updatelist li div:nth-child(3){width:17.5%} .content > .right .updatelist li div:nth-child(4){width:17.5%} .content > .right .updatelist li div:nth-child(5){width:10%;padding-left:0} .content > .right .updatelist li div:nth-child(5) .open{border:1px solid #ececec;background:#FFF;display:block;width:83px;text-align:center;color:#333;font-size:14px;border-radius:19px;max-width:100%;overflow:hidden;margin:0px auto;transition:0.2s all} .content > .right .updatelist li div:nth-child(5) .open:hover{color:#333} .content > .right .updatelist li .new-time{color:#333333} #page{text-align:center;margin-top:20px;margin-bottom:15px} .layui-laypage a,.layui-laypage span{padding:0 22px;height:36px;line-height:36px;font-size:14px} .layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #F6F6F6} .layui-laypage .layui-laypage-curr .layui-laypage-em{background-color:#20c4ab}
template/default/public/pc/css/update.css
body{background:#eee} footer{background: -webkit-linear-gradient(45deg, #df01e1 0%, #420de0 100%);} .content > .left{border-right:1px solid #F6F6F6;padding-top:50px;width:180px;overflow:hidden} .content > .left li{margin-bottom:15px} .content > .left li a{height:55px;line-height:55px;display:block;font-size:15px;padding-left:30px;padding-right:10px;overflow:hidden;cursor:pointer;color:#333;transition:0.2s all} .content > .left li a:hover{color:#20c4ab} .content > .left li a img{height:18px;width:18px;vertical-align:middle;margin-top:-3px;margin-right:12px} .content > .left li .hover{background:#20c4ab;color:#FFF} .content > .left li .hover:hover{color:#FFF} .content > .right{width:calc(100% - 180px - 20px);padding-top:50px} .content > .right .ulttile{padding:0px 10px} .content > .right .ulttile div{float:left;font-size:15px;height:55px;line-height:55px;color:#333;padding-left:20px} .content > .right .ulttile div:nth-child(1){width:15%} .content > .right .ulttile div:nth-child(2){width:40%} .content > .right .ulttile div:nth-child(3){width:17.5%} .content > .right .ulttile div:nth-child(4){width:17.5%} .content > .right .ulttile div:nth-child(5){width:10%;padding-left:0;text-align:center} .content > .right .updatelist{position:relative;margin-top:20px;min-height:600px} .content > .right .updatelist li{padding:15px 10px} .content > .right .updatelist li:hover{background:#fbfbfb} .content > .right .updatelist li div{float:left;font-size:15px;height:35px;line-height:33px;color:#333;padding-left:20px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} .content > .right .updatelist li div:nth-child(1){width:15%} .content > .right .updatelist li div:nth-child(2){width:40%} .content > .right .updatelist li div:nth-child(2) .url{color:#333!important} .content > .right .updatelist li div:nth-child(3){width:17.5%} .content > .right .updatelist li div:nth-child(4){width:17.5%} .content > .right .updatelist li div:nth-child(5){width:10%;padding-left:0} .content > .right .updatelist li div:nth-child(5) .open{border:1px solid #ececec;background:#FFF;display:block;width:83px;text-align:center;color:#333;font-size:14px;border-radius:19px;max-width:100%;overflow:hidden;margin:0px auto;transition:0.2s all} .content > .right .updatelist li div:nth-child(5) .open:hover{color:#333} .content > .right .updatelist li .new-time{color:#333333} #page{text-align:center;margin-top:20px;margin-bottom:15px} .layui-laypage a,.layui-laypage span{padding:0 22px;height:36px;line-height:36px;font-size:14px} .layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #F6F6F6} .layui-laypage .layui-laypage-curr .layui-laypage-em{background-color:#20c4ab}
0.217254
0.064772
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); body { font-family: 'Lato', sans-serif; } a { color: #C44639; } a:hover { color: #9C3D34; } .form-control:focus { border-color: #C44639; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #C44639; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #C44639; } .nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { color: #fff; background-color: #C44639; } h1, h2, h3, h4, h5, h6 { margin-top: 0px; } p { line-height: 180%; } .repeated-item.ng-enter, .repeated-item.ng-move { -webkit-animation: 0.5s rollIn; -moz-animation: 0.5s rollIn; -o-animation: 0.5s rollIn; animation: 0.5s rollIn; } /* The ng-enter-active and ng-move-active are where the transition destination properties are set so that the animation knows what to animate. */ .repeated-item.ng-enter.ng-enter-active, .repeated-item.ng-move.ng-move-active { opacity: 1; } /* We're using CSS keyframe animations for when the leave event is triggered for the element that has the .repeated-item class */ .repeated-item.ng-leave { -webkit-animation: 1s hinge; -moz-animation: 1s hinge; -o-animation: 1s hinge; animation: 1s hinge; position: absolute; } ul.socialicons { list-style: none; margin-top: -8px; } ul.socialicons li { float: left; } ul.socialicons li i { float: left; font-size: 25px; padding: 5px; color: #C44639; } ul.socialicons li i:hover { float: left; font-size: 25px; padding: 5px; color: #9C3D34; } .logo img { height: 70px; } .img { width: 100%; } .template { margin-bottom: 10px; } .template.headermenu { background: #E9E7E7; padding: 5px; height: 30px; font-size: 12px; color: #444; } .template.menu { background: #E9E7E7; padding: 3px; height: 46px; /* font-size: 12px; */ color: #444; } .template.footermenu { background: #E9E7E7; padding: 10px; color: #444; } .template.content { min-height: 300px; } .template.footer { background: #5C5B5B; padding: 10px; color: #fff; margin-top: -10px; font-size: 80%; height: 35px; } .template.footermenu ul { list-style: none; padding: 0px; } .template.footermenu ul li a { color: #444; } .template.footer a { color: #eee; } .formpage { text-align: center; } .loader { background-color: rgba(0, 0, 0, 0.31); padding: 10px; border-radius: 5px; position: fixed; top: 30%; left: 50%; transform: translateX(-50%); color:white; text-align: center; } .alternaterow{ background-color:beige; }
frontend/css/main.css
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); body { font-family: 'Lato', sans-serif; } a { color: #C44639; } a:hover { color: #9C3D34; } .form-control:focus { border-color: #C44639; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #C44639; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #C44639; } .nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { color: #fff; background-color: #C44639; } h1, h2, h3, h4, h5, h6 { margin-top: 0px; } p { line-height: 180%; } .repeated-item.ng-enter, .repeated-item.ng-move { -webkit-animation: 0.5s rollIn; -moz-animation: 0.5s rollIn; -o-animation: 0.5s rollIn; animation: 0.5s rollIn; } /* The ng-enter-active and ng-move-active are where the transition destination properties are set so that the animation knows what to animate. */ .repeated-item.ng-enter.ng-enter-active, .repeated-item.ng-move.ng-move-active { opacity: 1; } /* We're using CSS keyframe animations for when the leave event is triggered for the element that has the .repeated-item class */ .repeated-item.ng-leave { -webkit-animation: 1s hinge; -moz-animation: 1s hinge; -o-animation: 1s hinge; animation: 1s hinge; position: absolute; } ul.socialicons { list-style: none; margin-top: -8px; } ul.socialicons li { float: left; } ul.socialicons li i { float: left; font-size: 25px; padding: 5px; color: #C44639; } ul.socialicons li i:hover { float: left; font-size: 25px; padding: 5px; color: #9C3D34; } .logo img { height: 70px; } .img { width: 100%; } .template { margin-bottom: 10px; } .template.headermenu { background: #E9E7E7; padding: 5px; height: 30px; font-size: 12px; color: #444; } .template.menu { background: #E9E7E7; padding: 3px; height: 46px; /* font-size: 12px; */ color: #444; } .template.footermenu { background: #E9E7E7; padding: 10px; color: #444; } .template.content { min-height: 300px; } .template.footer { background: #5C5B5B; padding: 10px; color: #fff; margin-top: -10px; font-size: 80%; height: 35px; } .template.footermenu ul { list-style: none; padding: 0px; } .template.footermenu ul li a { color: #444; } .template.footer a { color: #eee; } .formpage { text-align: center; } .loader { background-color: rgba(0, 0, 0, 0.31); padding: 10px; border-radius: 5px; position: fixed; top: 30%; left: 50%; transform: translateX(-50%); color:white; text-align: center; } .alternaterow{ background-color:beige; }
0.424412
0.111096
@font-face { font-family: "proclamate_heavy"; src: url("assets/fonts/proclamate/proclamate_heavy-webfont.woff"); font-weight: normal; font-style: normal; } @font-face { font-family: "proclamate_incisedheavy"; src: url("assets/fonts/proclamate/proclamate_incised-webfont.woff"); font-weight: normal; font-style: normal; } @font-face { font-family: "proclamate_light"; src: url("assets/fonts/proclamate/proclamate_light-webfont.woff"); font-weight: normal; font-style: normal; } :root { --spacing: 10px; --line-height: 2.4rem; } html, body { font-family: "Vollkorn", sans-serif; font-size: 10px; margin: 0; background-image: url(/assets/images/background.jpg); background-size: cover; } body { margin: var(--spacing); } main { position: relative; max-width: 720px; margin: 0 auto; font-size: 1.8rem; z-index: 10; } .image-alchemical-circle { position: absolute; display: none; top: 650px; left: 17%; width: 450px; z-index: 1; opacity: 0.1; animation: spin 60s linear infinite; } @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @media (min-width: 600px) { main { font-size: 2rem; } .image-alchemical-circle { display: block; } } p { margin: 0; margin-bottom: var(--line-height); line-height: var(--line-height); } .emphasize { font-weight: 800; } @media (min-width: 600px) { p { /* margin-bottom: 0; */ } } .btn-roll-spell { display: block; margin-left: auto; margin-right: auto; font-family: "Vollkorn", serif; font-size: 2rem; width: 180px; height: 40px; background-image: url(/assets/images/roll-spell-bg.jpg); background-size: 180px; border: 0; border: 2px solid #302e6f; } .btn-roll-spell:hover { cursor: pointer; } .header { margin-bottom: calc(var(--line-height) * 2); } .cwacof { font-family: "proclamate_incisedheavy"; font-size: 4rem; text-align: center; margin-bottom: calc(var(--line-height) / 2); } .subtitle { text-align: center; } .spell-name { font-family: "proclamate_heavy"; font-size: 3rem; margin: 0; } .spell-name-drop-cap { color: red; font-size: 7rem; float: left; margin-right: 4px; height: 65px; } @media (min-width: 600px) { .spell-name-drop-cap { font-size: 8rem; height: 80px; } } .spell-reroll { color: red; } .image-fireballs { display: block; margin-left: auto; margin-right: auto; margin-top: var(--spacing); margin-bottom: var(--spacing); } @media (min-width: 600px) { .image-fireballs { width: auto; margin-bottom: var(--spacing); } } .image-spell-catastrophe { width: 300px; display: block; margin-left: auto; margin-right: auto; transform: translateY(-20px); } @media (min-width: 600px) { .image-spell-catastrophe { float: right; width: 200px; transform: translateY(-28px); } } .section:after { content: ""; display: table; clear: both; } .section-table { border-top: 1px solid black; padding-top: calc(var(--spacing) * 2); padding-bottom: calc(var(--spacing) * 2); } .table { width: 100%; font-size: 1.6rem; } @media (min-width: 600px) { .table { font-size: 2rem; } } .table tr:nth-child(odd) { background-color: #ffcb47; } .table tr:nth-child(even) { background-color: #f3f2e2; } .table td { border: 1px solid #302e6f; padding: var(--spacing); } .table-label { font-weight: 800; } .table-label-width { width: 80px; } @media (min-width: 600px) { .table-label-width { width: 160px; } } .image-line-ornament { display: block; margin-left: auto; margin-right: auto; width: 300px; } .footer { color: #302e6f; font-size: 1.6rem; text-align: center; padding: var(--line-height); }
index.css
@font-face { font-family: "proclamate_heavy"; src: url("assets/fonts/proclamate/proclamate_heavy-webfont.woff"); font-weight: normal; font-style: normal; } @font-face { font-family: "proclamate_incisedheavy"; src: url("assets/fonts/proclamate/proclamate_incised-webfont.woff"); font-weight: normal; font-style: normal; } @font-face { font-family: "proclamate_light"; src: url("assets/fonts/proclamate/proclamate_light-webfont.woff"); font-weight: normal; font-style: normal; } :root { --spacing: 10px; --line-height: 2.4rem; } html, body { font-family: "Vollkorn", sans-serif; font-size: 10px; margin: 0; background-image: url(/assets/images/background.jpg); background-size: cover; } body { margin: var(--spacing); } main { position: relative; max-width: 720px; margin: 0 auto; font-size: 1.8rem; z-index: 10; } .image-alchemical-circle { position: absolute; display: none; top: 650px; left: 17%; width: 450px; z-index: 1; opacity: 0.1; animation: spin 60s linear infinite; } @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @media (min-width: 600px) { main { font-size: 2rem; } .image-alchemical-circle { display: block; } } p { margin: 0; margin-bottom: var(--line-height); line-height: var(--line-height); } .emphasize { font-weight: 800; } @media (min-width: 600px) { p { /* margin-bottom: 0; */ } } .btn-roll-spell { display: block; margin-left: auto; margin-right: auto; font-family: "Vollkorn", serif; font-size: 2rem; width: 180px; height: 40px; background-image: url(/assets/images/roll-spell-bg.jpg); background-size: 180px; border: 0; border: 2px solid #302e6f; } .btn-roll-spell:hover { cursor: pointer; } .header { margin-bottom: calc(var(--line-height) * 2); } .cwacof { font-family: "proclamate_incisedheavy"; font-size: 4rem; text-align: center; margin-bottom: calc(var(--line-height) / 2); } .subtitle { text-align: center; } .spell-name { font-family: "proclamate_heavy"; font-size: 3rem; margin: 0; } .spell-name-drop-cap { color: red; font-size: 7rem; float: left; margin-right: 4px; height: 65px; } @media (min-width: 600px) { .spell-name-drop-cap { font-size: 8rem; height: 80px; } } .spell-reroll { color: red; } .image-fireballs { display: block; margin-left: auto; margin-right: auto; margin-top: var(--spacing); margin-bottom: var(--spacing); } @media (min-width: 600px) { .image-fireballs { width: auto; margin-bottom: var(--spacing); } } .image-spell-catastrophe { width: 300px; display: block; margin-left: auto; margin-right: auto; transform: translateY(-20px); } @media (min-width: 600px) { .image-spell-catastrophe { float: right; width: 200px; transform: translateY(-28px); } } .section:after { content: ""; display: table; clear: both; } .section-table { border-top: 1px solid black; padding-top: calc(var(--spacing) * 2); padding-bottom: calc(var(--spacing) * 2); } .table { width: 100%; font-size: 1.6rem; } @media (min-width: 600px) { .table { font-size: 2rem; } } .table tr:nth-child(odd) { background-color: #ffcb47; } .table tr:nth-child(even) { background-color: #f3f2e2; } .table td { border: 1px solid #302e6f; padding: var(--spacing); } .table-label { font-weight: 800; } .table-label-width { width: 80px; } @media (min-width: 600px) { .table-label-width { width: 160px; } } .image-line-ornament { display: block; margin-left: auto; margin-right: auto; width: 300px; } .footer { color: #302e6f; font-size: 1.6rem; text-align: center; padding: var(--line-height); }
0.459804
0.086632
.advertising-flag-new, .advertising-flag-normal, .footer-company-icp { position: relative } .footer-bottom { padding-top: 1px; background-color: #1f1f1f } .footer .transverse-thread { width: 30px; text-align: left } .footer-data-list { float: right; margin-top: 50px } .footer-data-list li { display: inline-block; margin-left: 30px; vertical-align: top; *display: inline; *zoom: 1 } .footer-data-list li p { text-align: left; color: #fff } .footer-data-list li p .icon-num { transition: all 1.5s; -webkit-transition: all 1.5s; -moz-transition: all 1.5s; -ms-transition: all 1.5s; -o-transition: all 1.5s } .footer-data-type { font-size: 14px; margin-bottom: 9px } .footer-num-days { margin-top: 24px; overflow: hidden } .footer-data-list .margin-alone { margin-left: 32px } .footer-websites-box { padding-top: 40px; border-bottom: 1px solid #313131 } .footer-city-list { height: 35px; overflow: hidden } .footer-city-list a, .footer-city-list span { height: 34px; font-size: 13px; line-height: 34px; color: #828789 } .footer-city-list a { float: right } .footer-city-list span { float: left; width: 90px; margin-right: 10px; background-color: #121212; text-align: center; cursor: pointer } .footer-city-list span.on { color: #fff; background-color: #384144 } .footer-websites ul li, .footer-websites ul li a { color: #83888a; white-space: nowrap } .footer-websites { margin-top: 21px } .footer-websites ul li { float: left; margin: 0 14px 11px 0; font-size: 12px } .footer-company-box { padding: 30px 0; overflow: hidden } .footer-qr-code p { font-size: 12px; color: #fff; text-align: center } .footer-qr-code div { margin-left: 30px; height: 130px; width: 100px; float: right } .footer-qr-code div img { width: 100px; height: 100px } .footer-company-info { float: left } .footer-company-info ul { overflow: hidden } .footer-company-info ul li { float: left; margin-right: 17px; font-size: 13px; color: #fff } .footer-company-info ul li a { color: #fff } .footer-company-info p { margin-top: 23px; font-size: 12px; text-align: left; color: #83888a } .footer .icon-num { width: 19px; height: 32px; float: left } .footer .icon-num-zero { background-position: 0 0 } .footer .icon-num-one { background-position: 2px -35px } .footer .icon-num-two { background-position: 0 -71px } .footer .icon-num-three { background-position: 0 -107px } .footer .icon-num-four { background-position: 0 -143px } .footer .icon-num-five { background-position: 0 -179px } .footer .icon-num-six { background-position: 0 -214px } .footer .icon-num-seven { background-position: 0 -251px } .footer .icon-num-eight { background-position: 0 -287px } .footer .icon-num-nine { background-position: -1px -323px } .footer .icon-num-dot { float: left; width: 6px; height: 8px; margin-top: 24px; background: url(//img.to8to.com/to8to_pc/common/modules/footer/img/num.png) -4px -380px no-repeat } .footer .fbc-iocn1, .footer .fbc-iocn2, .footer .fbc-iocn3, .footer .fbc-iocn4, .footer .fbc-iocn5 { margin-top: -5px; height: 24px } .footer-company-info p span { display: inline-block; vertical-align: top; color: #83888a; *display: inline; *zoom: 1 } .footer-company-info p a { display: inline-block; *display: inline; *zoom: 1; margin-left: 17px } .footer-company-info p a i { display: block } .footer .fbc-iocn1 { width: 21px; background-position: -385px -497px } .footer .fbc-iocn2 { width: 21px; background-position: -424px -497px } .footer .fbc-iocn3 { width: 21px; background-position: -463px -497px } .footer .fbc-iocn4 { width: 65px; background-position: -499px -497px } .footer .fbc-iocn5 { display: none; width: 67px; background-position: -576px -497px; background-image: none } @media screen and (min-width:1460px) { .footer-data-list li { margin-left: 90px } .footer-data-list .margin-alone { margin-left: 62px } } .advertising-flag-normal .advertising-flag { position: absolute; bottom: 0; right: 0; width: 34px; height: 24px; } .advertising-flag-new .advertising-flag-banner { position: absolute; top: 0; right: 0; width: 38px; height: 26px; } .new_xgt_slider .advertising-flag-banner { right: 50%; margin-right: -610px }
trimhelp-ui/src/main/resources/static/css/footer-0bf5e5a4f3.css
.advertising-flag-new, .advertising-flag-normal, .footer-company-icp { position: relative } .footer-bottom { padding-top: 1px; background-color: #1f1f1f } .footer .transverse-thread { width: 30px; text-align: left } .footer-data-list { float: right; margin-top: 50px } .footer-data-list li { display: inline-block; margin-left: 30px; vertical-align: top; *display: inline; *zoom: 1 } .footer-data-list li p { text-align: left; color: #fff } .footer-data-list li p .icon-num { transition: all 1.5s; -webkit-transition: all 1.5s; -moz-transition: all 1.5s; -ms-transition: all 1.5s; -o-transition: all 1.5s } .footer-data-type { font-size: 14px; margin-bottom: 9px } .footer-num-days { margin-top: 24px; overflow: hidden } .footer-data-list .margin-alone { margin-left: 32px } .footer-websites-box { padding-top: 40px; border-bottom: 1px solid #313131 } .footer-city-list { height: 35px; overflow: hidden } .footer-city-list a, .footer-city-list span { height: 34px; font-size: 13px; line-height: 34px; color: #828789 } .footer-city-list a { float: right } .footer-city-list span { float: left; width: 90px; margin-right: 10px; background-color: #121212; text-align: center; cursor: pointer } .footer-city-list span.on { color: #fff; background-color: #384144 } .footer-websites ul li, .footer-websites ul li a { color: #83888a; white-space: nowrap } .footer-websites { margin-top: 21px } .footer-websites ul li { float: left; margin: 0 14px 11px 0; font-size: 12px } .footer-company-box { padding: 30px 0; overflow: hidden } .footer-qr-code p { font-size: 12px; color: #fff; text-align: center } .footer-qr-code div { margin-left: 30px; height: 130px; width: 100px; float: right } .footer-qr-code div img { width: 100px; height: 100px } .footer-company-info { float: left } .footer-company-info ul { overflow: hidden } .footer-company-info ul li { float: left; margin-right: 17px; font-size: 13px; color: #fff } .footer-company-info ul li a { color: #fff } .footer-company-info p { margin-top: 23px; font-size: 12px; text-align: left; color: #83888a } .footer .icon-num { width: 19px; height: 32px; float: left } .footer .icon-num-zero { background-position: 0 0 } .footer .icon-num-one { background-position: 2px -35px } .footer .icon-num-two { background-position: 0 -71px } .footer .icon-num-three { background-position: 0 -107px } .footer .icon-num-four { background-position: 0 -143px } .footer .icon-num-five { background-position: 0 -179px } .footer .icon-num-six { background-position: 0 -214px } .footer .icon-num-seven { background-position: 0 -251px } .footer .icon-num-eight { background-position: 0 -287px } .footer .icon-num-nine { background-position: -1px -323px } .footer .icon-num-dot { float: left; width: 6px; height: 8px; margin-top: 24px; background: url(//img.to8to.com/to8to_pc/common/modules/footer/img/num.png) -4px -380px no-repeat } .footer .fbc-iocn1, .footer .fbc-iocn2, .footer .fbc-iocn3, .footer .fbc-iocn4, .footer .fbc-iocn5 { margin-top: -5px; height: 24px } .footer-company-info p span { display: inline-block; vertical-align: top; color: #83888a; *display: inline; *zoom: 1 } .footer-company-info p a { display: inline-block; *display: inline; *zoom: 1; margin-left: 17px } .footer-company-info p a i { display: block } .footer .fbc-iocn1 { width: 21px; background-position: -385px -497px } .footer .fbc-iocn2 { width: 21px; background-position: -424px -497px } .footer .fbc-iocn3 { width: 21px; background-position: -463px -497px } .footer .fbc-iocn4 { width: 65px; background-position: -499px -497px } .footer .fbc-iocn5 { display: none; width: 67px; background-position: -576px -497px; background-image: none } @media screen and (min-width:1460px) { .footer-data-list li { margin-left: 90px } .footer-data-list .margin-alone { margin-left: 62px } } .advertising-flag-normal .advertising-flag { position: absolute; bottom: 0; right: 0; width: 34px; height: 24px; } .advertising-flag-new .advertising-flag-banner { position: absolute; top: 0; right: 0; width: 38px; height: 26px; } .new_xgt_slider .advertising-flag-banner { right: 50%; margin-right: -610px }
0.408041
0.093678
Created on : Apr 17, 2017, 10:25:07 AM Author : BGILLING */ fieldset { position: relative; } #edit-objectsformset { background-color: #fafafa; border-left: 1px solid #bbb; border-right: none; border-bottom: 1px solid #bbb; border-top: 1px solid #bbb; } #mets_editor_wrapper { width: 100%; min-width: 1160px; height:688px; overflow: hidden; margin-bottom: 8px; } .scroll_short { overflow-y: scroll; } .treeview_editor { overflow: auto; width: 99%; height: 630px; background-color: white; } #tree { float: left; overflow: display; width: 99%; } #page_elements_tabs { width: 925px; min-width: 700px; top: 0px; left: 4px; position: absolute; height: 688px; overflow: hidden; padding: 0px; border: none; } #btn_add[disabled], #btn_del[disabled] { color: graytext; } #btn_edit { width: 110px; } #page_preview { border: 1px solid #F2F2F2; text-align: center; background-color: black; overflow: hidden; width: 925px; } #page_preview, #page_ocr { border: none; padding: 0 !important; height: 653px; } #page_preview #islandora-openseadragon { height: 646px !important; } #page_ocr { white-space: pre-line; font-family: Courier; border: none; color: #485; width: 925px; background-color: #F9F9F9; overflow: auto; max-height: 650px; } #page_ocr_ro { padding: 4px; margin: 0px; resize: none; border: 1px solid #F2F2F2; width: 923px; height: 648px; background-color: #E6E6E6; color: #333; font-family: Courier; overflow: auto; } #item_info { background-color: #fafafa; font-size: 8pt; height: 50px; width: 100%; padding: 0px !important; margin-top: 0px; margin-bottom: 4px; position: inherit !important; line-height: 1.2em; } #item_info div { margin: 4px; } #edit-objectsformset, #edit-objectsformset .fieldset-wrapper { padding: 0 !important; } #edit-objectsformset .fieldset-wrapper div .resizable-textarea .grippie { display: none; } /* ---------- resize form elements --------- */ #rs_main { background-color: white; position: absolute; top:0px; right: 0; left:248px; } #rs_sidebar { background-color: #e7e7e7; width:244px; /* overflow: auto; */ margin-left:0px; } #rs_dragbar { border-right:1px solid #A491B6; border-left:1px solid #BFA4C4; background: rgb(245,245,245); background: linear-gradient(0deg, rgba(201,201,201,1) 0%, rgba(123,124,135,1) 17%, rgba(123,124,135,1) 83%, rgba(201,201,201,1) 100%); width: 5px; padding-left: 1px; cursor: col-resize; } #rs_dragbar:hover, #rs_dragbar.dragging { border-right:1px solid #323D45; border-left:1px solid #344143; background: rgb(250,250,250); background: linear-gradient(0deg, rgba(146,147,165,1) 0%, rgba(201,201,201,1) 27%, rgba(201,201,201,1) 73%, rgba(146,147,165,1) 100%); } #rs_sidebar, #rs_dragbar { float: left; height: 688px; } .medium-small { font-size: .8em; color: #666; } .one-row-buttons { float: left; padding: 2px 6px; margin-right: 6px; } .clearfloat { clear: both; } /* =========================================================================== Override of the rounded top of tab. */ .ui-tabs .ui-tabs-nav { border-radius: 0; border: none; } /* =========================================================================== Taken from the default theme css since an overridden theme on our one site (/admin/appearance) is set to Administration Theme: "Seven" which is causing the /themes/seven/jquery.ui.theme.css to replace the jquery_update/replace/ui/themes/base/ files. */ /*! * jQuery UI CSS Framework 1.10.2 * http://jqueryui.com * * Copyright 2013 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://docs.jquery.com/UI/Theming/API * * To view and modify this theme, visit http://jqueryui.com/themeroller/ */ /* Component containers ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff; color: #222222/*{fcContent}*/; } .ui-widget-content a { color: #222222/*{fcContent}*/; } .ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background-color: #fafafa; /* #cccccc; */ color: #222222/*{fcHeader}*/; font-weight: bold; } .ui-widget-header a { color: #222222/*{fcHeader}*/; } /* Interaction states ----------------------------------*/ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; } .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121/*{fcHover}*/; text-decoration: none; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } /* Interaction Cues ----------------------------------*/ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee; color: #363636/*{fcHighlight}*/; } .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec; color: #cd0a0a/*{fcError}*/; } .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); /* For IE8 - See #6059 */ } /* Misc visuals ----------------------------------*/ /* Corner radius */ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-top-right-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 4px/*{cornerRadius}*/; } .islandora-openseadragon { height: 630px !important; }
css/mets_editor.css
Created on : Apr 17, 2017, 10:25:07 AM Author : BGILLING */ fieldset { position: relative; } #edit-objectsformset { background-color: #fafafa; border-left: 1px solid #bbb; border-right: none; border-bottom: 1px solid #bbb; border-top: 1px solid #bbb; } #mets_editor_wrapper { width: 100%; min-width: 1160px; height:688px; overflow: hidden; margin-bottom: 8px; } .scroll_short { overflow-y: scroll; } .treeview_editor { overflow: auto; width: 99%; height: 630px; background-color: white; } #tree { float: left; overflow: display; width: 99%; } #page_elements_tabs { width: 925px; min-width: 700px; top: 0px; left: 4px; position: absolute; height: 688px; overflow: hidden; padding: 0px; border: none; } #btn_add[disabled], #btn_del[disabled] { color: graytext; } #btn_edit { width: 110px; } #page_preview { border: 1px solid #F2F2F2; text-align: center; background-color: black; overflow: hidden; width: 925px; } #page_preview, #page_ocr { border: none; padding: 0 !important; height: 653px; } #page_preview #islandora-openseadragon { height: 646px !important; } #page_ocr { white-space: pre-line; font-family: Courier; border: none; color: #485; width: 925px; background-color: #F9F9F9; overflow: auto; max-height: 650px; } #page_ocr_ro { padding: 4px; margin: 0px; resize: none; border: 1px solid #F2F2F2; width: 923px; height: 648px; background-color: #E6E6E6; color: #333; font-family: Courier; overflow: auto; } #item_info { background-color: #fafafa; font-size: 8pt; height: 50px; width: 100%; padding: 0px !important; margin-top: 0px; margin-bottom: 4px; position: inherit !important; line-height: 1.2em; } #item_info div { margin: 4px; } #edit-objectsformset, #edit-objectsformset .fieldset-wrapper { padding: 0 !important; } #edit-objectsformset .fieldset-wrapper div .resizable-textarea .grippie { display: none; } /* ---------- resize form elements --------- */ #rs_main { background-color: white; position: absolute; top:0px; right: 0; left:248px; } #rs_sidebar { background-color: #e7e7e7; width:244px; /* overflow: auto; */ margin-left:0px; } #rs_dragbar { border-right:1px solid #A491B6; border-left:1px solid #BFA4C4; background: rgb(245,245,245); background: linear-gradient(0deg, rgba(201,201,201,1) 0%, rgba(123,124,135,1) 17%, rgba(123,124,135,1) 83%, rgba(201,201,201,1) 100%); width: 5px; padding-left: 1px; cursor: col-resize; } #rs_dragbar:hover, #rs_dragbar.dragging { border-right:1px solid #323D45; border-left:1px solid #344143; background: rgb(250,250,250); background: linear-gradient(0deg, rgba(146,147,165,1) 0%, rgba(201,201,201,1) 27%, rgba(201,201,201,1) 73%, rgba(146,147,165,1) 100%); } #rs_sidebar, #rs_dragbar { float: left; height: 688px; } .medium-small { font-size: .8em; color: #666; } .one-row-buttons { float: left; padding: 2px 6px; margin-right: 6px; } .clearfloat { clear: both; } /* =========================================================================== Override of the rounded top of tab. */ .ui-tabs .ui-tabs-nav { border-radius: 0; border: none; } /* =========================================================================== Taken from the default theme css since an overridden theme on our one site (/admin/appearance) is set to Administration Theme: "Seven" which is causing the /themes/seven/jquery.ui.theme.css to replace the jquery_update/replace/ui/themes/base/ files. */ /*! * jQuery UI CSS Framework 1.10.2 * http://jqueryui.com * * Copyright 2013 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://docs.jquery.com/UI/Theming/API * * To view and modify this theme, visit http://jqueryui.com/themeroller/ */ /* Component containers ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff; color: #222222/*{fcContent}*/; } .ui-widget-content a { color: #222222/*{fcContent}*/; } .ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background-color: #fafafa; /* #cccccc; */ color: #222222/*{fcHeader}*/; font-weight: bold; } .ui-widget-header a { color: #222222/*{fcHeader}*/; } /* Interaction states ----------------------------------*/ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; } .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121/*{fcHover}*/; text-decoration: none; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } /* Interaction Cues ----------------------------------*/ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee; color: #363636/*{fcHighlight}*/; } .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec; color: #cd0a0a/*{fcError}*/; } .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); /* For IE8 - See #6059 */ } /* Misc visuals ----------------------------------*/ /* Corner radius */ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-top-right-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 4px/*{cornerRadius}*/; } .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 4px/*{cornerRadius}*/; } .islandora-openseadragon { height: 630px !important; }
0.340485
0.166811
*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box; } html, body { min-height: 100vh; display: grid; } body { margin: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background: #f6f6f6; } .container { margin: auto; width: 15rem; height: 18rem; } .shape { position: absolute; } .shape.center { top: 1.25rem; left: 6.5rem; width: 2rem; height: 16rem; background: #383838; background-image: -webkit-gradient(linear, left top, right top, from(#383838), color-stop(35%, #707070), color-stop(65%, #232323), to(#535353)); background-image: -webkit-linear-gradient(left, #383838 0%, #707070 35%, #232323 65%, #535353 100%); background-image: -o-linear-gradient(left, #383838 0%, #707070 35%, #232323 65%, #535353 100%); background-image: linear-gradient(to right, #383838 0%, #707070 35%, #232323 65%, #535353 100%); -webkit-transform: rotate(40deg); -ms-transform: rotate(40deg); transform: rotate(40deg); } .shape.center:before, .shape.center:after { position: absolute; content: ''; z-index: -1; } .shape.center:before { top: -1.25rem; left: 0.25rem; width: 1.5rem; height: 0.75rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 0.25rem 0.25rem 0 0; } .shape.center:after { top: 15.75rem; left: 0.975rem; width: 0.175rem; height: 1rem; background: #847f80; border-radius: 0 0 1rem 1rem; } .inner { position: absolute; top: -0.7rem; width: 2rem; height: 0.75rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 0.25rem 0.25rem 0 0; } .clip { position: absolute; top: 1rem; left: 2.65rem; width: 0.5rem; height: 4.5rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #bcbcbe), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #bcbcbe 45%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #bcbcbe 45%, #d2d1d3 100%); background-image: linear-gradient(to right, #bcbcbe 45%, #d2d1d3 100%); border-radius: 0 0.5rem 0.5rem 0; } .clip:before, .clip:after { position: absolute; content: ''; background: #bcbcbe; } .clip:before { left: -0.7rem; width: 0.75rem; height: 0.5rem; } .clip:after { top: 2.5rem; left: -0.4rem; width: 0.5rem; height: 2rem; border-radius: 0.5rem 0 0 0.5rem; } .divider { position: absolute; top: 13.75rem; left: -1rem; width: 4rem; height: 2rem; background: #f6f6f6; } .point { position: absolute; top: 13.75rem; width: 2rem; height: 2.5rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 3rem / 0 0 7rem 7rem; } .point:before, .point:after { position: absolute; content: ''; width: 2rem; height: 3rem; background: #f6f6f6; } .point:before { left: -1.5rem; -webkit-transform: rotate(-20deg); -ms-transform: rotate(-20deg); transform: rotate(-20deg); } .point:after { left: 1.6rem; -webkit-transform: rotate(20deg); -ms-transform: rotate(20deg); transform: rotate(20deg); }
Day 28 - Pen/style.css
*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box; } html, body { min-height: 100vh; display: grid; } body { margin: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background: #f6f6f6; } .container { margin: auto; width: 15rem; height: 18rem; } .shape { position: absolute; } .shape.center { top: 1.25rem; left: 6.5rem; width: 2rem; height: 16rem; background: #383838; background-image: -webkit-gradient(linear, left top, right top, from(#383838), color-stop(35%, #707070), color-stop(65%, #232323), to(#535353)); background-image: -webkit-linear-gradient(left, #383838 0%, #707070 35%, #232323 65%, #535353 100%); background-image: -o-linear-gradient(left, #383838 0%, #707070 35%, #232323 65%, #535353 100%); background-image: linear-gradient(to right, #383838 0%, #707070 35%, #232323 65%, #535353 100%); -webkit-transform: rotate(40deg); -ms-transform: rotate(40deg); transform: rotate(40deg); } .shape.center:before, .shape.center:after { position: absolute; content: ''; z-index: -1; } .shape.center:before { top: -1.25rem; left: 0.25rem; width: 1.5rem; height: 0.75rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 0.25rem 0.25rem 0 0; } .shape.center:after { top: 15.75rem; left: 0.975rem; width: 0.175rem; height: 1rem; background: #847f80; border-radius: 0 0 1rem 1rem; } .inner { position: absolute; top: -0.7rem; width: 2rem; height: 0.75rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 0.25rem 0.25rem 0 0; } .clip { position: absolute; top: 1rem; left: 2.65rem; width: 0.5rem; height: 4.5rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #bcbcbe), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #bcbcbe 45%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #bcbcbe 45%, #d2d1d3 100%); background-image: linear-gradient(to right, #bcbcbe 45%, #d2d1d3 100%); border-radius: 0 0.5rem 0.5rem 0; } .clip:before, .clip:after { position: absolute; content: ''; background: #bcbcbe; } .clip:before { left: -0.7rem; width: 0.75rem; height: 0.5rem; } .clip:after { top: 2.5rem; left: -0.4rem; width: 0.5rem; height: 2rem; border-radius: 0.5rem 0 0 0.5rem; } .divider { position: absolute; top: 13.75rem; left: -1rem; width: 4rem; height: 2rem; background: #f6f6f6; } .point { position: absolute; top: 13.75rem; width: 2rem; height: 2.5rem; background: #bcbcbe; background-image: -webkit-gradient(linear, left top, right top, from(#959597), color-stop(35%, #dfdfe1), color-stop(65%, #959597), to(#d2d1d3)); background-image: -webkit-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: -o-linear-gradient(left, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); background-image: linear-gradient(to right, #959597 0%, #dfdfe1 35%, #959597 65%, #d2d1d3 100%); border-radius: 3rem / 0 0 7rem 7rem; } .point:before, .point:after { position: absolute; content: ''; width: 2rem; height: 3rem; background: #f6f6f6; } .point:before { left: -1.5rem; -webkit-transform: rotate(-20deg); -ms-transform: rotate(-20deg); transform: rotate(-20deg); } .point:after { left: 1.6rem; -webkit-transform: rotate(20deg); -ms-transform: rotate(20deg); transform: rotate(20deg); }
0.49707
0.091951
body { background: #f9f9f9; font-family: 'Montserrat', sans-serif; font-weight: 400; overflow-x: hidden; } /* start hr */ hr { border: 1px solid #55acee; width: 100px; margin-top: 20px; } /* end hr */ /* start h2 */ h2 { font-size: 60px; text-align: center; } /* end h2 */ /* start h4 */ h4 { text-align: center; padding-bottom: 50px; } /* end h4 */ .btn { background: transparent; border-radius: 10px; color: #ffffff; margin-top: 40px; padding: 12px 22px; transition: all 0.4s ease-in-out; } .btn:hover { background: #55acee; border-color: transparent; } /* start overlay */ .overlay { width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); } /* end overlay */ /* start preloader */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: none repeat scroll 0 0 #fff; } .sk-spinner-rotating-plane.sk-spinner { width: 30px; height: 30px; background-color: #55acee; -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out; animation: sk-rotatePlane 1.2s infinite ease-in-out; } @-webkit-keyframes sk-rotatePlane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg); } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } @keyframes sk-rotatePlane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg); } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } /* end preloader */ /* start navigation */ .custom-navbar { margin-bottom: 0; background-color: #fff; text-align: right; } .custom-navbar .navbar-brand { color: #55acee; font-weight: bold; font-size: 28px; } .custom-navbar .nav li a { color: #999; font-weight: 300; font-size: 13px; text-transform: uppercase; } .custom-navbar .nav li a:hover { background: transparent; color: #55acee; } .custom-navbar .nav li.active > a { background-color: transparent; color: #55acee; } .custom-navbar .navbar-toggle { border: none; padding-top: 10px; } .custom-navbar .navbar-toggle .icon-bar { background: #55acee; border-color: transparent; } @media(min-width:768px){ .custom-navbar { padding: 20px 0; border-bottom: 0; background: 0 0; transition: all 0.3s ease; } .custom-navbar.top-nav-collapse { padding: 0; box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08); background: #fff; } } /* end navigation */ /* start home */ #home h1 { font-size: 80px; font-weight: bold; line-height: 1em; letter-spacing: 2px; padding-top: 10px; } #home span { color: #55acee; font-weight: bold; } #home .btn { background: rgba(0,0,0,0.6); border: none; } #home .btn:hover { background: rgba(255,255,255,0.6); } .templatemo_homewrapper { padding-left: 15px; padding-right: 15px; } .flexslider { margin: 0 0 60px; background: #fff; padding: 0; position: relative; zoom: 1; background-color: #371604; overflow: hidden; margin: 0; text-align: center; } .flexslider .slides { padding: 0; zoom: 1; } .flexslider .slides img { width: 100%; min-width: 648px; min-height: 270px; display: block; } .flexslider .slides > li { display: none; padding: 0; position: relative; -webkit-backface-visibility: hidden; } .flexslider img { position: relative; width: 100%; } .slider-caption { color:white; margin: 0; position: absolute; top: 0; left: 0; text-transform: uppercase; z-index: 7; width: 100%; height: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } /* end home */ /* start service */ #service { background: #ffffff; padding-top: 80px; padding-bottom: 80px; } #service .media { padding: 10px; } #service .media .fa { color: #55acee; font-size: 60px; margin-right: 20px; width: 65px; height: 65px; } #service .media .media-heading { font-weight: 600; font-size: 20px; padding-bottom: 10px; } /* end service */ /* start divider */ .divider { background: url('../images/divider-bg.jpg'); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; color: #ffffff; text-align: center; } .divider .divider-des { padding: 100px 15px; } /* end divider */ /* start about */ h3.about-title { margin-top: 0; } #about { padding-top: 80px; padding-bottom: 80px; } #about .progress { background: #f9f9f9; box-shadow: none; border-radius: 0px; } #about .progress .progress-bar-danger { background: #55acee; } #about span { display: block; margin-top: 12px; margin-bottom: 6px; } #about .about-wrapper { background: #ffffff; box-shadow: 0px 8px 2px 2px rgba(50,50,50, 0.08); margin-top: 60px; margin-bottom: 20px; max-width: 500px; padding: 20px; } #about .about-wrapper h3 { color: #55acee; font-size: 20px; font-weight: bold; } /* end about */ /* start portfolio */ #portfolio { background: #fff; border-top: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee; padding-top: 80px; padding-bottom: 80px; } #portfolio .portfolio-thumb { overflow: hidden; margin: 0; position: relative; } #portfolio .portfolio-thumb .portfolio-overlay { background: #333; color: #ffffff; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; top: 0; right: 0; left: 0; bottom: 0; width: 100%; height: 100%; text-align: center; position: absolute; opacity: 0; transition: all 0.4s ease-in-out; } #portfolio .portfolio-thumb:hover .portfolio-overlay { opacity: 0.9; } #portfolio .portfolio-thumb .portfolio-overlay .fa { border: 1px solid #ffffff; border-radius: 50%; color: #ffffff; width: 40px; height: 40px; line-height: 40px; text-align: center; text-decoration: none; margin-right: 6px; margin-bottom: 10px; transition: all 0.3s ease; } #portfolio .portfolio-thumb .portfolio-overlay .fa:hover { background: #55acee; border-color: #55acee; } #portfolio .portfolio-thumb .portfolio-overlay h4 { padding-bottom: 10px; } .portfolio-description { padding-left: 15px; padding-right: 15px; } /*filter css*/ .filter-wrapper { width: 100%; margin: 0 0 24px 0; padding: 0; overflow: hidden; text-align: center; } .filter-wrapper li { display: inline-block; margin: 4px; transition: all 0.3s ease; } .filter-wrapper li:hover { background: #55acee; } .filter-wrapper li:hover a { color: #fff; } .filter-wrapper li a { border: 1px solid #f2f2f2; color: #999; padding: 8px 17px; display: block; text-decoration: none; } /*isotope box css*/ .iso-box-section { width: 100%; margin: 0 0 24px 0; } .iso-box-wrapper { width: 100%; padding: 0; clear: both; position: relative; } .iso-box { position: relative; min-height: 50px; float: left; overflow: hidden; margin-bottom: 20px; } .fluid-img { width: 100%; display: block; height: auto; } /* end portfolio */ /* start contact */ #contact { background: #ffffff; padding-top: 80px; padding-bottom: 80px; } #contact .form-control { background: transparent; border-radius: 0px; box-shadow: none; border: 1px solid #CCC; margin-bottom: 20px; transition: all 0.4s ease-in-out; } #contact input { height: 50px; } #contact input[type="submit"] { border: 2px solid #55acee; font-weight: bold; color: #55acee; } #contact input[type="submit"]:hover { background: #55acee; color: #fff; } /* end contact */ /* start footer */ footer { background: #202020; color: #ffffff; padding-top: 60px; padding-bottom: 60px; text-align: center; } footer p { display: block; padding-top: 40px; } footer span { color: #55acee; font-weight: bold; } /* end footer */ /* start social icon */ .social-icon { display: block; position: relative; padding: 0; margin: 0; top: 20px; } .social-icon li { display: inline-block; list-style: none; transition: all 0.4s ease-in-out; width: 40px; height: 40px; } .social-icon li a { color: #fff; font-size: 30px; text-decoration: none; line-height: 40px; text-align: center; } .social-icon li:hover { background: #55acee; } /* end social icon */ /* start media 980 */ @media screen and ( max-width: 980px ){ #home h1 { font-size: 40px; } h2 { font-size: 30px; } } /* end media 980 */ /* start media 768 */ @media screen and ( max-width: 767px ){ h4 { padding-bottom: 20px; } #home h1 { font-size: 40px; } #home { margin-top: 50px; } .templatemo-about-left { margin-bottom: 30px; } #about .about-wrapper { margin-left: auto; margin-right: auto; } } /* end media 768 */ @media screen and (max-width: 440px) { h4 { padding-bottom: 15px; line-height: 1.5em; } .filter-wrapper li { margin: 2px; } .filter-wrapper li a { padding: 6px 10px; } } @media screen and (max-width: 380px) { #service .media .fa { margin-right: 5px; } } /* start media 360 */ @media screen and ( max-width: 360px ){ #home h1 { font-size: 30px; line-height: 1.5em; } } /* end media 360 */
css/templatemo-style.css
body { background: #f9f9f9; font-family: 'Montserrat', sans-serif; font-weight: 400; overflow-x: hidden; } /* start hr */ hr { border: 1px solid #55acee; width: 100px; margin-top: 20px; } /* end hr */ /* start h2 */ h2 { font-size: 60px; text-align: center; } /* end h2 */ /* start h4 */ h4 { text-align: center; padding-bottom: 50px; } /* end h4 */ .btn { background: transparent; border-radius: 10px; color: #ffffff; margin-top: 40px; padding: 12px 22px; transition: all 0.4s ease-in-out; } .btn:hover { background: #55acee; border-color: transparent; } /* start overlay */ .overlay { width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); } /* end overlay */ /* start preloader */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: none repeat scroll 0 0 #fff; } .sk-spinner-rotating-plane.sk-spinner { width: 30px; height: 30px; background-color: #55acee; -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out; animation: sk-rotatePlane 1.2s infinite ease-in-out; } @-webkit-keyframes sk-rotatePlane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg); } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } @keyframes sk-rotatePlane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg); } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } /* end preloader */ /* start navigation */ .custom-navbar { margin-bottom: 0; background-color: #fff; text-align: right; } .custom-navbar .navbar-brand { color: #55acee; font-weight: bold; font-size: 28px; } .custom-navbar .nav li a { color: #999; font-weight: 300; font-size: 13px; text-transform: uppercase; } .custom-navbar .nav li a:hover { background: transparent; color: #55acee; } .custom-navbar .nav li.active > a { background-color: transparent; color: #55acee; } .custom-navbar .navbar-toggle { border: none; padding-top: 10px; } .custom-navbar .navbar-toggle .icon-bar { background: #55acee; border-color: transparent; } @media(min-width:768px){ .custom-navbar { padding: 20px 0; border-bottom: 0; background: 0 0; transition: all 0.3s ease; } .custom-navbar.top-nav-collapse { padding: 0; box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08); background: #fff; } } /* end navigation */ /* start home */ #home h1 { font-size: 80px; font-weight: bold; line-height: 1em; letter-spacing: 2px; padding-top: 10px; } #home span { color: #55acee; font-weight: bold; } #home .btn { background: rgba(0,0,0,0.6); border: none; } #home .btn:hover { background: rgba(255,255,255,0.6); } .templatemo_homewrapper { padding-left: 15px; padding-right: 15px; } .flexslider { margin: 0 0 60px; background: #fff; padding: 0; position: relative; zoom: 1; background-color: #371604; overflow: hidden; margin: 0; text-align: center; } .flexslider .slides { padding: 0; zoom: 1; } .flexslider .slides img { width: 100%; min-width: 648px; min-height: 270px; display: block; } .flexslider .slides > li { display: none; padding: 0; position: relative; -webkit-backface-visibility: hidden; } .flexslider img { position: relative; width: 100%; } .slider-caption { color:white; margin: 0; position: absolute; top: 0; left: 0; text-transform: uppercase; z-index: 7; width: 100%; height: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } /* end home */ /* start service */ #service { background: #ffffff; padding-top: 80px; padding-bottom: 80px; } #service .media { padding: 10px; } #service .media .fa { color: #55acee; font-size: 60px; margin-right: 20px; width: 65px; height: 65px; } #service .media .media-heading { font-weight: 600; font-size: 20px; padding-bottom: 10px; } /* end service */ /* start divider */ .divider { background: url('../images/divider-bg.jpg'); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; color: #ffffff; text-align: center; } .divider .divider-des { padding: 100px 15px; } /* end divider */ /* start about */ h3.about-title { margin-top: 0; } #about { padding-top: 80px; padding-bottom: 80px; } #about .progress { background: #f9f9f9; box-shadow: none; border-radius: 0px; } #about .progress .progress-bar-danger { background: #55acee; } #about span { display: block; margin-top: 12px; margin-bottom: 6px; } #about .about-wrapper { background: #ffffff; box-shadow: 0px 8px 2px 2px rgba(50,50,50, 0.08); margin-top: 60px; margin-bottom: 20px; max-width: 500px; padding: 20px; } #about .about-wrapper h3 { color: #55acee; font-size: 20px; font-weight: bold; } /* end about */ /* start portfolio */ #portfolio { background: #fff; border-top: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee; padding-top: 80px; padding-bottom: 80px; } #portfolio .portfolio-thumb { overflow: hidden; margin: 0; position: relative; } #portfolio .portfolio-thumb .portfolio-overlay { background: #333; color: #ffffff; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; top: 0; right: 0; left: 0; bottom: 0; width: 100%; height: 100%; text-align: center; position: absolute; opacity: 0; transition: all 0.4s ease-in-out; } #portfolio .portfolio-thumb:hover .portfolio-overlay { opacity: 0.9; } #portfolio .portfolio-thumb .portfolio-overlay .fa { border: 1px solid #ffffff; border-radius: 50%; color: #ffffff; width: 40px; height: 40px; line-height: 40px; text-align: center; text-decoration: none; margin-right: 6px; margin-bottom: 10px; transition: all 0.3s ease; } #portfolio .portfolio-thumb .portfolio-overlay .fa:hover { background: #55acee; border-color: #55acee; } #portfolio .portfolio-thumb .portfolio-overlay h4 { padding-bottom: 10px; } .portfolio-description { padding-left: 15px; padding-right: 15px; } /*filter css*/ .filter-wrapper { width: 100%; margin: 0 0 24px 0; padding: 0; overflow: hidden; text-align: center; } .filter-wrapper li { display: inline-block; margin: 4px; transition: all 0.3s ease; } .filter-wrapper li:hover { background: #55acee; } .filter-wrapper li:hover a { color: #fff; } .filter-wrapper li a { border: 1px solid #f2f2f2; color: #999; padding: 8px 17px; display: block; text-decoration: none; } /*isotope box css*/ .iso-box-section { width: 100%; margin: 0 0 24px 0; } .iso-box-wrapper { width: 100%; padding: 0; clear: both; position: relative; } .iso-box { position: relative; min-height: 50px; float: left; overflow: hidden; margin-bottom: 20px; } .fluid-img { width: 100%; display: block; height: auto; } /* end portfolio */ /* start contact */ #contact { background: #ffffff; padding-top: 80px; padding-bottom: 80px; } #contact .form-control { background: transparent; border-radius: 0px; box-shadow: none; border: 1px solid #CCC; margin-bottom: 20px; transition: all 0.4s ease-in-out; } #contact input { height: 50px; } #contact input[type="submit"] { border: 2px solid #55acee; font-weight: bold; color: #55acee; } #contact input[type="submit"]:hover { background: #55acee; color: #fff; } /* end contact */ /* start footer */ footer { background: #202020; color: #ffffff; padding-top: 60px; padding-bottom: 60px; text-align: center; } footer p { display: block; padding-top: 40px; } footer span { color: #55acee; font-weight: bold; } /* end footer */ /* start social icon */ .social-icon { display: block; position: relative; padding: 0; margin: 0; top: 20px; } .social-icon li { display: inline-block; list-style: none; transition: all 0.4s ease-in-out; width: 40px; height: 40px; } .social-icon li a { color: #fff; font-size: 30px; text-decoration: none; line-height: 40px; text-align: center; } .social-icon li:hover { background: #55acee; } /* end social icon */ /* start media 980 */ @media screen and ( max-width: 980px ){ #home h1 { font-size: 40px; } h2 { font-size: 30px; } } /* end media 980 */ /* start media 768 */ @media screen and ( max-width: 767px ){ h4 { padding-bottom: 20px; } #home h1 { font-size: 40px; } #home { margin-top: 50px; } .templatemo-about-left { margin-bottom: 30px; } #about .about-wrapper { margin-left: auto; margin-right: auto; } } /* end media 768 */ @media screen and (max-width: 440px) { h4 { padding-bottom: 15px; line-height: 1.5em; } .filter-wrapper li { margin: 2px; } .filter-wrapper li a { padding: 6px 10px; } } @media screen and (max-width: 380px) { #service .media .fa { margin-right: 5px; } } /* start media 360 */ @media screen and ( max-width: 360px ){ #home h1 { font-size: 30px; line-height: 1.5em; } } /* end media 360 */
0.263884
0.052279
:root { --preto: #000; --branco: #fff; --cinza: #cecece; } * { margin: 0; padding: 0; } html, body { height: 100%; } body { background-image: linear-gradient(to right bottom, #23232e, #2a2f3f, #2d3c52, #2d4964, #285876); background-repeat: no-repeat; background-size: 100% 100%; background-attachment: fixed; } .main_container { background: var(--branco); border-radius: 20px; margin: 50px auto 0 auto; padding: 25px; max-width: 640px; display: flex; align-items: center; justify-content: center; } .main_container .conteudo .task_form { width: 100%; display: flex; justify-content: center; align-items: center; } .main_container .conteudo .task_form input { border: 1px solid var(--cinza); border-radius: 20px; color: var(--preto); height: 35px; padding: 10px; font-size: 16px; outline: none; width: 300px; } .main_container .conteudo .task_form button { background-image: linear-gradient(to bottom, #2c2e2d, #282c2b, #23292a, #20272a, #1e2429); background-repeat: no-repeat; border-radius: 50%; border: none; color: var(--branco); cursor: pointer; height: 50px; width: 50px; outline: none; margin-left: 10px; font-size: 28px; } .tasks_list { margin: 50px 0; } .tasks_list li{ list-style: none; margin-top: 20px; display: flex; align-items: center; justify-content: center; } .tasks_list li .task_name { border: none; outline: none; font-size: 21px; margin-right: 15px; } .input_style { border: 1px solid var(--cinza) !important; border-radius: 20px; height: 30px; padding: 10px; } .action_container { display: flex; align-items: center; justify-content: center; } .edit_task, .delete_task { border: none; cursor: pointer; border-radius: 50%; height: 50px; width: 50px; display: flex; align-items: center; justify-content: center; } .edit_task::before { background: url('../images/edit_icon.png'); background-size: contain; background-repeat: no-repeat; content: ''; height: 32px; width: 32px; } .delete_task { margin-left: 10px; } .delete_task::before { background: url('../images/delete_icon.png'); background-size: contain; background-repeat: no-repeat; content: ''; height: 32px; width: 32px; } @media (max-width: 640px) { body { padding: 20px; } .main_container .conteudo .task_form input { width: 200px; } .tasks_list li .task_name { width: 200px; } .edit_task::before, .delete_task::before { height: 24px; width: 24px; } .edit_task, .delete_task { height: 32px; width: 32px; } }
assets/css/style.css
:root { --preto: #000; --branco: #fff; --cinza: #cecece; } * { margin: 0; padding: 0; } html, body { height: 100%; } body { background-image: linear-gradient(to right bottom, #23232e, #2a2f3f, #2d3c52, #2d4964, #285876); background-repeat: no-repeat; background-size: 100% 100%; background-attachment: fixed; } .main_container { background: var(--branco); border-radius: 20px; margin: 50px auto 0 auto; padding: 25px; max-width: 640px; display: flex; align-items: center; justify-content: center; } .main_container .conteudo .task_form { width: 100%; display: flex; justify-content: center; align-items: center; } .main_container .conteudo .task_form input { border: 1px solid var(--cinza); border-radius: 20px; color: var(--preto); height: 35px; padding: 10px; font-size: 16px; outline: none; width: 300px; } .main_container .conteudo .task_form button { background-image: linear-gradient(to bottom, #2c2e2d, #282c2b, #23292a, #20272a, #1e2429); background-repeat: no-repeat; border-radius: 50%; border: none; color: var(--branco); cursor: pointer; height: 50px; width: 50px; outline: none; margin-left: 10px; font-size: 28px; } .tasks_list { margin: 50px 0; } .tasks_list li{ list-style: none; margin-top: 20px; display: flex; align-items: center; justify-content: center; } .tasks_list li .task_name { border: none; outline: none; font-size: 21px; margin-right: 15px; } .input_style { border: 1px solid var(--cinza) !important; border-radius: 20px; height: 30px; padding: 10px; } .action_container { display: flex; align-items: center; justify-content: center; } .edit_task, .delete_task { border: none; cursor: pointer; border-radius: 50%; height: 50px; width: 50px; display: flex; align-items: center; justify-content: center; } .edit_task::before { background: url('../images/edit_icon.png'); background-size: contain; background-repeat: no-repeat; content: ''; height: 32px; width: 32px; } .delete_task { margin-left: 10px; } .delete_task::before { background: url('../images/delete_icon.png'); background-size: contain; background-repeat: no-repeat; content: ''; height: 32px; width: 32px; } @media (max-width: 640px) { body { padding: 20px; } .main_container .conteudo .task_form input { width: 200px; } .tasks_list li .task_name { width: 200px; } .edit_task::before, .delete_task::before { height: 24px; width: 24px; } .edit_task, .delete_task { height: 32px; width: 32px; } }
0.482429
0.233532
.is-mega-menu, .is-column, .is-mega-descr-text { color: #999999; font-style: italic; font-weight: 400; display: none; margin-left: 4px; } .is-drop-side-right { color: #aaaaaa; font-size: 14px; display: none; margin-left: 6px; position: relative; vertical-align: middle; } .cmsmasters_hide_text { text-decoration: line-through; } .cmsmasters_highlight { color: #0074a2; } .item-title .menu-item-title:before { font-size: 16px; text-decoration: none; } .field-mega_cols, .field-mega_cols_full, .field-mega_descr_text, .field-mega_bg_img, .field-mega_bg_pos, .field-mega_bg_rep, .field-mega_bg_att, .field-mega_bg_size, .menu-item.menu-item-depth-1 .field-drop_side, .menu-item.menu-item-depth-2 .field-drop_side, .menu-item.menu-item-depth-3 .field-drop_side, .menu-item.menu-item-depth-4 .field-drop_side, .menu-item.menu-item-depth-5 .field-drop_side, .menu-item.menu-item-depth-6 .field-drop_side, .menu-item.menu-item-depth-7 .field-drop_side, .menu-item.menu-item-depth-8 .field-drop_side, .menu-item.menu-item-depth-9 .field-drop_side, .menu-item.menu-item-depth-10 .field-drop_side, .menu-item.menu-item-depth-11 .field-drop_side, .menu-item.menu-item-depth-1 .field-mega, .menu-item.menu-item-depth-2 .field-mega, .menu-item.menu-item-depth-3 .field-mega, .menu-item.menu-item-depth-4 .field-mega, .menu-item.menu-item-depth-5 .field-mega, .menu-item.menu-item-depth-6 .field-mega, .menu-item.menu-item-depth-7 .field-mega, .menu-item.menu-item-depth-8 .field-mega, .menu-item.menu-item-depth-9 .field-mega, .menu-item.menu-item-depth-10 .field-mega, .menu-item.menu-item-depth-11 .field-mega, .menu-item.menu-item-depth-1 .field-hide_text, .menu-item.menu-item-depth-2 .field-hide_text, .menu-item.menu-item-depth-3 .field-hide_text, .menu-item.menu-item-depth-4 .field-hide_text, .menu-item.menu-item-depth-5 .field-hide_text, .menu-item.menu-item-depth-6 .field-hide_text, .menu-item.menu-item-depth-7 .field-hide_text, .menu-item.menu-item-depth-8 .field-hide_text, .menu-item.menu-item-depth-9 .field-hide_text, .menu-item.menu-item-depth-10 .field-hide_text, .menu-item.menu-item-depth-11 .field-hide_text, .menu-item.menu-item-depth-1 .field-subtitle, .menu-item.menu-item-depth-2 .field-subtitle, .menu-item.menu-item-depth-3 .field-subtitle, .menu-item.menu-item-depth-4 .field-subtitle, .menu-item.menu-item-depth-5 .field-subtitle, .menu-item.menu-item-depth-6 .field-subtitle, .menu-item.menu-item-depth-7 .field-subtitle, .menu-item.menu-item-depth-8 .field-subtitle, .menu-item.menu-item-depth-9 .field-subtitle, .menu-item.menu-item-depth-10 .field-subtitle, .menu-item.menu-item-depth-11 .field-subtitle { display: none; } .menu-item span[data-class=cmsmasters_new_icon_img] { font-size: 14px; line-height: 22px; width: 24px; height: 24px; margin: 0 10px 0 0; } .menu-item span[data-class=cmsmasters_new_icon_img]:before { line-height: 22px; } .menu-item a.cmsmasters_remove_icon { font-size: 16px; text-align: center; margin-left: 5px; overflow: visible; } .menu-item-settings input[type=checkbox], .menu-item-settings input[type=radio] { width: 25px; } .menu-item-settings input[type=button], .menu-item-settings button { width: auto; } .description-tall { height: 20px; padding-top: 20px; } .description-wafer-thin { height: 20px; } .description-narrow { width: 123px; } .menu-item .wp-picker-open + .wp-picker-input-wrap { position: relative; } .menu-item-settings .field-color .wp-picker-holder .iris-picker { z-index: 1; } @media only screen and (max-width: 782px) { .menu-item span[data-class=cmsmasters_new_icon_img] { font-size: 20px; line-height: 34px; width: 36px; height: 36px; } .menu-item span[data-class=cmsmasters_new_icon_img]:before { line-height: 34px; } .menu-item a.cmsmasters_remove_icon { font-size: 20px; } .description-tall { padding-top: 0; } }
wp-content/plugins/cmsmasters-mega-menu/admin/css/mega-menu.css
.is-mega-menu, .is-column, .is-mega-descr-text { color: #999999; font-style: italic; font-weight: 400; display: none; margin-left: 4px; } .is-drop-side-right { color: #aaaaaa; font-size: 14px; display: none; margin-left: 6px; position: relative; vertical-align: middle; } .cmsmasters_hide_text { text-decoration: line-through; } .cmsmasters_highlight { color: #0074a2; } .item-title .menu-item-title:before { font-size: 16px; text-decoration: none; } .field-mega_cols, .field-mega_cols_full, .field-mega_descr_text, .field-mega_bg_img, .field-mega_bg_pos, .field-mega_bg_rep, .field-mega_bg_att, .field-mega_bg_size, .menu-item.menu-item-depth-1 .field-drop_side, .menu-item.menu-item-depth-2 .field-drop_side, .menu-item.menu-item-depth-3 .field-drop_side, .menu-item.menu-item-depth-4 .field-drop_side, .menu-item.menu-item-depth-5 .field-drop_side, .menu-item.menu-item-depth-6 .field-drop_side, .menu-item.menu-item-depth-7 .field-drop_side, .menu-item.menu-item-depth-8 .field-drop_side, .menu-item.menu-item-depth-9 .field-drop_side, .menu-item.menu-item-depth-10 .field-drop_side, .menu-item.menu-item-depth-11 .field-drop_side, .menu-item.menu-item-depth-1 .field-mega, .menu-item.menu-item-depth-2 .field-mega, .menu-item.menu-item-depth-3 .field-mega, .menu-item.menu-item-depth-4 .field-mega, .menu-item.menu-item-depth-5 .field-mega, .menu-item.menu-item-depth-6 .field-mega, .menu-item.menu-item-depth-7 .field-mega, .menu-item.menu-item-depth-8 .field-mega, .menu-item.menu-item-depth-9 .field-mega, .menu-item.menu-item-depth-10 .field-mega, .menu-item.menu-item-depth-11 .field-mega, .menu-item.menu-item-depth-1 .field-hide_text, .menu-item.menu-item-depth-2 .field-hide_text, .menu-item.menu-item-depth-3 .field-hide_text, .menu-item.menu-item-depth-4 .field-hide_text, .menu-item.menu-item-depth-5 .field-hide_text, .menu-item.menu-item-depth-6 .field-hide_text, .menu-item.menu-item-depth-7 .field-hide_text, .menu-item.menu-item-depth-8 .field-hide_text, .menu-item.menu-item-depth-9 .field-hide_text, .menu-item.menu-item-depth-10 .field-hide_text, .menu-item.menu-item-depth-11 .field-hide_text, .menu-item.menu-item-depth-1 .field-subtitle, .menu-item.menu-item-depth-2 .field-subtitle, .menu-item.menu-item-depth-3 .field-subtitle, .menu-item.menu-item-depth-4 .field-subtitle, .menu-item.menu-item-depth-5 .field-subtitle, .menu-item.menu-item-depth-6 .field-subtitle, .menu-item.menu-item-depth-7 .field-subtitle, .menu-item.menu-item-depth-8 .field-subtitle, .menu-item.menu-item-depth-9 .field-subtitle, .menu-item.menu-item-depth-10 .field-subtitle, .menu-item.menu-item-depth-11 .field-subtitle { display: none; } .menu-item span[data-class=cmsmasters_new_icon_img] { font-size: 14px; line-height: 22px; width: 24px; height: 24px; margin: 0 10px 0 0; } .menu-item span[data-class=cmsmasters_new_icon_img]:before { line-height: 22px; } .menu-item a.cmsmasters_remove_icon { font-size: 16px; text-align: center; margin-left: 5px; overflow: visible; } .menu-item-settings input[type=checkbox], .menu-item-settings input[type=radio] { width: 25px; } .menu-item-settings input[type=button], .menu-item-settings button { width: auto; } .description-tall { height: 20px; padding-top: 20px; } .description-wafer-thin { height: 20px; } .description-narrow { width: 123px; } .menu-item .wp-picker-open + .wp-picker-input-wrap { position: relative; } .menu-item-settings .field-color .wp-picker-holder .iris-picker { z-index: 1; } @media only screen and (max-width: 782px) { .menu-item span[data-class=cmsmasters_new_icon_img] { font-size: 20px; line-height: 34px; width: 36px; height: 36px; } .menu-item span[data-class=cmsmasters_new_icon_img]:before { line-height: 34px; } .menu-item a.cmsmasters_remove_icon { font-size: 20px; } .description-tall { padding-top: 0; } }
0.191403
0.057045
@media (min-width: 1440px) { html, body{ width: 100% } } /* md */ @media (min-width: 992px) and (max-width: 1199px) { html, body{ width: 100% } } /* sm */ @media (min-width: 768px) and (max-width: 991px) { html, body{ width: 100% } .register-section { padding: 85px 35px 60px; } .main-slider .slider-content{ font-size:18px; } .main-slider .slider-content h1 { font-size:40px; } .instructor-info { padding: 0px 5px; } .social-icons ul { margin-top: 12px; } .instructor-info h2 { font-size:20px; } .instructor-info .social-icons { margin-bottom: 12px; } .social-icons ul li i { height: 22px; width: 22px; font-size: 14px; line-height: 22px; } #gmap{ height:400px; } } /* xs */ @media (max-width: 767px) { html, body{ width: 100% } h1 { font-size:28px; } h2{ font-size:20px; } h3{ font-size:16px; } .padding { padding: 50px 0px; } .section-title { margin-bottom:30px; font-size:14px; } .section-title h1{ font-size:25px; } .navbar-header .navbar-brand { padding-left:15px; } .main-slider .slider-content { margin-top: 180px; font-size:16px; margin-bottom:50px; } .main-slider .slider-content h1 { font-size:35px; } .register-section { padding: 60px 25px 30px; } .btn-primary{ font-size:14px; } .feature { margin-bottom:50px; } #course-description{ font-size:16px; } #course-description h1 { font-size: 30px; margin-bottom: 25px; } .curriculum-tab .tab-list { margin-bottom: 45px; } .curriculum-tab .tab-list li a { font-size: 15px; display: block; margin-bottom: 5px; } #video-section .video-content { padding: 120px 0px; } #video-section img{ width:35%; } .instructor{ margin-bottom:15px; } #requirements .btn-primary { font-size: 16px; padding: 12px 30px; margin-bottom: 40px; } #gmap{ height:350px; } .contact-info{ margin-bottom:50px; color: #000; } .contact-info:last-child{ margin-bottom:10px; } #contact-us .contact-form { padding-top: 60px; padding-bottom: 45px; } #footer-bottom { padding: 30px 0px 20px; } .instructor-image img { width: 50%; } } /* XS Portrait */ @media (max-width: 479px) { html, body{ width: 100% } .table-responsive{ width:100%; } .instructor-image img { width: 50%; } }
public/css/responsive.css
@media (min-width: 1440px) { html, body{ width: 100% } } /* md */ @media (min-width: 992px) and (max-width: 1199px) { html, body{ width: 100% } } /* sm */ @media (min-width: 768px) and (max-width: 991px) { html, body{ width: 100% } .register-section { padding: 85px 35px 60px; } .main-slider .slider-content{ font-size:18px; } .main-slider .slider-content h1 { font-size:40px; } .instructor-info { padding: 0px 5px; } .social-icons ul { margin-top: 12px; } .instructor-info h2 { font-size:20px; } .instructor-info .social-icons { margin-bottom: 12px; } .social-icons ul li i { height: 22px; width: 22px; font-size: 14px; line-height: 22px; } #gmap{ height:400px; } } /* xs */ @media (max-width: 767px) { html, body{ width: 100% } h1 { font-size:28px; } h2{ font-size:20px; } h3{ font-size:16px; } .padding { padding: 50px 0px; } .section-title { margin-bottom:30px; font-size:14px; } .section-title h1{ font-size:25px; } .navbar-header .navbar-brand { padding-left:15px; } .main-slider .slider-content { margin-top: 180px; font-size:16px; margin-bottom:50px; } .main-slider .slider-content h1 { font-size:35px; } .register-section { padding: 60px 25px 30px; } .btn-primary{ font-size:14px; } .feature { margin-bottom:50px; } #course-description{ font-size:16px; } #course-description h1 { font-size: 30px; margin-bottom: 25px; } .curriculum-tab .tab-list { margin-bottom: 45px; } .curriculum-tab .tab-list li a { font-size: 15px; display: block; margin-bottom: 5px; } #video-section .video-content { padding: 120px 0px; } #video-section img{ width:35%; } .instructor{ margin-bottom:15px; } #requirements .btn-primary { font-size: 16px; padding: 12px 30px; margin-bottom: 40px; } #gmap{ height:350px; } .contact-info{ margin-bottom:50px; color: #000; } .contact-info:last-child{ margin-bottom:10px; } #contact-us .contact-form { padding-top: 60px; padding-bottom: 45px; } #footer-bottom { padding: 30px 0px 20px; } .instructor-image img { width: 50%; } } /* XS Portrait */ @media (max-width: 479px) { html, body{ width: 100% } .table-responsive{ width:100%; } .instructor-image img { width: 50%; } }
0.173009
0.063424
.bg-primary { background: red; } .bg-secondary { background: blue; } .bc-primary { border-color: red; } .bc-secondary { border-color: blue; } .btc-primary { border-top-color: red; } .btc-secondary { border-top-color: blue; } .brc-primary { border-right-color: red; } .brc-secondary { border-right-color: blue; } .bbc-primary { border-bottom-color: red; } .bbc-secondary { border-bottom-color: blue; } .blc-primary { border-left-color: red; } .blc-secondary { border-left-color: blue; } .bra-small { border-radius: 1px; } .bra-medium { border-radius: 2px; } .bra-large { border-radius: 3px; } .btrr-small { border-top-right-radius: 1px; } .btrr-medium { border-top-right-radius: 2px; } .btrr-large { border-top-right-radius: 3px; } .bbrr-small { border-bottom-right-radius: 1px; } .bbrr-medium { border-bottom-right-radius: 2px; } .bbrr-large { border-bottom-right-radius: 3px; } .bblr-small { border-bottom-left-radius: 1px; } .bblr-medium { border-bottom-left-radius: 2px; } .bblr-large { border-bottom-left-radius: 3px; } .btlr-small { border-top-left-radius: 1px; } .btlr-medium { border-top-left-radius: 2px; } .btlr-large { border-top-left-radius: 3px; } .bw-small { border-width: 1px; } .bw-medium { border-width: 2px; } .bw-large { border-width: 3px; } .btw-small { border-top-width: 1px; } .btw-medium { border-top-width: 2px; } .btw-large { border-top-width: 3px; } .brw-small { border-right-width: 1px; } .brw-medium { border-right-width: 2px; } .brw-large { border-right-width: 3px; } .bbw-small { border-bottom-width: 1px; } .bbw-medium { border-bottom-width: 2px; } .bbw-large { border-bottom-width: 3px; } .blw-small { border-left-width: 1px; } .blw-medium { border-left-width: 2px; } .blw-large { border-left-width: 3px; } .fc-primary { color: red; } .fc-secondary { color: blue; } .ff-copy { font-family: Helvetica, sans-serif; } .ff-heading { font-family: Cursive; } .fs-small { font-size: 0.8rem; } .fs-medium { font-size: 1rem; } .fs-large { font-size: 1.5rem; } .fw-100 { font-weight: 100; } .fw-200 { font-weight: 200; } .fw-300 { font-weight: 300; } .fw-400 { font-weight: 400; } .fw-500 { font-weight: 500; } .h-1 { height: 1rem; } .h-2 { height: 2rem; } .h-3 { height: 4rem; } .h-4 { height: 8rem; } .h-5 { height: 16rem; } .h-6 { height: 32rem; } .h-7 { height: 64rem; } .h-8 { height: 128rem; } .ls-1 { letter-spacing: 1px; } .ls-2 { letter-spacing: 2px; } .ls-3 { letter-spacing: 3px; } .ls-4 { letter-spacing: 4px; } .lh-1 { line-height: 0.8em; } .lh-2 { line-height: 1em; } .lh-3 { line-height: 1.2em; } .lh-4 { line-height: 1.5em; } .lh-5 { line-height: 2em; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; } .mt-5 { margin-top: 5rem; } .mt-6 { margin-top: 6rem; } .mt-7 { margin-top: 7rem; } .mt-8 { margin-top: 8rem; } .mr-1 { margin-right: 1rem; } .mr-2 { margin-right: 2rem; } .mr-3 { margin-right: 3rem; } .mr-4 { margin-right: 4rem; } .mr-5 { margin-right: 5rem; } .mr-6 { margin-right: 6rem; } .mr-7 { margin-right: 7rem; } .mr-8 { margin-right: 8rem; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; } .mb-4 { margin-bottom: 4rem; } .mb-5 { margin-bottom: 5rem; } .mb-6 { margin-bottom: 6rem; } .mb-7 { margin-bottom: 7rem; } .mb-8 { margin-bottom: 8rem; } .ml-1 { margin-left: 1rem; } .ml-2 { margin-left: 2rem; } .ml-3 { margin-left: 3rem; } .ml-4 { margin-left: 4rem; } .ml-5 { margin-left: 5rem; } .ml-6 { margin-left: 6rem; } .ml-7 { margin-left: 7rem; } .ml-8 { margin-left: 8rem; } .mh-1 { margin-left: 1rem; margin-right: 1rem; } .mh-2 { margin-left: 2rem; margin-right: 2rem; } .mh-3 { margin-left: 3rem; margin-right: 3rem; } .mh-4 { margin-left: 4rem; margin-right: 4rem; } .mh-5 { margin-left: 5rem; margin-right: 5rem; } .mh-6 { margin-left: 6rem; margin-right: 6rem; } .mh-7 { margin-left: 7rem; margin-right: 7rem; } .mh-8 { margin-left: 8rem; margin-right: 8rem; } .mv-1 { margin-top: 1rem; margin-bottom: 1rem; } .mv-2 { margin-top: 2rem; margin-bottom: 2rem; } .mv-3 { margin-top: 3rem; margin-bottom: 3rem; } .mv-4 { margin-top: 4rem; margin-bottom: 4rem; } .mv-5 { margin-top: 5rem; margin-bottom: 5rem; } .mv-6 { margin-top: 6rem; margin-bottom: 6rem; } .mv-7 { margin-top: 7rem; margin-bottom: 7rem; } .mv-8 { margin-top: 8rem; margin-bottom: 8rem; } .ma-1 { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2 { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3 { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4 { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5 { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6 { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7 { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8 { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1 { max-height: 1rem; } .maxh-2 { max-height: 2rem; } .maxh-3 { max-height: 3rem; } .maxh-4 { max-height: 4rem; } .maxh-5 { max-height: 5rem; } .maxh-6 { max-height: 6rem; } .maxh-7 { max-height: 7rem; } .maxh-8 { max-height: 8rem; } .maxw-1 { max-width: 1rem; } .maxw-2 { max-width: 2rem; } .maxw-3 { max-width: 3rem; } .maxw-4 { max-width: 4rem; } .maxw-5 { max-width: 5rem; } .maxw-6 { max-width: 6rem; } .maxw-7 { max-width: 7rem; } .maxw-8 { max-width: 8rem; } .minh-1 { min-height: 1rem; } .minh-2 { min-height: 2rem; } .minh-3 { min-height: 3rem; } .minh-4 { min-height: 4rem; } .minh-5 { min-height: 5rem; } .minh-6 { min-height: 6rem; } .minh-7 { min-height: 7rem; } .minh-8 { min-height: 8rem; } .minw-1 { min-width: 1rem; } .minw-2 { min-width: 2rem; } .minw-3 { min-width: 3rem; } .minw-4 { min-width: 4rem; } .minw-5 { min-width: 5rem; } .minw-6 { min-width: 6rem; } .minw-7 { min-width: 7rem; } .minw-8 { min-width: 8rem; } .o-10 { opacity: 0.1; } .o-20 { opacity: 0.2; } .o-30 { opacity: 0.3; } .o-40 { opacity: 0.4; } .o-50 { opacity: 0.5; } .o-60 { opacity: 0.6; } .o-70 { opacity: 0.7; } .o-80 { opacity: 0.8; } .o-90 { opacity: 0.9; } .o-100 { opacity: 1; } .oo-small { outline-offset: 1px; } .oo-medium { outline-offset: 2px; } .oo-large { outline-offset: 3px; } .oc-primary { outline-color: red; } .oc-secondary { outline-color: blue; } .ow-small { outline-width: 1px; } .ow-medium { outline-width: 2px; } .ow-large { outline-width: 3px; } .pt-1 { padding-top: 1rem; } .pt-2 { padding-top: 2rem; } .pt-3 { padding-top: 3rem; } .pt-4 { padding-top: 4rem; } .pt-5 { padding-top: 5rem; } .pt-6 { padding-top: 6rem; } .pt-7 { padding-top: 7rem; } .pt-8 { padding-top: 8rem; } .pr-1 { padding-right: 1rem; } .pr-2 { padding-right: 2rem; } .pr-3 { padding-right: 3rem; } .pr-4 { padding-right: 4rem; } .pr-5 { padding-right: 5rem; } .pr-6 { padding-right: 6rem; } .pr-7 { padding-right: 7rem; } .pr-8 { padding-right: 8rem; } .pb-1 { padding-bottom: 1rem; } .pb-2 { padding-bottom: 2rem; } .pb-3 { padding-bottom: 3rem; } .pb-4 { padding-bottom: 4rem; } .pb-5 { padding-bottom: 5rem; } .pb-6 { padding-bottom: 6rem; } .pb-7 { padding-bottom: 7rem; } .pb-8 { padding-bottom: 8rem; } .pl-1 { padding-left: 1rem; } .pl-2 { padding-left: 2rem; } .pl-3 { padding-left: 3rem; } .pl-4 { padding-left: 4rem; } .pl-5 { padding-left: 5rem; } .pl-6 { padding-left: 6rem; } .pl-7 { padding-left: 7rem; } .pl-8 { padding-left: 8rem; } .ph-1 { padding-left: 1rem; padding-right: 1rem; } .ph-2 { padding-left: 2rem; padding-right: 2rem; } .ph-3 { padding-left: 3rem; padding-right: 3rem; } .ph-4 { padding-left: 4rem; padding-right: 4rem; } .ph-5 { padding-left: 5rem; padding-right: 5rem; } .ph-6 { padding-left: 6rem; padding-right: 6rem; } .ph-7 { padding-left: 7rem; padding-right: 7rem; } .ph-8 { padding-left: 8rem; padding-right: 8rem; } .pv-1 { padding-top: 1rem; padding-bottom: 1rem; } .pv-2 { padding-top: 2rem; padding-bottom: 2rem; } .pv-3 { padding-top: 3rem; padding-bottom: 3rem; } .pv-4 { padding-top: 4rem; padding-bottom: 4rem; } .pv-5 { padding-top: 5rem; padding-bottom: 5rem; } .pv-6 { padding-top: 6rem; padding-bottom: 6rem; } .pv-7 { padding-top: 7rem; padding-bottom: 7rem; } .pv-8 { padding-top: 8rem; padding-bottom: 8rem; } .pa-1 { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2 { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3 { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4 { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5 { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6 { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7 { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8 { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1 { top: 1rem; } .post-2 { top: 2rem; } .post-3 { top: 3rem; } .post-4 { top: 4rem; } .post-5 { top: 5rem; } .post-6 { top: 6rem; } .post-7 { top: 7rem; } .post-8 { top: 8rem; } .posr-1 { right: 1rem; } .posr-2 { right: 2rem; } .posr-3 { right: 3rem; } .posr-4 { right: 4rem; } .posr-5 { right: 5rem; } .posr-6 { right: 6rem; } .posr-7 { right: 7rem; } .posr-8 { right: 8rem; } .posb-1 { bottom: 1rem; } .posb-2 { bottom: 2rem; } .posb-3 { bottom: 3rem; } .posb-4 { bottom: 4rem; } .posb-5 { bottom: 5rem; } .posb-6 { bottom: 6rem; } .posb-7 { bottom: 7rem; } .posb-8 { bottom: 8rem; } .posl-1 { left: 1rem; } .posl-2 { left: 2rem; } .posl-3 { left: 3rem; } .posl-4 { left: 4rem; } .posl-5 { left: 5rem; } .posl-6 { left: 6rem; } .posl-7 { left: 7rem; } .posl-8 { left: 8rem; } .w-1 { width: 1rem; } .w-2 { width: 2rem; } .w-3 { width: 4rem; } .w-4 { width: 8rem; } .w-5 { width: 16rem; } .w-6 { width: 32rem; } .w-7 { width: 64rem; } .w-8 { width: 128rem; } .ws-1 { word-spacing: 1px; } .ws-2 { word-spacing: 2px; } .ws-3 { word-spacing: 3px; } .ws-4 { word-spacing: 4px; } .fill-primary { fill: red; } .fill-secondary { fill: blue; } .stroke-primary { stroke: red; } .stroke-secondary { stroke: blue; } .z-1 { z-index: 1; } .z-2 { z-index: 2; } .bg-primary-a:active { background: red; } .bg-secondary-a:active { background: blue; } .bc-primary-a:active { border-color: red; } .bc-secondary-a:active { border-color: blue; } .btc-primary-a:active { border-top-color: red; } .btc-secondary-a:active { border-top-color: blue; } .brc-primary-a:active { border-right-color: red; } .brc-secondary-a:active { border-right-color: blue; } .bbc-primary-a:active { border-bottom-color: red; } .bbc-secondary-a:active { border-bottom-color: blue; } .blc-primary-a:active { border-left-color: red; } .blc-secondary-a:active { border-left-color: blue; } .bra-small-a:active { border-radius: 1px; } .bra-medium-a:active { border-radius: 2px; } .bra-large-a:active { border-radius: 3px; } .btrr-small-a:active { border-top-right-radius: 1px; } .btrr-medium-a:active { border-top-right-radius: 2px; } .btrr-large-a:active { border-top-right-radius: 3px; } .bbrr-small-a:active { border-bottom-right-radius: 1px; } .bbrr-medium-a:active { border-bottom-right-radius: 2px; } .bbrr-large-a:active { border-bottom-right-radius: 3px; } .bblr-small-a:active { border-bottom-left-radius: 1px; } .bblr-medium-a:active { border-bottom-left-radius: 2px; } .bblr-large-a:active { border-bottom-left-radius: 3px; } .btlr-small-a:active { border-top-left-radius: 1px; } .btlr-medium-a:active { border-top-left-radius: 2px; } .btlr-large-a:active { border-top-left-radius: 3px; } .bw-small-a:active { border-width: 1px; } .bw-medium-a:active { border-width: 2px; } .bw-large-a:active { border-width: 3px; } .btw-small-a:active { border-top-width: 1px; } .btw-medium-a:active { border-top-width: 2px; } .btw-large-a:active { border-top-width: 3px; } .brw-small-a:active { border-right-width: 1px; } .brw-medium-a:active { border-right-width: 2px; } .brw-large-a:active { border-right-width: 3px; } .bbw-small-a:active { border-bottom-width: 1px; } .bbw-medium-a:active { border-bottom-width: 2px; } .bbw-large-a:active { border-bottom-width: 3px; } .blw-small-a:active { border-left-width: 1px; } .blw-medium-a:active { border-left-width: 2px; } .blw-large-a:active { border-left-width: 3px; } .fc-primary-a:active { color: red; } .fc-secondary-a:active { color: blue; } .ff-copy-a:active { font-family: Helvetica, sans-serif; } .ff-heading-a:active { font-family: Cursive; } .fs-small-a:active { font-size: 0.8rem; } .fs-medium-a:active { font-size: 1rem; } .fs-large-a:active { font-size: 1.5rem; } .fw-100-a:active { font-weight: 100; } .fw-200-a:active { font-weight: 200; } .fw-300-a:active { font-weight: 300; } .fw-400-a:active { font-weight: 400; } .fw-500-a:active { font-weight: 500; } .h-1-a:active { height: 1rem; } .h-2-a:active { height: 2rem; } .h-3-a:active { height: 4rem; } .h-4-a:active { height: 8rem; } .h-5-a:active { height: 16rem; } .h-6-a:active { height: 32rem; } .h-7-a:active { height: 64rem; } .h-8-a:active { height: 128rem; } .ls-1-a:active { letter-spacing: 1px; } .ls-2-a:active { letter-spacing: 2px; } .ls-3-a:active { letter-spacing: 3px; } .ls-4-a:active { letter-spacing: 4px; } .lh-1-a:active { line-height: 0.8em; } .lh-2-a:active { line-height: 1em; } .lh-3-a:active { line-height: 1.2em; } .lh-4-a:active { line-height: 1.5em; } .lh-5-a:active { line-height: 2em; } .mt-1-a:active { margin-top: 1rem; } .mt-2-a:active { margin-top: 2rem; } .mt-3-a:active { margin-top: 3rem; } .mt-4-a:active { margin-top: 4rem; } .mt-5-a:active { margin-top: 5rem; } .mt-6-a:active { margin-top: 6rem; } .mt-7-a:active { margin-top: 7rem; } .mt-8-a:active { margin-top: 8rem; } .mr-1-a:active { margin-right: 1rem; } .mr-2-a:active { margin-right: 2rem; } .mr-3-a:active { margin-right: 3rem; } .mr-4-a:active { margin-right: 4rem; } .mr-5-a:active { margin-right: 5rem; } .mr-6-a:active { margin-right: 6rem; } .mr-7-a:active { margin-right: 7rem; } .mr-8-a:active { margin-right: 8rem; } .mb-1-a:active { margin-bottom: 1rem; } .mb-2-a:active { margin-bottom: 2rem; } .mb-3-a:active { margin-bottom: 3rem; } .mb-4-a:active { margin-bottom: 4rem; } .mb-5-a:active { margin-bottom: 5rem; } .mb-6-a:active { margin-bottom: 6rem; } .mb-7-a:active { margin-bottom: 7rem; } .mb-8-a:active { margin-bottom: 8rem; } .ml-1-a:active { margin-left: 1rem; } .ml-2-a:active { margin-left: 2rem; } .ml-3-a:active { margin-left: 3rem; } .ml-4-a:active { margin-left: 4rem; } .ml-5-a:active { margin-left: 5rem; } .ml-6-a:active { margin-left: 6rem; } .ml-7-a:active { margin-left: 7rem; } .ml-8-a:active { margin-left: 8rem; } .mh-1-a:active { margin-left: 1rem; margin-right: 1rem; } .mh-2-a:active { margin-left: 2rem; margin-right: 2rem; } .mh-3-a:active { margin-left: 3rem; margin-right: 3rem; } .mh-4-a:active { margin-left: 4rem; margin-right: 4rem; } .mh-5-a:active { margin-left: 5rem; margin-right: 5rem; } .mh-6-a:active { margin-left: 6rem; margin-right: 6rem; } .mh-7-a:active { margin-left: 7rem; margin-right: 7rem; } .mh-8-a:active { margin-left: 8rem; margin-right: 8rem; } .mv-1-a:active { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-a:active { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-a:active { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-a:active { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-a:active { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-a:active { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-a:active { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-a:active { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-a:active { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-a:active { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-a:active { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-a:active { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-a:active { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-a:active { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-a:active { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-a:active { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-a:active { max-height: 1rem; } .maxh-2-a:active { max-height: 2rem; } .maxh-3-a:active { max-height: 3rem; } .maxh-4-a:active { max-height: 4rem; } .maxh-5-a:active { max-height: 5rem; } .maxh-6-a:active { max-height: 6rem; } .maxh-7-a:active { max-height: 7rem; } .maxh-8-a:active { max-height: 8rem; } .maxw-1-a:active { max-width: 1rem; } .maxw-2-a:active { max-width: 2rem; } .maxw-3-a:active { max-width: 3rem; } .maxw-4-a:active { max-width: 4rem; } .maxw-5-a:active { max-width: 5rem; } .maxw-6-a:active { max-width: 6rem; } .maxw-7-a:active { max-width: 7rem; } .maxw-8-a:active { max-width: 8rem; } .minh-1-a:active { min-height: 1rem; } .minh-2-a:active { min-height: 2rem; } .minh-3-a:active { min-height: 3rem; } .minh-4-a:active { min-height: 4rem; } .minh-5-a:active { min-height: 5rem; } .minh-6-a:active { min-height: 6rem; } .minh-7-a:active { min-height: 7rem; } .minh-8-a:active { min-height: 8rem; } .minw-1-a:active { min-width: 1rem; } .minw-2-a:active { min-width: 2rem; } .minw-3-a:active { min-width: 3rem; } .minw-4-a:active { min-width: 4rem; } .minw-5-a:active { min-width: 5rem; } .minw-6-a:active { min-width: 6rem; } .minw-7-a:active { min-width: 7rem; } .minw-8-a:active { min-width: 8rem; } .o-10-a:active { opacity: 0.1; } .o-20-a:active { opacity: 0.2; } .o-30-a:active { opacity: 0.3; } .o-40-a:active { opacity: 0.4; } .o-50-a:active { opacity: 0.5; } .o-60-a:active { opacity: 0.6; } .o-70-a:active { opacity: 0.7; } .o-80-a:active { opacity: 0.8; } .o-90-a:active { opacity: 0.9; } .o-100-a:active { opacity: 1; } .oo-small-a:active { outline-offset: 1px; } .oo-medium-a:active { outline-offset: 2px; } .oo-large-a:active { outline-offset: 3px; } .oc-primary-a:active { outline-color: red; } .oc-secondary-a:active { outline-color: blue; } .ow-small-a:active { outline-width: 1px; } .ow-medium-a:active { outline-width: 2px; } .ow-large-a:active { outline-width: 3px; } .pt-1-a:active { padding-top: 1rem; } .pt-2-a:active { padding-top: 2rem; } .pt-3-a:active { padding-top: 3rem; } .pt-4-a:active { padding-top: 4rem; } .pt-5-a:active { padding-top: 5rem; } .pt-6-a:active { padding-top: 6rem; } .pt-7-a:active { padding-top: 7rem; } .pt-8-a:active { padding-top: 8rem; } .pr-1-a:active { padding-right: 1rem; } .pr-2-a:active { padding-right: 2rem; } .pr-3-a:active { padding-right: 3rem; } .pr-4-a:active { padding-right: 4rem; } .pr-5-a:active { padding-right: 5rem; } .pr-6-a:active { padding-right: 6rem; } .pr-7-a:active { padding-right: 7rem; } .pr-8-a:active { padding-right: 8rem; } .pb-1-a:active { padding-bottom: 1rem; } .pb-2-a:active { padding-bottom: 2rem; } .pb-3-a:active { padding-bottom: 3rem; } .pb-4-a:active { padding-bottom: 4rem; } .pb-5-a:active { padding-bottom: 5rem; } .pb-6-a:active { padding-bottom: 6rem; } .pb-7-a:active { padding-bottom: 7rem; } .pb-8-a:active { padding-bottom: 8rem; } .pl-1-a:active { padding-left: 1rem; } .pl-2-a:active { padding-left: 2rem; } .pl-3-a:active { padding-left: 3rem; } .pl-4-a:active { padding-left: 4rem; } .pl-5-a:active { padding-left: 5rem; } .pl-6-a:active { padding-left: 6rem; } .pl-7-a:active { padding-left: 7rem; } .pl-8-a:active { padding-left: 8rem; } .ph-1-a:active { padding-left: 1rem; padding-right: 1rem; } .ph-2-a:active { padding-left: 2rem; padding-right: 2rem; } .ph-3-a:active { padding-left: 3rem; padding-right: 3rem; } .ph-4-a:active { padding-left: 4rem; padding-right: 4rem; } .ph-5-a:active { padding-left: 5rem; padding-right: 5rem; } .ph-6-a:active { padding-left: 6rem; padding-right: 6rem; } .ph-7-a:active { padding-left: 7rem; padding-right: 7rem; } .ph-8-a:active { padding-left: 8rem; padding-right: 8rem; } .pv-1-a:active { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-a:active { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-a:active { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-a:active { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-a:active { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-a:active { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-a:active { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-a:active { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-a:active { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-a:active { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-a:active { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-a:active { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-a:active { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-a:active { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-a:active { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-a:active { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-a:active { top: 1rem; } .post-2-a:active { top: 2rem; } .post-3-a:active { top: 3rem; } .post-4-a:active { top: 4rem; } .post-5-a:active { top: 5rem; } .post-6-a:active { top: 6rem; } .post-7-a:active { top: 7rem; } .post-8-a:active { top: 8rem; } .posr-1-a:active { right: 1rem; } .posr-2-a:active { right: 2rem; } .posr-3-a:active { right: 3rem; } .posr-4-a:active { right: 4rem; } .posr-5-a:active { right: 5rem; } .posr-6-a:active { right: 6rem; } .posr-7-a:active { right: 7rem; } .posr-8-a:active { right: 8rem; } .posb-1-a:active { bottom: 1rem; } .posb-2-a:active { bottom: 2rem; } .posb-3-a:active { bottom: 3rem; } .posb-4-a:active { bottom: 4rem; } .posb-5-a:active { bottom: 5rem; } .posb-6-a:active { bottom: 6rem; } .posb-7-a:active { bottom: 7rem; } .posb-8-a:active { bottom: 8rem; } .posl-1-a:active { left: 1rem; } .posl-2-a:active { left: 2rem; } .posl-3-a:active { left: 3rem; } .posl-4-a:active { left: 4rem; } .posl-5-a:active { left: 5rem; } .posl-6-a:active { left: 6rem; } .posl-7-a:active { left: 7rem; } .posl-8-a:active { left: 8rem; } .w-1-a:active { width: 1rem; } .w-2-a:active { width: 2rem; } .w-3-a:active { width: 4rem; } .w-4-a:active { width: 8rem; } .w-5-a:active { width: 16rem; } .w-6-a:active { width: 32rem; } .w-7-a:active { width: 64rem; } .w-8-a:active { width: 128rem; } .ws-1-a:active { word-spacing: 1px; } .ws-2-a:active { word-spacing: 2px; } .ws-3-a:active { word-spacing: 3px; } .ws-4-a:active { word-spacing: 4px; } .fill-primary-a:active { fill: red; } .fill-secondary-a:active { fill: blue; } .stroke-primary-a:active { stroke: red; } .stroke-secondary-a:active { stroke: blue; } .z-1-a:active { z-index: 1; } .z-2-a:active { z-index: 2; } @media screen and (max-width: 30em) { .bg-primary-ns { background: red; } .bg-secondary-ns { background: blue; } .bc-primary-ns { border-color: red; } .bc-secondary-ns { border-color: blue; } .btc-primary-ns { border-top-color: red; } .btc-secondary-ns { border-top-color: blue; } .brc-primary-ns { border-right-color: red; } .brc-secondary-ns { border-right-color: blue; } .bbc-primary-ns { border-bottom-color: red; } .bbc-secondary-ns { border-bottom-color: blue; } .blc-primary-ns { border-left-color: red; } .blc-secondary-ns { border-left-color: blue; } .bra-small-ns { border-radius: 1px; } .bra-medium-ns { border-radius: 2px; } .bra-large-ns { border-radius: 3px; } .btrr-small-ns { border-top-right-radius: 1px; } .btrr-medium-ns { border-top-right-radius: 2px; } .btrr-large-ns { border-top-right-radius: 3px; } .bbrr-small-ns { border-bottom-right-radius: 1px; } .bbrr-medium-ns { border-bottom-right-radius: 2px; } .bbrr-large-ns { border-bottom-right-radius: 3px; } .bblr-small-ns { border-bottom-left-radius: 1px; } .bblr-medium-ns { border-bottom-left-radius: 2px; } .bblr-large-ns { border-bottom-left-radius: 3px; } .btlr-small-ns { border-top-left-radius: 1px; } .btlr-medium-ns { border-top-left-radius: 2px; } .btlr-large-ns { border-top-left-radius: 3px; } .bw-small-ns { border-width: 1px; } .bw-medium-ns { border-width: 2px; } .bw-large-ns { border-width: 3px; } .btw-small-ns { border-top-width: 1px; } .btw-medium-ns { border-top-width: 2px; } .btw-large-ns { border-top-width: 3px; } .brw-small-ns { border-right-width: 1px; } .brw-medium-ns { border-right-width: 2px; } .brw-large-ns { border-right-width: 3px; } .bbw-small-ns { border-bottom-width: 1px; } .bbw-medium-ns { border-bottom-width: 2px; } .bbw-large-ns { border-bottom-width: 3px; } .blw-small-ns { border-left-width: 1px; } .blw-medium-ns { border-left-width: 2px; } .blw-large-ns { border-left-width: 3px; } .fc-primary-ns { color: red; } .fc-secondary-ns { color: blue; } .ff-copy-ns { font-family: Helvetica, sans-serif; } .ff-heading-ns { font-family: Cursive; } .fs-small-ns { font-size: 0.8rem; } .fs-medium-ns { font-size: 1rem; } .fs-large-ns { font-size: 1.5rem; } .fw-100-ns { font-weight: 100; } .fw-200-ns { font-weight: 200; } .fw-300-ns { font-weight: 300; } .fw-400-ns { font-weight: 400; } .fw-500-ns { font-weight: 500; } .h-1-ns { height: 1rem; } .h-2-ns { height: 2rem; } .h-3-ns { height: 4rem; } .h-4-ns { height: 8rem; } .h-5-ns { height: 16rem; } .h-6-ns { height: 32rem; } .h-7-ns { height: 64rem; } .h-8-ns { height: 128rem; } .ls-1-ns { letter-spacing: 1px; } .ls-2-ns { letter-spacing: 2px; } .ls-3-ns { letter-spacing: 3px; } .ls-4-ns { letter-spacing: 4px; } .lh-1-ns { line-height: 0.8em; } .lh-2-ns { line-height: 1em; } .lh-3-ns { line-height: 1.2em; } .lh-4-ns { line-height: 1.5em; } .lh-5-ns { line-height: 2em; } .mt-1-ns { margin-top: 1rem; } .mt-2-ns { margin-top: 2rem; } .mt-3-ns { margin-top: 3rem; } .mt-4-ns { margin-top: 4rem; } .mt-5-ns { margin-top: 5rem; } .mt-6-ns { margin-top: 6rem; } .mt-7-ns { margin-top: 7rem; } .mt-8-ns { margin-top: 8rem; } .mr-1-ns { margin-right: 1rem; } .mr-2-ns { margin-right: 2rem; } .mr-3-ns { margin-right: 3rem; } .mr-4-ns { margin-right: 4rem; } .mr-5-ns { margin-right: 5rem; } .mr-6-ns { margin-right: 6rem; } .mr-7-ns { margin-right: 7rem; } .mr-8-ns { margin-right: 8rem; } .mb-1-ns { margin-bottom: 1rem; } .mb-2-ns { margin-bottom: 2rem; } .mb-3-ns { margin-bottom: 3rem; } .mb-4-ns { margin-bottom: 4rem; } .mb-5-ns { margin-bottom: 5rem; } .mb-6-ns { margin-bottom: 6rem; } .mb-7-ns { margin-bottom: 7rem; } .mb-8-ns { margin-bottom: 8rem; } .ml-1-ns { margin-left: 1rem; } .ml-2-ns { margin-left: 2rem; } .ml-3-ns { margin-left: 3rem; } .ml-4-ns { margin-left: 4rem; } .ml-5-ns { margin-left: 5rem; } .ml-6-ns { margin-left: 6rem; } .ml-7-ns { margin-left: 7rem; } .ml-8-ns { margin-left: 8rem; } .mh-1-ns { margin-left: 1rem; margin-right: 1rem; } .mh-2-ns { margin-left: 2rem; margin-right: 2rem; } .mh-3-ns { margin-left: 3rem; margin-right: 3rem; } .mh-4-ns { margin-left: 4rem; margin-right: 4rem; } .mh-5-ns { margin-left: 5rem; margin-right: 5rem; } .mh-6-ns { margin-left: 6rem; margin-right: 6rem; } .mh-7-ns { margin-left: 7rem; margin-right: 7rem; } .mh-8-ns { margin-left: 8rem; margin-right: 8rem; } .mv-1-ns { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-ns { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-ns { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-ns { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-ns { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-ns { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-ns { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-ns { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-ns { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-ns { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-ns { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-ns { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-ns { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-ns { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-ns { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-ns { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-ns { max-height: 1rem; } .maxh-2-ns { max-height: 2rem; } .maxh-3-ns { max-height: 3rem; } .maxh-4-ns { max-height: 4rem; } .maxh-5-ns { max-height: 5rem; } .maxh-6-ns { max-height: 6rem; } .maxh-7-ns { max-height: 7rem; } .maxh-8-ns { max-height: 8rem; } .maxw-1-ns { max-width: 1rem; } .maxw-2-ns { max-width: 2rem; } .maxw-3-ns { max-width: 3rem; } .maxw-4-ns { max-width: 4rem; } .maxw-5-ns { max-width: 5rem; } .maxw-6-ns { max-width: 6rem; } .maxw-7-ns { max-width: 7rem; } .maxw-8-ns { max-width: 8rem; } .minh-1-ns { min-height: 1rem; } .minh-2-ns { min-height: 2rem; } .minh-3-ns { min-height: 3rem; } .minh-4-ns { min-height: 4rem; } .minh-5-ns { min-height: 5rem; } .minh-6-ns { min-height: 6rem; } .minh-7-ns { min-height: 7rem; } .minh-8-ns { min-height: 8rem; } .minw-1-ns { min-width: 1rem; } .minw-2-ns { min-width: 2rem; } .minw-3-ns { min-width: 3rem; } .minw-4-ns { min-width: 4rem; } .minw-5-ns { min-width: 5rem; } .minw-6-ns { min-width: 6rem; } .minw-7-ns { min-width: 7rem; } .minw-8-ns { min-width: 8rem; } .o-10-ns { opacity: 0.1; } .o-20-ns { opacity: 0.2; } .o-30-ns { opacity: 0.3; } .o-40-ns { opacity: 0.4; } .o-50-ns { opacity: 0.5; } .o-60-ns { opacity: 0.6; } .o-70-ns { opacity: 0.7; } .o-80-ns { opacity: 0.8; } .o-90-ns { opacity: 0.9; } .o-100-ns { opacity: 1; } .oo-small-ns { outline-offset: 1px; } .oo-medium-ns { outline-offset: 2px; } .oo-large-ns { outline-offset: 3px; } .oc-primary-ns { outline-color: red; } .oc-secondary-ns { outline-color: blue; } .ow-small-ns { outline-width: 1px; } .ow-medium-ns { outline-width: 2px; } .ow-large-ns { outline-width: 3px; } .pt-1-ns { padding-top: 1rem; } .pt-2-ns { padding-top: 2rem; } .pt-3-ns { padding-top: 3rem; } .pt-4-ns { padding-top: 4rem; } .pt-5-ns { padding-top: 5rem; } .pt-6-ns { padding-top: 6rem; } .pt-7-ns { padding-top: 7rem; } .pt-8-ns { padding-top: 8rem; } .pr-1-ns { padding-right: 1rem; } .pr-2-ns { padding-right: 2rem; } .pr-3-ns { padding-right: 3rem; } .pr-4-ns { padding-right: 4rem; } .pr-5-ns { padding-right: 5rem; } .pr-6-ns { padding-right: 6rem; } .pr-7-ns { padding-right: 7rem; } .pr-8-ns { padding-right: 8rem; } .pb-1-ns { padding-bottom: 1rem; } .pb-2-ns { padding-bottom: 2rem; } .pb-3-ns { padding-bottom: 3rem; } .pb-4-ns { padding-bottom: 4rem; } .pb-5-ns { padding-bottom: 5rem; } .pb-6-ns { padding-bottom: 6rem; } .pb-7-ns { padding-bottom: 7rem; } .pb-8-ns { padding-bottom: 8rem; } .pl-1-ns { padding-left: 1rem; } .pl-2-ns { padding-left: 2rem; } .pl-3-ns { padding-left: 3rem; } .pl-4-ns { padding-left: 4rem; } .pl-5-ns { padding-left: 5rem; } .pl-6-ns { padding-left: 6rem; } .pl-7-ns { padding-left: 7rem; } .pl-8-ns { padding-left: 8rem; } .ph-1-ns { padding-left: 1rem; padding-right: 1rem; } .ph-2-ns { padding-left: 2rem; padding-right: 2rem; } .ph-3-ns { padding-left: 3rem; padding-right: 3rem; } .ph-4-ns { padding-left: 4rem; padding-right: 4rem; } .ph-5-ns { padding-left: 5rem; padding-right: 5rem; } .ph-6-ns { padding-left: 6rem; padding-right: 6rem; } .ph-7-ns { padding-left: 7rem; padding-right: 7rem; } .ph-8-ns { padding-left: 8rem; padding-right: 8rem; } .pv-1-ns { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-ns { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-ns { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-ns { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-ns { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-ns { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-ns { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-ns { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-ns { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-ns { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-ns { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-ns { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-ns { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-ns { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-ns { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-ns { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-ns { top: 1rem; } .post-2-ns { top: 2rem; } .post-3-ns { top: 3rem; } .post-4-ns { top: 4rem; } .post-5-ns { top: 5rem; } .post-6-ns { top: 6rem; } .post-7-ns { top: 7rem; } .post-8-ns { top: 8rem; } .posr-1-ns { right: 1rem; } .posr-2-ns { right: 2rem; } .posr-3-ns { right: 3rem; } .posr-4-ns { right: 4rem; } .posr-5-ns { right: 5rem; } .posr-6-ns { right: 6rem; } .posr-7-ns { right: 7rem; } .posr-8-ns { right: 8rem; } .posb-1-ns { bottom: 1rem; } .posb-2-ns { bottom: 2rem; } .posb-3-ns { bottom: 3rem; } .posb-4-ns { bottom: 4rem; } .posb-5-ns { bottom: 5rem; } .posb-6-ns { bottom: 6rem; } .posb-7-ns { bottom: 7rem; } .posb-8-ns { bottom: 8rem; } .posl-1-ns { left: 1rem; } .posl-2-ns { left: 2rem; } .posl-3-ns { left: 3rem; } .posl-4-ns { left: 4rem; } .posl-5-ns { left: 5rem; } .posl-6-ns { left: 6rem; } .posl-7-ns { left: 7rem; } .posl-8-ns { left: 8rem; } .w-1-ns { width: 1rem; } .w-2-ns { width: 2rem; } .w-3-ns { width: 4rem; } .w-4-ns { width: 8rem; } .w-5-ns { width: 16rem; } .w-6-ns { width: 32rem; } .w-7-ns { width: 64rem; } .w-8-ns { width: 128rem; } .ws-1-ns { word-spacing: 1px; } .ws-2-ns { word-spacing: 2px; } .ws-3-ns { word-spacing: 3px; } .ws-4-ns { word-spacing: 4px; } .fill-primary-ns { fill: red; } .fill-secondary-ns { fill: blue; } .stroke-primary-ns { stroke: red; } .stroke-secondary-ns { stroke: blue; } .z-1-ns { z-index: 1; } .z-2-ns { z-index: 2; } } @media screen and (min-width: 30em) and (max-width: 60em) { .bg-primary-m { background: red; } .bg-secondary-m { background: blue; } .bc-primary-m { border-color: red; } .bc-secondary-m { border-color: blue; } .btc-primary-m { border-top-color: red; } .btc-secondary-m { border-top-color: blue; } .brc-primary-m { border-right-color: red; } .brc-secondary-m { border-right-color: blue; } .bbc-primary-m { border-bottom-color: red; } .bbc-secondary-m { border-bottom-color: blue; } .blc-primary-m { border-left-color: red; } .blc-secondary-m { border-left-color: blue; } .bra-small-m { border-radius: 1px; } .bra-medium-m { border-radius: 2px; } .bra-large-m { border-radius: 3px; } .btrr-small-m { border-top-right-radius: 1px; } .btrr-medium-m { border-top-right-radius: 2px; } .btrr-large-m { border-top-right-radius: 3px; } .bbrr-small-m { border-bottom-right-radius: 1px; } .bbrr-medium-m { border-bottom-right-radius: 2px; } .bbrr-large-m { border-bottom-right-radius: 3px; } .bblr-small-m { border-bottom-left-radius: 1px; } .bblr-medium-m { border-bottom-left-radius: 2px; } .bblr-large-m { border-bottom-left-radius: 3px; } .btlr-small-m { border-top-left-radius: 1px; } .btlr-medium-m { border-top-left-radius: 2px; } .btlr-large-m { border-top-left-radius: 3px; } .bw-small-m { border-width: 1px; } .bw-medium-m { border-width: 2px; } .bw-large-m { border-width: 3px; } .btw-small-m { border-top-width: 1px; } .btw-medium-m { border-top-width: 2px; } .btw-large-m { border-top-width: 3px; } .brw-small-m { border-right-width: 1px; } .brw-medium-m { border-right-width: 2px; } .brw-large-m { border-right-width: 3px; } .bbw-small-m { border-bottom-width: 1px; } .bbw-medium-m { border-bottom-width: 2px; } .bbw-large-m { border-bottom-width: 3px; } .blw-small-m { border-left-width: 1px; } .blw-medium-m { border-left-width: 2px; } .blw-large-m { border-left-width: 3px; } .fc-primary-m { color: red; } .fc-secondary-m { color: blue; } .ff-copy-m { font-family: Helvetica, sans-serif; } .ff-heading-m { font-family: Cursive; } .fs-small-m { font-size: 0.8rem; } .fs-medium-m { font-size: 1rem; } .fs-large-m { font-size: 1.5rem; } .fw-100-m { font-weight: 100; } .fw-200-m { font-weight: 200; } .fw-300-m { font-weight: 300; } .fw-400-m { font-weight: 400; } .fw-500-m { font-weight: 500; } .h-1-m { height: 1rem; } .h-2-m { height: 2rem; } .h-3-m { height: 4rem; } .h-4-m { height: 8rem; } .h-5-m { height: 16rem; } .h-6-m { height: 32rem; } .h-7-m { height: 64rem; } .h-8-m { height: 128rem; } .ls-1-m { letter-spacing: 1px; } .ls-2-m { letter-spacing: 2px; } .ls-3-m { letter-spacing: 3px; } .ls-4-m { letter-spacing: 4px; } .lh-1-m { line-height: 0.8em; } .lh-2-m { line-height: 1em; } .lh-3-m { line-height: 1.2em; } .lh-4-m { line-height: 1.5em; } .lh-5-m { line-height: 2em; } .mt-1-m { margin-top: 1rem; } .mt-2-m { margin-top: 2rem; } .mt-3-m { margin-top: 3rem; } .mt-4-m { margin-top: 4rem; } .mt-5-m { margin-top: 5rem; } .mt-6-m { margin-top: 6rem; } .mt-7-m { margin-top: 7rem; } .mt-8-m { margin-top: 8rem; } .mr-1-m { margin-right: 1rem; } .mr-2-m { margin-right: 2rem; } .mr-3-m { margin-right: 3rem; } .mr-4-m { margin-right: 4rem; } .mr-5-m { margin-right: 5rem; } .mr-6-m { margin-right: 6rem; } .mr-7-m { margin-right: 7rem; } .mr-8-m { margin-right: 8rem; } .mb-1-m { margin-bottom: 1rem; } .mb-2-m { margin-bottom: 2rem; } .mb-3-m { margin-bottom: 3rem; } .mb-4-m { margin-bottom: 4rem; } .mb-5-m { margin-bottom: 5rem; } .mb-6-m { margin-bottom: 6rem; } .mb-7-m { margin-bottom: 7rem; } .mb-8-m { margin-bottom: 8rem; } .ml-1-m { margin-left: 1rem; } .ml-2-m { margin-left: 2rem; } .ml-3-m { margin-left: 3rem; } .ml-4-m { margin-left: 4rem; } .ml-5-m { margin-left: 5rem; } .ml-6-m { margin-left: 6rem; } .ml-7-m { margin-left: 7rem; } .ml-8-m { margin-left: 8rem; } .mh-1-m { margin-left: 1rem; margin-right: 1rem; } .mh-2-m { margin-left: 2rem; margin-right: 2rem; } .mh-3-m { margin-left: 3rem; margin-right: 3rem; } .mh-4-m { margin-left: 4rem; margin-right: 4rem; } .mh-5-m { margin-left: 5rem; margin-right: 5rem; } .mh-6-m { margin-left: 6rem; margin-right: 6rem; } .mh-7-m { margin-left: 7rem; margin-right: 7rem; } .mh-8-m { margin-left: 8rem; margin-right: 8rem; } .mv-1-m { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-m { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-m { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-m { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-m { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-m { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-m { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-m { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-m { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-m { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-m { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-m { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-m { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-m { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-m { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-m { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-m { max-height: 1rem; } .maxh-2-m { max-height: 2rem; } .maxh-3-m { max-height: 3rem; } .maxh-4-m { max-height: 4rem; } .maxh-5-m { max-height: 5rem; } .maxh-6-m { max-height: 6rem; } .maxh-7-m { max-height: 7rem; } .maxh-8-m { max-height: 8rem; } .maxw-1-m { max-width: 1rem; } .maxw-2-m { max-width: 2rem; } .maxw-3-m { max-width: 3rem; } .maxw-4-m { max-width: 4rem; } .maxw-5-m { max-width: 5rem; } .maxw-6-m { max-width: 6rem; } .maxw-7-m { max-width: 7rem; } .maxw-8-m { max-width: 8rem; } .minh-1-m { min-height: 1rem; } .minh-2-m { min-height: 2rem; } .minh-3-m { min-height: 3rem; } .minh-4-m { min-height: 4rem; } .minh-5-m { min-height: 5rem; } .minh-6-m { min-height: 6rem; } .minh-7-m { min-height: 7rem; } .minh-8-m { min-height: 8rem; } .minw-1-m { min-width: 1rem; } .minw-2-m { min-width: 2rem; } .minw-3-m { min-width: 3rem; } .minw-4-m { min-width: 4rem; } .minw-5-m { min-width: 5rem; } .minw-6-m { min-width: 6rem; } .minw-7-m { min-width: 7rem; } .minw-8-m { min-width: 8rem; } .o-10-m { opacity: 0.1; } .o-20-m { opacity: 0.2; } .o-30-m { opacity: 0.3; } .o-40-m { opacity: 0.4; } .o-50-m { opacity: 0.5; } .o-60-m { opacity: 0.6; } .o-70-m { opacity: 0.7; } .o-80-m { opacity: 0.8; } .o-90-m { opacity: 0.9; } .o-100-m { opacity: 1; } .oo-small-m { outline-offset: 1px; } .oo-medium-m { outline-offset: 2px; } .oo-large-m { outline-offset: 3px; } .oc-primary-m { outline-color: red; } .oc-secondary-m { outline-color: blue; } .ow-small-m { outline-width: 1px; } .ow-medium-m { outline-width: 2px; } .ow-large-m { outline-width: 3px; } .pt-1-m { padding-top: 1rem; } .pt-2-m { padding-top: 2rem; } .pt-3-m { padding-top: 3rem; } .pt-4-m { padding-top: 4rem; } .pt-5-m { padding-top: 5rem; } .pt-6-m { padding-top: 6rem; } .pt-7-m { padding-top: 7rem; } .pt-8-m { padding-top: 8rem; } .pr-1-m { padding-right: 1rem; } .pr-2-m { padding-right: 2rem; } .pr-3-m { padding-right: 3rem; } .pr-4-m { padding-right: 4rem; } .pr-5-m { padding-right: 5rem; } .pr-6-m { padding-right: 6rem; } .pr-7-m { padding-right: 7rem; } .pr-8-m { padding-right: 8rem; } .pb-1-m { padding-bottom: 1rem; } .pb-2-m { padding-bottom: 2rem; } .pb-3-m { padding-bottom: 3rem; } .pb-4-m { padding-bottom: 4rem; } .pb-5-m { padding-bottom: 5rem; } .pb-6-m { padding-bottom: 6rem; } .pb-7-m { padding-bottom: 7rem; } .pb-8-m { padding-bottom: 8rem; } .pl-1-m { padding-left: 1rem; } .pl-2-m { padding-left: 2rem; } .pl-3-m { padding-left: 3rem; } .pl-4-m { padding-left: 4rem; } .pl-5-m { padding-left: 5rem; } .pl-6-m { padding-left: 6rem; } .pl-7-m { padding-left: 7rem; } .pl-8-m { padding-left: 8rem; } .ph-1-m { padding-left: 1rem; padding-right: 1rem; } .ph-2-m { padding-left: 2rem; padding-right: 2rem; } .ph-3-m { padding-left: 3rem; padding-right: 3rem; } .ph-4-m { padding-left: 4rem; padding-right: 4rem; } .ph-5-m { padding-left: 5rem; padding-right: 5rem; } .ph-6-m { padding-left: 6rem; padding-right: 6rem; } .ph-7-m { padding-left: 7rem; padding-right: 7rem; } .ph-8-m { padding-left: 8rem; padding-right: 8rem; } .pv-1-m { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-m { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-m { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-m { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-m { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-m { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-m { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-m { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-m { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-m { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-m { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-m { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-m { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-m { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-m { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-m { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-m { top: 1rem; } .post-2-m { top: 2rem; } .post-3-m { top: 3rem; } .post-4-m { top: 4rem; } .post-5-m { top: 5rem; } .post-6-m { top: 6rem; } .post-7-m { top: 7rem; } .post-8-m { top: 8rem; } .posr-1-m { right: 1rem; } .posr-2-m { right: 2rem; } .posr-3-m { right: 3rem; } .posr-4-m { right: 4rem; } .posr-5-m { right: 5rem; } .posr-6-m { right: 6rem; } .posr-7-m { right: 7rem; } .posr-8-m { right: 8rem; } .posb-1-m { bottom: 1rem; } .posb-2-m { bottom: 2rem; } .posb-3-m { bottom: 3rem; } .posb-4-m { bottom: 4rem; } .posb-5-m { bottom: 5rem; } .posb-6-m { bottom: 6rem; } .posb-7-m { bottom: 7rem; } .posb-8-m { bottom: 8rem; } .posl-1-m { left: 1rem; } .posl-2-m { left: 2rem; } .posl-3-m { left: 3rem; } .posl-4-m { left: 4rem; } .posl-5-m { left: 5rem; } .posl-6-m { left: 6rem; } .posl-7-m { left: 7rem; } .posl-8-m { left: 8rem; } .w-1-m { width: 1rem; } .w-2-m { width: 2rem; } .w-3-m { width: 4rem; } .w-4-m { width: 8rem; } .w-5-m { width: 16rem; } .w-6-m { width: 32rem; } .w-7-m { width: 64rem; } .w-8-m { width: 128rem; } .ws-1-m { word-spacing: 1px; } .ws-2-m { word-spacing: 2px; } .ws-3-m { word-spacing: 3px; } .ws-4-m { word-spacing: 4px; } .fill-primary-m { fill: red; } .fill-secondary-m { fill: blue; } .stroke-primary-m { stroke: red; } .stroke-secondary-m { stroke: blue; } .z-1-m { z-index: 1; } .z-2-m { z-index: 2; } } @media screen and (min-width: 60em) { .bg-primary-l { background: red; } .bg-secondary-l { background: blue; } .bc-primary-l { border-color: red; } .bc-secondary-l { border-color: blue; } .btc-primary-l { border-top-color: red; } .btc-secondary-l { border-top-color: blue; } .brc-primary-l { border-right-color: red; } .brc-secondary-l { border-right-color: blue; } .bbc-primary-l { border-bottom-color: red; } .bbc-secondary-l { border-bottom-color: blue; } .blc-primary-l { border-left-color: red; } .blc-secondary-l { border-left-color: blue; } .bra-small-l { border-radius: 1px; } .bra-medium-l { border-radius: 2px; } .bra-large-l { border-radius: 3px; } .btrr-small-l { border-top-right-radius: 1px; } .btrr-medium-l { border-top-right-radius: 2px; } .btrr-large-l { border-top-right-radius: 3px; } .bbrr-small-l { border-bottom-right-radius: 1px; } .bbrr-medium-l { border-bottom-right-radius: 2px; } .bbrr-large-l { border-bottom-right-radius: 3px; } .bblr-small-l { border-bottom-left-radius: 1px; } .bblr-medium-l { border-bottom-left-radius: 2px; } .bblr-large-l { border-bottom-left-radius: 3px; } .btlr-small-l { border-top-left-radius: 1px; } .btlr-medium-l { border-top-left-radius: 2px; } .btlr-large-l { border-top-left-radius: 3px; } .bw-small-l { border-width: 1px; } .bw-medium-l { border-width: 2px; } .bw-large-l { border-width: 3px; } .btw-small-l { border-top-width: 1px; } .btw-medium-l { border-top-width: 2px; } .btw-large-l { border-top-width: 3px; } .brw-small-l { border-right-width: 1px; } .brw-medium-l { border-right-width: 2px; } .brw-large-l { border-right-width: 3px; } .bbw-small-l { border-bottom-width: 1px; } .bbw-medium-l { border-bottom-width: 2px; } .bbw-large-l { border-bottom-width: 3px; } .blw-small-l { border-left-width: 1px; } .blw-medium-l { border-left-width: 2px; } .blw-large-l { border-left-width: 3px; } .fc-primary-l { color: red; } .fc-secondary-l { color: blue; } .ff-copy-l { font-family: Helvetica, sans-serif; } .ff-heading-l { font-family: Cursive; } .fs-small-l { font-size: 0.8rem; } .fs-medium-l { font-size: 1rem; } .fs-large-l { font-size: 1.5rem; } .fw-100-l { font-weight: 100; } .fw-200-l { font-weight: 200; } .fw-300-l { font-weight: 300; } .fw-400-l { font-weight: 400; } .fw-500-l { font-weight: 500; } .h-1-l { height: 1rem; } .h-2-l { height: 2rem; } .h-3-l { height: 4rem; } .h-4-l { height: 8rem; } .h-5-l { height: 16rem; } .h-6-l { height: 32rem; } .h-7-l { height: 64rem; } .h-8-l { height: 128rem; } .ls-1-l { letter-spacing: 1px; } .ls-2-l { letter-spacing: 2px; } .ls-3-l { letter-spacing: 3px; } .ls-4-l { letter-spacing: 4px; } .lh-1-l { line-height: 0.8em; } .lh-2-l { line-height: 1em; } .lh-3-l { line-height: 1.2em; } .lh-4-l { line-height: 1.5em; } .lh-5-l { line-height: 2em; } .mt-1-l { margin-top: 1rem; } .mt-2-l { margin-top: 2rem; } .mt-3-l { margin-top: 3rem; } .mt-4-l { margin-top: 4rem; } .mt-5-l { margin-top: 5rem; } .mt-6-l { margin-top: 6rem; } .mt-7-l { margin-top: 7rem; } .mt-8-l { margin-top: 8rem; } .mr-1-l { margin-right: 1rem; } .mr-2-l { margin-right: 2rem; } .mr-3-l { margin-right: 3rem; } .mr-4-l { margin-right: 4rem; } .mr-5-l { margin-right: 5rem; } .mr-6-l { margin-right: 6rem; } .mr-7-l { margin-right: 7rem; } .mr-8-l { margin-right: 8rem; } .mb-1-l { margin-bottom: 1rem; } .mb-2-l { margin-bottom: 2rem; } .mb-3-l { margin-bottom: 3rem; } .mb-4-l { margin-bottom: 4rem; } .mb-5-l { margin-bottom: 5rem; } .mb-6-l { margin-bottom: 6rem; } .mb-7-l { margin-bottom: 7rem; } .mb-8-l { margin-bottom: 8rem; } .ml-1-l { margin-left: 1rem; } .ml-2-l { margin-left: 2rem; } .ml-3-l { margin-left: 3rem; } .ml-4-l { margin-left: 4rem; } .ml-5-l { margin-left: 5rem; } .ml-6-l { margin-left: 6rem; } .ml-7-l { margin-left: 7rem; } .ml-8-l { margin-left: 8rem; } .mh-1-l { margin-left: 1rem; margin-right: 1rem; } .mh-2-l { margin-left: 2rem; margin-right: 2rem; } .mh-3-l { margin-left: 3rem; margin-right: 3rem; } .mh-4-l { margin-left: 4rem; margin-right: 4rem; } .mh-5-l { margin-left: 5rem; margin-right: 5rem; } .mh-6-l { margin-left: 6rem; margin-right: 6rem; } .mh-7-l { margin-left: 7rem; margin-right: 7rem; } .mh-8-l { margin-left: 8rem; margin-right: 8rem; } .mv-1-l { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-l { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-l { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-l { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-l { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-l { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-l { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-l { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-l { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-l { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-l { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-l { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-l { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-l { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-l { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-l { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-l { max-height: 1rem; } .maxh-2-l { max-height: 2rem; } .maxh-3-l { max-height: 3rem; } .maxh-4-l { max-height: 4rem; } .maxh-5-l { max-height: 5rem; } .maxh-6-l { max-height: 6rem; } .maxh-7-l { max-height: 7rem; } .maxh-8-l { max-height: 8rem; } .maxw-1-l { max-width: 1rem; } .maxw-2-l { max-width: 2rem; } .maxw-3-l { max-width: 3rem; } .maxw-4-l { max-width: 4rem; } .maxw-5-l { max-width: 5rem; } .maxw-6-l { max-width: 6rem; } .maxw-7-l { max-width: 7rem; } .maxw-8-l { max-width: 8rem; } .minh-1-l { min-height: 1rem; } .minh-2-l { min-height: 2rem; } .minh-3-l { min-height: 3rem; } .minh-4-l { min-height: 4rem; } .minh-5-l { min-height: 5rem; } .minh-6-l { min-height: 6rem; } .minh-7-l { min-height: 7rem; } .minh-8-l { min-height: 8rem; } .minw-1-l { min-width: 1rem; } .minw-2-l { min-width: 2rem; } .minw-3-l { min-width: 3rem; } .minw-4-l { min-width: 4rem; } .minw-5-l { min-width: 5rem; } .minw-6-l { min-width: 6rem; } .minw-7-l { min-width: 7rem; } .minw-8-l { min-width: 8rem; } .o-10-l { opacity: 0.1; } .o-20-l { opacity: 0.2; } .o-30-l { opacity: 0.3; } .o-40-l { opacity: 0.4; } .o-50-l { opacity: 0.5; } .o-60-l { opacity: 0.6; } .o-70-l { opacity: 0.7; } .o-80-l { opacity: 0.8; } .o-90-l { opacity: 0.9; } .o-100-l { opacity: 1; } .oo-small-l { outline-offset: 1px; } .oo-medium-l { outline-offset: 2px; } .oo-large-l { outline-offset: 3px; } .oc-primary-l { outline-color: red; } .oc-secondary-l { outline-color: blue; } .ow-small-l { outline-width: 1px; } .ow-medium-l { outline-width: 2px; } .ow-large-l { outline-width: 3px; } .pt-1-l { padding-top: 1rem; } .pt-2-l { padding-top: 2rem; } .pt-3-l { padding-top: 3rem; } .pt-4-l { padding-top: 4rem; } .pt-5-l { padding-top: 5rem; } .pt-6-l { padding-top: 6rem; } .pt-7-l { padding-top: 7rem; } .pt-8-l { padding-top: 8rem; } .pr-1-l { padding-right: 1rem; } .pr-2-l { padding-right: 2rem; } .pr-3-l { padding-right: 3rem; } .pr-4-l { padding-right: 4rem; } .pr-5-l { padding-right: 5rem; } .pr-6-l { padding-right: 6rem; } .pr-7-l { padding-right: 7rem; } .pr-8-l { padding-right: 8rem; } .pb-1-l { padding-bottom: 1rem; } .pb-2-l { padding-bottom: 2rem; } .pb-3-l { padding-bottom: 3rem; } .pb-4-l { padding-bottom: 4rem; } .pb-5-l { padding-bottom: 5rem; } .pb-6-l { padding-bottom: 6rem; } .pb-7-l { padding-bottom: 7rem; } .pb-8-l { padding-bottom: 8rem; } .pl-1-l { padding-left: 1rem; } .pl-2-l { padding-left: 2rem; } .pl-3-l { padding-left: 3rem; } .pl-4-l { padding-left: 4rem; } .pl-5-l { padding-left: 5rem; } .pl-6-l { padding-left: 6rem; } .pl-7-l { padding-left: 7rem; } .pl-8-l { padding-left: 8rem; } .ph-1-l { padding-left: 1rem; padding-right: 1rem; } .ph-2-l { padding-left: 2rem; padding-right: 2rem; } .ph-3-l { padding-left: 3rem; padding-right: 3rem; } .ph-4-l { padding-left: 4rem; padding-right: 4rem; } .ph-5-l { padding-left: 5rem; padding-right: 5rem; } .ph-6-l { padding-left: 6rem; padding-right: 6rem; } .ph-7-l { padding-left: 7rem; padding-right: 7rem; } .ph-8-l { padding-left: 8rem; padding-right: 8rem; } .pv-1-l { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-l { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-l { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-l { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-l { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-l { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-l { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-l { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-l { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-l { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-l { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-l { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-l { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-l { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-l { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-l { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-l { top: 1rem; } .post-2-l { top: 2rem; } .post-3-l { top: 3rem; } .post-4-l { top: 4rem; } .post-5-l { top: 5rem; } .post-6-l { top: 6rem; } .post-7-l { top: 7rem; } .post-8-l { top: 8rem; } .posr-1-l { right: 1rem; } .posr-2-l { right: 2rem; } .posr-3-l { right: 3rem; } .posr-4-l { right: 4rem; } .posr-5-l { right: 5rem; } .posr-6-l { right: 6rem; } .posr-7-l { right: 7rem; } .posr-8-l { right: 8rem; } .posb-1-l { bottom: 1rem; } .posb-2-l { bottom: 2rem; } .posb-3-l { bottom: 3rem; } .posb-4-l { bottom: 4rem; } .posb-5-l { bottom: 5rem; } .posb-6-l { bottom: 6rem; } .posb-7-l { bottom: 7rem; } .posb-8-l { bottom: 8rem; } .posl-1-l { left: 1rem; } .posl-2-l { left: 2rem; } .posl-3-l { left: 3rem; } .posl-4-l { left: 4rem; } .posl-5-l { left: 5rem; } .posl-6-l { left: 6rem; } .posl-7-l { left: 7rem; } .posl-8-l { left: 8rem; } .w-1-l { width: 1rem; } .w-2-l { width: 2rem; } .w-3-l { width: 4rem; } .w-4-l { width: 8rem; } .w-5-l { width: 16rem; } .w-6-l { width: 32rem; } .w-7-l { width: 64rem; } .w-8-l { width: 128rem; } .ws-1-l { word-spacing: 1px; } .ws-2-l { word-spacing: 2px; } .ws-3-l { word-spacing: 3px; } .ws-4-l { word-spacing: 4px; } .fill-primary-l { fill: red; } .fill-secondary-l { fill: blue; } .stroke-primary-l { stroke: red; } .stroke-secondary-l { stroke: blue; } .z-1-l { z-index: 1; } .z-2-l { z-index: 2; } }
example/cli.css
.bg-primary { background: red; } .bg-secondary { background: blue; } .bc-primary { border-color: red; } .bc-secondary { border-color: blue; } .btc-primary { border-top-color: red; } .btc-secondary { border-top-color: blue; } .brc-primary { border-right-color: red; } .brc-secondary { border-right-color: blue; } .bbc-primary { border-bottom-color: red; } .bbc-secondary { border-bottom-color: blue; } .blc-primary { border-left-color: red; } .blc-secondary { border-left-color: blue; } .bra-small { border-radius: 1px; } .bra-medium { border-radius: 2px; } .bra-large { border-radius: 3px; } .btrr-small { border-top-right-radius: 1px; } .btrr-medium { border-top-right-radius: 2px; } .btrr-large { border-top-right-radius: 3px; } .bbrr-small { border-bottom-right-radius: 1px; } .bbrr-medium { border-bottom-right-radius: 2px; } .bbrr-large { border-bottom-right-radius: 3px; } .bblr-small { border-bottom-left-radius: 1px; } .bblr-medium { border-bottom-left-radius: 2px; } .bblr-large { border-bottom-left-radius: 3px; } .btlr-small { border-top-left-radius: 1px; } .btlr-medium { border-top-left-radius: 2px; } .btlr-large { border-top-left-radius: 3px; } .bw-small { border-width: 1px; } .bw-medium { border-width: 2px; } .bw-large { border-width: 3px; } .btw-small { border-top-width: 1px; } .btw-medium { border-top-width: 2px; } .btw-large { border-top-width: 3px; } .brw-small { border-right-width: 1px; } .brw-medium { border-right-width: 2px; } .brw-large { border-right-width: 3px; } .bbw-small { border-bottom-width: 1px; } .bbw-medium { border-bottom-width: 2px; } .bbw-large { border-bottom-width: 3px; } .blw-small { border-left-width: 1px; } .blw-medium { border-left-width: 2px; } .blw-large { border-left-width: 3px; } .fc-primary { color: red; } .fc-secondary { color: blue; } .ff-copy { font-family: Helvetica, sans-serif; } .ff-heading { font-family: Cursive; } .fs-small { font-size: 0.8rem; } .fs-medium { font-size: 1rem; } .fs-large { font-size: 1.5rem; } .fw-100 { font-weight: 100; } .fw-200 { font-weight: 200; } .fw-300 { font-weight: 300; } .fw-400 { font-weight: 400; } .fw-500 { font-weight: 500; } .h-1 { height: 1rem; } .h-2 { height: 2rem; } .h-3 { height: 4rem; } .h-4 { height: 8rem; } .h-5 { height: 16rem; } .h-6 { height: 32rem; } .h-7 { height: 64rem; } .h-8 { height: 128rem; } .ls-1 { letter-spacing: 1px; } .ls-2 { letter-spacing: 2px; } .ls-3 { letter-spacing: 3px; } .ls-4 { letter-spacing: 4px; } .lh-1 { line-height: 0.8em; } .lh-2 { line-height: 1em; } .lh-3 { line-height: 1.2em; } .lh-4 { line-height: 1.5em; } .lh-5 { line-height: 2em; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; } .mt-5 { margin-top: 5rem; } .mt-6 { margin-top: 6rem; } .mt-7 { margin-top: 7rem; } .mt-8 { margin-top: 8rem; } .mr-1 { margin-right: 1rem; } .mr-2 { margin-right: 2rem; } .mr-3 { margin-right: 3rem; } .mr-4 { margin-right: 4rem; } .mr-5 { margin-right: 5rem; } .mr-6 { margin-right: 6rem; } .mr-7 { margin-right: 7rem; } .mr-8 { margin-right: 8rem; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; } .mb-4 { margin-bottom: 4rem; } .mb-5 { margin-bottom: 5rem; } .mb-6 { margin-bottom: 6rem; } .mb-7 { margin-bottom: 7rem; } .mb-8 { margin-bottom: 8rem; } .ml-1 { margin-left: 1rem; } .ml-2 { margin-left: 2rem; } .ml-3 { margin-left: 3rem; } .ml-4 { margin-left: 4rem; } .ml-5 { margin-left: 5rem; } .ml-6 { margin-left: 6rem; } .ml-7 { margin-left: 7rem; } .ml-8 { margin-left: 8rem; } .mh-1 { margin-left: 1rem; margin-right: 1rem; } .mh-2 { margin-left: 2rem; margin-right: 2rem; } .mh-3 { margin-left: 3rem; margin-right: 3rem; } .mh-4 { margin-left: 4rem; margin-right: 4rem; } .mh-5 { margin-left: 5rem; margin-right: 5rem; } .mh-6 { margin-left: 6rem; margin-right: 6rem; } .mh-7 { margin-left: 7rem; margin-right: 7rem; } .mh-8 { margin-left: 8rem; margin-right: 8rem; } .mv-1 { margin-top: 1rem; margin-bottom: 1rem; } .mv-2 { margin-top: 2rem; margin-bottom: 2rem; } .mv-3 { margin-top: 3rem; margin-bottom: 3rem; } .mv-4 { margin-top: 4rem; margin-bottom: 4rem; } .mv-5 { margin-top: 5rem; margin-bottom: 5rem; } .mv-6 { margin-top: 6rem; margin-bottom: 6rem; } .mv-7 { margin-top: 7rem; margin-bottom: 7rem; } .mv-8 { margin-top: 8rem; margin-bottom: 8rem; } .ma-1 { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2 { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3 { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4 { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5 { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6 { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7 { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8 { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1 { max-height: 1rem; } .maxh-2 { max-height: 2rem; } .maxh-3 { max-height: 3rem; } .maxh-4 { max-height: 4rem; } .maxh-5 { max-height: 5rem; } .maxh-6 { max-height: 6rem; } .maxh-7 { max-height: 7rem; } .maxh-8 { max-height: 8rem; } .maxw-1 { max-width: 1rem; } .maxw-2 { max-width: 2rem; } .maxw-3 { max-width: 3rem; } .maxw-4 { max-width: 4rem; } .maxw-5 { max-width: 5rem; } .maxw-6 { max-width: 6rem; } .maxw-7 { max-width: 7rem; } .maxw-8 { max-width: 8rem; } .minh-1 { min-height: 1rem; } .minh-2 { min-height: 2rem; } .minh-3 { min-height: 3rem; } .minh-4 { min-height: 4rem; } .minh-5 { min-height: 5rem; } .minh-6 { min-height: 6rem; } .minh-7 { min-height: 7rem; } .minh-8 { min-height: 8rem; } .minw-1 { min-width: 1rem; } .minw-2 { min-width: 2rem; } .minw-3 { min-width: 3rem; } .minw-4 { min-width: 4rem; } .minw-5 { min-width: 5rem; } .minw-6 { min-width: 6rem; } .minw-7 { min-width: 7rem; } .minw-8 { min-width: 8rem; } .o-10 { opacity: 0.1; } .o-20 { opacity: 0.2; } .o-30 { opacity: 0.3; } .o-40 { opacity: 0.4; } .o-50 { opacity: 0.5; } .o-60 { opacity: 0.6; } .o-70 { opacity: 0.7; } .o-80 { opacity: 0.8; } .o-90 { opacity: 0.9; } .o-100 { opacity: 1; } .oo-small { outline-offset: 1px; } .oo-medium { outline-offset: 2px; } .oo-large { outline-offset: 3px; } .oc-primary { outline-color: red; } .oc-secondary { outline-color: blue; } .ow-small { outline-width: 1px; } .ow-medium { outline-width: 2px; } .ow-large { outline-width: 3px; } .pt-1 { padding-top: 1rem; } .pt-2 { padding-top: 2rem; } .pt-3 { padding-top: 3rem; } .pt-4 { padding-top: 4rem; } .pt-5 { padding-top: 5rem; } .pt-6 { padding-top: 6rem; } .pt-7 { padding-top: 7rem; } .pt-8 { padding-top: 8rem; } .pr-1 { padding-right: 1rem; } .pr-2 { padding-right: 2rem; } .pr-3 { padding-right: 3rem; } .pr-4 { padding-right: 4rem; } .pr-5 { padding-right: 5rem; } .pr-6 { padding-right: 6rem; } .pr-7 { padding-right: 7rem; } .pr-8 { padding-right: 8rem; } .pb-1 { padding-bottom: 1rem; } .pb-2 { padding-bottom: 2rem; } .pb-3 { padding-bottom: 3rem; } .pb-4 { padding-bottom: 4rem; } .pb-5 { padding-bottom: 5rem; } .pb-6 { padding-bottom: 6rem; } .pb-7 { padding-bottom: 7rem; } .pb-8 { padding-bottom: 8rem; } .pl-1 { padding-left: 1rem; } .pl-2 { padding-left: 2rem; } .pl-3 { padding-left: 3rem; } .pl-4 { padding-left: 4rem; } .pl-5 { padding-left: 5rem; } .pl-6 { padding-left: 6rem; } .pl-7 { padding-left: 7rem; } .pl-8 { padding-left: 8rem; } .ph-1 { padding-left: 1rem; padding-right: 1rem; } .ph-2 { padding-left: 2rem; padding-right: 2rem; } .ph-3 { padding-left: 3rem; padding-right: 3rem; } .ph-4 { padding-left: 4rem; padding-right: 4rem; } .ph-5 { padding-left: 5rem; padding-right: 5rem; } .ph-6 { padding-left: 6rem; padding-right: 6rem; } .ph-7 { padding-left: 7rem; padding-right: 7rem; } .ph-8 { padding-left: 8rem; padding-right: 8rem; } .pv-1 { padding-top: 1rem; padding-bottom: 1rem; } .pv-2 { padding-top: 2rem; padding-bottom: 2rem; } .pv-3 { padding-top: 3rem; padding-bottom: 3rem; } .pv-4 { padding-top: 4rem; padding-bottom: 4rem; } .pv-5 { padding-top: 5rem; padding-bottom: 5rem; } .pv-6 { padding-top: 6rem; padding-bottom: 6rem; } .pv-7 { padding-top: 7rem; padding-bottom: 7rem; } .pv-8 { padding-top: 8rem; padding-bottom: 8rem; } .pa-1 { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2 { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3 { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4 { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5 { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6 { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7 { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8 { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1 { top: 1rem; } .post-2 { top: 2rem; } .post-3 { top: 3rem; } .post-4 { top: 4rem; } .post-5 { top: 5rem; } .post-6 { top: 6rem; } .post-7 { top: 7rem; } .post-8 { top: 8rem; } .posr-1 { right: 1rem; } .posr-2 { right: 2rem; } .posr-3 { right: 3rem; } .posr-4 { right: 4rem; } .posr-5 { right: 5rem; } .posr-6 { right: 6rem; } .posr-7 { right: 7rem; } .posr-8 { right: 8rem; } .posb-1 { bottom: 1rem; } .posb-2 { bottom: 2rem; } .posb-3 { bottom: 3rem; } .posb-4 { bottom: 4rem; } .posb-5 { bottom: 5rem; } .posb-6 { bottom: 6rem; } .posb-7 { bottom: 7rem; } .posb-8 { bottom: 8rem; } .posl-1 { left: 1rem; } .posl-2 { left: 2rem; } .posl-3 { left: 3rem; } .posl-4 { left: 4rem; } .posl-5 { left: 5rem; } .posl-6 { left: 6rem; } .posl-7 { left: 7rem; } .posl-8 { left: 8rem; } .w-1 { width: 1rem; } .w-2 { width: 2rem; } .w-3 { width: 4rem; } .w-4 { width: 8rem; } .w-5 { width: 16rem; } .w-6 { width: 32rem; } .w-7 { width: 64rem; } .w-8 { width: 128rem; } .ws-1 { word-spacing: 1px; } .ws-2 { word-spacing: 2px; } .ws-3 { word-spacing: 3px; } .ws-4 { word-spacing: 4px; } .fill-primary { fill: red; } .fill-secondary { fill: blue; } .stroke-primary { stroke: red; } .stroke-secondary { stroke: blue; } .z-1 { z-index: 1; } .z-2 { z-index: 2; } .bg-primary-a:active { background: red; } .bg-secondary-a:active { background: blue; } .bc-primary-a:active { border-color: red; } .bc-secondary-a:active { border-color: blue; } .btc-primary-a:active { border-top-color: red; } .btc-secondary-a:active { border-top-color: blue; } .brc-primary-a:active { border-right-color: red; } .brc-secondary-a:active { border-right-color: blue; } .bbc-primary-a:active { border-bottom-color: red; } .bbc-secondary-a:active { border-bottom-color: blue; } .blc-primary-a:active { border-left-color: red; } .blc-secondary-a:active { border-left-color: blue; } .bra-small-a:active { border-radius: 1px; } .bra-medium-a:active { border-radius: 2px; } .bra-large-a:active { border-radius: 3px; } .btrr-small-a:active { border-top-right-radius: 1px; } .btrr-medium-a:active { border-top-right-radius: 2px; } .btrr-large-a:active { border-top-right-radius: 3px; } .bbrr-small-a:active { border-bottom-right-radius: 1px; } .bbrr-medium-a:active { border-bottom-right-radius: 2px; } .bbrr-large-a:active { border-bottom-right-radius: 3px; } .bblr-small-a:active { border-bottom-left-radius: 1px; } .bblr-medium-a:active { border-bottom-left-radius: 2px; } .bblr-large-a:active { border-bottom-left-radius: 3px; } .btlr-small-a:active { border-top-left-radius: 1px; } .btlr-medium-a:active { border-top-left-radius: 2px; } .btlr-large-a:active { border-top-left-radius: 3px; } .bw-small-a:active { border-width: 1px; } .bw-medium-a:active { border-width: 2px; } .bw-large-a:active { border-width: 3px; } .btw-small-a:active { border-top-width: 1px; } .btw-medium-a:active { border-top-width: 2px; } .btw-large-a:active { border-top-width: 3px; } .brw-small-a:active { border-right-width: 1px; } .brw-medium-a:active { border-right-width: 2px; } .brw-large-a:active { border-right-width: 3px; } .bbw-small-a:active { border-bottom-width: 1px; } .bbw-medium-a:active { border-bottom-width: 2px; } .bbw-large-a:active { border-bottom-width: 3px; } .blw-small-a:active { border-left-width: 1px; } .blw-medium-a:active { border-left-width: 2px; } .blw-large-a:active { border-left-width: 3px; } .fc-primary-a:active { color: red; } .fc-secondary-a:active { color: blue; } .ff-copy-a:active { font-family: Helvetica, sans-serif; } .ff-heading-a:active { font-family: Cursive; } .fs-small-a:active { font-size: 0.8rem; } .fs-medium-a:active { font-size: 1rem; } .fs-large-a:active { font-size: 1.5rem; } .fw-100-a:active { font-weight: 100; } .fw-200-a:active { font-weight: 200; } .fw-300-a:active { font-weight: 300; } .fw-400-a:active { font-weight: 400; } .fw-500-a:active { font-weight: 500; } .h-1-a:active { height: 1rem; } .h-2-a:active { height: 2rem; } .h-3-a:active { height: 4rem; } .h-4-a:active { height: 8rem; } .h-5-a:active { height: 16rem; } .h-6-a:active { height: 32rem; } .h-7-a:active { height: 64rem; } .h-8-a:active { height: 128rem; } .ls-1-a:active { letter-spacing: 1px; } .ls-2-a:active { letter-spacing: 2px; } .ls-3-a:active { letter-spacing: 3px; } .ls-4-a:active { letter-spacing: 4px; } .lh-1-a:active { line-height: 0.8em; } .lh-2-a:active { line-height: 1em; } .lh-3-a:active { line-height: 1.2em; } .lh-4-a:active { line-height: 1.5em; } .lh-5-a:active { line-height: 2em; } .mt-1-a:active { margin-top: 1rem; } .mt-2-a:active { margin-top: 2rem; } .mt-3-a:active { margin-top: 3rem; } .mt-4-a:active { margin-top: 4rem; } .mt-5-a:active { margin-top: 5rem; } .mt-6-a:active { margin-top: 6rem; } .mt-7-a:active { margin-top: 7rem; } .mt-8-a:active { margin-top: 8rem; } .mr-1-a:active { margin-right: 1rem; } .mr-2-a:active { margin-right: 2rem; } .mr-3-a:active { margin-right: 3rem; } .mr-4-a:active { margin-right: 4rem; } .mr-5-a:active { margin-right: 5rem; } .mr-6-a:active { margin-right: 6rem; } .mr-7-a:active { margin-right: 7rem; } .mr-8-a:active { margin-right: 8rem; } .mb-1-a:active { margin-bottom: 1rem; } .mb-2-a:active { margin-bottom: 2rem; } .mb-3-a:active { margin-bottom: 3rem; } .mb-4-a:active { margin-bottom: 4rem; } .mb-5-a:active { margin-bottom: 5rem; } .mb-6-a:active { margin-bottom: 6rem; } .mb-7-a:active { margin-bottom: 7rem; } .mb-8-a:active { margin-bottom: 8rem; } .ml-1-a:active { margin-left: 1rem; } .ml-2-a:active { margin-left: 2rem; } .ml-3-a:active { margin-left: 3rem; } .ml-4-a:active { margin-left: 4rem; } .ml-5-a:active { margin-left: 5rem; } .ml-6-a:active { margin-left: 6rem; } .ml-7-a:active { margin-left: 7rem; } .ml-8-a:active { margin-left: 8rem; } .mh-1-a:active { margin-left: 1rem; margin-right: 1rem; } .mh-2-a:active { margin-left: 2rem; margin-right: 2rem; } .mh-3-a:active { margin-left: 3rem; margin-right: 3rem; } .mh-4-a:active { margin-left: 4rem; margin-right: 4rem; } .mh-5-a:active { margin-left: 5rem; margin-right: 5rem; } .mh-6-a:active { margin-left: 6rem; margin-right: 6rem; } .mh-7-a:active { margin-left: 7rem; margin-right: 7rem; } .mh-8-a:active { margin-left: 8rem; margin-right: 8rem; } .mv-1-a:active { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-a:active { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-a:active { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-a:active { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-a:active { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-a:active { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-a:active { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-a:active { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-a:active { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-a:active { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-a:active { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-a:active { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-a:active { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-a:active { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-a:active { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-a:active { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-a:active { max-height: 1rem; } .maxh-2-a:active { max-height: 2rem; } .maxh-3-a:active { max-height: 3rem; } .maxh-4-a:active { max-height: 4rem; } .maxh-5-a:active { max-height: 5rem; } .maxh-6-a:active { max-height: 6rem; } .maxh-7-a:active { max-height: 7rem; } .maxh-8-a:active { max-height: 8rem; } .maxw-1-a:active { max-width: 1rem; } .maxw-2-a:active { max-width: 2rem; } .maxw-3-a:active { max-width: 3rem; } .maxw-4-a:active { max-width: 4rem; } .maxw-5-a:active { max-width: 5rem; } .maxw-6-a:active { max-width: 6rem; } .maxw-7-a:active { max-width: 7rem; } .maxw-8-a:active { max-width: 8rem; } .minh-1-a:active { min-height: 1rem; } .minh-2-a:active { min-height: 2rem; } .minh-3-a:active { min-height: 3rem; } .minh-4-a:active { min-height: 4rem; } .minh-5-a:active { min-height: 5rem; } .minh-6-a:active { min-height: 6rem; } .minh-7-a:active { min-height: 7rem; } .minh-8-a:active { min-height: 8rem; } .minw-1-a:active { min-width: 1rem; } .minw-2-a:active { min-width: 2rem; } .minw-3-a:active { min-width: 3rem; } .minw-4-a:active { min-width: 4rem; } .minw-5-a:active { min-width: 5rem; } .minw-6-a:active { min-width: 6rem; } .minw-7-a:active { min-width: 7rem; } .minw-8-a:active { min-width: 8rem; } .o-10-a:active { opacity: 0.1; } .o-20-a:active { opacity: 0.2; } .o-30-a:active { opacity: 0.3; } .o-40-a:active { opacity: 0.4; } .o-50-a:active { opacity: 0.5; } .o-60-a:active { opacity: 0.6; } .o-70-a:active { opacity: 0.7; } .o-80-a:active { opacity: 0.8; } .o-90-a:active { opacity: 0.9; } .o-100-a:active { opacity: 1; } .oo-small-a:active { outline-offset: 1px; } .oo-medium-a:active { outline-offset: 2px; } .oo-large-a:active { outline-offset: 3px; } .oc-primary-a:active { outline-color: red; } .oc-secondary-a:active { outline-color: blue; } .ow-small-a:active { outline-width: 1px; } .ow-medium-a:active { outline-width: 2px; } .ow-large-a:active { outline-width: 3px; } .pt-1-a:active { padding-top: 1rem; } .pt-2-a:active { padding-top: 2rem; } .pt-3-a:active { padding-top: 3rem; } .pt-4-a:active { padding-top: 4rem; } .pt-5-a:active { padding-top: 5rem; } .pt-6-a:active { padding-top: 6rem; } .pt-7-a:active { padding-top: 7rem; } .pt-8-a:active { padding-top: 8rem; } .pr-1-a:active { padding-right: 1rem; } .pr-2-a:active { padding-right: 2rem; } .pr-3-a:active { padding-right: 3rem; } .pr-4-a:active { padding-right: 4rem; } .pr-5-a:active { padding-right: 5rem; } .pr-6-a:active { padding-right: 6rem; } .pr-7-a:active { padding-right: 7rem; } .pr-8-a:active { padding-right: 8rem; } .pb-1-a:active { padding-bottom: 1rem; } .pb-2-a:active { padding-bottom: 2rem; } .pb-3-a:active { padding-bottom: 3rem; } .pb-4-a:active { padding-bottom: 4rem; } .pb-5-a:active { padding-bottom: 5rem; } .pb-6-a:active { padding-bottom: 6rem; } .pb-7-a:active { padding-bottom: 7rem; } .pb-8-a:active { padding-bottom: 8rem; } .pl-1-a:active { padding-left: 1rem; } .pl-2-a:active { padding-left: 2rem; } .pl-3-a:active { padding-left: 3rem; } .pl-4-a:active { padding-left: 4rem; } .pl-5-a:active { padding-left: 5rem; } .pl-6-a:active { padding-left: 6rem; } .pl-7-a:active { padding-left: 7rem; } .pl-8-a:active { padding-left: 8rem; } .ph-1-a:active { padding-left: 1rem; padding-right: 1rem; } .ph-2-a:active { padding-left: 2rem; padding-right: 2rem; } .ph-3-a:active { padding-left: 3rem; padding-right: 3rem; } .ph-4-a:active { padding-left: 4rem; padding-right: 4rem; } .ph-5-a:active { padding-left: 5rem; padding-right: 5rem; } .ph-6-a:active { padding-left: 6rem; padding-right: 6rem; } .ph-7-a:active { padding-left: 7rem; padding-right: 7rem; } .ph-8-a:active { padding-left: 8rem; padding-right: 8rem; } .pv-1-a:active { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-a:active { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-a:active { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-a:active { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-a:active { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-a:active { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-a:active { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-a:active { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-a:active { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-a:active { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-a:active { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-a:active { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-a:active { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-a:active { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-a:active { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-a:active { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-a:active { top: 1rem; } .post-2-a:active { top: 2rem; } .post-3-a:active { top: 3rem; } .post-4-a:active { top: 4rem; } .post-5-a:active { top: 5rem; } .post-6-a:active { top: 6rem; } .post-7-a:active { top: 7rem; } .post-8-a:active { top: 8rem; } .posr-1-a:active { right: 1rem; } .posr-2-a:active { right: 2rem; } .posr-3-a:active { right: 3rem; } .posr-4-a:active { right: 4rem; } .posr-5-a:active { right: 5rem; } .posr-6-a:active { right: 6rem; } .posr-7-a:active { right: 7rem; } .posr-8-a:active { right: 8rem; } .posb-1-a:active { bottom: 1rem; } .posb-2-a:active { bottom: 2rem; } .posb-3-a:active { bottom: 3rem; } .posb-4-a:active { bottom: 4rem; } .posb-5-a:active { bottom: 5rem; } .posb-6-a:active { bottom: 6rem; } .posb-7-a:active { bottom: 7rem; } .posb-8-a:active { bottom: 8rem; } .posl-1-a:active { left: 1rem; } .posl-2-a:active { left: 2rem; } .posl-3-a:active { left: 3rem; } .posl-4-a:active { left: 4rem; } .posl-5-a:active { left: 5rem; } .posl-6-a:active { left: 6rem; } .posl-7-a:active { left: 7rem; } .posl-8-a:active { left: 8rem; } .w-1-a:active { width: 1rem; } .w-2-a:active { width: 2rem; } .w-3-a:active { width: 4rem; } .w-4-a:active { width: 8rem; } .w-5-a:active { width: 16rem; } .w-6-a:active { width: 32rem; } .w-7-a:active { width: 64rem; } .w-8-a:active { width: 128rem; } .ws-1-a:active { word-spacing: 1px; } .ws-2-a:active { word-spacing: 2px; } .ws-3-a:active { word-spacing: 3px; } .ws-4-a:active { word-spacing: 4px; } .fill-primary-a:active { fill: red; } .fill-secondary-a:active { fill: blue; } .stroke-primary-a:active { stroke: red; } .stroke-secondary-a:active { stroke: blue; } .z-1-a:active { z-index: 1; } .z-2-a:active { z-index: 2; } @media screen and (max-width: 30em) { .bg-primary-ns { background: red; } .bg-secondary-ns { background: blue; } .bc-primary-ns { border-color: red; } .bc-secondary-ns { border-color: blue; } .btc-primary-ns { border-top-color: red; } .btc-secondary-ns { border-top-color: blue; } .brc-primary-ns { border-right-color: red; } .brc-secondary-ns { border-right-color: blue; } .bbc-primary-ns { border-bottom-color: red; } .bbc-secondary-ns { border-bottom-color: blue; } .blc-primary-ns { border-left-color: red; } .blc-secondary-ns { border-left-color: blue; } .bra-small-ns { border-radius: 1px; } .bra-medium-ns { border-radius: 2px; } .bra-large-ns { border-radius: 3px; } .btrr-small-ns { border-top-right-radius: 1px; } .btrr-medium-ns { border-top-right-radius: 2px; } .btrr-large-ns { border-top-right-radius: 3px; } .bbrr-small-ns { border-bottom-right-radius: 1px; } .bbrr-medium-ns { border-bottom-right-radius: 2px; } .bbrr-large-ns { border-bottom-right-radius: 3px; } .bblr-small-ns { border-bottom-left-radius: 1px; } .bblr-medium-ns { border-bottom-left-radius: 2px; } .bblr-large-ns { border-bottom-left-radius: 3px; } .btlr-small-ns { border-top-left-radius: 1px; } .btlr-medium-ns { border-top-left-radius: 2px; } .btlr-large-ns { border-top-left-radius: 3px; } .bw-small-ns { border-width: 1px; } .bw-medium-ns { border-width: 2px; } .bw-large-ns { border-width: 3px; } .btw-small-ns { border-top-width: 1px; } .btw-medium-ns { border-top-width: 2px; } .btw-large-ns { border-top-width: 3px; } .brw-small-ns { border-right-width: 1px; } .brw-medium-ns { border-right-width: 2px; } .brw-large-ns { border-right-width: 3px; } .bbw-small-ns { border-bottom-width: 1px; } .bbw-medium-ns { border-bottom-width: 2px; } .bbw-large-ns { border-bottom-width: 3px; } .blw-small-ns { border-left-width: 1px; } .blw-medium-ns { border-left-width: 2px; } .blw-large-ns { border-left-width: 3px; } .fc-primary-ns { color: red; } .fc-secondary-ns { color: blue; } .ff-copy-ns { font-family: Helvetica, sans-serif; } .ff-heading-ns { font-family: Cursive; } .fs-small-ns { font-size: 0.8rem; } .fs-medium-ns { font-size: 1rem; } .fs-large-ns { font-size: 1.5rem; } .fw-100-ns { font-weight: 100; } .fw-200-ns { font-weight: 200; } .fw-300-ns { font-weight: 300; } .fw-400-ns { font-weight: 400; } .fw-500-ns { font-weight: 500; } .h-1-ns { height: 1rem; } .h-2-ns { height: 2rem; } .h-3-ns { height: 4rem; } .h-4-ns { height: 8rem; } .h-5-ns { height: 16rem; } .h-6-ns { height: 32rem; } .h-7-ns { height: 64rem; } .h-8-ns { height: 128rem; } .ls-1-ns { letter-spacing: 1px; } .ls-2-ns { letter-spacing: 2px; } .ls-3-ns { letter-spacing: 3px; } .ls-4-ns { letter-spacing: 4px; } .lh-1-ns { line-height: 0.8em; } .lh-2-ns { line-height: 1em; } .lh-3-ns { line-height: 1.2em; } .lh-4-ns { line-height: 1.5em; } .lh-5-ns { line-height: 2em; } .mt-1-ns { margin-top: 1rem; } .mt-2-ns { margin-top: 2rem; } .mt-3-ns { margin-top: 3rem; } .mt-4-ns { margin-top: 4rem; } .mt-5-ns { margin-top: 5rem; } .mt-6-ns { margin-top: 6rem; } .mt-7-ns { margin-top: 7rem; } .mt-8-ns { margin-top: 8rem; } .mr-1-ns { margin-right: 1rem; } .mr-2-ns { margin-right: 2rem; } .mr-3-ns { margin-right: 3rem; } .mr-4-ns { margin-right: 4rem; } .mr-5-ns { margin-right: 5rem; } .mr-6-ns { margin-right: 6rem; } .mr-7-ns { margin-right: 7rem; } .mr-8-ns { margin-right: 8rem; } .mb-1-ns { margin-bottom: 1rem; } .mb-2-ns { margin-bottom: 2rem; } .mb-3-ns { margin-bottom: 3rem; } .mb-4-ns { margin-bottom: 4rem; } .mb-5-ns { margin-bottom: 5rem; } .mb-6-ns { margin-bottom: 6rem; } .mb-7-ns { margin-bottom: 7rem; } .mb-8-ns { margin-bottom: 8rem; } .ml-1-ns { margin-left: 1rem; } .ml-2-ns { margin-left: 2rem; } .ml-3-ns { margin-left: 3rem; } .ml-4-ns { margin-left: 4rem; } .ml-5-ns { margin-left: 5rem; } .ml-6-ns { margin-left: 6rem; } .ml-7-ns { margin-left: 7rem; } .ml-8-ns { margin-left: 8rem; } .mh-1-ns { margin-left: 1rem; margin-right: 1rem; } .mh-2-ns { margin-left: 2rem; margin-right: 2rem; } .mh-3-ns { margin-left: 3rem; margin-right: 3rem; } .mh-4-ns { margin-left: 4rem; margin-right: 4rem; } .mh-5-ns { margin-left: 5rem; margin-right: 5rem; } .mh-6-ns { margin-left: 6rem; margin-right: 6rem; } .mh-7-ns { margin-left: 7rem; margin-right: 7rem; } .mh-8-ns { margin-left: 8rem; margin-right: 8rem; } .mv-1-ns { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-ns { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-ns { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-ns { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-ns { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-ns { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-ns { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-ns { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-ns { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-ns { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-ns { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-ns { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-ns { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-ns { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-ns { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-ns { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-ns { max-height: 1rem; } .maxh-2-ns { max-height: 2rem; } .maxh-3-ns { max-height: 3rem; } .maxh-4-ns { max-height: 4rem; } .maxh-5-ns { max-height: 5rem; } .maxh-6-ns { max-height: 6rem; } .maxh-7-ns { max-height: 7rem; } .maxh-8-ns { max-height: 8rem; } .maxw-1-ns { max-width: 1rem; } .maxw-2-ns { max-width: 2rem; } .maxw-3-ns { max-width: 3rem; } .maxw-4-ns { max-width: 4rem; } .maxw-5-ns { max-width: 5rem; } .maxw-6-ns { max-width: 6rem; } .maxw-7-ns { max-width: 7rem; } .maxw-8-ns { max-width: 8rem; } .minh-1-ns { min-height: 1rem; } .minh-2-ns { min-height: 2rem; } .minh-3-ns { min-height: 3rem; } .minh-4-ns { min-height: 4rem; } .minh-5-ns { min-height: 5rem; } .minh-6-ns { min-height: 6rem; } .minh-7-ns { min-height: 7rem; } .minh-8-ns { min-height: 8rem; } .minw-1-ns { min-width: 1rem; } .minw-2-ns { min-width: 2rem; } .minw-3-ns { min-width: 3rem; } .minw-4-ns { min-width: 4rem; } .minw-5-ns { min-width: 5rem; } .minw-6-ns { min-width: 6rem; } .minw-7-ns { min-width: 7rem; } .minw-8-ns { min-width: 8rem; } .o-10-ns { opacity: 0.1; } .o-20-ns { opacity: 0.2; } .o-30-ns { opacity: 0.3; } .o-40-ns { opacity: 0.4; } .o-50-ns { opacity: 0.5; } .o-60-ns { opacity: 0.6; } .o-70-ns { opacity: 0.7; } .o-80-ns { opacity: 0.8; } .o-90-ns { opacity: 0.9; } .o-100-ns { opacity: 1; } .oo-small-ns { outline-offset: 1px; } .oo-medium-ns { outline-offset: 2px; } .oo-large-ns { outline-offset: 3px; } .oc-primary-ns { outline-color: red; } .oc-secondary-ns { outline-color: blue; } .ow-small-ns { outline-width: 1px; } .ow-medium-ns { outline-width: 2px; } .ow-large-ns { outline-width: 3px; } .pt-1-ns { padding-top: 1rem; } .pt-2-ns { padding-top: 2rem; } .pt-3-ns { padding-top: 3rem; } .pt-4-ns { padding-top: 4rem; } .pt-5-ns { padding-top: 5rem; } .pt-6-ns { padding-top: 6rem; } .pt-7-ns { padding-top: 7rem; } .pt-8-ns { padding-top: 8rem; } .pr-1-ns { padding-right: 1rem; } .pr-2-ns { padding-right: 2rem; } .pr-3-ns { padding-right: 3rem; } .pr-4-ns { padding-right: 4rem; } .pr-5-ns { padding-right: 5rem; } .pr-6-ns { padding-right: 6rem; } .pr-7-ns { padding-right: 7rem; } .pr-8-ns { padding-right: 8rem; } .pb-1-ns { padding-bottom: 1rem; } .pb-2-ns { padding-bottom: 2rem; } .pb-3-ns { padding-bottom: 3rem; } .pb-4-ns { padding-bottom: 4rem; } .pb-5-ns { padding-bottom: 5rem; } .pb-6-ns { padding-bottom: 6rem; } .pb-7-ns { padding-bottom: 7rem; } .pb-8-ns { padding-bottom: 8rem; } .pl-1-ns { padding-left: 1rem; } .pl-2-ns { padding-left: 2rem; } .pl-3-ns { padding-left: 3rem; } .pl-4-ns { padding-left: 4rem; } .pl-5-ns { padding-left: 5rem; } .pl-6-ns { padding-left: 6rem; } .pl-7-ns { padding-left: 7rem; } .pl-8-ns { padding-left: 8rem; } .ph-1-ns { padding-left: 1rem; padding-right: 1rem; } .ph-2-ns { padding-left: 2rem; padding-right: 2rem; } .ph-3-ns { padding-left: 3rem; padding-right: 3rem; } .ph-4-ns { padding-left: 4rem; padding-right: 4rem; } .ph-5-ns { padding-left: 5rem; padding-right: 5rem; } .ph-6-ns { padding-left: 6rem; padding-right: 6rem; } .ph-7-ns { padding-left: 7rem; padding-right: 7rem; } .ph-8-ns { padding-left: 8rem; padding-right: 8rem; } .pv-1-ns { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-ns { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-ns { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-ns { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-ns { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-ns { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-ns { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-ns { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-ns { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-ns { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-ns { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-ns { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-ns { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-ns { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-ns { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-ns { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-ns { top: 1rem; } .post-2-ns { top: 2rem; } .post-3-ns { top: 3rem; } .post-4-ns { top: 4rem; } .post-5-ns { top: 5rem; } .post-6-ns { top: 6rem; } .post-7-ns { top: 7rem; } .post-8-ns { top: 8rem; } .posr-1-ns { right: 1rem; } .posr-2-ns { right: 2rem; } .posr-3-ns { right: 3rem; } .posr-4-ns { right: 4rem; } .posr-5-ns { right: 5rem; } .posr-6-ns { right: 6rem; } .posr-7-ns { right: 7rem; } .posr-8-ns { right: 8rem; } .posb-1-ns { bottom: 1rem; } .posb-2-ns { bottom: 2rem; } .posb-3-ns { bottom: 3rem; } .posb-4-ns { bottom: 4rem; } .posb-5-ns { bottom: 5rem; } .posb-6-ns { bottom: 6rem; } .posb-7-ns { bottom: 7rem; } .posb-8-ns { bottom: 8rem; } .posl-1-ns { left: 1rem; } .posl-2-ns { left: 2rem; } .posl-3-ns { left: 3rem; } .posl-4-ns { left: 4rem; } .posl-5-ns { left: 5rem; } .posl-6-ns { left: 6rem; } .posl-7-ns { left: 7rem; } .posl-8-ns { left: 8rem; } .w-1-ns { width: 1rem; } .w-2-ns { width: 2rem; } .w-3-ns { width: 4rem; } .w-4-ns { width: 8rem; } .w-5-ns { width: 16rem; } .w-6-ns { width: 32rem; } .w-7-ns { width: 64rem; } .w-8-ns { width: 128rem; } .ws-1-ns { word-spacing: 1px; } .ws-2-ns { word-spacing: 2px; } .ws-3-ns { word-spacing: 3px; } .ws-4-ns { word-spacing: 4px; } .fill-primary-ns { fill: red; } .fill-secondary-ns { fill: blue; } .stroke-primary-ns { stroke: red; } .stroke-secondary-ns { stroke: blue; } .z-1-ns { z-index: 1; } .z-2-ns { z-index: 2; } } @media screen and (min-width: 30em) and (max-width: 60em) { .bg-primary-m { background: red; } .bg-secondary-m { background: blue; } .bc-primary-m { border-color: red; } .bc-secondary-m { border-color: blue; } .btc-primary-m { border-top-color: red; } .btc-secondary-m { border-top-color: blue; } .brc-primary-m { border-right-color: red; } .brc-secondary-m { border-right-color: blue; } .bbc-primary-m { border-bottom-color: red; } .bbc-secondary-m { border-bottom-color: blue; } .blc-primary-m { border-left-color: red; } .blc-secondary-m { border-left-color: blue; } .bra-small-m { border-radius: 1px; } .bra-medium-m { border-radius: 2px; } .bra-large-m { border-radius: 3px; } .btrr-small-m { border-top-right-radius: 1px; } .btrr-medium-m { border-top-right-radius: 2px; } .btrr-large-m { border-top-right-radius: 3px; } .bbrr-small-m { border-bottom-right-radius: 1px; } .bbrr-medium-m { border-bottom-right-radius: 2px; } .bbrr-large-m { border-bottom-right-radius: 3px; } .bblr-small-m { border-bottom-left-radius: 1px; } .bblr-medium-m { border-bottom-left-radius: 2px; } .bblr-large-m { border-bottom-left-radius: 3px; } .btlr-small-m { border-top-left-radius: 1px; } .btlr-medium-m { border-top-left-radius: 2px; } .btlr-large-m { border-top-left-radius: 3px; } .bw-small-m { border-width: 1px; } .bw-medium-m { border-width: 2px; } .bw-large-m { border-width: 3px; } .btw-small-m { border-top-width: 1px; } .btw-medium-m { border-top-width: 2px; } .btw-large-m { border-top-width: 3px; } .brw-small-m { border-right-width: 1px; } .brw-medium-m { border-right-width: 2px; } .brw-large-m { border-right-width: 3px; } .bbw-small-m { border-bottom-width: 1px; } .bbw-medium-m { border-bottom-width: 2px; } .bbw-large-m { border-bottom-width: 3px; } .blw-small-m { border-left-width: 1px; } .blw-medium-m { border-left-width: 2px; } .blw-large-m { border-left-width: 3px; } .fc-primary-m { color: red; } .fc-secondary-m { color: blue; } .ff-copy-m { font-family: Helvetica, sans-serif; } .ff-heading-m { font-family: Cursive; } .fs-small-m { font-size: 0.8rem; } .fs-medium-m { font-size: 1rem; } .fs-large-m { font-size: 1.5rem; } .fw-100-m { font-weight: 100; } .fw-200-m { font-weight: 200; } .fw-300-m { font-weight: 300; } .fw-400-m { font-weight: 400; } .fw-500-m { font-weight: 500; } .h-1-m { height: 1rem; } .h-2-m { height: 2rem; } .h-3-m { height: 4rem; } .h-4-m { height: 8rem; } .h-5-m { height: 16rem; } .h-6-m { height: 32rem; } .h-7-m { height: 64rem; } .h-8-m { height: 128rem; } .ls-1-m { letter-spacing: 1px; } .ls-2-m { letter-spacing: 2px; } .ls-3-m { letter-spacing: 3px; } .ls-4-m { letter-spacing: 4px; } .lh-1-m { line-height: 0.8em; } .lh-2-m { line-height: 1em; } .lh-3-m { line-height: 1.2em; } .lh-4-m { line-height: 1.5em; } .lh-5-m { line-height: 2em; } .mt-1-m { margin-top: 1rem; } .mt-2-m { margin-top: 2rem; } .mt-3-m { margin-top: 3rem; } .mt-4-m { margin-top: 4rem; } .mt-5-m { margin-top: 5rem; } .mt-6-m { margin-top: 6rem; } .mt-7-m { margin-top: 7rem; } .mt-8-m { margin-top: 8rem; } .mr-1-m { margin-right: 1rem; } .mr-2-m { margin-right: 2rem; } .mr-3-m { margin-right: 3rem; } .mr-4-m { margin-right: 4rem; } .mr-5-m { margin-right: 5rem; } .mr-6-m { margin-right: 6rem; } .mr-7-m { margin-right: 7rem; } .mr-8-m { margin-right: 8rem; } .mb-1-m { margin-bottom: 1rem; } .mb-2-m { margin-bottom: 2rem; } .mb-3-m { margin-bottom: 3rem; } .mb-4-m { margin-bottom: 4rem; } .mb-5-m { margin-bottom: 5rem; } .mb-6-m { margin-bottom: 6rem; } .mb-7-m { margin-bottom: 7rem; } .mb-8-m { margin-bottom: 8rem; } .ml-1-m { margin-left: 1rem; } .ml-2-m { margin-left: 2rem; } .ml-3-m { margin-left: 3rem; } .ml-4-m { margin-left: 4rem; } .ml-5-m { margin-left: 5rem; } .ml-6-m { margin-left: 6rem; } .ml-7-m { margin-left: 7rem; } .ml-8-m { margin-left: 8rem; } .mh-1-m { margin-left: 1rem; margin-right: 1rem; } .mh-2-m { margin-left: 2rem; margin-right: 2rem; } .mh-3-m { margin-left: 3rem; margin-right: 3rem; } .mh-4-m { margin-left: 4rem; margin-right: 4rem; } .mh-5-m { margin-left: 5rem; margin-right: 5rem; } .mh-6-m { margin-left: 6rem; margin-right: 6rem; } .mh-7-m { margin-left: 7rem; margin-right: 7rem; } .mh-8-m { margin-left: 8rem; margin-right: 8rem; } .mv-1-m { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-m { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-m { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-m { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-m { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-m { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-m { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-m { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-m { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-m { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-m { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-m { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-m { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-m { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-m { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-m { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-m { max-height: 1rem; } .maxh-2-m { max-height: 2rem; } .maxh-3-m { max-height: 3rem; } .maxh-4-m { max-height: 4rem; } .maxh-5-m { max-height: 5rem; } .maxh-6-m { max-height: 6rem; } .maxh-7-m { max-height: 7rem; } .maxh-8-m { max-height: 8rem; } .maxw-1-m { max-width: 1rem; } .maxw-2-m { max-width: 2rem; } .maxw-3-m { max-width: 3rem; } .maxw-4-m { max-width: 4rem; } .maxw-5-m { max-width: 5rem; } .maxw-6-m { max-width: 6rem; } .maxw-7-m { max-width: 7rem; } .maxw-8-m { max-width: 8rem; } .minh-1-m { min-height: 1rem; } .minh-2-m { min-height: 2rem; } .minh-3-m { min-height: 3rem; } .minh-4-m { min-height: 4rem; } .minh-5-m { min-height: 5rem; } .minh-6-m { min-height: 6rem; } .minh-7-m { min-height: 7rem; } .minh-8-m { min-height: 8rem; } .minw-1-m { min-width: 1rem; } .minw-2-m { min-width: 2rem; } .minw-3-m { min-width: 3rem; } .minw-4-m { min-width: 4rem; } .minw-5-m { min-width: 5rem; } .minw-6-m { min-width: 6rem; } .minw-7-m { min-width: 7rem; } .minw-8-m { min-width: 8rem; } .o-10-m { opacity: 0.1; } .o-20-m { opacity: 0.2; } .o-30-m { opacity: 0.3; } .o-40-m { opacity: 0.4; } .o-50-m { opacity: 0.5; } .o-60-m { opacity: 0.6; } .o-70-m { opacity: 0.7; } .o-80-m { opacity: 0.8; } .o-90-m { opacity: 0.9; } .o-100-m { opacity: 1; } .oo-small-m { outline-offset: 1px; } .oo-medium-m { outline-offset: 2px; } .oo-large-m { outline-offset: 3px; } .oc-primary-m { outline-color: red; } .oc-secondary-m { outline-color: blue; } .ow-small-m { outline-width: 1px; } .ow-medium-m { outline-width: 2px; } .ow-large-m { outline-width: 3px; } .pt-1-m { padding-top: 1rem; } .pt-2-m { padding-top: 2rem; } .pt-3-m { padding-top: 3rem; } .pt-4-m { padding-top: 4rem; } .pt-5-m { padding-top: 5rem; } .pt-6-m { padding-top: 6rem; } .pt-7-m { padding-top: 7rem; } .pt-8-m { padding-top: 8rem; } .pr-1-m { padding-right: 1rem; } .pr-2-m { padding-right: 2rem; } .pr-3-m { padding-right: 3rem; } .pr-4-m { padding-right: 4rem; } .pr-5-m { padding-right: 5rem; } .pr-6-m { padding-right: 6rem; } .pr-7-m { padding-right: 7rem; } .pr-8-m { padding-right: 8rem; } .pb-1-m { padding-bottom: 1rem; } .pb-2-m { padding-bottom: 2rem; } .pb-3-m { padding-bottom: 3rem; } .pb-4-m { padding-bottom: 4rem; } .pb-5-m { padding-bottom: 5rem; } .pb-6-m { padding-bottom: 6rem; } .pb-7-m { padding-bottom: 7rem; } .pb-8-m { padding-bottom: 8rem; } .pl-1-m { padding-left: 1rem; } .pl-2-m { padding-left: 2rem; } .pl-3-m { padding-left: 3rem; } .pl-4-m { padding-left: 4rem; } .pl-5-m { padding-left: 5rem; } .pl-6-m { padding-left: 6rem; } .pl-7-m { padding-left: 7rem; } .pl-8-m { padding-left: 8rem; } .ph-1-m { padding-left: 1rem; padding-right: 1rem; } .ph-2-m { padding-left: 2rem; padding-right: 2rem; } .ph-3-m { padding-left: 3rem; padding-right: 3rem; } .ph-4-m { padding-left: 4rem; padding-right: 4rem; } .ph-5-m { padding-left: 5rem; padding-right: 5rem; } .ph-6-m { padding-left: 6rem; padding-right: 6rem; } .ph-7-m { padding-left: 7rem; padding-right: 7rem; } .ph-8-m { padding-left: 8rem; padding-right: 8rem; } .pv-1-m { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-m { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-m { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-m { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-m { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-m { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-m { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-m { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-m { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-m { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-m { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-m { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-m { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-m { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-m { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-m { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-m { top: 1rem; } .post-2-m { top: 2rem; } .post-3-m { top: 3rem; } .post-4-m { top: 4rem; } .post-5-m { top: 5rem; } .post-6-m { top: 6rem; } .post-7-m { top: 7rem; } .post-8-m { top: 8rem; } .posr-1-m { right: 1rem; } .posr-2-m { right: 2rem; } .posr-3-m { right: 3rem; } .posr-4-m { right: 4rem; } .posr-5-m { right: 5rem; } .posr-6-m { right: 6rem; } .posr-7-m { right: 7rem; } .posr-8-m { right: 8rem; } .posb-1-m { bottom: 1rem; } .posb-2-m { bottom: 2rem; } .posb-3-m { bottom: 3rem; } .posb-4-m { bottom: 4rem; } .posb-5-m { bottom: 5rem; } .posb-6-m { bottom: 6rem; } .posb-7-m { bottom: 7rem; } .posb-8-m { bottom: 8rem; } .posl-1-m { left: 1rem; } .posl-2-m { left: 2rem; } .posl-3-m { left: 3rem; } .posl-4-m { left: 4rem; } .posl-5-m { left: 5rem; } .posl-6-m { left: 6rem; } .posl-7-m { left: 7rem; } .posl-8-m { left: 8rem; } .w-1-m { width: 1rem; } .w-2-m { width: 2rem; } .w-3-m { width: 4rem; } .w-4-m { width: 8rem; } .w-5-m { width: 16rem; } .w-6-m { width: 32rem; } .w-7-m { width: 64rem; } .w-8-m { width: 128rem; } .ws-1-m { word-spacing: 1px; } .ws-2-m { word-spacing: 2px; } .ws-3-m { word-spacing: 3px; } .ws-4-m { word-spacing: 4px; } .fill-primary-m { fill: red; } .fill-secondary-m { fill: blue; } .stroke-primary-m { stroke: red; } .stroke-secondary-m { stroke: blue; } .z-1-m { z-index: 1; } .z-2-m { z-index: 2; } } @media screen and (min-width: 60em) { .bg-primary-l { background: red; } .bg-secondary-l { background: blue; } .bc-primary-l { border-color: red; } .bc-secondary-l { border-color: blue; } .btc-primary-l { border-top-color: red; } .btc-secondary-l { border-top-color: blue; } .brc-primary-l { border-right-color: red; } .brc-secondary-l { border-right-color: blue; } .bbc-primary-l { border-bottom-color: red; } .bbc-secondary-l { border-bottom-color: blue; } .blc-primary-l { border-left-color: red; } .blc-secondary-l { border-left-color: blue; } .bra-small-l { border-radius: 1px; } .bra-medium-l { border-radius: 2px; } .bra-large-l { border-radius: 3px; } .btrr-small-l { border-top-right-radius: 1px; } .btrr-medium-l { border-top-right-radius: 2px; } .btrr-large-l { border-top-right-radius: 3px; } .bbrr-small-l { border-bottom-right-radius: 1px; } .bbrr-medium-l { border-bottom-right-radius: 2px; } .bbrr-large-l { border-bottom-right-radius: 3px; } .bblr-small-l { border-bottom-left-radius: 1px; } .bblr-medium-l { border-bottom-left-radius: 2px; } .bblr-large-l { border-bottom-left-radius: 3px; } .btlr-small-l { border-top-left-radius: 1px; } .btlr-medium-l { border-top-left-radius: 2px; } .btlr-large-l { border-top-left-radius: 3px; } .bw-small-l { border-width: 1px; } .bw-medium-l { border-width: 2px; } .bw-large-l { border-width: 3px; } .btw-small-l { border-top-width: 1px; } .btw-medium-l { border-top-width: 2px; } .btw-large-l { border-top-width: 3px; } .brw-small-l { border-right-width: 1px; } .brw-medium-l { border-right-width: 2px; } .brw-large-l { border-right-width: 3px; } .bbw-small-l { border-bottom-width: 1px; } .bbw-medium-l { border-bottom-width: 2px; } .bbw-large-l { border-bottom-width: 3px; } .blw-small-l { border-left-width: 1px; } .blw-medium-l { border-left-width: 2px; } .blw-large-l { border-left-width: 3px; } .fc-primary-l { color: red; } .fc-secondary-l { color: blue; } .ff-copy-l { font-family: Helvetica, sans-serif; } .ff-heading-l { font-family: Cursive; } .fs-small-l { font-size: 0.8rem; } .fs-medium-l { font-size: 1rem; } .fs-large-l { font-size: 1.5rem; } .fw-100-l { font-weight: 100; } .fw-200-l { font-weight: 200; } .fw-300-l { font-weight: 300; } .fw-400-l { font-weight: 400; } .fw-500-l { font-weight: 500; } .h-1-l { height: 1rem; } .h-2-l { height: 2rem; } .h-3-l { height: 4rem; } .h-4-l { height: 8rem; } .h-5-l { height: 16rem; } .h-6-l { height: 32rem; } .h-7-l { height: 64rem; } .h-8-l { height: 128rem; } .ls-1-l { letter-spacing: 1px; } .ls-2-l { letter-spacing: 2px; } .ls-3-l { letter-spacing: 3px; } .ls-4-l { letter-spacing: 4px; } .lh-1-l { line-height: 0.8em; } .lh-2-l { line-height: 1em; } .lh-3-l { line-height: 1.2em; } .lh-4-l { line-height: 1.5em; } .lh-5-l { line-height: 2em; } .mt-1-l { margin-top: 1rem; } .mt-2-l { margin-top: 2rem; } .mt-3-l { margin-top: 3rem; } .mt-4-l { margin-top: 4rem; } .mt-5-l { margin-top: 5rem; } .mt-6-l { margin-top: 6rem; } .mt-7-l { margin-top: 7rem; } .mt-8-l { margin-top: 8rem; } .mr-1-l { margin-right: 1rem; } .mr-2-l { margin-right: 2rem; } .mr-3-l { margin-right: 3rem; } .mr-4-l { margin-right: 4rem; } .mr-5-l { margin-right: 5rem; } .mr-6-l { margin-right: 6rem; } .mr-7-l { margin-right: 7rem; } .mr-8-l { margin-right: 8rem; } .mb-1-l { margin-bottom: 1rem; } .mb-2-l { margin-bottom: 2rem; } .mb-3-l { margin-bottom: 3rem; } .mb-4-l { margin-bottom: 4rem; } .mb-5-l { margin-bottom: 5rem; } .mb-6-l { margin-bottom: 6rem; } .mb-7-l { margin-bottom: 7rem; } .mb-8-l { margin-bottom: 8rem; } .ml-1-l { margin-left: 1rem; } .ml-2-l { margin-left: 2rem; } .ml-3-l { margin-left: 3rem; } .ml-4-l { margin-left: 4rem; } .ml-5-l { margin-left: 5rem; } .ml-6-l { margin-left: 6rem; } .ml-7-l { margin-left: 7rem; } .ml-8-l { margin-left: 8rem; } .mh-1-l { margin-left: 1rem; margin-right: 1rem; } .mh-2-l { margin-left: 2rem; margin-right: 2rem; } .mh-3-l { margin-left: 3rem; margin-right: 3rem; } .mh-4-l { margin-left: 4rem; margin-right: 4rem; } .mh-5-l { margin-left: 5rem; margin-right: 5rem; } .mh-6-l { margin-left: 6rem; margin-right: 6rem; } .mh-7-l { margin-left: 7rem; margin-right: 7rem; } .mh-8-l { margin-left: 8rem; margin-right: 8rem; } .mv-1-l { margin-top: 1rem; margin-bottom: 1rem; } .mv-2-l { margin-top: 2rem; margin-bottom: 2rem; } .mv-3-l { margin-top: 3rem; margin-bottom: 3rem; } .mv-4-l { margin-top: 4rem; margin-bottom: 4rem; } .mv-5-l { margin-top: 5rem; margin-bottom: 5rem; } .mv-6-l { margin-top: 6rem; margin-bottom: 6rem; } .mv-7-l { margin-top: 7rem; margin-bottom: 7rem; } .mv-8-l { margin-top: 8rem; margin-bottom: 8rem; } .ma-1-l { margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .ma-2-l { margin-left: 2rem; margin-right: 2rem; margin-top: 2rem; margin-bottom: 2rem; } .ma-3-l { margin-left: 3rem; margin-right: 3rem; margin-top: 3rem; margin-bottom: 3rem; } .ma-4-l { margin-left: 4rem; margin-right: 4rem; margin-top: 4rem; margin-bottom: 4rem; } .ma-5-l { margin-left: 5rem; margin-right: 5rem; margin-top: 5rem; margin-bottom: 5rem; } .ma-6-l { margin-left: 6rem; margin-right: 6rem; margin-top: 6rem; margin-bottom: 6rem; } .ma-7-l { margin-left: 7rem; margin-right: 7rem; margin-top: 7rem; margin-bottom: 7rem; } .ma-8-l { margin-left: 8rem; margin-right: 8rem; margin-top: 8rem; margin-bottom: 8rem; } .maxh-1-l { max-height: 1rem; } .maxh-2-l { max-height: 2rem; } .maxh-3-l { max-height: 3rem; } .maxh-4-l { max-height: 4rem; } .maxh-5-l { max-height: 5rem; } .maxh-6-l { max-height: 6rem; } .maxh-7-l { max-height: 7rem; } .maxh-8-l { max-height: 8rem; } .maxw-1-l { max-width: 1rem; } .maxw-2-l { max-width: 2rem; } .maxw-3-l { max-width: 3rem; } .maxw-4-l { max-width: 4rem; } .maxw-5-l { max-width: 5rem; } .maxw-6-l { max-width: 6rem; } .maxw-7-l { max-width: 7rem; } .maxw-8-l { max-width: 8rem; } .minh-1-l { min-height: 1rem; } .minh-2-l { min-height: 2rem; } .minh-3-l { min-height: 3rem; } .minh-4-l { min-height: 4rem; } .minh-5-l { min-height: 5rem; } .minh-6-l { min-height: 6rem; } .minh-7-l { min-height: 7rem; } .minh-8-l { min-height: 8rem; } .minw-1-l { min-width: 1rem; } .minw-2-l { min-width: 2rem; } .minw-3-l { min-width: 3rem; } .minw-4-l { min-width: 4rem; } .minw-5-l { min-width: 5rem; } .minw-6-l { min-width: 6rem; } .minw-7-l { min-width: 7rem; } .minw-8-l { min-width: 8rem; } .o-10-l { opacity: 0.1; } .o-20-l { opacity: 0.2; } .o-30-l { opacity: 0.3; } .o-40-l { opacity: 0.4; } .o-50-l { opacity: 0.5; } .o-60-l { opacity: 0.6; } .o-70-l { opacity: 0.7; } .o-80-l { opacity: 0.8; } .o-90-l { opacity: 0.9; } .o-100-l { opacity: 1; } .oo-small-l { outline-offset: 1px; } .oo-medium-l { outline-offset: 2px; } .oo-large-l { outline-offset: 3px; } .oc-primary-l { outline-color: red; } .oc-secondary-l { outline-color: blue; } .ow-small-l { outline-width: 1px; } .ow-medium-l { outline-width: 2px; } .ow-large-l { outline-width: 3px; } .pt-1-l { padding-top: 1rem; } .pt-2-l { padding-top: 2rem; } .pt-3-l { padding-top: 3rem; } .pt-4-l { padding-top: 4rem; } .pt-5-l { padding-top: 5rem; } .pt-6-l { padding-top: 6rem; } .pt-7-l { padding-top: 7rem; } .pt-8-l { padding-top: 8rem; } .pr-1-l { padding-right: 1rem; } .pr-2-l { padding-right: 2rem; } .pr-3-l { padding-right: 3rem; } .pr-4-l { padding-right: 4rem; } .pr-5-l { padding-right: 5rem; } .pr-6-l { padding-right: 6rem; } .pr-7-l { padding-right: 7rem; } .pr-8-l { padding-right: 8rem; } .pb-1-l { padding-bottom: 1rem; } .pb-2-l { padding-bottom: 2rem; } .pb-3-l { padding-bottom: 3rem; } .pb-4-l { padding-bottom: 4rem; } .pb-5-l { padding-bottom: 5rem; } .pb-6-l { padding-bottom: 6rem; } .pb-7-l { padding-bottom: 7rem; } .pb-8-l { padding-bottom: 8rem; } .pl-1-l { padding-left: 1rem; } .pl-2-l { padding-left: 2rem; } .pl-3-l { padding-left: 3rem; } .pl-4-l { padding-left: 4rem; } .pl-5-l { padding-left: 5rem; } .pl-6-l { padding-left: 6rem; } .pl-7-l { padding-left: 7rem; } .pl-8-l { padding-left: 8rem; } .ph-1-l { padding-left: 1rem; padding-right: 1rem; } .ph-2-l { padding-left: 2rem; padding-right: 2rem; } .ph-3-l { padding-left: 3rem; padding-right: 3rem; } .ph-4-l { padding-left: 4rem; padding-right: 4rem; } .ph-5-l { padding-left: 5rem; padding-right: 5rem; } .ph-6-l { padding-left: 6rem; padding-right: 6rem; } .ph-7-l { padding-left: 7rem; padding-right: 7rem; } .ph-8-l { padding-left: 8rem; padding-right: 8rem; } .pv-1-l { padding-top: 1rem; padding-bottom: 1rem; } .pv-2-l { padding-top: 2rem; padding-bottom: 2rem; } .pv-3-l { padding-top: 3rem; padding-bottom: 3rem; } .pv-4-l { padding-top: 4rem; padding-bottom: 4rem; } .pv-5-l { padding-top: 5rem; padding-bottom: 5rem; } .pv-6-l { padding-top: 6rem; padding-bottom: 6rem; } .pv-7-l { padding-top: 7rem; padding-bottom: 7rem; } .pv-8-l { padding-top: 8rem; padding-bottom: 8rem; } .pa-1-l { padding-left: 1rem; padding-right: 1rem; padding-top: 1rem; padding-bottom: 1rem; } .pa-2-l { padding-left: 2rem; padding-right: 2rem; padding-top: 2rem; padding-bottom: 2rem; } .pa-3-l { padding-left: 3rem; padding-right: 3rem; padding-top: 3rem; padding-bottom: 3rem; } .pa-4-l { padding-left: 4rem; padding-right: 4rem; padding-top: 4rem; padding-bottom: 4rem; } .pa-5-l { padding-left: 5rem; padding-right: 5rem; padding-top: 5rem; padding-bottom: 5rem; } .pa-6-l { padding-left: 6rem; padding-right: 6rem; padding-top: 6rem; padding-bottom: 6rem; } .pa-7-l { padding-left: 7rem; padding-right: 7rem; padding-top: 7rem; padding-bottom: 7rem; } .pa-8-l { padding-left: 8rem; padding-right: 8rem; padding-top: 8rem; padding-bottom: 8rem; } .post-1-l { top: 1rem; } .post-2-l { top: 2rem; } .post-3-l { top: 3rem; } .post-4-l { top: 4rem; } .post-5-l { top: 5rem; } .post-6-l { top: 6rem; } .post-7-l { top: 7rem; } .post-8-l { top: 8rem; } .posr-1-l { right: 1rem; } .posr-2-l { right: 2rem; } .posr-3-l { right: 3rem; } .posr-4-l { right: 4rem; } .posr-5-l { right: 5rem; } .posr-6-l { right: 6rem; } .posr-7-l { right: 7rem; } .posr-8-l { right: 8rem; } .posb-1-l { bottom: 1rem; } .posb-2-l { bottom: 2rem; } .posb-3-l { bottom: 3rem; } .posb-4-l { bottom: 4rem; } .posb-5-l { bottom: 5rem; } .posb-6-l { bottom: 6rem; } .posb-7-l { bottom: 7rem; } .posb-8-l { bottom: 8rem; } .posl-1-l { left: 1rem; } .posl-2-l { left: 2rem; } .posl-3-l { left: 3rem; } .posl-4-l { left: 4rem; } .posl-5-l { left: 5rem; } .posl-6-l { left: 6rem; } .posl-7-l { left: 7rem; } .posl-8-l { left: 8rem; } .w-1-l { width: 1rem; } .w-2-l { width: 2rem; } .w-3-l { width: 4rem; } .w-4-l { width: 8rem; } .w-5-l { width: 16rem; } .w-6-l { width: 32rem; } .w-7-l { width: 64rem; } .w-8-l { width: 128rem; } .ws-1-l { word-spacing: 1px; } .ws-2-l { word-spacing: 2px; } .ws-3-l { word-spacing: 3px; } .ws-4-l { word-spacing: 4px; } .fill-primary-l { fill: red; } .fill-secondary-l { fill: blue; } .stroke-primary-l { stroke: red; } .stroke-secondary-l { stroke: blue; } .z-1-l { z-index: 1; } .z-2-l { z-index: 2; } }
0.795142
0.200264
* { margin: 0; padding: 0; box-sizing: border-box; } .font_family_google_fira, .font_family_google_fira * { font-family: 'Fira Sans', sans-serif; } .box { display: flex; flex-wrap: wrap; max-width: 1000px; justify-content: center; } header { display: flex; flex-wrap: wrap; background-color: #fff; } .top { display: flex; justify-content: center; margin-top: 20px; width: 100%; height: 120px; background-color: #fff; z-index: 19; } .topBox { display: flex; max-width: 1000px; width: 100%; justify-content: space-between; align-items: center; padding: 10px; box-sizing: border-box; } #mobileNav { display: none; background: url(../img/mobile-nav.png) no-repeat center center; border: none; background-size: 37px 31px; width: 37px; height: 31px; } .navNegative { display: flex; flex-direction: column; justify-content: center; text-align: center; width: 100%; min-height: 120px; padding-left: 0; margin: -1px 0 0; background: #000; margin-top: -120px; transition: margin-top 0.5s; z-index: -99; } .navNegative li { display: block; list-style: none; height: 60px; } .navNegative li a { font-size: 1.2em; text-decoration: none; color: #000; transition: color 0.2s; display: block; padding: 15px 26px 15px 16px; } .topNav a { color: #3a3f4b; text-decoration: none; padding: 10px; } .logo { display: flex; justify-content: left; align-items: center; height: 120px; padding: 10px 10px 0 10px; } .logo img { max-height: 80px; max-width: 350px; } #telephone { padding: 0; } #telephone a { color: #3a3f4b; text-decoration: none;} #telephone a img { width: 36px; height: 36px; padding: 5px; vertical-align: middle; animation: 1s linear; transform-origin: center center; background: black; border-radius: 50px;} #telephone:hover a>img { animation-name: tel; } @keyframes tel { 20% { transform: rotate3d(0, 0, 1, 15deg); } 40% { transform: rotate3d(0, 0, 1, -10deg); } 60% { transform: rotate3d(0, 0, 1, 5deg); } 80% { transform: rotate3d(0, 0, 1, -5deg); } 100% { transform: rotate3d(0, 0, 1, 0deg); } } #telephone span { color: #3a3f4b; padding-left: 20px; font-size: 32px; vertical-align: middle; } #telephone span span { display: block; position: absolute; margin: 5px 0 0 0; padding: 0 7px 0 0; font-size: 14px; color: #b3b3b3; } #telephone span span img {background: none;} nav { height: 80px; display: flex; justify-content: center; text-align: center; background-color: #131418; flex-wrap: nowrap; box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.7); z-index: 19; } main { display: flex; justify-content: center; padding: 10px; padding-top: 30px; min-height: 100vh; text-align: center; background-color: white; box-shadow: inset 0px -20px 30px -10px rgba(0, 0, 0, 0.9); } /* footer { display: block; width: 100%; position: absolute; left: 0; bottom: 0; text-align: center; background-color: grey; } */ section { padding-top: 30px; } input { margin: 10px 0; padding: 10px; } button:active, button:focus { outline: none; } button::-moz-focus-inner { border: 0; } input[type="text"], input[type="tel"] { width: 100%; border: 0; border-bottom: 2px solid #ccc; font-size: 24px; box-sizing: border-box; } input[type="submit"] { cursor: pointer; } header ul { list-style: none; flex-wrap: nowrap !important; } .horizontal { width: 100%; align-items: center; overflow-y: hidden; overflow-x: auto; transform: translateY(0); transition: transform 0.9s; } .stick { position: fixed; top: -81px; transform: translateY(80px); transition: transform 0.9s; background-color: rgba(0, 0, 0, 0.85); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); } .off {transform: translateY(0px); transition: transform 0.9s;} .marginTop { margin-top: 80px; } .horizontalNav li a.active { color: #eeefae; box-shadow: 0px 4px 0px 0px #eeefae; } nav::-webkit-scrollbar { width: 0px; height: 0px; } .horizontalNav { display: flex; position: relative; font-weight: 500; font-size: 12px; align-items: center; flex-direction: row; } .horizontalNav li { color: #fff; padding: 0 15px; font-size: 1.1em; text-transform: uppercase; } .horizontalNav li a { color: #fff; text-decoration: none; } li.svg { display: inline-block; height: 50px; background-position: 50% 5px; background-repeat: no-repeat; background-size: 30px 30px; } li.svg:hover { animation: menu ease forwards 0.2s; } @keyframes menu { 0% { background-position: 50% 5px; } 100% { background-position: 50% 0px; } } #svgMenu1 { background-image: url(../img/menu1.svg); } #svgMenu2 { background-image: url(../img/menu2.svg); } #svgMenu3 { background-image: url(../img/menu3.svg); } #svgMenu4 { background-image: url(../img/menu4.svg); } #svgMenu5 { background-image: url(../img/menu5.svg); } #svgMenu6 { background-image: url(../img/menu6.svg); } #svgMenu7 { background-image: url(../img/menu7.svg); } #svgMenu8 { background-image: url(../img/menu8.svg); } #svgMenu9 { background-image: url(../img/menu9.svg); } li.svg a { display: flex; align-items: flex-end; height: 100%; } #MenuSection section:last-child { min-height: 100vh; } ul.thumbs { display: flex; flex-wrap: wrap; justify-content: left; margin-right: -20px; padding: 0; } ul.thumbs .hidden { display: none !important; } ul.thumbs li { display: inline-flex; flex-wrap: wrap; align-content: space-between; width: 30%; margin: 0 10px 40px 10px; position: relative; text-align: left; line-height: 1.2em; background: #ffffff; border-radius: 15px; box-shadow: 0px 5px 30px #ccc; } ul.thumbs li .image img { vertical-align: bottom; border-radius: 15px; width: 100%; max-width: 400px;} ul.thumbs li .image .badge-wrapper { position: relative; } ul.thumbs li h5 { margin-top: 0.5em; margin-bottom: 0.4em; padding: 0 10px; width: 100%; font-size: 1.3em; line-height: 1.2em; text-transform: uppercase; } ul.thumbs li span.summary { display: block; margin: 0 10px 10px 10px; width: 100%; color: #000000 !important; font-size: 0.9em; } ul.thumbs li table.features { display: inline-block; width: 30%; color: #999; font-size: 0.9em; text-align: center; box-sizing: border-box; } ul.thumbs li table.features td { padding: 3px 0 0 0; color: #808080; font-weight: bold; border: none; } ul.thumbs li table.features td.name { display: none; } ul.thumbs li table.features td.value { min-width: 36px; } ul.thumbs li table.features td img { width: 24px; height: 24px; vertical-align: bottom; } ul.thumbs li table.features tbody { display: block; padding: 0 10px; } ul.thumbs li table.features tbody tr { display: inline-block; vertical-align: bottom; } ul.thumbs .offers { display: inline-block; width: 30%; margin: 5px 0 0 0; padding: 0 10px; text-align: center; box-sizing: border-box; } ul.thumbs .add-input { display: inline-block; width: 37%; min-width: 92px; text-align: center;} ul.thumbs .add-input button { cursor: pointer; margin-bottom: 10px; width: 30px; height: 30px; font-size: 20px; font-weight: 500; border: 2px solid; border-radius: 5px; background: #fff; } ul.thumbs .add { all: unset; -moz-appearance: textfield; font-size: 16px; width: 2em; text-align: center; } ul.thumbs .add::-webkit-inner-spin-button { display: none; } .contact, .interior { display: none; padding-top: 30px; padding-bottom: 10px; width: 100%; } .contact.active, .interior.active { display: block; } .contactList p { width: 100%; padding-top: 10px; text-align: left; } .contactList p:nth-of-type(1) { font-size: 18px; font-weight: 500; } .contactList a { display: block; text-align: left; text-decoration: none; padding-right: 20px; padding-top: 10px; color: #000; } .contactList img { padding-right: 10px; height: 16px; width: auto; vertical-align:middle; } .map { margin-top: 10px; width: 100%; box-sizing: border-box; overflow: hidden; } .map iframe { width: 100%; } #out { display: block; font-size: 24px; font-weight: 500; text-align: right; padding: 10px 50px; background: #eeefae; border-radius: 15px; } #out span { font-size: 14px; color: #555; } #list { margin: 10px 0; max-height: 155px; text-align: left; line-height: 1.5; overflow: auto; } .box-order input[type="submit"] { color: #fff; font-size: 18px; height: 50px; width: 100%; background: #000; border: 2px solid black; border-radius: 5px; } @media screen and (max-width: 760px) { nav { justify-content: left; text-align: center; } .topBox { justify-content: center; } .logo { height: 100px; align-items: flex-end; justify-content: center; } .logo img { max-height: 70px; } .topNav { display: none; } #telephone { position: absolute; top: 0px; right: 70px; } #telephone span { display: none; } #telephone a img { margin-top: 10px; width: 36px; height: 36px; } #mobileNav { display: block; position: absolute; top: 15px; right: 15px; } .navNegative.active { margin-top: 0; background: #3c4248; transition: margin-top 0.5s; z-index: 1;} .navNegative.active li { border-top: 1px solid #4b4f53; } .navNegative.active li:first-child { border-top: 0; } .navNegative.active li a { color: #ddd; transition: color 0.2s; } .map { max-width: 100%; } ul.thumbs { justify-content: center; margin: 0 !important; } ul.thumbs li { margin: 0 7px 40px; width: 95% !important; font-size: 1em; max-width: 400px; } ul.thumbs li h5 { font-size: 1.3em; } ul.thumbs li .image { height: auto; } ul.thumbs li .image img { width: 100%; max-height: 100%; max-width: 400px; } .box-slider { width: 100vw; overflow: hidden; } #interior .box-slider img { width: auto; height: 100vh; } } .js-open-modal { position: fixed; bottom: 10vh; left: 10vw; width: 50px; height: 50px; border-radius: 50%; background: black url(../img/basket.png) no-repeat center; background-size: 80%; box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.7); z-index: 100; } .on-cart { background: black url(../img/on-basket.png) no-repeat center; background-size: 80%; } #on-cart.hidden { display: flex; position: absolute; left: 20px; top: 0; align-items: center; justify-content: center; color: #fff; background: black; width: 20px; height: 20px; border-radius: 50%; opacity: 0; visibility: hidden; transition: .3s all; } #on-cart { opacity: 1; visibility: visible; display: flex; position: absolute; left: -5px; top: -70px; align-items: center; justify-content: center; color: #fff; background: black; width: 60px; height: 60px; border-radius: 50%; box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.7); transition: .3s all; } #on-order.hidden { display: none; } #on-order { position: fixed; bottom: 10vh; right: 10vw; width: 50px; height: 50px; border-radius: 50%; background: black url(../img/on-basket.png) no-repeat center; background-size: 80%; box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.7); z-index: 100; } .overlay { opacity: 0; visibility: hidden; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .5); z-index: 20; transition: .3s all; } .modal { opacity: 0; visibility: hidden; width: 100%; max-width: 500px; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 100; box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); box-sizing: border-box; text-align: center; padding: 30px; border-radius: 3px; background-color: #fff; transition: 0.3s all; } section h2, .contact h2, .interior h2 { padding-bottom: 10px; text-transform: uppercase; line-height: 1.2em; font-size: 2.6em; } .modal h2 { margin-bottom: 20px; } .modal.active, .overlay.active{ opacity: 1; visibility: visible; } .modal__cross { width: 15px; height: 15px; position: absolute; top: 20px; right: 20px; fill: #444; cursor: pointer; } .preloader { position: absolute; margin: auto; left: 0; top: 0; bottom: 0; right: 0; background: #000; } .preloader::after { content: ''; position: absolute; margin: auto; left: 0; top: 0; bottom: 0; right: 0; width: 80px; height: 80px; background: url(../img/loading1.svg) no-repeat, url(../img/loading2.svg) no-repeat, url(../img/loading3.svg) no-repeat, url(../img/loading4.svg) no-repeat; background-position: 50px 50px, 0px 50px, 0px 0px, 50px 0px; background-size: 30px, 30px, 30px, 30px; animation: spin ease infinite 4s; } @keyframes spin { 0%, 100% { background-position: 50px 50px, 0px 50px, 0px 0px, 50px 0px; } 25% { background-position: 0px 50px, 0px 0px, 50px 0px, 50px 50px; } 50% { background-position: 0px 0px, 50px 0px, 50px 50px, 0px 50px; } 75% { background-position: 50px 0px, 50px 50px, 0px 50px, 0px 0px; } } #statusOrder { background: #000; text-align: center; } #statusLogo { display: flex; justify-content: center; align-items: center; height: 220px; } #statusLogo .logo { justify-content: center; } #statusImg { height: 220px; text-align: center; } .check { background: url(../img/check.svg) 50% 50% no-repeat; } .cook { background: url(../img/cook.svg) 50% 50% no-repeat; } .cancel { background: url(../img/cancel.svg) 50% 50% no-repeat; } #messageOrder { display: inline-block; color: #ccc; font-size: 18px; text-align: left; } #messageOrder h2{ color: #ccc; padding-top: 10px; } .interiorSlider { position: relative; } #interior img { width: 100%; box-shadow: 0px 5px 30px #ccc; } .div-dot { display: flex; position: absolute; margin-top: -50px; padding: 0 5px; left: 0; right: 0; top: 70px; } .box-slider { position: relative; margin: auto; } #interior .dot { display: inline-block; cursor: pointer; width: 100%; height: 8px; margin: 0 2px; background: rgb(255 255 255 / 50%); transition: background-color 0.6s ease; } #interior .active { background-image: linear-gradient(#717171, #717171); background-repeat: no-repeat; background-size: 0% 100%; animation: show linear 4s; } @keyframes show { 0% { background-size: 0% 100%; } 100% { background-size: 100% 100%; } } #interior .fade { animation-name: fade; animation-duration: 1.5s; } @keyframes fade { from{opacity: .4} to{opacity: 1} }
css/style.css
* { margin: 0; padding: 0; box-sizing: border-box; } .font_family_google_fira, .font_family_google_fira * { font-family: 'Fira Sans', sans-serif; } .box { display: flex; flex-wrap: wrap; max-width: 1000px; justify-content: center; } header { display: flex; flex-wrap: wrap; background-color: #fff; } .top { display: flex; justify-content: center; margin-top: 20px; width: 100%; height: 120px; background-color: #fff; z-index: 19; } .topBox { display: flex; max-width: 1000px; width: 100%; justify-content: space-between; align-items: center; padding: 10px; box-sizing: border-box; } #mobileNav { display: none; background: url(../img/mobile-nav.png) no-repeat center center; border: none; background-size: 37px 31px; width: 37px; height: 31px; } .navNegative { display: flex; flex-direction: column; justify-content: center; text-align: center; width: 100%; min-height: 120px; padding-left: 0; margin: -1px 0 0; background: #000; margin-top: -120px; transition: margin-top 0.5s; z-index: -99; } .navNegative li { display: block; list-style: none; height: 60px; } .navNegative li a { font-size: 1.2em; text-decoration: none; color: #000; transition: color 0.2s; display: block; padding: 15px 26px 15px 16px; } .topNav a { color: #3a3f4b; text-decoration: none; padding: 10px; } .logo { display: flex; justify-content: left; align-items: center; height: 120px; padding: 10px 10px 0 10px; } .logo img { max-height: 80px; max-width: 350px; } #telephone { padding: 0; } #telephone a { color: #3a3f4b; text-decoration: none;} #telephone a img { width: 36px; height: 36px; padding: 5px; vertical-align: middle; animation: 1s linear; transform-origin: center center; background: black; border-radius: 50px;} #telephone:hover a>img { animation-name: tel; } @keyframes tel { 20% { transform: rotate3d(0, 0, 1, 15deg); } 40% { transform: rotate3d(0, 0, 1, -10deg); } 60% { transform: rotate3d(0, 0, 1, 5deg); } 80% { transform: rotate3d(0, 0, 1, -5deg); } 100% { transform: rotate3d(0, 0, 1, 0deg); } } #telephone span { color: #3a3f4b; padding-left: 20px; font-size: 32px; vertical-align: middle; } #telephone span span { display: block; position: absolute; margin: 5px 0 0 0; padding: 0 7px 0 0; font-size: 14px; color: #b3b3b3; } #telephone span span img {background: none;} nav { height: 80px; display: flex; justify-content: center; text-align: center; background-color: #131418; flex-wrap: nowrap; box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.7); z-index: 19; } main { display: flex; justify-content: center; padding: 10px; padding-top: 30px; min-height: 100vh; text-align: center; background-color: white; box-shadow: inset 0px -20px 30px -10px rgba(0, 0, 0, 0.9); } /* footer { display: block; width: 100%; position: absolute; left: 0; bottom: 0; text-align: center; background-color: grey; } */ section { padding-top: 30px; } input { margin: 10px 0; padding: 10px; } button:active, button:focus { outline: none; } button::-moz-focus-inner { border: 0; } input[type="text"], input[type="tel"] { width: 100%; border: 0; border-bottom: 2px solid #ccc; font-size: 24px; box-sizing: border-box; } input[type="submit"] { cursor: pointer; } header ul { list-style: none; flex-wrap: nowrap !important; } .horizontal { width: 100%; align-items: center; overflow-y: hidden; overflow-x: auto; transform: translateY(0); transition: transform 0.9s; } .stick { position: fixed; top: -81px; transform: translateY(80px); transition: transform 0.9s; background-color: rgba(0, 0, 0, 0.85); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); } .off {transform: translateY(0px); transition: transform 0.9s;} .marginTop { margin-top: 80px; } .horizontalNav li a.active { color: #eeefae; box-shadow: 0px 4px 0px 0px #eeefae; } nav::-webkit-scrollbar { width: 0px; height: 0px; } .horizontalNav { display: flex; position: relative; font-weight: 500; font-size: 12px; align-items: center; flex-direction: row; } .horizontalNav li { color: #fff; padding: 0 15px; font-size: 1.1em; text-transform: uppercase; } .horizontalNav li a { color: #fff; text-decoration: none; } li.svg { display: inline-block; height: 50px; background-position: 50% 5px; background-repeat: no-repeat; background-size: 30px 30px; } li.svg:hover { animation: menu ease forwards 0.2s; } @keyframes menu { 0% { background-position: 50% 5px; } 100% { background-position: 50% 0px; } } #svgMenu1 { background-image: url(../img/menu1.svg); } #svgMenu2 { background-image: url(../img/menu2.svg); } #svgMenu3 { background-image: url(../img/menu3.svg); } #svgMenu4 { background-image: url(../img/menu4.svg); } #svgMenu5 { background-image: url(../img/menu5.svg); } #svgMenu6 { background-image: url(../img/menu6.svg); } #svgMenu7 { background-image: url(../img/menu7.svg); } #svgMenu8 { background-image: url(../img/menu8.svg); } #svgMenu9 { background-image: url(../img/menu9.svg); } li.svg a { display: flex; align-items: flex-end; height: 100%; } #MenuSection section:last-child { min-height: 100vh; } ul.thumbs { display: flex; flex-wrap: wrap; justify-content: left; margin-right: -20px; padding: 0; } ul.thumbs .hidden { display: none !important; } ul.thumbs li { display: inline-flex; flex-wrap: wrap; align-content: space-between; width: 30%; margin: 0 10px 40px 10px; position: relative; text-align: left; line-height: 1.2em; background: #ffffff; border-radius: 15px; box-shadow: 0px 5px 30px #ccc; } ul.thumbs li .image img { vertical-align: bottom; border-radius: 15px; width: 100%; max-width: 400px;} ul.thumbs li .image .badge-wrapper { position: relative; } ul.thumbs li h5 { margin-top: 0.5em; margin-bottom: 0.4em; padding: 0 10px; width: 100%; font-size: 1.3em; line-height: 1.2em; text-transform: uppercase; } ul.thumbs li span.summary { display: block; margin: 0 10px 10px 10px; width: 100%; color: #000000 !important; font-size: 0.9em; } ul.thumbs li table.features { display: inline-block; width: 30%; color: #999; font-size: 0.9em; text-align: center; box-sizing: border-box; } ul.thumbs li table.features td { padding: 3px 0 0 0; color: #808080; font-weight: bold; border: none; } ul.thumbs li table.features td.name { display: none; } ul.thumbs li table.features td.value { min-width: 36px; } ul.thumbs li table.features td img { width: 24px; height: 24px; vertical-align: bottom; } ul.thumbs li table.features tbody { display: block; padding: 0 10px; } ul.thumbs li table.features tbody tr { display: inline-block; vertical-align: bottom; } ul.thumbs .offers { display: inline-block; width: 30%; margin: 5px 0 0 0; padding: 0 10px; text-align: center; box-sizing: border-box; } ul.thumbs .add-input { display: inline-block; width: 37%; min-width: 92px; text-align: center;} ul.thumbs .add-input button { cursor: pointer; margin-bottom: 10px; width: 30px; height: 30px; font-size: 20px; font-weight: 500; border: 2px solid; border-radius: 5px; background: #fff; } ul.thumbs .add { all: unset; -moz-appearance: textfield; font-size: 16px; width: 2em; text-align: center; } ul.thumbs .add::-webkit-inner-spin-button { display: none; } .contact, .interior { display: none; padding-top: 30px; padding-bottom: 10px; width: 100%; } .contact.active, .interior.active { display: block; } .contactList p { width: 100%; padding-top: 10px; text-align: left; } .contactList p:nth-of-type(1) { font-size: 18px; font-weight: 500; } .contactList a { display: block; text-align: left; text-decoration: none; padding-right: 20px; padding-top: 10px; color: #000; } .contactList img { padding-right: 10px; height: 16px; width: auto; vertical-align:middle; } .map { margin-top: 10px; width: 100%; box-sizing: border-box; overflow: hidden; } .map iframe { width: 100%; } #out { display: block; font-size: 24px; font-weight: 500; text-align: right; padding: 10px 50px; background: #eeefae; border-radius: 15px; } #out span { font-size: 14px; color: #555; } #list { margin: 10px 0; max-height: 155px; text-align: left; line-height: 1.5; overflow: auto; } .box-order input[type="submit"] { color: #fff; font-size: 18px; height: 50px; width: 100%; background: #000; border: 2px solid black; border-radius: 5px; } @media screen and (max-width: 760px) { nav { justify-content: left; text-align: center; } .topBox { justify-content: center; } .logo { height: 100px; align-items: flex-end; justify-content: center; } .logo img { max-height: 70px; } .topNav { display: none; } #telephone { position: absolute; top: 0px; right: 70px; } #telephone span { display: none; } #telephone a img { margin-top: 10px; width: 36px; height: 36px; } #mobileNav { display: block; position: absolute; top: 15px; right: 15px; } .navNegative.active { margin-top: 0; background: #3c4248; transition: margin-top 0.5s; z-index: 1;} .navNegative.active li { border-top: 1px solid #4b4f53; } .navNegative.active li:first-child { border-top: 0; } .navNegative.active li a { color: #ddd; transition: color 0.2s; } .map { max-width: 100%; } ul.thumbs { justify-content: center; margin: 0 !important; } ul.thumbs li { margin: 0 7px 40px; width: 95% !important; font-size: 1em; max-width: 400px; } ul.thumbs li h5 { font-size: 1.3em; } ul.thumbs li .image { height: auto; } ul.thumbs li .image img { width: 100%; max-height: 100%; max-width: 400px; } .box-slider { width: 100vw; overflow: hidden; } #interior .box-slider img { width: auto; height: 100vh; } } .js-open-modal { position: fixed; bottom: 10vh; left: 10vw; width: 50px; height: 50px; border-radius: 50%; background: black url(../img/basket.png) no-repeat center; background-size: 80%; box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.7); z-index: 100; } .on-cart { background: black url(../img/on-basket.png) no-repeat center; background-size: 80%; } #on-cart.hidden { display: flex; position: absolute; left: 20px; top: 0; align-items: center; justify-content: center; color: #fff; background: black; width: 20px; height: 20px; border-radius: 50%; opacity: 0; visibility: hidden; transition: .3s all; } #on-cart { opacity: 1; visibility: visible; display: flex; position: absolute; left: -5px; top: -70px; align-items: center; justify-content: center; color: #fff; background: black; width: 60px; height: 60px; border-radius: 50%; box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.7); transition: .3s all; } #on-order.hidden { display: none; } #on-order { position: fixed; bottom: 10vh; right: 10vw; width: 50px; height: 50px; border-radius: 50%; background: black url(../img/on-basket.png) no-repeat center; background-size: 80%; box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.7); z-index: 100; } .overlay { opacity: 0; visibility: hidden; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .5); z-index: 20; transition: .3s all; } .modal { opacity: 0; visibility: hidden; width: 100%; max-width: 500px; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 100; box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); box-sizing: border-box; text-align: center; padding: 30px; border-radius: 3px; background-color: #fff; transition: 0.3s all; } section h2, .contact h2, .interior h2 { padding-bottom: 10px; text-transform: uppercase; line-height: 1.2em; font-size: 2.6em; } .modal h2 { margin-bottom: 20px; } .modal.active, .overlay.active{ opacity: 1; visibility: visible; } .modal__cross { width: 15px; height: 15px; position: absolute; top: 20px; right: 20px; fill: #444; cursor: pointer; } .preloader { position: absolute; margin: auto; left: 0; top: 0; bottom: 0; right: 0; background: #000; } .preloader::after { content: ''; position: absolute; margin: auto; left: 0; top: 0; bottom: 0; right: 0; width: 80px; height: 80px; background: url(../img/loading1.svg) no-repeat, url(../img/loading2.svg) no-repeat, url(../img/loading3.svg) no-repeat, url(../img/loading4.svg) no-repeat; background-position: 50px 50px, 0px 50px, 0px 0px, 50px 0px; background-size: 30px, 30px, 30px, 30px; animation: spin ease infinite 4s; } @keyframes spin { 0%, 100% { background-position: 50px 50px, 0px 50px, 0px 0px, 50px 0px; } 25% { background-position: 0px 50px, 0px 0px, 50px 0px, 50px 50px; } 50% { background-position: 0px 0px, 50px 0px, 50px 50px, 0px 50px; } 75% { background-position: 50px 0px, 50px 50px, 0px 50px, 0px 0px; } } #statusOrder { background: #000; text-align: center; } #statusLogo { display: flex; justify-content: center; align-items: center; height: 220px; } #statusLogo .logo { justify-content: center; } #statusImg { height: 220px; text-align: center; } .check { background: url(../img/check.svg) 50% 50% no-repeat; } .cook { background: url(../img/cook.svg) 50% 50% no-repeat; } .cancel { background: url(../img/cancel.svg) 50% 50% no-repeat; } #messageOrder { display: inline-block; color: #ccc; font-size: 18px; text-align: left; } #messageOrder h2{ color: #ccc; padding-top: 10px; } .interiorSlider { position: relative; } #interior img { width: 100%; box-shadow: 0px 5px 30px #ccc; } .div-dot { display: flex; position: absolute; margin-top: -50px; padding: 0 5px; left: 0; right: 0; top: 70px; } .box-slider { position: relative; margin: auto; } #interior .dot { display: inline-block; cursor: pointer; width: 100%; height: 8px; margin: 0 2px; background: rgb(255 255 255 / 50%); transition: background-color 0.6s ease; } #interior .active { background-image: linear-gradient(#717171, #717171); background-repeat: no-repeat; background-size: 0% 100%; animation: show linear 4s; } @keyframes show { 0% { background-size: 0% 100%; } 100% { background-size: 100% 100%; } } #interior .fade { animation-name: fade; animation-duration: 1.5s; } @keyframes fade { from{opacity: .4} to{opacity: 1} }
0.295433
0.066873
@charset "UTF-8"; /** * InFocus - Brackets extension * https://github.com/a-bakos/infocus */ /* InFocus container. Does not include toolbar */ .infocus-contents { margin: auto; padding: 5px; text-align: center; } /* Channels = Sounds */ .infocus-player-channels { display: inline-block; padding: 5px 10px; margin-right: 5px; border: 1px solid rgba(52,52,52,1); border-radius: 3px; box-shadow: 0 0 2px rgba(28,28,30,0.75), 0 0 2px rgba(28,28,30,0.75) inset; } #infocus-player button { width: 20px; height: 20px; background-size: 100%; background-repeat: no-repeat; background-position: center; border: none; outline: none; } .infocus-player-channels button:not(:last-child), .infocus-player-controls button:not(:last-child) { margin-right: 5px; } /* Cafe sounds */ #infocus-play-cafe:hover { background: url('icons/cafe-hover.png'); background-size: 100%; } .cafe-play { background: url('icons/cafe-on.png'); } .cafe-pause { background: url('icons/cafe-off.png'); } /* Garden sounds */ #infocus-play-garden:hover { background: url('icons/garden-hover.png'); background-size: 100%; } .garden-play { background: url('icons/garden-on.png'); } .garden-pause { background: url('icons/garden-off.png'); } /* Summer night sounds */ #infocus-play-night:hover { background: url('icons/night-hover.png'); background-size: 100%; } .night-play { background: url('icons/night-on.png'); } .night-pause { background: url('icons/night-off.png'); } /* Burning fire sounds */ #infocus-play-fire:hover { background: url('icons/fire-hover.png'); background-size: 100%; } .fire-play { background: url('icons/fire-on.png'); } .fire-pause { background: url('icons/fire-off.png'); } /* Cityscape sounds */ #infocus-play-city:hover { background: url('icons/city-hover.png'); background-size: 100%; } .city-play { background: url('icons/city-on.png'); } .city-pause { background: url('icons/city-off.png'); } /* Water sounds */ #infocus-play-water:hover { background: url('icons/water-hover.png'); background-size: 100%; } .water-play { background: url('icons/water-on.png'); } .water-pause { background: url('icons/water-off.png'); } /* Snowfall sounds */ #infocus-play-snow:hover { background: url('icons/snow-hover.png'); background-size: 100%; } .snow-play { background: url('icons/snow-on.png'); } .snow-pause { background: url('icons/snow-off.png'); } /* Dawn sounds */ #infocus-play-dawn:hover { background: url('icons/dawn-hover.png'); background-size: 100%; } .dawn-play { background: url('icons/dawn-on.png'); } .dawn-pause { background: url('icons/dawn-off.png'); } /* Wind sounds */ #infocus-play-wind:hover { background: url('icons/wind-hover.png'); background-size: 100%; } .wind-play { background: url('icons/wind-on.png'); } .wind-pause { background: url('icons/wind-off.png'); } /* Pond sounds */ #infocus-play-pond:hover { background: url('icons/frog-pond-hover.png'); background-size: 100%; } .pond-play { background: url('icons/frog-pond-on.png'); } .pond-pause { background: url('icons/frog-pond-off.png'); } .infocus-player-controls { display: inline-block; padding: 5px 10px; background: rgba(28,28,30,1); border: 1px solid rgba(52,52,52,1); border-radius: 3px; box-shadow: 0 0 2px rgba(28,28,30,0.75), 0 0 2px rgba(0,0,0,0.75) inset; } /* Mute button */ #infocus-mute:hover { background: url('icons/vol-hover.png'); background-size: 100%; } .mute-sound { background: url('icons/vol-mute.png'); } .unmute-sound { background: url('icons/vol-unmute.png'); } /* Volume slider */ #infocus-volume-slider { -webkit-appearance: none; width: 100px; cursor: w-resize; } #infocus-volume-slider:focus { outline: none; } /* Volume slider track */ #infocus-volume-slider::-webkit-slider-runnable-track { width: 100%; height: 10px; background: rgba(0,0,0,1); border: 1px solid rgba(0,0,0,1); border-bottom: 1px solid rgba(52,52,52,0.75); box-shadow: 0 0 4px rgba(0,0,0,0.5), 0 -5px 5px rgba(128,128,128,0.15) inset; } /* Volume slider thumb */ #infocus-volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 20px; margin-top: -6px; background: rgba(118,118,118,1); border: 1px solid rgba(52,52,52,1); border-top: 1px solid rgba(72,72,72,1); border-left: 1px solid rgba(72,72,72,1); border-radius: 3px; box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0,0,0,0.95) inset; }
style.css
@charset "UTF-8"; /** * InFocus - Brackets extension * https://github.com/a-bakos/infocus */ /* InFocus container. Does not include toolbar */ .infocus-contents { margin: auto; padding: 5px; text-align: center; } /* Channels = Sounds */ .infocus-player-channels { display: inline-block; padding: 5px 10px; margin-right: 5px; border: 1px solid rgba(52,52,52,1); border-radius: 3px; box-shadow: 0 0 2px rgba(28,28,30,0.75), 0 0 2px rgba(28,28,30,0.75) inset; } #infocus-player button { width: 20px; height: 20px; background-size: 100%; background-repeat: no-repeat; background-position: center; border: none; outline: none; } .infocus-player-channels button:not(:last-child), .infocus-player-controls button:not(:last-child) { margin-right: 5px; } /* Cafe sounds */ #infocus-play-cafe:hover { background: url('icons/cafe-hover.png'); background-size: 100%; } .cafe-play { background: url('icons/cafe-on.png'); } .cafe-pause { background: url('icons/cafe-off.png'); } /* Garden sounds */ #infocus-play-garden:hover { background: url('icons/garden-hover.png'); background-size: 100%; } .garden-play { background: url('icons/garden-on.png'); } .garden-pause { background: url('icons/garden-off.png'); } /* Summer night sounds */ #infocus-play-night:hover { background: url('icons/night-hover.png'); background-size: 100%; } .night-play { background: url('icons/night-on.png'); } .night-pause { background: url('icons/night-off.png'); } /* Burning fire sounds */ #infocus-play-fire:hover { background: url('icons/fire-hover.png'); background-size: 100%; } .fire-play { background: url('icons/fire-on.png'); } .fire-pause { background: url('icons/fire-off.png'); } /* Cityscape sounds */ #infocus-play-city:hover { background: url('icons/city-hover.png'); background-size: 100%; } .city-play { background: url('icons/city-on.png'); } .city-pause { background: url('icons/city-off.png'); } /* Water sounds */ #infocus-play-water:hover { background: url('icons/water-hover.png'); background-size: 100%; } .water-play { background: url('icons/water-on.png'); } .water-pause { background: url('icons/water-off.png'); } /* Snowfall sounds */ #infocus-play-snow:hover { background: url('icons/snow-hover.png'); background-size: 100%; } .snow-play { background: url('icons/snow-on.png'); } .snow-pause { background: url('icons/snow-off.png'); } /* Dawn sounds */ #infocus-play-dawn:hover { background: url('icons/dawn-hover.png'); background-size: 100%; } .dawn-play { background: url('icons/dawn-on.png'); } .dawn-pause { background: url('icons/dawn-off.png'); } /* Wind sounds */ #infocus-play-wind:hover { background: url('icons/wind-hover.png'); background-size: 100%; } .wind-play { background: url('icons/wind-on.png'); } .wind-pause { background: url('icons/wind-off.png'); } /* Pond sounds */ #infocus-play-pond:hover { background: url('icons/frog-pond-hover.png'); background-size: 100%; } .pond-play { background: url('icons/frog-pond-on.png'); } .pond-pause { background: url('icons/frog-pond-off.png'); } .infocus-player-controls { display: inline-block; padding: 5px 10px; background: rgba(28,28,30,1); border: 1px solid rgba(52,52,52,1); border-radius: 3px; box-shadow: 0 0 2px rgba(28,28,30,0.75), 0 0 2px rgba(0,0,0,0.75) inset; } /* Mute button */ #infocus-mute:hover { background: url('icons/vol-hover.png'); background-size: 100%; } .mute-sound { background: url('icons/vol-mute.png'); } .unmute-sound { background: url('icons/vol-unmute.png'); } /* Volume slider */ #infocus-volume-slider { -webkit-appearance: none; width: 100px; cursor: w-resize; } #infocus-volume-slider:focus { outline: none; } /* Volume slider track */ #infocus-volume-slider::-webkit-slider-runnable-track { width: 100%; height: 10px; background: rgba(0,0,0,1); border: 1px solid rgba(0,0,0,1); border-bottom: 1px solid rgba(52,52,52,0.75); box-shadow: 0 0 4px rgba(0,0,0,0.5), 0 -5px 5px rgba(128,128,128,0.15) inset; } /* Volume slider thumb */ #infocus-volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 20px; margin-top: -6px; background: rgba(118,118,118,1); border: 1px solid rgba(52,52,52,1); border-top: 1px solid rgba(72,72,72,1); border-left: 1px solid rgba(72,72,72,1); border-radius: 3px; box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0,0,0,0.95) inset; }
0.440469
0.073364
.info{ direction: rtl; text-align: right; font-size: 12px; color: #fff;line-height:35px;} .info_contant{margin-left:10px;} .input{height:35px; font-size:14px;} .svg-inline--fa { display: inline-block; font-size: inherit; height:20px; overflow: visible; vertical-align: -0.125em; } .display_courses{ width: 30px; float: left; background-color: #367dfe; text-align: center; padding: 0px; line-height:18px; border-radius: 0.4em; padding-top: 2px; margin-right: 10px; color:#fff !important; } .display_courses_notactive{ width:30px; float: left; text-align: center; padding: 0px; line-height: 17px; border-radius: 0.4em; padding-top: 2px; margin-right:0px; color:#818181 !important; } .sidebar_dep{ padding: 10px 0px; font-size: 13px;} .dep_count{float:left; background-color:#f7f7fc; color:#367dff; width: 30px;height: 25px; text-align: center; line-height: 25px; font-size: 11px; border-radius: 0.5em; margin-top:4px; } .courses_list{ list-style: none; text-align: right;padding:0px;} .couses_span{margin-right:10px;} .info{ background-color: #fff; border-bottom-right-radius: 0.6em; border-bottom-left-radius: 0.6em; /* -webkit-box-shadow: 3px 3px 5px 6px #ccc; -moz-box-shadow: 3px 3px 5px 6px #ccc; box-shadow: 1px 2px 5px -1px #ccc; border-bottom-right-radius: 0.6em;*/ } .rate_view{color:#79797952;} .img_info{ border-top-left-radius: 0.8em; -moz-box-shadow: 3px 3px 5px 6px #ccc; /*box-shadow: 2px 1px 4px 0px #cccccc75;*/ border-top-right-radius: 0.8em; } :not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { color: #fff; text-decoration: none; } .c1-bo, .owl-carousel .owl-nav button:before, .pagination li a:hover, .pagination li a.active, .pagination li span:hover, .pagination li span.active, blockquote, .widget.widget_tag_cloud .tagcloud a:hover, .about-nav-tab .nav-tabs .nav-link.active, .about-nav-tab .nav-item .nav-link.active{ padding: 10px 15px 10px 15px; } .pagination .active { margin: 0 5px; background-color: #367dff; color: #fff; } .img-circle{ border-radius:50%; /*border: 1px solid #ddd;*/ border: 11px solid #f7f7fc; /*padding: 5px;*/ } .img_info_circle .img-circle { position: relative; bottom: -100px; z-index: 2; } .img_info_circle .img-circle_details { position: relative; top: -100px; z-index: 2; } hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee} .mt-15{margin-top:15px;} .mb-30{margin-bottom:30px;} .main_previw{ text-align: right; font-size: 14px; line-height: 30px; direction:rtl; } .courses_list_data{font-weight:500;font-size:15px;padding-right:30px;} .list_experiences{position: relative;} .list_experiences_img{top:12px;position: absolute;} .img_bags { height: 130px !important; } .course_img{border-radius: 50%; /* border: 1px solid #ddd; */ border:5px solid #fff;} .inside_page{width:100%} .footer_hr{ border-top: 2px solid #357dff;} .discount_code{color:#fec355; cursor: pointer;text-align:center;font-size:14px;} .v_line{ min-height: 500px; margin: auto; border-left: 1px solid #e6e6e6; width: 1px; } .main_input{border-radius: 0.4em;} .bg_login{width: 100%; background-size: 100% 100%; } .pos{ position: relative;} .bg_forget{width: 100%; background-size: 100% 100%;} .label{ position: absolute; right: 35px; top:-15px; color: #999; font-size: 14px; display: inline-block; padding: 4px 12px; font-weight: 400; background-color:#fff; @include transition(color .3s, top .3s, background-color .8s); } .type_user1{height:77px; border: 1px solid #e8e8e8; margin-bottom:40px; vertical-align: middle; /* line-height: 35px; */ text-align: center; padding-top: 10px; border-radius: 0.4em; cursor: pointer;} .type_user1 p{margin-bottom: 4px;font-size:13px} .type_user1 i{font-size:26px} .type_user{height:77px; border: 1px solid #e8e8e8; margin-bottom:40px; vertical-align: middle; /* line-height: 35px; */ text-align: center; padding-top: 10px; border-radius: 0.4em; cursor: pointer;} .type_user i{font-size:26px} .type_user p{margin-bottom: 4px;font-size:13px} .user{color: #fff; background: #ffc108;} .button_right{float:right;line-height:45px} .user1{color: #fff; background: #ffc108;} .button_right{float:right;line-height:45px} .txt_register{ text-align: right; font-size: 13px; padding: 10px; line-height: 30px; background: #eff5ff; margin-bottom: 20px; border-radius: 0.4em;} input, input:hover, input:focus, input:active, select, textarea{ color: #818181!important; background: #fff; } .profile_img{ border-radius: 50%; width: 115px; height: 100px; float: right; padding-left: 1px; border: 10px solid #f7f7fc; padding-right: 1px;} .no_p{padding:0px;} .main_tick:hover{ background:#eff5ff } #style-7{height:350px} #style-7{ overflow-y: scroll;} .scrollbar::-webkit-scrollbar { width: 8px; height: 8px; } .scrollbar ::-webkit-scrollbar-track { box-shadow: inset 0 0 10px rgb(23, 54, 141); border-radius: 8px; } .scrollbar::-webkit-scrollbar-thumb { float:right; border-radius: 8px; background: rgb(41, 91, 230); box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } .profile_img_header{ border-radius: 50%; width: 60px; height:50px; float: right; padding-left: 1px; /* border: 10px solid #f7f7fc; */ padding-right: 1px; } @media (max-width:768px){ .notfy{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; vertical-align: middle; position: absolute!important; width: 17px!important; top:-7px !important; right:0px !important; line-height: 14px!important; } .notfy_bell{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top:-7px !important; right:0px !important; line-height: 14px; } } .notfy{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top: 16px; right: -2px; line-height: 14px; } .notfy_bell{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top: 4px; right: -9px; line-height: 14px; } div#socialSharing a span.fa-lg { border-radius: 50%; margin: 1%; color: #FFFFFF; } div#socialSharing a span.fa-lg i { font-style: normal; } div#socialSharing a span#facebook { background-color: #3b5998; } div#socialSharing a span#facebook:hover { background-color: #133783; } div#socialSharing a span#twitter { background-color: #1da1f2; } div#socialSharing a span#twitter:hover { background-color: #2582bb; } div#socialSharing a span#pinterest { background-color: #bd081c; } div#socialSharing a span#pinterest:hover { background-color: #880e1c; } div#socialSharing a span#googleplus { background-color: #db4437; } div#socialSharing a span#googleplus:hover { background-color: #cf1808; } div#socialSharing a span#linkedin { background-color: #0077b5; } div#socialSharing a span#linkedin:hover { background-color: #02689d; } div#socialSharing a span#whatsapp { background-color: #00E676; } div#socialSharing a span#whatsapp:hover { background-color: #03c164; } .profile_img_trainer{ border-radius: 50%; width: 115px; height: 100px; padding-left: 1px; padding-right: 1px;} .fileinput .thumbnail { display: inline-block; margin-bottom: 5px; overflow: hidden; text-align: center; vertical-align: middle; } .thumbnail { padding: 4px; line-height: 1.42857; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists { display: none; } .btn:not(.md-skip):not(.bs-select-all):not(.bs-deselect-all) { font-size: 12px; font-weight: 500; text-transform: uppercase; transition: box-shadow .28s cubic-bezier(.4,0,.2,1); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; position: relative; user-select: none; } .btn-file > input { position: absolute; top: 0; right: 0; width: 100%; height: 100%; margin: 0; font-size: 23px; cursor: pointer; filter: alpha(opacity=0); opacity: 0; direction: ltr; } .btn:not(.md-skip):not(.bs-select-all):not(.bs-deselect-all) { font-size: 12px; font-weight: 500; text-transform: uppercase; transition: box-shadow .28s cubic-bezier(.4,0,.2,1); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; position: relative; user-select: none; } .btn_img{background: #ffc454; border-radius: 50%; color: #fff; width: 44px; height: 39px; line-height: 39px; position: absolute; right: 100px; top: 50px;} .bag_edit{ color: #fff; float: left; margin-right: 5px; font-size: 12px; background: #da1414; border-radius: 50%; padding: 10px; width: 25px; height: 25px; text-align: center; line-height: 27px; } .remove_button{float:left} .add_button{float:left} .user_dawrat{ padding: 5px 20px 5px 20px; background-color: #367dfe; color: #fff; border-radius: 0.4em; font-size: 15px;} .user_dawrat_1{ padding: 5px 20px 5px 20px;font-size: 15px;} .myfav{ font-size: 20px; position: absolute; left: 16px; color: #367dfe; cursor: pointer; } .no_myfav{ font-size: 20px; position: absolute; left: 16px; color: rgba(71, 77, 88, 0.48); opacity: 0.5; cursor: pointer; } .user_dawrat_payment{ padding: 5px 2px 5px 2px; background-color: #367dfe; color: #fff; border-radius: 0.4em; font-size: 13px;} .user_dawrat_payment_1{ padding: 5px 2px 5px 2px;font-size: 13px;} .main_dwart{ margin-bottom: 20px; border-radius: 0.4em; } .course_chare{font-size:15px;color:#367dfe;} .main_attr{font-size:13px;font-weight:400;} .icon_img{width:20px;height:21px;} .title_course{font-size:14px;text-align:right;font-weight:400;padding-top:15px;padding-bottom:15px} .cont_check { display: block; position: relative; padding: 10px 20px; font-size: 13px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; margin-bottom:0px; } /* Hide the browser's default checkbox */ .cont_check input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkmark { position: absolute; top: 12px; right: 0; height:16px; width: 16px; background-color:#dadada; } /* On mouse-over, add a grey background color */ .cont_check:hover input ~ .checkmark { background-color: #ccc; } /* When the checkbox is checked, add a blue background */ .cont_check input:checked ~ .checkmark { background-color: #2196F3; border: 1px solid #2196f3; } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .cont_check input:checked ~ .checkmark:after { display: block; } /* Style the checkmark/indicator */ .cont_check .checkmark:after { left:4px; top:2px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .search_custom_service{ background-color: #ffffff; margin-right: 5px; border: 1px solid #b3b3b3; border-radius: 0.4em; height: 40px; font-size: 14px; line-height: 40px; display:block; } .advencedbutton{ background-color: #ffffff; border: 1px solid #b3b3b3; color:#949494 !important; cursor: pointer; } .search_custom_input:checked + label{ background-color: #FFC108; border: 1px solid #FFC108; color: #fff; } .search_custom_input { display: none; } .advencedbutton_active{ background-color: #FFC108; border: 1px solid #FFC108; color: #fff; } .protect-item { display: flex; align-items: center; padding-top: 10px; padding-bottom: 10px; } .bg-light { background-color: #f7f9fe !important; } .protect-gfx { position: relative; background: #fff; height: 86px; width: 86px; border-radius: 50%; border: 2px solid #2a81ea; flex-shrink: 0; } .protect-gfx:before { position: absolute; top: 50%; width: 80px; content: ''; border-bottom: 1px dashed #7fb3f2; } .protect-text .title { font-size: .8125rem; color: #2a81ea; } .positive .protect-gfx { margin-right: 1rem; } .negative .protect-gfx:after { content: "X"; background: #f86168; left: 0; } .protect-gfx:after { position: absolute; top: 0; font-family: "Nioicon"; font-size: 1.0625rem; line-height: 1; border-radius: 50%; color: #fff; height: 1.5rem; width: 1.5rem; display: flex; align-items: center; justify-content: center; } .section-l { padding: 120px 0; } .section-head .title { text-transform: uppercase; } @media (min-width: 576px) h2, .h2, .fz-2 { font-size: 2.5rem; } element.style { } @media (min-width: 576px) .section-head .subtitle { font-size: 1.125rem; margin-bottom: .125rem; letter-spacing: 0.1em; } .section-head .subtitle { text-transform: uppercase; color: #2a81ea; font-size: 12px; margin-bottom: .125rem; letter-spacing: 0.04em; } p { margin-bottom: .75rem; color: #3d4b69; line-height: 1.5; } .protect-item.negative { flex-direction: row-reverse; text-align: right; } .negative .protect-gfx { margin-left: 1rem; } .positive .protect-gfx { margin-right: 1rem; } .positive .protect-gfx:after { content: "\f46c"; background: #3dca93; right: 0; } .protect-gfx:after { position: absolute; top: 0; font-family: "Nioicon"; font-size: 1.0625rem; line-height: 1; border-radius: 50%; color: #fff; height: 1.5rem; width: 1.5rem; display: flex; align-items: center; justify-content: center; } .protect-gfx { position: relative; background: #fff; height: 86px; width: 86px; border-radius: 50%; border: 2px solid #2a81ea; flex-shrink: 0; } label { display: inline-block; margin-bottom: 1px; font-size: 13px; font-weight: 300; } .blog-item { border-radius: 4px; background: #fff; box-shadow: 0px 5px 40px 0px rgba(80, 101, 142, 0.08); height: 100%; } .blog-image { padding: 1.875rem 1.875rem 0; } .blog-text { padding: 1.75rem 1.875rem; }
assets/css/custom.css
.info{ direction: rtl; text-align: right; font-size: 12px; color: #fff;line-height:35px;} .info_contant{margin-left:10px;} .input{height:35px; font-size:14px;} .svg-inline--fa { display: inline-block; font-size: inherit; height:20px; overflow: visible; vertical-align: -0.125em; } .display_courses{ width: 30px; float: left; background-color: #367dfe; text-align: center; padding: 0px; line-height:18px; border-radius: 0.4em; padding-top: 2px; margin-right: 10px; color:#fff !important; } .display_courses_notactive{ width:30px; float: left; text-align: center; padding: 0px; line-height: 17px; border-radius: 0.4em; padding-top: 2px; margin-right:0px; color:#818181 !important; } .sidebar_dep{ padding: 10px 0px; font-size: 13px;} .dep_count{float:left; background-color:#f7f7fc; color:#367dff; width: 30px;height: 25px; text-align: center; line-height: 25px; font-size: 11px; border-radius: 0.5em; margin-top:4px; } .courses_list{ list-style: none; text-align: right;padding:0px;} .couses_span{margin-right:10px;} .info{ background-color: #fff; border-bottom-right-radius: 0.6em; border-bottom-left-radius: 0.6em; /* -webkit-box-shadow: 3px 3px 5px 6px #ccc; -moz-box-shadow: 3px 3px 5px 6px #ccc; box-shadow: 1px 2px 5px -1px #ccc; border-bottom-right-radius: 0.6em;*/ } .rate_view{color:#79797952;} .img_info{ border-top-left-radius: 0.8em; -moz-box-shadow: 3px 3px 5px 6px #ccc; /*box-shadow: 2px 1px 4px 0px #cccccc75;*/ border-top-right-radius: 0.8em; } :not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { color: #fff; text-decoration: none; } .c1-bo, .owl-carousel .owl-nav button:before, .pagination li a:hover, .pagination li a.active, .pagination li span:hover, .pagination li span.active, blockquote, .widget.widget_tag_cloud .tagcloud a:hover, .about-nav-tab .nav-tabs .nav-link.active, .about-nav-tab .nav-item .nav-link.active{ padding: 10px 15px 10px 15px; } .pagination .active { margin: 0 5px; background-color: #367dff; color: #fff; } .img-circle{ border-radius:50%; /*border: 1px solid #ddd;*/ border: 11px solid #f7f7fc; /*padding: 5px;*/ } .img_info_circle .img-circle { position: relative; bottom: -100px; z-index: 2; } .img_info_circle .img-circle_details { position: relative; top: -100px; z-index: 2; } hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee} .mt-15{margin-top:15px;} .mb-30{margin-bottom:30px;} .main_previw{ text-align: right; font-size: 14px; line-height: 30px; direction:rtl; } .courses_list_data{font-weight:500;font-size:15px;padding-right:30px;} .list_experiences{position: relative;} .list_experiences_img{top:12px;position: absolute;} .img_bags { height: 130px !important; } .course_img{border-radius: 50%; /* border: 1px solid #ddd; */ border:5px solid #fff;} .inside_page{width:100%} .footer_hr{ border-top: 2px solid #357dff;} .discount_code{color:#fec355; cursor: pointer;text-align:center;font-size:14px;} .v_line{ min-height: 500px; margin: auto; border-left: 1px solid #e6e6e6; width: 1px; } .main_input{border-radius: 0.4em;} .bg_login{width: 100%; background-size: 100% 100%; } .pos{ position: relative;} .bg_forget{width: 100%; background-size: 100% 100%;} .label{ position: absolute; right: 35px; top:-15px; color: #999; font-size: 14px; display: inline-block; padding: 4px 12px; font-weight: 400; background-color:#fff; @include transition(color .3s, top .3s, background-color .8s); } .type_user1{height:77px; border: 1px solid #e8e8e8; margin-bottom:40px; vertical-align: middle; /* line-height: 35px; */ text-align: center; padding-top: 10px; border-radius: 0.4em; cursor: pointer;} .type_user1 p{margin-bottom: 4px;font-size:13px} .type_user1 i{font-size:26px} .type_user{height:77px; border: 1px solid #e8e8e8; margin-bottom:40px; vertical-align: middle; /* line-height: 35px; */ text-align: center; padding-top: 10px; border-radius: 0.4em; cursor: pointer;} .type_user i{font-size:26px} .type_user p{margin-bottom: 4px;font-size:13px} .user{color: #fff; background: #ffc108;} .button_right{float:right;line-height:45px} .user1{color: #fff; background: #ffc108;} .button_right{float:right;line-height:45px} .txt_register{ text-align: right; font-size: 13px; padding: 10px; line-height: 30px; background: #eff5ff; margin-bottom: 20px; border-radius: 0.4em;} input, input:hover, input:focus, input:active, select, textarea{ color: #818181!important; background: #fff; } .profile_img{ border-radius: 50%; width: 115px; height: 100px; float: right; padding-left: 1px; border: 10px solid #f7f7fc; padding-right: 1px;} .no_p{padding:0px;} .main_tick:hover{ background:#eff5ff } #style-7{height:350px} #style-7{ overflow-y: scroll;} .scrollbar::-webkit-scrollbar { width: 8px; height: 8px; } .scrollbar ::-webkit-scrollbar-track { box-shadow: inset 0 0 10px rgb(23, 54, 141); border-radius: 8px; } .scrollbar::-webkit-scrollbar-thumb { float:right; border-radius: 8px; background: rgb(41, 91, 230); box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } .profile_img_header{ border-radius: 50%; width: 60px; height:50px; float: right; padding-left: 1px; /* border: 10px solid #f7f7fc; */ padding-right: 1px; } @media (max-width:768px){ .notfy{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; vertical-align: middle; position: absolute!important; width: 17px!important; top:-7px !important; right:0px !important; line-height: 14px!important; } .notfy_bell{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top:-7px !important; right:0px !important; line-height: 14px; } } .notfy{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top: 16px; right: -2px; line-height: 14px; } .notfy_bell{ font-size: 11px!important; height: 17px; color: #fff; -webkit-border-radius: 12px!important; -moz-border-radius: 12px!important; border-radius: 50%!important; text-shadow: none!important; text-align: center; /* vertical-align: middle; */ position: absolute; width: 17px; top: 4px; right: -9px; line-height: 14px; } div#socialSharing a span.fa-lg { border-radius: 50%; margin: 1%; color: #FFFFFF; } div#socialSharing a span.fa-lg i { font-style: normal; } div#socialSharing a span#facebook { background-color: #3b5998; } div#socialSharing a span#facebook:hover { background-color: #133783; } div#socialSharing a span#twitter { background-color: #1da1f2; } div#socialSharing a span#twitter:hover { background-color: #2582bb; } div#socialSharing a span#pinterest { background-color: #bd081c; } div#socialSharing a span#pinterest:hover { background-color: #880e1c; } div#socialSharing a span#googleplus { background-color: #db4437; } div#socialSharing a span#googleplus:hover { background-color: #cf1808; } div#socialSharing a span#linkedin { background-color: #0077b5; } div#socialSharing a span#linkedin:hover { background-color: #02689d; } div#socialSharing a span#whatsapp { background-color: #00E676; } div#socialSharing a span#whatsapp:hover { background-color: #03c164; } .profile_img_trainer{ border-radius: 50%; width: 115px; height: 100px; padding-left: 1px; padding-right: 1px;} .fileinput .thumbnail { display: inline-block; margin-bottom: 5px; overflow: hidden; text-align: center; vertical-align: middle; } .thumbnail { padding: 4px; line-height: 1.42857; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists { display: none; } .btn:not(.md-skip):not(.bs-select-all):not(.bs-deselect-all) { font-size: 12px; font-weight: 500; text-transform: uppercase; transition: box-shadow .28s cubic-bezier(.4,0,.2,1); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; position: relative; user-select: none; } .btn-file > input { position: absolute; top: 0; right: 0; width: 100%; height: 100%; margin: 0; font-size: 23px; cursor: pointer; filter: alpha(opacity=0); opacity: 0; direction: ltr; } .btn:not(.md-skip):not(.bs-select-all):not(.bs-deselect-all) { font-size: 12px; font-weight: 500; text-transform: uppercase; transition: box-shadow .28s cubic-bezier(.4,0,.2,1); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; position: relative; user-select: none; } .btn_img{background: #ffc454; border-radius: 50%; color: #fff; width: 44px; height: 39px; line-height: 39px; position: absolute; right: 100px; top: 50px;} .bag_edit{ color: #fff; float: left; margin-right: 5px; font-size: 12px; background: #da1414; border-radius: 50%; padding: 10px; width: 25px; height: 25px; text-align: center; line-height: 27px; } .remove_button{float:left} .add_button{float:left} .user_dawrat{ padding: 5px 20px 5px 20px; background-color: #367dfe; color: #fff; border-radius: 0.4em; font-size: 15px;} .user_dawrat_1{ padding: 5px 20px 5px 20px;font-size: 15px;} .myfav{ font-size: 20px; position: absolute; left: 16px; color: #367dfe; cursor: pointer; } .no_myfav{ font-size: 20px; position: absolute; left: 16px; color: rgba(71, 77, 88, 0.48); opacity: 0.5; cursor: pointer; } .user_dawrat_payment{ padding: 5px 2px 5px 2px; background-color: #367dfe; color: #fff; border-radius: 0.4em; font-size: 13px;} .user_dawrat_payment_1{ padding: 5px 2px 5px 2px;font-size: 13px;} .main_dwart{ margin-bottom: 20px; border-radius: 0.4em; } .course_chare{font-size:15px;color:#367dfe;} .main_attr{font-size:13px;font-weight:400;} .icon_img{width:20px;height:21px;} .title_course{font-size:14px;text-align:right;font-weight:400;padding-top:15px;padding-bottom:15px} .cont_check { display: block; position: relative; padding: 10px 20px; font-size: 13px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; margin-bottom:0px; } /* Hide the browser's default checkbox */ .cont_check input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkmark { position: absolute; top: 12px; right: 0; height:16px; width: 16px; background-color:#dadada; } /* On mouse-over, add a grey background color */ .cont_check:hover input ~ .checkmark { background-color: #ccc; } /* When the checkbox is checked, add a blue background */ .cont_check input:checked ~ .checkmark { background-color: #2196F3; border: 1px solid #2196f3; } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .cont_check input:checked ~ .checkmark:after { display: block; } /* Style the checkmark/indicator */ .cont_check .checkmark:after { left:4px; top:2px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .search_custom_service{ background-color: #ffffff; margin-right: 5px; border: 1px solid #b3b3b3; border-radius: 0.4em; height: 40px; font-size: 14px; line-height: 40px; display:block; } .advencedbutton{ background-color: #ffffff; border: 1px solid #b3b3b3; color:#949494 !important; cursor: pointer; } .search_custom_input:checked + label{ background-color: #FFC108; border: 1px solid #FFC108; color: #fff; } .search_custom_input { display: none; } .advencedbutton_active{ background-color: #FFC108; border: 1px solid #FFC108; color: #fff; } .protect-item { display: flex; align-items: center; padding-top: 10px; padding-bottom: 10px; } .bg-light { background-color: #f7f9fe !important; } .protect-gfx { position: relative; background: #fff; height: 86px; width: 86px; border-radius: 50%; border: 2px solid #2a81ea; flex-shrink: 0; } .protect-gfx:before { position: absolute; top: 50%; width: 80px; content: ''; border-bottom: 1px dashed #7fb3f2; } .protect-text .title { font-size: .8125rem; color: #2a81ea; } .positive .protect-gfx { margin-right: 1rem; } .negative .protect-gfx:after { content: "X"; background: #f86168; left: 0; } .protect-gfx:after { position: absolute; top: 0; font-family: "Nioicon"; font-size: 1.0625rem; line-height: 1; border-radius: 50%; color: #fff; height: 1.5rem; width: 1.5rem; display: flex; align-items: center; justify-content: center; } .section-l { padding: 120px 0; } .section-head .title { text-transform: uppercase; } @media (min-width: 576px) h2, .h2, .fz-2 { font-size: 2.5rem; } element.style { } @media (min-width: 576px) .section-head .subtitle { font-size: 1.125rem; margin-bottom: .125rem; letter-spacing: 0.1em; } .section-head .subtitle { text-transform: uppercase; color: #2a81ea; font-size: 12px; margin-bottom: .125rem; letter-spacing: 0.04em; } p { margin-bottom: .75rem; color: #3d4b69; line-height: 1.5; } .protect-item.negative { flex-direction: row-reverse; text-align: right; } .negative .protect-gfx { margin-left: 1rem; } .positive .protect-gfx { margin-right: 1rem; } .positive .protect-gfx:after { content: "\f46c"; background: #3dca93; right: 0; } .protect-gfx:after { position: absolute; top: 0; font-family: "Nioicon"; font-size: 1.0625rem; line-height: 1; border-radius: 50%; color: #fff; height: 1.5rem; width: 1.5rem; display: flex; align-items: center; justify-content: center; } .protect-gfx { position: relative; background: #fff; height: 86px; width: 86px; border-radius: 50%; border: 2px solid #2a81ea; flex-shrink: 0; } label { display: inline-block; margin-bottom: 1px; font-size: 13px; font-weight: 300; } .blog-item { border-radius: 4px; background: #fff; box-shadow: 0px 5px 40px 0px rgba(80, 101, 142, 0.08); height: 100%; } .blog-image { padding: 1.875rem 1.875rem 0; } .blog-text { padding: 1.75rem 1.875rem; }
0.296451
0.118538
.theme-dark { --background-primary: #202020; --background-primary-alt: #1a1a1a; --background-secondary: #161616; --background-secondary-alt: #080808; --background-accent: #000; --background-modifier-border: #333; --background-modifier-form-field: rgba(0, 0, 0, 0.3); --background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22); --background-modifier-box-shadow: rgba(0, 0, 0, 0.3); --background-modifier-success: #197300; --background-modifier-error: #3d0000; --background-modifier-error-rgb: 61, 0, 0; --background-modifier-error-hover: #470000; --background-modifier-cover: rgba(0, 0, 0, 0.6); --text-accent: #5c73f2; --text-accent-hover: #5c73f2; --text-normal: #dcddde; --text-muted: #888; --text-faint: #555; --text-error: #ff3333; --text-error-hover: #990000; --text-highlight-bg: #5cd6f296; --text-selection: rgba(0, 122, 255, 0.2); --text-on-accent: #dcddde; --interactive-normal: #2a2a2a; --interactive-hover: #303030; --interactive-accent: #5c73f2; --interactive-accent-rgb: 72, 54, 153; --interactive-accent-hover: #5c73f2; --scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2); --scrollbar-bg: rgba(255, 255, 255, 0.05); --scrollbar-thumb-bg: rgba(255, 255, 255, 0.1); } .theme-light { --background-primary: #ffffff; --background-primary-alt: #f5f6f8; --background-secondary: #f2f3f5; --background-secondary-alt: #e3e5e8; --background-accent: #5c73f2; --background-modifier-border: #ddd; --background-modifier-form-field: #fff; --background-modifier-form-field-highlighted: #fff; --background-modifier-box-shadow: rgba(0, 0, 0, 0.1); --background-modifier-success: #A4E7C3; --background-modifier-error: #e68787; --background-modifier-error-rgb: 230, 135, 135; --background-modifier-error-hover: #FF9494; --background-modifier-cover: rgba(0, 0, 0, 0.8); --text-accent: #5c73f2; --text-accent-hover: #5c73f2; --text-normal: #2e3338; --text-muted: #888888; --text-faint: #999999; --text-error: #800000; --text-error-hover: #990000; --text-highlight-bg: #5cd6f296; --text-selection: rgba(0, 122, 255, 0.15); --text-on-accent: #f2f2f2; --interactive-normal: #f2f3f5; --interactive-hover: #e9e9e9; --interactive-accent: #5c73f2; --interactive-accent-rgb: 123, 108, 217; --interactive-accent-hover: #5c73f2; --scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2); --scrollbar-bg: rgba(0, 0, 0, 0.05); --scrollbar-thumb-bg: rgba(0, 0, 0, 0.1); } ::selection { background-color: #5c73f2; color: white; } /* Current main pane */ .workspace-leaf.mod-active .workspace-leaf-header-title { color: #5c73f2; text-align: center; } /* Other pane */ .workspace-leaf-header-title-container { text-align:center; } /* Headers */ span.cm-formatting.cm-formatting-header.cm-formatting-header-1.cm-header.cm-header-1 { color: #5c73f2;; } span.cm-formatting.cm-formatting-header.cm-formatting-header-2.cm-header.cm-header-2 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-3.cm-header.cm-header-3 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-4.cm-header.cm-header-4 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-5.cm-header.cm-header-5 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-6.cm-header.cm-header-6 { color: #5c73f2; } /* Header folder icon */ .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { color: #5c73f2; } .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { color: #5c73f2; } /* Cursor */ .cm-fat-cursor .CodeMirror-cursor { background: #5c73f2; } .cm-animate-fat-cursor { background-color: #5c73f2; } /* Selection in popup ([[]] autocomplete)*/ .suggestion-item.is-selected { background-color: #5c73f2; color: white; } .theme-light .suggestion-shortcut { color: var(--text-normal); } /* Inner and Outer links */ .cm-url { color: lightblue!important; } .markdown-highlighting .internal-link .cl-underlined-text { color: #5c73f2!important; } .markdown-highlighting .link .cl-underlined-text { color: lightblue!important; } /* Blockquote */ .preview blockquote { background-color: var(--background-modifier-border); border: 1px solid var(--text-muted); } /* Highlights and Bold */ strong { font-size: larger; } mark { background-color: darkgoldenrod; } .markdown-highlighting .tag { color: #5c73f2!important; } /* Tables */ .markdown-preview-view th { background-color: #5c73f2; color: white } .cm-s-obsidian pre.HyperMD-table-row span.cm-hmd-table-sep { color: unset; } .cm-s-obsidian pre.HyperMD-table-row-1 > span { color: unset; } /* Status bar */ .theme-dark .status-bar-item { color: white; } .theme-light .status-bar-item { color: black; } /**/ /* Preview section */ /**/ /* Centered preview */ .markdown-preview-view { padding-left: 10% !important; padding-right: 10% !important; } .markdown-embed-title { color: #5c73f2; } .markdown-preview-view .markdown-embed { background-color: var(--background-primary-alt); margin-top: 0.5rem; margin-bottom: 0.5rem; } .markdown-preview-view .internal-link { color: #5c73f2; } .markdown-preview-view a { color: lightblue; } /**/ /* Side panel section */ /**/ /* Plugin Title and Description */ .plugin-name { color: var(--text-normal); } .plugin-description { color: var(--text-normal) } /* Files title and Buttons */ .nav-file-title-content, .nav-folder-title-content { color: var(--text-normal); } .nav-action-button { color: var(--text-normal); } /* File explorer navigation selection */ .nav-file.is-active > .nav-file-title, .nav-file.is-active > .nav-folder-title, .nav-file.is-active > .nav-folder-collapse-indicator, .nav-folder.is-active > .nav-file-title, .nav-folder.is-active > .nav-folder-title, .nav-folder.is-active > .nav-folder-collapse-indicator { background-color: #5c73f2; color: white; } body:not(.is-grabbing) .nav-file-title:hover, body:not(.is-grabbing) .nav-folder-title:hover { background-color: #5c73f2; color: white; } .nav-file-title-content, .nav-folder-title-content { color:unset; } .nav-folder.mod-root > .nav-file-title:hover, .nav-folder.mod-root > .nav-folder-title:hover { color: var(--text-normal); } body:not(.is-grabbing) .nav-file-title:hover .nav-folder-collapse-indicator, body:not(.is-grabbing) .nav-folder-title:hover .nav-folder-collapse-indicator { background-color: #5c73f2; color: white; } .nav-file-title, .nav-folder-title, .nav-folder-collapse-indicator { color: var(--text-normal); } /* File explorer menu*/ .menu-item:hover { background-color: #5c73f2; color: white; } /* Backlinks Color and Text */ .search-result-file-matched-text { background-color: #5c73f2; color: white; } .search-result-file-title { color: #5c73f2; } .search-result-file-matches { color: var(--text-normal); } .search-result-file-title:hover { background-color: #5c73f2; color: white; } .search-result-file-match:hover { background-color: #5c73f2; color: white; } /* Folder arrow */ .nav-folder.is-collapsed .nav-folder-collapse-indicator { color: #5c73f2; } .nav-folder-collapse-indicator { color: #5c73f2; } /* Tag Selection */ .tag-pane-tag:hover { background-color: #5c73f2; color: white; } .theme-light .tag-pane-tag-count { color: var(--text-normal) } /* Title */ .side-dock-title { color: #5c73f2; } /* Ribon */ .side-dock-ribbon { background-color: #5c73f2!important; color: var(--text-muted) } .side-dock-ribbon-tab, .side-dock-ribbon-action { color: white; } .theme-dark .side-dock-ribbon-tab.is-active { color: white; } .theme-dark .side-dock-ribbon-tab.is-before-active { color: white; } .theme-light .side-dock-ribbon-tab.is-active { color: var(--text-normal); } .theme-light .side-dock-ribbon-tab.is-before-active { color: white; } .side-dock-ribbon-tab-inner { color: unset; } .side-dock-ribbon-before.is-before-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-after.is-after-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-tab.is-before-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-tab.is-after-active .side-dock-ribbon-tab-inner { background-color: #5c73f2; } .side-dock-ribbon-tab, .side-dock-ribbon-before, .side-dock-ribbon-after, .side-dock-ribbon-tab-inner { transition: none; } /**/ /* Settings panel Section */ /**/ .vertical-tab-nav-item.is-active { background-color: #5c73f2; color:white; } .horizontal-tab-nav-item:hover, .vertical-tab-nav-item:hover { background-color: #5c73f2; color: white; } .vertical-tab-nav-item.is-active { background-color: #5c73f2; } .vertical-tab-nav-item.is-active { border-left-color: #5c73f2; }
.obsidian/themes/Moonlight.css
.theme-dark { --background-primary: #202020; --background-primary-alt: #1a1a1a; --background-secondary: #161616; --background-secondary-alt: #080808; --background-accent: #000; --background-modifier-border: #333; --background-modifier-form-field: rgba(0, 0, 0, 0.3); --background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22); --background-modifier-box-shadow: rgba(0, 0, 0, 0.3); --background-modifier-success: #197300; --background-modifier-error: #3d0000; --background-modifier-error-rgb: 61, 0, 0; --background-modifier-error-hover: #470000; --background-modifier-cover: rgba(0, 0, 0, 0.6); --text-accent: #5c73f2; --text-accent-hover: #5c73f2; --text-normal: #dcddde; --text-muted: #888; --text-faint: #555; --text-error: #ff3333; --text-error-hover: #990000; --text-highlight-bg: #5cd6f296; --text-selection: rgba(0, 122, 255, 0.2); --text-on-accent: #dcddde; --interactive-normal: #2a2a2a; --interactive-hover: #303030; --interactive-accent: #5c73f2; --interactive-accent-rgb: 72, 54, 153; --interactive-accent-hover: #5c73f2; --scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2); --scrollbar-bg: rgba(255, 255, 255, 0.05); --scrollbar-thumb-bg: rgba(255, 255, 255, 0.1); } .theme-light { --background-primary: #ffffff; --background-primary-alt: #f5f6f8; --background-secondary: #f2f3f5; --background-secondary-alt: #e3e5e8; --background-accent: #5c73f2; --background-modifier-border: #ddd; --background-modifier-form-field: #fff; --background-modifier-form-field-highlighted: #fff; --background-modifier-box-shadow: rgba(0, 0, 0, 0.1); --background-modifier-success: #A4E7C3; --background-modifier-error: #e68787; --background-modifier-error-rgb: 230, 135, 135; --background-modifier-error-hover: #FF9494; --background-modifier-cover: rgba(0, 0, 0, 0.8); --text-accent: #5c73f2; --text-accent-hover: #5c73f2; --text-normal: #2e3338; --text-muted: #888888; --text-faint: #999999; --text-error: #800000; --text-error-hover: #990000; --text-highlight-bg: #5cd6f296; --text-selection: rgba(0, 122, 255, 0.15); --text-on-accent: #f2f2f2; --interactive-normal: #f2f3f5; --interactive-hover: #e9e9e9; --interactive-accent: #5c73f2; --interactive-accent-rgb: 123, 108, 217; --interactive-accent-hover: #5c73f2; --scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2); --scrollbar-bg: rgba(0, 0, 0, 0.05); --scrollbar-thumb-bg: rgba(0, 0, 0, 0.1); } ::selection { background-color: #5c73f2; color: white; } /* Current main pane */ .workspace-leaf.mod-active .workspace-leaf-header-title { color: #5c73f2; text-align: center; } /* Other pane */ .workspace-leaf-header-title-container { text-align:center; } /* Headers */ span.cm-formatting.cm-formatting-header.cm-formatting-header-1.cm-header.cm-header-1 { color: #5c73f2;; } span.cm-formatting.cm-formatting-header.cm-formatting-header-2.cm-header.cm-header-2 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-3.cm-header.cm-header-3 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-4.cm-header.cm-header-4 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-5.cm-header.cm-header-5 { color: #5c73f2; } span.cm-formatting.cm-formatting-header.cm-formatting-header-6.cm-header.cm-header-6 { color: #5c73f2; } /* Header folder icon */ .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { color: #5c73f2; } .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { color: #5c73f2; } /* Cursor */ .cm-fat-cursor .CodeMirror-cursor { background: #5c73f2; } .cm-animate-fat-cursor { background-color: #5c73f2; } /* Selection in popup ([[]] autocomplete)*/ .suggestion-item.is-selected { background-color: #5c73f2; color: white; } .theme-light .suggestion-shortcut { color: var(--text-normal); } /* Inner and Outer links */ .cm-url { color: lightblue!important; } .markdown-highlighting .internal-link .cl-underlined-text { color: #5c73f2!important; } .markdown-highlighting .link .cl-underlined-text { color: lightblue!important; } /* Blockquote */ .preview blockquote { background-color: var(--background-modifier-border); border: 1px solid var(--text-muted); } /* Highlights and Bold */ strong { font-size: larger; } mark { background-color: darkgoldenrod; } .markdown-highlighting .tag { color: #5c73f2!important; } /* Tables */ .markdown-preview-view th { background-color: #5c73f2; color: white } .cm-s-obsidian pre.HyperMD-table-row span.cm-hmd-table-sep { color: unset; } .cm-s-obsidian pre.HyperMD-table-row-1 > span { color: unset; } /* Status bar */ .theme-dark .status-bar-item { color: white; } .theme-light .status-bar-item { color: black; } /**/ /* Preview section */ /**/ /* Centered preview */ .markdown-preview-view { padding-left: 10% !important; padding-right: 10% !important; } .markdown-embed-title { color: #5c73f2; } .markdown-preview-view .markdown-embed { background-color: var(--background-primary-alt); margin-top: 0.5rem; margin-bottom: 0.5rem; } .markdown-preview-view .internal-link { color: #5c73f2; } .markdown-preview-view a { color: lightblue; } /**/ /* Side panel section */ /**/ /* Plugin Title and Description */ .plugin-name { color: var(--text-normal); } .plugin-description { color: var(--text-normal) } /* Files title and Buttons */ .nav-file-title-content, .nav-folder-title-content { color: var(--text-normal); } .nav-action-button { color: var(--text-normal); } /* File explorer navigation selection */ .nav-file.is-active > .nav-file-title, .nav-file.is-active > .nav-folder-title, .nav-file.is-active > .nav-folder-collapse-indicator, .nav-folder.is-active > .nav-file-title, .nav-folder.is-active > .nav-folder-title, .nav-folder.is-active > .nav-folder-collapse-indicator { background-color: #5c73f2; color: white; } body:not(.is-grabbing) .nav-file-title:hover, body:not(.is-grabbing) .nav-folder-title:hover { background-color: #5c73f2; color: white; } .nav-file-title-content, .nav-folder-title-content { color:unset; } .nav-folder.mod-root > .nav-file-title:hover, .nav-folder.mod-root > .nav-folder-title:hover { color: var(--text-normal); } body:not(.is-grabbing) .nav-file-title:hover .nav-folder-collapse-indicator, body:not(.is-grabbing) .nav-folder-title:hover .nav-folder-collapse-indicator { background-color: #5c73f2; color: white; } .nav-file-title, .nav-folder-title, .nav-folder-collapse-indicator { color: var(--text-normal); } /* File explorer menu*/ .menu-item:hover { background-color: #5c73f2; color: white; } /* Backlinks Color and Text */ .search-result-file-matched-text { background-color: #5c73f2; color: white; } .search-result-file-title { color: #5c73f2; } .search-result-file-matches { color: var(--text-normal); } .search-result-file-title:hover { background-color: #5c73f2; color: white; } .search-result-file-match:hover { background-color: #5c73f2; color: white; } /* Folder arrow */ .nav-folder.is-collapsed .nav-folder-collapse-indicator { color: #5c73f2; } .nav-folder-collapse-indicator { color: #5c73f2; } /* Tag Selection */ .tag-pane-tag:hover { background-color: #5c73f2; color: white; } .theme-light .tag-pane-tag-count { color: var(--text-normal) } /* Title */ .side-dock-title { color: #5c73f2; } /* Ribon */ .side-dock-ribbon { background-color: #5c73f2!important; color: var(--text-muted) } .side-dock-ribbon-tab, .side-dock-ribbon-action { color: white; } .theme-dark .side-dock-ribbon-tab.is-active { color: white; } .theme-dark .side-dock-ribbon-tab.is-before-active { color: white; } .theme-light .side-dock-ribbon-tab.is-active { color: var(--text-normal); } .theme-light .side-dock-ribbon-tab.is-before-active { color: white; } .side-dock-ribbon-tab-inner { color: unset; } .side-dock-ribbon-before.is-before-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-after.is-after-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-tab.is-before-active .side-dock-ribbon-tab-inner, .side-dock-ribbon-tab.is-after-active .side-dock-ribbon-tab-inner { background-color: #5c73f2; } .side-dock-ribbon-tab, .side-dock-ribbon-before, .side-dock-ribbon-after, .side-dock-ribbon-tab-inner { transition: none; } /**/ /* Settings panel Section */ /**/ .vertical-tab-nav-item.is-active { background-color: #5c73f2; color:white; } .horizontal-tab-nav-item:hover, .vertical-tab-nav-item:hover { background-color: #5c73f2; color: white; } .vertical-tab-nav-item.is-active { background-color: #5c73f2; } .vertical-tab-nav-item.is-active { border-left-color: #5c73f2; }
0.388734
0.059265
/* In NativeScript, the app.css file is where you place CSS rules that you would like to apply to your entire application. Check out http://docs.nativescript.org/ui/styling for a full list of the CSS selectors and properties you can use to style UI components. /* In many cases you may want to use the NativeScript core theme instead of writing your own CSS rules. For a full list of class names in the theme refer to http://docs.nativescript.org/ui/theme. The imported CSS rules must precede all other types of rules. @import '~nativescript-theme-core/css/core.light.css'; */ /* The following CSS rule changes the font size of all UI components that have the btn class name. */ .text-input { border-width: 1; font-weight: 400; border-color:rgba(255, 255, 255, 0.3); border-radius: 5dp; font-size: 14; color: #fff; padding-top: 22; padding-bottom: 22; padding-left: 50dp; placeholder-color:#BBC2D4; color: #83A7FF; background: #EAEEFF; text-align: left; } .text-input-icon { color: #83A7FF; margin-left: 20dp; font-size: 15; padding-top: 4; } .page { background-color: #FEFCFA; } .fa { font-family: icomoon; font-size: 15dp; } .pager { font-size: 18; font-weight: 600; color: #BBC2D4; } .h1 { font-size: 22; text-align: left; font-weight: 600; color: #0A0A0D; margin-top:-4; } .text-blue { color: #83A7FF; } .mt-25 { margin-top: 25; } .mt-20 { margin-top: 20; } .mt-15 { margin-top: 15; } .mt-10 { margin-top: 10; } .mt-5 { margin-top: 5; } .ml-25 { margin-left: 25; } .ml-20 { margin-left: 20; } .ml-15{ margin-left: 15; } .ml-10{ margin-left: 10; } .ml-5{ margin-left: 5; } .mr-25 { margin-right: 25; } .mr-20 { margin-right: 20; } .mr-15 { margin-right: 15; } .mr-10 { margin-right: 10; } .mr-5 { margin-right: 5; } .mb-25 { margin-bottom: 25; } .mb-20 { margin-bottom: 20; } .mb-15 { margin-bottom: 15; } .mb-10 { margin-bottom: 10; } .mb-5 { margin-bottom: 5; } .pt-10 { padding-top:10; } .pt-15 { padding-top:15; } .pt-20 { padding-top:20; } .pb-10 { padding-bottom:10; } .pb-15 { padding-bottom:15; } .pb-20 { padding-bottom:20; } .bg-black { background: #0A0A0D; } .button-big { height: 70dp; width: 100%; background: linear-gradient(to right,#6D89FC, #8AB6FD); } .button-big #text { color: #fff; font-size: 14dp; font-weight: 600; text-transform: uppercase; letter-spacing:0.2dp; } .button-big #icon { color: #fff; font-size: 15; margin-top: 2dp; margin-left: 15dp; } .action-bar { /* background: #fff;*/ } .menu-hamburger{ font-size: 10dp; align-self: center ; color: #0A0A0D; } .title-page { text-align: center; align-self: center ; } .btn-min { background: #83A7FF; border-radius: 5; border-color: transparent; border-width: 1; color:#fff; font-size: 14; text-transform: none; } .btn-min Label { color: #fff; text-align: center; font-size: 14; font-weight: 500; font-weight: 600; margin-right: 10dp; margin-top: 8dp; margin-bottom: 10dp; } .btn-min .fa { margin-left: 10dp; margin-right: 10dp; margin-top: 10dp; margin-bottom: 10dp; font-size: 12; } .line-text-view { color: #8AB6FD; border-color: #8AB6FD; border-width: 0 0 2 0; } .line-text-view .text-view { font-size: 14; color: #8AB6FD; border-color:transparent; border-width: 1; width: 100%; text-align: left; placeholder-color:#BBC2D4; } .progress-icons { vertical-align: center; horizontal-align:center; color: #F9B68F; font-size: 14; font-weight: 600; } .progress-icons .fa { padding-bottom: 1; } .animate-circle-bg { height: 1000dp; width: 1000dp; border-radius: 500; transform: translate(-500, -500); opacity: 0.7; background: linear-gradient(to bottom, #F6F8FF, #F6F8FF, #FEF4EB); } .chek-box { font-family: icomoon; border-width: 3; border-color: #8AB6FD; height: 25; width: 25; border-radius: 12.5; font-size: 0; color: #fff; text-align: center; } .chek-box-chek { background: #8AB6FD; font-size: 8; padding-top: 6dp; }
app/app.css
/* In NativeScript, the app.css file is where you place CSS rules that you would like to apply to your entire application. Check out http://docs.nativescript.org/ui/styling for a full list of the CSS selectors and properties you can use to style UI components. /* In many cases you may want to use the NativeScript core theme instead of writing your own CSS rules. For a full list of class names in the theme refer to http://docs.nativescript.org/ui/theme. The imported CSS rules must precede all other types of rules. @import '~nativescript-theme-core/css/core.light.css'; */ /* The following CSS rule changes the font size of all UI components that have the btn class name. */ .text-input { border-width: 1; font-weight: 400; border-color:rgba(255, 255, 255, 0.3); border-radius: 5dp; font-size: 14; color: #fff; padding-top: 22; padding-bottom: 22; padding-left: 50dp; placeholder-color:#BBC2D4; color: #83A7FF; background: #EAEEFF; text-align: left; } .text-input-icon { color: #83A7FF; margin-left: 20dp; font-size: 15; padding-top: 4; } .page { background-color: #FEFCFA; } .fa { font-family: icomoon; font-size: 15dp; } .pager { font-size: 18; font-weight: 600; color: #BBC2D4; } .h1 { font-size: 22; text-align: left; font-weight: 600; color: #0A0A0D; margin-top:-4; } .text-blue { color: #83A7FF; } .mt-25 { margin-top: 25; } .mt-20 { margin-top: 20; } .mt-15 { margin-top: 15; } .mt-10 { margin-top: 10; } .mt-5 { margin-top: 5; } .ml-25 { margin-left: 25; } .ml-20 { margin-left: 20; } .ml-15{ margin-left: 15; } .ml-10{ margin-left: 10; } .ml-5{ margin-left: 5; } .mr-25 { margin-right: 25; } .mr-20 { margin-right: 20; } .mr-15 { margin-right: 15; } .mr-10 { margin-right: 10; } .mr-5 { margin-right: 5; } .mb-25 { margin-bottom: 25; } .mb-20 { margin-bottom: 20; } .mb-15 { margin-bottom: 15; } .mb-10 { margin-bottom: 10; } .mb-5 { margin-bottom: 5; } .pt-10 { padding-top:10; } .pt-15 { padding-top:15; } .pt-20 { padding-top:20; } .pb-10 { padding-bottom:10; } .pb-15 { padding-bottom:15; } .pb-20 { padding-bottom:20; } .bg-black { background: #0A0A0D; } .button-big { height: 70dp; width: 100%; background: linear-gradient(to right,#6D89FC, #8AB6FD); } .button-big #text { color: #fff; font-size: 14dp; font-weight: 600; text-transform: uppercase; letter-spacing:0.2dp; } .button-big #icon { color: #fff; font-size: 15; margin-top: 2dp; margin-left: 15dp; } .action-bar { /* background: #fff;*/ } .menu-hamburger{ font-size: 10dp; align-self: center ; color: #0A0A0D; } .title-page { text-align: center; align-self: center ; } .btn-min { background: #83A7FF; border-radius: 5; border-color: transparent; border-width: 1; color:#fff; font-size: 14; text-transform: none; } .btn-min Label { color: #fff; text-align: center; font-size: 14; font-weight: 500; font-weight: 600; margin-right: 10dp; margin-top: 8dp; margin-bottom: 10dp; } .btn-min .fa { margin-left: 10dp; margin-right: 10dp; margin-top: 10dp; margin-bottom: 10dp; font-size: 12; } .line-text-view { color: #8AB6FD; border-color: #8AB6FD; border-width: 0 0 2 0; } .line-text-view .text-view { font-size: 14; color: #8AB6FD; border-color:transparent; border-width: 1; width: 100%; text-align: left; placeholder-color:#BBC2D4; } .progress-icons { vertical-align: center; horizontal-align:center; color: #F9B68F; font-size: 14; font-weight: 600; } .progress-icons .fa { padding-bottom: 1; } .animate-circle-bg { height: 1000dp; width: 1000dp; border-radius: 500; transform: translate(-500, -500); opacity: 0.7; background: linear-gradient(to bottom, #F6F8FF, #F6F8FF, #FEF4EB); } .chek-box { font-family: icomoon; border-width: 3; border-color: #8AB6FD; height: 25; width: 25; border-radius: 12.5; font-size: 0; color: #fff; text-align: center; } .chek-box-chek { background: #8AB6FD; font-size: 8; padding-top: 6dp; }
0.496094
0.097691
@charset "UTF-8"; * { position: relative; font-family: "Ubuntu", "微軟正黑體"; color: white; } body, html { margin: 0px; padding: 0px; background-color: #262626; width: 100%; height: 100%; } body { display: flex; justify-content: center; align-items: center; } .daybox { width: 50%; max-width: 400px; background-color: #0099ff; overflow: hidden; border-radius: 10px; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); cursor: pointer; } .daybox .text_area { letter-spacing: 3px; } .daybox .text_area .temp { letter-spacing: 2px; } .daybox:hover .bottom { height: 100px; transition-duration: 1s; } .daybox:hover .dayWeather { margin-top: 0px; } .daybox:hover #MON { opacity: 1; transition-duration: 0.5s; transition-delay: 1s; } .daybox:hover #TUE { opacity: 1; transition-duration: 0.5s; transition-delay: 1.3s; } .daybox:hover #WED { opacity: 1; transition-duration: 0.5s; transition-delay: 1.6s; } .daybox:hover #THU { opacity: 1; transition-duration: 0.5s; transition-delay: 1.9s; } .daybox:hover #FRI { opacity: 1; transition-duration: 0.5s; transition-delay: 2.2s; } .daybox:hover #SAT { opacity: 1; transition-duration: 0.5s; transition-delay: 2.5s; } .daybox:hover #SUN { opacity: 1; transition-duration: 0.5s; transition-delay: 2.8s; } .top { height: 300px; cursor: pointer; } .top .tempsvg { width: 100%; z-index: 8; opacity: 0.3; transition-duration: 1s; } .top .tempsvg circle { fill: white; } .top .tempsvg polyline { stroke: white; stroke-width: 2px; fill: none; } .top .tempsvg text { opacity: 0; fill: white; font-size: 10px; transform: translateX(-5px) translateY(20px); } .top .moon { position: absolute; width: 70px; height: 70px; top: 40px; left: 30px; background-color: #ffd633; border-radius: 100%; } .top .moon .moon1 { position: absolute; width: 75px; height: 75px; left: 50px; top: -50px; border-radius: 100%; background-color: #0099ff; animation: moon_change 30s infinite; } @keyframes moon_change { 0% { left: 50px; top: -55px; } 100% { left: -60px; top: 55px; } } .top .cloud { background-color: white; position: absolute; right: 50px; bottom: 100px; width: 110px; height: 35px; border-radius: 20px; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); animation: cloudmotion 3s infinite; } .top .cloud .rain { position: absolute; width: 1px; height: 10px; left: 20px; top: 20px; animation: raindrop 2s infinite linear; } .top .cloud .rain1 { left: 55px; animation-delay: 0.5s; } .top .cloud .rain2 { left: 68px; animation-delay: 0.1s; } .top .cloud .cloud1 { position: absolute; width: 40px; height: 40px; left: 53px; top: -20px; border-radius: 100%; background-color: white; } .top .cloud .cloud2 { position: absolute; width: 50px; height: 50px; left: 18px; top: -30px; border-radius: 100%; background-color: white; } @keyframes cloudmotion { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } } @keyframes raindrop { 0% { transform: translateY(0px); opacity: 1; } 100% { transform: translateY(50px); opacity: 0; } } .bottom { background-color: white; height: 3px; display: flex; justify-content: center; padding-top: 15px; transition-delay: 0.3s; transition-duration: 0.5s; border-radius: 0 0 10px 10px; cursor: pointer; box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); } .bottom .dayWeather { width: calc(100% / 7 - 5px); margin-right: 3px; margin-top: 3px; opacity: 0; transition-duration: 0.3s; } .bottom .dayWeather .day { letter-spacing: 2px; } .bottom .dayWeather svg { width: 100%; height: 50px; } .bottom .dayWeather svg .sun { fill: #ffbf00; stroke: rgba(255, 191, 0, 0.4); stroke-dasharray: 7px; stroke-width: 15px; } .bottom .dayWeather svg .cloud { animation: cloudmotion 5s infinite; fill: #ccc; } .bottom .dayWeather svg .rain { stroke-width: 5px; animation: raindrop 2s infinite; } .bottom .dayWeather svg .rain1 { animation-delay: 0.5s; } .bottom .dayWeather svg .rain2 { animation-delay: 1s; } .bottom .dayWeather .day, .bottom .dayWeather .daytemp { color: #a6a6a6; font-size: 8px; text-align: center; } .text_area { display: inline-block; position: absolute; bottom: 50px; left: 30px; } .text_area .temp { font-size: 60px; } .text_area .addr, .text_area .time { font-size: 13px; opacity: 0.6; } .rain { background-color: #f2f2f2; fill: #f2f2f2; stroke: #f2f2f2; z-index: 1; } #switch:not(:checked) + .top .tempsvg:not(text) { transition-duration: 1s; } #switch:not(:checked) + .top .tempsvg:not(text) text { opacity: 0; transition-delay: 2s; transition-duration: 1s; } #switch:not(:checked) + .top .moon, #switch:not(:checked) + .top .cloud { transition-delay: 3s; transition-duration: 1s; } #switch { visibility: hidden; } #switch:checked + .top .moon, #switch:checked + .top .cloud { opacity: 0.3; transition-duration: 1s; } #switch:checked + .top .tempsvg { opacity: 1; transition-delay: 2s; transition-duration: 1s; } #switch:checked + .top .tempsvg text { opacity: 1; transition-delay: 3s; transition-duration: 1s; }
weatherbox/css/style.css
@charset "UTF-8"; * { position: relative; font-family: "Ubuntu", "微軟正黑體"; color: white; } body, html { margin: 0px; padding: 0px; background-color: #262626; width: 100%; height: 100%; } body { display: flex; justify-content: center; align-items: center; } .daybox { width: 50%; max-width: 400px; background-color: #0099ff; overflow: hidden; border-radius: 10px; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); cursor: pointer; } .daybox .text_area { letter-spacing: 3px; } .daybox .text_area .temp { letter-spacing: 2px; } .daybox:hover .bottom { height: 100px; transition-duration: 1s; } .daybox:hover .dayWeather { margin-top: 0px; } .daybox:hover #MON { opacity: 1; transition-duration: 0.5s; transition-delay: 1s; } .daybox:hover #TUE { opacity: 1; transition-duration: 0.5s; transition-delay: 1.3s; } .daybox:hover #WED { opacity: 1; transition-duration: 0.5s; transition-delay: 1.6s; } .daybox:hover #THU { opacity: 1; transition-duration: 0.5s; transition-delay: 1.9s; } .daybox:hover #FRI { opacity: 1; transition-duration: 0.5s; transition-delay: 2.2s; } .daybox:hover #SAT { opacity: 1; transition-duration: 0.5s; transition-delay: 2.5s; } .daybox:hover #SUN { opacity: 1; transition-duration: 0.5s; transition-delay: 2.8s; } .top { height: 300px; cursor: pointer; } .top .tempsvg { width: 100%; z-index: 8; opacity: 0.3; transition-duration: 1s; } .top .tempsvg circle { fill: white; } .top .tempsvg polyline { stroke: white; stroke-width: 2px; fill: none; } .top .tempsvg text { opacity: 0; fill: white; font-size: 10px; transform: translateX(-5px) translateY(20px); } .top .moon { position: absolute; width: 70px; height: 70px; top: 40px; left: 30px; background-color: #ffd633; border-radius: 100%; } .top .moon .moon1 { position: absolute; width: 75px; height: 75px; left: 50px; top: -50px; border-radius: 100%; background-color: #0099ff; animation: moon_change 30s infinite; } @keyframes moon_change { 0% { left: 50px; top: -55px; } 100% { left: -60px; top: 55px; } } .top .cloud { background-color: white; position: absolute; right: 50px; bottom: 100px; width: 110px; height: 35px; border-radius: 20px; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); animation: cloudmotion 3s infinite; } .top .cloud .rain { position: absolute; width: 1px; height: 10px; left: 20px; top: 20px; animation: raindrop 2s infinite linear; } .top .cloud .rain1 { left: 55px; animation-delay: 0.5s; } .top .cloud .rain2 { left: 68px; animation-delay: 0.1s; } .top .cloud .cloud1 { position: absolute; width: 40px; height: 40px; left: 53px; top: -20px; border-radius: 100%; background-color: white; } .top .cloud .cloud2 { position: absolute; width: 50px; height: 50px; left: 18px; top: -30px; border-radius: 100%; background-color: white; } @keyframes cloudmotion { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } } @keyframes raindrop { 0% { transform: translateY(0px); opacity: 1; } 100% { transform: translateY(50px); opacity: 0; } } .bottom { background-color: white; height: 3px; display: flex; justify-content: center; padding-top: 15px; transition-delay: 0.3s; transition-duration: 0.5s; border-radius: 0 0 10px 10px; cursor: pointer; box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); } .bottom .dayWeather { width: calc(100% / 7 - 5px); margin-right: 3px; margin-top: 3px; opacity: 0; transition-duration: 0.3s; } .bottom .dayWeather .day { letter-spacing: 2px; } .bottom .dayWeather svg { width: 100%; height: 50px; } .bottom .dayWeather svg .sun { fill: #ffbf00; stroke: rgba(255, 191, 0, 0.4); stroke-dasharray: 7px; stroke-width: 15px; } .bottom .dayWeather svg .cloud { animation: cloudmotion 5s infinite; fill: #ccc; } .bottom .dayWeather svg .rain { stroke-width: 5px; animation: raindrop 2s infinite; } .bottom .dayWeather svg .rain1 { animation-delay: 0.5s; } .bottom .dayWeather svg .rain2 { animation-delay: 1s; } .bottom .dayWeather .day, .bottom .dayWeather .daytemp { color: #a6a6a6; font-size: 8px; text-align: center; } .text_area { display: inline-block; position: absolute; bottom: 50px; left: 30px; } .text_area .temp { font-size: 60px; } .text_area .addr, .text_area .time { font-size: 13px; opacity: 0.6; } .rain { background-color: #f2f2f2; fill: #f2f2f2; stroke: #f2f2f2; z-index: 1; } #switch:not(:checked) + .top .tempsvg:not(text) { transition-duration: 1s; } #switch:not(:checked) + .top .tempsvg:not(text) text { opacity: 0; transition-delay: 2s; transition-duration: 1s; } #switch:not(:checked) + .top .moon, #switch:not(:checked) + .top .cloud { transition-delay: 3s; transition-duration: 1s; } #switch { visibility: hidden; } #switch:checked + .top .moon, #switch:checked + .top .cloud { opacity: 0.3; transition-duration: 1s; } #switch:checked + .top .tempsvg { opacity: 1; transition-delay: 2s; transition-duration: 1s; } #switch:checked + .top .tempsvg text { opacity: 1; transition-delay: 3s; transition-duration: 1s; }
0.361954
0.07989
.home-hero { text-align: center; height: 518px; color: #fff; background-image: url(../images/hero-bg-m.jpg); background-position: center top; background-repeat: no-repeat; padding: 80px 20px; } .home-hero-title { font-size: 40px; line-height: 60px; padding: 70px 0 20px; } .home-hero-des { font-size: 18px; margin-bottom: 50px; } @media (min-width: 600px) { .home-hero { height: 638px; background-image: url(../images/hero-bg.png); } .home-hero-title { font-size: 50px; } .home-hero-des { margin-bottom: 60px; } } @media (max-width: 600px) { .home-hero-title { line-height: 50px; } } @media (max-width: 600px) { .home-hero { height: 518px; background-image: url(../images/hero-bg-m.jpg); } .home-hero-title { font-size: 40px; } .home-hero-des { margin-bottom: 90px; display:none; } } /* home-hero-about_us */ .home-hero-about_us { text-align: center; color: #fff; background-image: url(../images/hero-bg-aboutus.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-about_us { font-size: 40px; padding: 0 0 20px; } .home-hero-des-about_us { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-about_us { font-size: 50px; } } /* home-hero-project */ .home-hero-project { text-align: center; color: #fff; background-image: url(../images/hero-bg-freelancer.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-project { font-size: 40px; padding: 0 0 20px; } .home-hero-des-project { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-project { font-size: 50px; } } /* home-hero-security */ .home-hero-security { display:table; color: #fff; background-image: url(../images/hero-security-bg.png); background-position: center top; padding: 182px 20px 100px 20px; height: 100vh; width:100%; } .home-hero-title-security { font-size: 40px; padding: 0 0 20px; } .home-hero-des-security { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-security { font-size: 50px; } } /* home-hero-cs */ .home-hero-cs { text-align: center; color: #fff; background-image: url(../images/hero-bg-cs.png); background-position: center top; padding: 164px 20px 150px 20px; } .home-hero-title-cs { font-size: 40px; padding: 0; } .home-hero-des-cs { font-size: 18px; margin-bottom: 40px; color:white !important; } @media (min-width: 600px) { .home-hero-title-cs { font-size: 50px; } } /* home-hero-freelancer */ .home-hero-freelancer { text-align: center; color: #fff; background-image: url(../images/hero-bg-freelancer.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-freelancer { font-size: 40px; padding: 0 0 20px; } .home-hero-des-freelancer { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-freelancer { font-size: 50px; } } /* home-hero-portfolio */ .home-hero-portfolio { text-align: center; color: #fff; background-image: url(../images/hero-bg-portfolio.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-portfolio { font-size: 40px; font-weight: bold; padding: 0 0 20px; } .home-hero-des-portfolio { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-portfolio { font-size: 50px; } }
public/mokilsin/css/beautiful.css
.home-hero { text-align: center; height: 518px; color: #fff; background-image: url(../images/hero-bg-m.jpg); background-position: center top; background-repeat: no-repeat; padding: 80px 20px; } .home-hero-title { font-size: 40px; line-height: 60px; padding: 70px 0 20px; } .home-hero-des { font-size: 18px; margin-bottom: 50px; } @media (min-width: 600px) { .home-hero { height: 638px; background-image: url(../images/hero-bg.png); } .home-hero-title { font-size: 50px; } .home-hero-des { margin-bottom: 60px; } } @media (max-width: 600px) { .home-hero-title { line-height: 50px; } } @media (max-width: 600px) { .home-hero { height: 518px; background-image: url(../images/hero-bg-m.jpg); } .home-hero-title { font-size: 40px; } .home-hero-des { margin-bottom: 90px; display:none; } } /* home-hero-about_us */ .home-hero-about_us { text-align: center; color: #fff; background-image: url(../images/hero-bg-aboutus.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-about_us { font-size: 40px; padding: 0 0 20px; } .home-hero-des-about_us { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-about_us { font-size: 50px; } } /* home-hero-project */ .home-hero-project { text-align: center; color: #fff; background-image: url(../images/hero-bg-freelancer.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-project { font-size: 40px; padding: 0 0 20px; } .home-hero-des-project { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-project { font-size: 50px; } } /* home-hero-security */ .home-hero-security { display:table; color: #fff; background-image: url(../images/hero-security-bg.png); background-position: center top; padding: 182px 20px 100px 20px; height: 100vh; width:100%; } .home-hero-title-security { font-size: 40px; padding: 0 0 20px; } .home-hero-des-security { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-security { font-size: 50px; } } /* home-hero-cs */ .home-hero-cs { text-align: center; color: #fff; background-image: url(../images/hero-bg-cs.png); background-position: center top; padding: 164px 20px 150px 20px; } .home-hero-title-cs { font-size: 40px; padding: 0; } .home-hero-des-cs { font-size: 18px; margin-bottom: 40px; color:white !important; } @media (min-width: 600px) { .home-hero-title-cs { font-size: 50px; } } /* home-hero-freelancer */ .home-hero-freelancer { text-align: center; color: #fff; background-image: url(../images/hero-bg-freelancer.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-freelancer { font-size: 40px; padding: 0 0 20px; } .home-hero-des-freelancer { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-freelancer { font-size: 50px; } } /* home-hero-portfolio */ .home-hero-portfolio { text-align: center; color: #fff; background-image: url(../images/hero-bg-portfolio.png); background-position: center top; padding: 182px 20px 100px 20px; } .home-hero-title-portfolio { font-size: 40px; font-weight: bold; padding: 0 0 20px; } .home-hero-des-portfolio { font-size: 18px; margin-bottom: 40px; color: white !important; } @media (min-width: 600px) { .home-hero-title-portfolio { font-size: 50px; } }
0.223462
0.070017
h2 { font-size: 20px; margin-top: 10px; margin-bottom: 0px; } hr { margin-top: 5px; margin-bottom: 5px; } /* Filter specific */ #filters-panel { padding-top: 10px; padding-bottom: 10px; } #running_tasks { height: 225px; border: 1px solid coral; padding-left: 0; list-style: none; overflow-y: auto; } #running_tasks li { padding: 2px; } #running_tasks li .progress { margin-bottom: 0px; } #task_history { height: 775px; border: 1px solid coral; overflow-y: auto; } #task_list { height: 290px; border: 1px solid coral; overflow-y: auto; } #scenes_list { height: 250px; border: 1px solid coral; overflow-y: auto; } #task_metadata { height: 150px; border: 1px solid coral; overflow-y: auto; } #infoPanelContent { height: 100%; border: 1px solid lightgrey; padding: 5px; } /* Output box css */ #output_list { height: 400px; overflow-y: auto; border: 1px solid coral; margin-bottom: 0px; } #data_guide { height: 275px; overflow-y: auto; border: 1px solid coral; margin-bottom: 0px; } #data_guide .helper { float: none; } #download_sel { margin-top: 10px; } /* Map css */ .hidden { display:none; } .leaflet-control.info { padding: 6px 8px; font: 14px/16px Arial, Helvetica, sans-serif; background: white; background: rgba(255, 255, 255, 0.8); box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); border-radius: 5px; } .leaflet-control.info.lat_lon_container { font-size: 17px; } .leaflet-control.info img { max-height: 750px; max-width: 450px; } .leaflet-control.info.map_plot img { max-height: 350px; max-width: 100%; } .leaflet-bar.leaflet-control.leaflet-control-custom { width: 30px; height: 30px; background: rgba(255, 255, 255, 0.8); } .leaflet-bar.leaflet-control.leaflet-control-custom.label { width: auto; height: auto; background: rgba(255, 255, 255, 0.8); color: black; font-size: 20px; cursor: pointer; } .glyphicon_container { text-decoration: none; } .glyphicon.map_icon { cursor: pointer; font-size: 20px; vertical-align: middle; text-align: center; line-height: 30px; width: 30px; } .fullscreen-col { overflow: auto; } .side-panel { padding-top: 10px; padding-bottom: 10px; } .map { position: relative; z-index: 1; width: auto; height: 100%; padding: 0px; overflow: hidden; border-radius: 5px; border: 1px solid darkgrey; background-size: cover; background-color: lightgray; } .form-group { padding-left: 10px; } .image-display-vertically-centered { position: absolute; top: 0; bottom: 0; left: 0; right: 0; display: block; margin: auto; max-height: 100%; max-width: 100%; border: rgb(255, 127, 80) 2px outset; } .form-section-header { font-size: 1.5em; font-weight: bold; } .page-header { margin: 0; padding-bottom: 0; padding-top: 10px; } .panel-title.info-panel { font-weight: bold; } .panel-body { overflow-y: auto; } .image-display { display: block; margin: 0 auto; max-width: 100%; max-height: 100%; border: rgb(255, 127, 80) 2px outset; } .scene_list_table { margin-bottom: 0px; } .scene_list_table thead tr th { padding-bottom: 0; } .scene_list_table tbody tr td { border-top: none; padding: 2px; padding-left: 25px; padding-right: 10px; } .right_aligned_text { text-align: right; } .form-horizontal .form-group { padding-top: 0px; padding-bottom: 0px; margin-bottom: 0px; } .btn-primary { margin-top: 10px; } /* Generic */ .nav-tabs>li.active>a { background-color: coral; color: white; } .nav-tabs>li.active>a:focus { background-color: coral; color: white; } .nav-tabs>li.active>a:hover { background-color: coral; color: white; } .alternating li:nth-child(odd) { background: rgba(255, 127, 80, 0.15); } .helper { float: left; display: inline-block; } .helper a { display: block; height: 15px; width: 15px; font-size: 12px; text-align: center; background: #ccc; color: #000; border-radius: 15px; cursor: pointer; } .helper a:hover { background: #28597a; color: #fff; cursor: pointer; } .helper_filler { display: inline-block; } .helper_filler a { display: block; line-height: 20px; height: 15px; width: 15px; background-color: transparent; color: transparent; }
static/assets/css/map_tool.css
h2 { font-size: 20px; margin-top: 10px; margin-bottom: 0px; } hr { margin-top: 5px; margin-bottom: 5px; } /* Filter specific */ #filters-panel { padding-top: 10px; padding-bottom: 10px; } #running_tasks { height: 225px; border: 1px solid coral; padding-left: 0; list-style: none; overflow-y: auto; } #running_tasks li { padding: 2px; } #running_tasks li .progress { margin-bottom: 0px; } #task_history { height: 775px; border: 1px solid coral; overflow-y: auto; } #task_list { height: 290px; border: 1px solid coral; overflow-y: auto; } #scenes_list { height: 250px; border: 1px solid coral; overflow-y: auto; } #task_metadata { height: 150px; border: 1px solid coral; overflow-y: auto; } #infoPanelContent { height: 100%; border: 1px solid lightgrey; padding: 5px; } /* Output box css */ #output_list { height: 400px; overflow-y: auto; border: 1px solid coral; margin-bottom: 0px; } #data_guide { height: 275px; overflow-y: auto; border: 1px solid coral; margin-bottom: 0px; } #data_guide .helper { float: none; } #download_sel { margin-top: 10px; } /* Map css */ .hidden { display:none; } .leaflet-control.info { padding: 6px 8px; font: 14px/16px Arial, Helvetica, sans-serif; background: white; background: rgba(255, 255, 255, 0.8); box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); border-radius: 5px; } .leaflet-control.info.lat_lon_container { font-size: 17px; } .leaflet-control.info img { max-height: 750px; max-width: 450px; } .leaflet-control.info.map_plot img { max-height: 350px; max-width: 100%; } .leaflet-bar.leaflet-control.leaflet-control-custom { width: 30px; height: 30px; background: rgba(255, 255, 255, 0.8); } .leaflet-bar.leaflet-control.leaflet-control-custom.label { width: auto; height: auto; background: rgba(255, 255, 255, 0.8); color: black; font-size: 20px; cursor: pointer; } .glyphicon_container { text-decoration: none; } .glyphicon.map_icon { cursor: pointer; font-size: 20px; vertical-align: middle; text-align: center; line-height: 30px; width: 30px; } .fullscreen-col { overflow: auto; } .side-panel { padding-top: 10px; padding-bottom: 10px; } .map { position: relative; z-index: 1; width: auto; height: 100%; padding: 0px; overflow: hidden; border-radius: 5px; border: 1px solid darkgrey; background-size: cover; background-color: lightgray; } .form-group { padding-left: 10px; } .image-display-vertically-centered { position: absolute; top: 0; bottom: 0; left: 0; right: 0; display: block; margin: auto; max-height: 100%; max-width: 100%; border: rgb(255, 127, 80) 2px outset; } .form-section-header { font-size: 1.5em; font-weight: bold; } .page-header { margin: 0; padding-bottom: 0; padding-top: 10px; } .panel-title.info-panel { font-weight: bold; } .panel-body { overflow-y: auto; } .image-display { display: block; margin: 0 auto; max-width: 100%; max-height: 100%; border: rgb(255, 127, 80) 2px outset; } .scene_list_table { margin-bottom: 0px; } .scene_list_table thead tr th { padding-bottom: 0; } .scene_list_table tbody tr td { border-top: none; padding: 2px; padding-left: 25px; padding-right: 10px; } .right_aligned_text { text-align: right; } .form-horizontal .form-group { padding-top: 0px; padding-bottom: 0px; margin-bottom: 0px; } .btn-primary { margin-top: 10px; } /* Generic */ .nav-tabs>li.active>a { background-color: coral; color: white; } .nav-tabs>li.active>a:focus { background-color: coral; color: white; } .nav-tabs>li.active>a:hover { background-color: coral; color: white; } .alternating li:nth-child(odd) { background: rgba(255, 127, 80, 0.15); } .helper { float: left; display: inline-block; } .helper a { display: block; height: 15px; width: 15px; font-size: 12px; text-align: center; background: #ccc; color: #000; border-radius: 15px; cursor: pointer; } .helper a:hover { background: #28597a; color: #fff; cursor: pointer; } .helper_filler { display: inline-block; } .helper_filler a { display: block; line-height: 20px; height: 15px; width: 15px; background-color: transparent; color: transparent; }
0.380759
0.150684
.w-layout-grid { display: -ms-grid; display: grid; grid-auto-columns: 1fr; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; grid-row-gap: 16px; grid-column-gap: 16px; } body { background-color: #edeff2; font-family: 'Open Sans', sans-serif; color: #6a859c; font-size: 16px; line-height: 20px; } h1 { margin-top: 0px; margin-bottom: 10px; font-size: 38px; line-height: 44px; font-weight: 700; } h2 { margin-top: 0px; margin-bottom: 10px; color: #676770; font-size: 32px; line-height: 36px; font-weight: 300; text-align: center; } h3 { margin-top: 0px; margin-bottom: 0px; color: #676770; font-size: 20px; line-height: 30px; font-weight: 300; letter-spacing: 7px; text-transform: uppercase; } h4 { margin-top: 0px; margin-bottom: 10px; font-size: 18px; line-height: 24px; font-weight: 700; } h5 { margin-top: 0px; margin-bottom: 20px; color: #676770; font-size: 18px; line-height: 20px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } h6 { margin-top: 0px; margin-bottom: 10px; font-size: 12px; line-height: 18px; font-weight: 700; } p { margin-top: 10px; margin-bottom: 10px; font-size: 14px; line-height: 25px; font-weight: 300; } .button { display: inline-block; margin-right: 10px; margin-left: 10px; padding: 12px 30px; border-radius: 4px; background-color: #69b9ff; -webkit-transition: background-color 300ms ease; transition: background-color 300ms ease; color: #fff; font-size: 16px; line-height: 21px; font-weight: 300; text-align: center; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; } .button:hover { background-color: #2e9dff; } .button.w--current { background-color: #2e80b6; } .button.full-width { display: block; width: 100%; margin-right: 0px; margin-left: 0px; } .button.tab { margin-right: 8px; margin-left: 8px; background-color: #92a0ad; } .button.tab:hover { background-color: #2e80b6; } .button.tab.w--current { background-color: #2e80b6; } .navigation-link { padding-right: 32px; padding-left: 32px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 16px; font-weight: 600; } .navigation-link:hover { opacity: 0.75; color: #fff; } .navigation-link.w--current { margin-right: 0px; margin-left: 0px; padding-right: 32px; padding-left: 32px; opacity: 1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 800; } .nav_transparent { position: fixed; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none none solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.2); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .hamburger-button-white { display: none; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .navigation-menu { display: none; padding-right: 0px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; text-align: center; } .brand-text { margin-top: 0px; margin-bottom: 0px; font-family: 'Open Sans', sans-serif; color: #69b9ff; font-size: 25px; line-height: 25px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } .brand-link { padding-top: 16px; padding-bottom: 16px; } .section { position: relative; display: block; width: 100%; margin-right: 0px; margin-bottom: 120px; margin-left: 0px; padding: 0px; background-color: #fff; color: #5d6266; text-align: center; } .section.accent { background-color: #fff; color: #fff; } .white-box { padding: 0px; border: 1px none #dcebf7; border-radius: 5px; background-color: #fff; text-align: center; } .white-box.transparent { border-style: none; background-color: transparent; } .hero-section { padding-top: 242px; padding-bottom: 242px; } .hero-section.centered { display: block; padding-top: 195px; padding-bottom: 195px; border-bottom: 4px solid #69b9ff; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 157, 255, 0.5)), to(rgba(46, 157, 255, 0.22))), url('../images/photo-1416359658663-73a3834895eb.jpg'); background-image: linear-gradient(180deg, rgba(46, 157, 255, 0.5), rgba(46, 157, 255, 0.22)), url('../images/photo-1416359658663-73a3834895eb.jpg'); background-position: 0px 0px, 50% 50%; background-size: auto, cover; text-align: center; } .hero-heading { margin-bottom: 30px; color: #fff; font-size: 60px; line-height: 60px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } .hero-subheading { margin-bottom: 40px; color: #2e9dff; font-size: 25px; line-height: 25px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; } .hollow-button { display: inline-block; margin-right: 10px; margin-left: 10px; padding: 10px 30px; border: 1px solid #fff; border-radius: 4px; -webkit-transition: background-color 300ms ease, border 300ms ease, color 300ms ease; transition: background-color 300ms ease, border 300ms ease, color 300ms ease; color: #fff; line-height: 21px; font-weight: 300; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; } .hollow-button:hover { border-color: #2e9dff; color: #2e9dff; } .hollow-button.all-caps { text-transform: uppercase; } .section-heading { margin-top: 0px; margin-bottom: 16px; } .section-heading.centered { margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; font-weight: 500; text-align: center; letter-spacing: 5px; text-transform: uppercase; } .section-heading.centered.white { color: #3dbac5; font-weight: 500; } .section-subheading.center { color: #8e8e9c; font-size: 18px; font-weight: 300; text-align: center; letter-spacing: 3px; text-transform: uppercase; } .section-subheading.center.off-white { padding-bottom: 0px; color: #e8e8e8; } .section-title-group { width: 100%; max-width: 1400px; margin-right: 0px; margin-bottom: 56px; margin-left: 0px; } .form-field { height: 45px; margin-bottom: 17px; border: 0px solid #000; border-radius: 3px; box-shadow: 0 0 0 1px rgba(64, 64, 71, 0.3); } .form-field.text-area { height: 110px; } .contact { padding-top: 60px; padding-bottom: 35px; background-color: #3dbac5; color: #eaecef; } .contact.center { padding-top: 24px; padding-bottom: 0px; border-top: 1px solid #dbdbdb; background-color: #1a1a1a; text-align: center; } .footer-text { margin-top: 5px; margin-bottom: 5px; font-family: Montserrat, sans-serif; color: #fff; font-size: 12px; line-height: 32px; text-align: left; } .grid-image { display: block; width: 0%; margin: 20px auto; padding: 20px; border: 10px solid #fff; border-radius: 50%; background-color: #69b9ff; box-shadow: 0 0 0 1px #2e9dff; } .info-icon { float: left; } .footer-link { display: block; margin-bottom: 6px; padding-bottom: 10px; border-bottom: 1px solid #d5d5e0; color: #668cad; font-size: 14px; font-weight: 300; text-decoration: none; } .footer-link:hover { color: rgba(0, 140, 255, 0.84); } .footer-link.with-icon { margin-bottom: 0px; margin-left: 30px; padding-bottom: 0px; border: 1px none #000; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 300; } .footer-link.with-icon:hover { color: hsla(0, 0%, 100%, 0.5); } .footer-link-wrapper { margin-right: 16px; border: 1px none #000; } .tab-menu { margin-bottom: 40px; text-align: center; } .tabs-wrapper { text-align: center; } .fullwidth-image { width: 100%; margin-bottom: 20px; } .white-text { margin-bottom: 20px; color: #fff; } .form { margin-top: 40px; } .spc { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .heading { position: relative; left: auto; top: auto; right: auto; display: block; margin: 100px 60px 0px; padding-top: 0px; font-size: 64px; font-weight: 300; -o-object-fit: fill; object-fit: fill; } .background-video { position: relative; top: auto; display: block; height: 640px; margin-top: 80px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image { position: static; } .image-2 { display: block; text-align: left; } .logo-box-color { display: none; height: 64px; } .logo-long-color { height: 48px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .header { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: visible; min-width: 100%; margin: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; border-bottom: 1px none rgba(0, 0, 0, 0.1); background-color: transparent; -o-object-fit: fill; object-fit: fill; } .video_cover { position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; display: block; overflow: hidden; width: 800px; height: 800px; margin-right: 0%; padding-right: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -o-object-fit: fill; object-fit: fill; } .logo-long-white { height: 48px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .coverslogan { position: static; left: 0px; bottom: 0px; margin-bottom: 48px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 56px; line-height: 72px; font-weight: 400; text-align: justify; } .container-2 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: auto; max-width: 1200px; margin-bottom: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .dropdown { opacity: 0.5; color: #fff; } .dropdown:hover { opacity: 1; } .dropdown:active { opacity: 0.5; } .text-block { font-family: Montserrat, sans-serif; color: #fff; font-size: 14px; } .text-block:hover { color: hsla(0, 0%, 100%, 0.5); } .icon { color: #fff; } .dropdown-list { display: block; border-radius: 4px; background-color: #fff; box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.15); font-family: Montserrat, sans-serif; } .dropdown-list.w--open { display: none; } .dropdown-link { font-size: 14px; } .dropdown-link:hover { border-radius: 4px 4px 0px 0px; background-color: #54c1ce; color: #fff; } .dropdown-link-2 { font-size: 14px; } .dropdown-link-2:hover { background-color: #54c1ce; color: #fff; } .dropdown-link-3 { font-size: 14px; } .dropdown-link-3:hover { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; background-color: #54c1ce; color: #fff; } .icon-2 { display: none; margin-right: 0px; color: #fff; } .text-block-2 { color: #fff; font-size: 16px; } .language { display: block; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; border: 1px none #000; opacity: 1; } .language:hover { opacity: 1; } .menuitem { padding: 16px 60px 16px 20px; border-radius: 0px; background-color: transparent; opacity: 1; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 16px; font-weight: 400; text-align: left; } .menuitem:hover { background-color: hsla(0, 0%, 100%, 0.9); color: #111827; } .menuitem.first { border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: transparent; } .menuitem.first:hover { background-color: hsla(0, 0%, 100%, 0.9); } .menuitem.last { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } .dropdown-link-5 { padding: 16px 40px; border-radius: 0px 0px 4px 4px; background-color: #212630; color: #3dbac5; font-size: 14px; text-align: left; } .dropdown-link-5:hover { background-color: #3dbac5; color: #fff; } .dropdown-link-6 { padding: 16px 40px; background-color: #212630; color: #3dbac5; font-size: 14px; text-align: left; } .dropdown-link-6:hover { background-color: #3dbac5; color: #fff; } .dropdown-list-2 { padding-left: 16px; border-radius: 12px; } .dropdown-list-2.w--open { left: auto; top: auto; right: 0px; bottom: auto; margin-top: 0px; margin-right: 0px; padding-right: 0px; padding-left: 0px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 12px; background-color: hsla(0, 0%, 100%, 0.1); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); text-align: left; } .covertitle { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: none; margin-bottom: 40px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 24px; font-weight: 400; } .sloganbox { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 0px; margin-left: 72px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .coversmalltitle { margin-bottom: 16px; font-size: 18px; } .section-2 { margin-top: 80px; margin-bottom: 80px; background-color: #fff; } .body { background-color: #0d0b1d; font-family: 'Red Hat Display', sans-serif; color: #fff; } .section-intro { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-right: 0px; margin-left: 0px; padding: 0px 0px 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .container-3 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; padding-right: 0px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .text-block-3 { display: block; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-weight: 500; text-align: center; } .textkeyfunc { margin: 0px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 32px; line-height: 32px; font-weight: 500; text-align: center; } .text-block-5 { position: static; margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 32px; font-weight: 300; text-align: justify; } .coverintro { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: block; width: 50%; margin-bottom: 0px; margin-left: 0px; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 20px; line-height: 24px; font-weight: 400; text-align: justify; } .section-slogan { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 80vh; padding-top: 140px; padding-bottom: 220px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #3dbac5; background-image: url('../images/homeWorldMap.svg'); background-position: 50% 50%; background-size: cover; background-repeat: no-repeat; } .text-block-6 { margin-bottom: 48px; color: #fff; font-size: 56px; line-height: 72px; } .coverslogan { width: 100%; margin-bottom: 60px; font-size: 80px; text-align: left; } .homeabout { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 64px; margin-left: 72px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .div-block-2 { width: 100%; margin-right: 0px; margin-bottom: 24px; padding-right: 0px; } .div-block-3 { width: 100%; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; -o-object-fit: fill; object-fit: fill; } .scrolltip { position: static; left: 0%; top: auto; right: 0%; bottom: 0%; margin-bottom: 0px; text-align: left; } .homeaboutimages { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 300px; max-width: 140px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: auto; -ms-flex-item-align: auto; align-self: auto; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .image-3 { margin-right: 32px; margin-left: 32px; } .image-4 { margin-right: 32px; margin-left: 32px; } .image-5 { margin-right: 32px; margin-left: 32px; } .div-block-4 { width: 32%; height: 240px; background-color: #f0f0f0; } .link-block { display: block; width: 28px; height: 28px; margin-bottom: 32px; } .container-4 { display: block; max-width: 1400px; padding-right: 0px; padding-left: 0px; } .background-video-2 { overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .background-video-3 { position: relative; overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .background-video-4 { overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .columns { width: 100%; max-width: 1400px; margin-right: 0px; margin-bottom: 48px; margin-left: 0px; } .columns-2 { margin-right: 0px; margin-left: 0px; } .image-6 { max-width: 60%; } .image-7 { max-width: 60%; } .image-8 { max-width: 60%; } .container-5 { max-width: 1400px; padding-right: 72px; padding-left: 72px; } .heading-2 { color: #fff; } .heading-3 { display: block; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 32px; font-weight: 400; } .heading-4 { color: #fff; } .container-6 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1200px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_old { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 32px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #3dbac5; } .div-block-5 { max-width: 1200px; } .container-7 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; padding: 24px 72px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: #3dbac5; } .footer_copyright { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 13px; font-weight: 300; } .div-block-6 { display: none; width: 50%; margin-right: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-7 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 50%; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_link { margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 400; text-decoration: none; } .footer_link:hover { opacity: 0.5; color: #fff; } .footer_nav { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 240px; max-width: 1080px; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 20px; font-weight: 300; } .div-block-8 { display: block; width: 20%; } .div-block-9 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .div-block-10 { display: block; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .container-8 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 80px; max-width: 1200px; padding-top: 0px; padding-bottom: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-3 { display: block; background-color: #3dbac5; } .typed-slogan-text { margin-bottom: 0px; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 72px; line-height: 90px; font-weight: 500; text-align: center; } .div-block-11 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .footer_email { margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; font-weight: 500; } .footer_email:hover { color: rgba(61, 186, 197, 0.5); } .footer_addresscn { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 28px; line-height: 48px; font-weight: 200; } .text-block-7 { margin-bottom: 24px; } .div-block-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 36px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .image-9 { width: 32px; max-width: none; margin-right: 24px; } .image-10 { width: 32px; max-width: none; margin-right: 24px; color: #eaecef; } .footer_address { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; font-weight: 500; } .navigation { position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) rgba(0, 0, 0, 0.05); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .text-block-8 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 18px; font-weight: 300; } .link-block-2 { margin-right: 32px; margin-bottom: 0px; margin-left: 0px; opacity: 0.6; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 300; text-decoration: none; } .link-block-3 { text-decoration: none; } .link-block-4 { text-decoration: none; } .div-block-13 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 100px; margin-bottom: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; text-align: left; } .navigation-link-current { padding-right: 40px; padding-left: 40px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; color: #ffa543; } .navigation-link-current:hover { color: #fff; } .navigation-link-current.w--current { margin-right: 0px; margin-left: 0px; padding-right: 40px; padding-left: 40px; opacity: 1; color: #fff; } .div-block-14 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .dropdown-toggle { padding: 10px; border: 1px solid transparent; border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 1px 1px 5px 0 rgba(0, 0, 0, 0.1); opacity: 0.6; font-size: 18px; } .dropdown-toggle:hover { padding: 10px; border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.1); opacity: 1; } .dropdown-toggle.w--open { margin-top: 10px; margin-bottom: 10px; padding: 10px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.1); opacity: 1; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); } .text-block-9 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 24px; font-weight: 100; } .link-block-5 { -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .link-block-5.w--current { -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .section-4 { background-color: #3dbac5; } .container-9 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; padding: 24px 72px 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: #3dbac5; -o-object-fit: fill; object-fit: fill; } .footer_nav_link_title { margin-bottom: 0px; padding-right: 0px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e5e7eb; font-size: 16px; font-weight: 500; text-align: left; text-decoration: none; } .footer_nav_link_title:hover { opacity: 0.5; } .div-block-15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 48px; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-16 { width: 100%; margin-right: 72px; margin-bottom: 48px; margin-left: 72px; } .image-11 { height: 32px; } .text-block-10 { margin-right: 16px; margin-left: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 300; } .text-block-11 { margin-right: 0px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 14px; font-weight: 400; } .image-12 { display: none; height: 48px; margin-bottom: 36px; } .div-block-17 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } .div-block-18 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .language-copy { -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; border: 1px none #000; opacity: 1; } .language-copy:hover { opacity: 1; } .dropdown-list-2-copy { padding-left: 16px; } .dropdown-list-2-copy.w--open { left: auto; top: auto; right: 0%; bottom: 51px; margin-right: 0px; padding-right: 0px; padding-left: 0px; border-radius: 4px; box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.05); text-align: left; } .section-5 { height: 500px; } .section-6 { width: 100%; } .navigation_green { width: 100%; } .navbar { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); background-color: #fff; } .navigation-link-green { padding-right: 32px; padding-left: 32px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 16px; font-weight: 600; } .navigation-link-green:hover { opacity: 0.5; color: #3dbac5; } .navigation-link-green.w--current { margin-right: 0px; margin-left: 0px; padding-right: 32px; padding-left: 32px; opacity: 1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #ffa543; font-weight: 800; } .text-block-2-green { color: #3dbac5; font-size: 16px; } .icon-2-green { margin-right: 0px; color: #3dbac5; } .text-block-12 { margin-bottom: 24px; } .text-block-13 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 14px; } .text-block-14 { margin-bottom: 12px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 14px; font-weight: 300; } .text-block-9-green { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: rgba(61, 186, 197, 0.5); font-size: 24px; font-weight: 100; } .body-2 { display: block; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #fff; } .body-3 { background-color: #fff; } .body-4 { background-color: #fff; } .body-5 { background-color: #fff; } .body-6 { background-color: #fff; } .div-block-19 { width: 10%; } .section-_title { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 72px; margin-bottom: 72px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-20 { width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 36px; margin-left: 72px; padding-right: 0px; padding-left: 0px; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; } .heading-5 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 56px; line-height: 64px; font-weight: 400; text-align: center; } .div-block-21 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin: 24px 0px 32px; padding-right: 72px; padding-left: 72px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-22 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; max-width: 1400px; min-width: 100%; margin: 24px 0px; padding-right: 72px; padding-left: 72px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-23 { max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } .footer_lastlinks { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1080px; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .container-10 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .footer { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 400px; padding-top: 55px; padding-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.31); } .div-block-24 { width: 100%; height: auto; max-width: 1080px; margin-right: 72px; margin-left: 72px; background-color: transparent; } .div-block-25 { width: 100%; height: 100px; max-width: 1400px; margin-right: 72px; margin-left: 72px; } .section-zhunei { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-right: 0px; margin-left: 0px; padding: 0px 0px 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-8 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 80px; padding-bottom: 80px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .div-block-26 { display: block; width: 100%; height: auto; max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .section_content { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-bottom: 200px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_content.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_content.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_content.sectiondarkbg.investor { margin-bottom: 0px; } .containerdiv { display: block; width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .sectiontitlediv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .list_zhunei { margin-bottom: 0px; padding-left: 0px; } .list-item-zhunei { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; text-align: left; } .list-item-2 { margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; font-weight: 300; } .div-block-29 { width: 100%; height: 100px; max-width: 1400px; margin-right: 0px; margin-left: 0px; background-color: #f8c740; } .column { padding-right: 0px; padding-left: 0px; } .column-2 { padding-right: 0px; padding-left: 0px; } .section-10 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .section-11 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-bottom: 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .grid { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 0px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 0px 1fr 0px 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto 0px auto; grid-template-rows: auto auto; } .member_gird { max-width: 1400px; margin-right: 72px; margin-bottom: 0px; margin-left: 72px; } .section-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 64px; margin-bottom: 100px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-30 { display: block; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slider { width: 450px; height: 600px; } .about_slider_zhunei { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; } .div-block-31 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 64px; margin-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-32 { margin-right: 0px; } .div-block-33 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-13 { width: 100%; height: 600px; -o-object-fit: cover; object-fit: cover; } .grid-2 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .image-14 { height: 300px; } .image-15 { height: 300px; } .about_company_photo { width: 100%; height: 300px; -o-object-fit: cover; object-fit: cover; } .div-block-34 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .div-block-35 { width: 50%; margin-right: 64px; } .gray_line { display: block; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .text-block-15 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 64px; font-weight: 400; text-align: center; } .div-block-28-copy { margin-bottom: 64px; } .text-block-16 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; } .text-block-17 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 48px; line-height: 80px; font-weight: 300; } .div-block-36 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-37 { margin-right: 64px; } .paragraph { font-size: 18px; } .paragraph-2 { margin-top: 0px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; } .div-block-38 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .grid-3 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .image-16 { display: block; width: 100%; margin-bottom: 16px; -o-object-fit: cover; object-fit: cover; } .link-block-6 { display: block; } .div-block-37-copy { margin-right: 0px; margin-left: 24px; } .image-17 { color: #2a699e; } .go_youtube_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 36px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-decoration: none; } .go_youtube_link:hover { opacity: 0.75; } .youtube_green_icon { width: 32px; margin-right: 12px; } .go_youtube_text { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 24px; font-weight: 500; text-decoration: none; } .sub-section-title { display: block; margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 14px; font-weight: 600; text-align: left; } .grid-4 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .contact-form { padding-top: 100px; padding-bottom: 100px; } .small-text { text-align: center; } .contact-form-grid { display: -ms-grid; display: grid; margin-top: 40px; grid-auto-columns: 1fr; grid-column-gap: 20px; grid-row-gap: 20px; grid-template-areas: "." "Area"; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto; grid-template-rows: auto auto auto auto auto; } .submit-button { width: 100%; margin-top: 24px; padding-top: 24px; padding-bottom: 24px; border-radius: 8px; background-color: #ffa543; font-size: 20px; } .field-label { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-weight: 500; } .italic-text { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; font-style: normal; font-weight: 400; text-align: center; } .text-field { height: 48px; border: 2px solid #3dbac5; } .text-field-copy { border: 2px solid #3dbac5; } .paragraph-3 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 20px; font-weight: 400; text-align: center; } .container-11 { margin-bottom: 60px; } .div-block-39 { margin-top: 60px; } .form-block { margin-bottom: 60px; } .success-message { margin-top: 64px; padding: 40px; border: 2px solid #3dbac5; background-color: #fff; } .div-block-40 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; } .error-message { margin-top: 32px; padding-right: 40px; padding-left: 40px; } .paragraph-4 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e64c40; font-size: 18px; font-weight: 400; } .checkbox-field { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 24px; margin-bottom: 0px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .checkbox-label { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; font-weight: 400; } .link { text-decoration: none; } .checkbox { width: 20px; height: 20px; margin-right: 10px; padding: 8px; border-width: 2px; border-color: #3dbac5; } .link-2 { color: #3dbac5; line-height: 20px; text-decoration: none; } .contact-arrow { width: 24px; margin-right: 12px; } .contact-button { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 180px; height: 48px; margin-top: 48px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 8px; background-color: #ffa543; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 500; text-decoration: none; } .image-18 { width: 12px; margin-right: 12px; } .design_comment { color: #d6d6d6; font-size: 12px; text-align: center; } .link-3 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; text-decoration: none; } .image-16-copy { display: block; width: 100%; height: 400px; margin-bottom: 16px; -o-object-fit: cover; object-fit: cover; } .grid-5 { justify-items: center; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .gri_two { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 4px; grid-row-gap: 4px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 4px 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .heading-3-center { display: block; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 32px; font-weight: 600; text-align: center; } .grid-three { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 16px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 8px 1fr 8px 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto 16px auto; grid-template-rows: auto auto; } .grid-6 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section_content-copy { display: none; width: 100%; height: auto; margin-bottom: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .content_title { margin-top: 16px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 24px; font-weight: 500; text-align: left; text-decoration: none; } .link-block-7 { text-decoration: none; } .content_intro { margin-top: 4px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; line-height: 24px; font-weight: 400; text-align: left; text-decoration: none; } .div-block-41 { margin-bottom: 48px; } .section-13 { width: 10%; } .section-14 { width: 100%; } .container-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 100%; margin-bottom: 100px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-42 { max-width: 1400px; } .work_content_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 48px; font-weight: 500; text-align: left; } .work_content_details { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 16px; line-height: 32px; font-weight: 400; text-align: left; } .form-2 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .slider_three { display: block; background-color: #fff; } .grid-7 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; background-color: #fff; color: transparent; } .div-block-43 { display: none; } .cooperate_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 48px; font-weight: 500; text-align: left; } .cooperate_block001 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .content_topblock { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-19 { max-width: 60%; } .image-20 { max-width: 60%; } .grid_001 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; background-color: #fff; color: transparent; } .image-21 { text-align: left; } .grid-8 { grid-column-gap: 4px; grid-row-gap: 4px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .silder_three { margin-bottom: 80px; } .div-block-45 { margin-bottom: 80px; } .image-22 { max-width: 75%; -o-object-fit: contain; object-fit: contain; } .grid-9 { -ms-grid-rows: auto; grid-template-rows: auto; } .hamburger-button-dark { display: block; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .grid-10 { -ms-grid-columns: 1fr 2fr; grid-template-columns: 1fr 2fr; -ms-grid-rows: auto; grid-template-rows: auto; } .list-item { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; text-align: center; } .div-block-46 { margin-right: 0px; margin-left: 48px; padding-right: 0px; } .grid-11 { justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 0px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .image-23 { height: 32px; } .footer_lastlinks_mobile { position: static; display: none; max-width: 1400px; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slider_two { display: none; background-color: #fff; } .grid-8-two { grid-column-gap: 4px; grid-row-gap: 4px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .container_div_works_01 { display: block; width: 100%; max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; } .grid-12 { -ms-grid-rows: auto; grid-template-rows: auto; } .slide-nav-4 { display: none; } .slide-nav-5 { display: none; } .slide-nav-6 { display: none; } .icon-9 { display: none; } .covercontent { position: static; bottom: 15%; width: 100%; margin-top: 5rem; padding-right: 8rem; padding-left: 64px; } .coverheading { width: 100%; margin-bottom: 24px; font-family: Varela, sans-serif; font-size: 56px; line-height: 64px; text-align: left; } .bold-text { font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 24px; line-height: 24px; font-weight: 400; } .bold-text-2 { font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 64px; line-height: 64px; font-weight: 500; } .buttonprimary { margin-right: 24px; padding: 16px 64px; border-radius: 99px; background-image: -webkit-gradient(linear, left top, right top, from(#1d4ed8), to(#7c3aed)); background-image: linear-gradient(90deg, #1d4ed8, #7c3aed); font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } .buttonprimary:hover { background-image: -webkit-gradient(linear, left top, right top, from(#0e37ac), to(#5821b8)); background-image: linear-gradient(90deg, #0e37ac, #5821b8); } .buttonprimary:active { background-image: -webkit-gradient(linear, left top, right top, from(#03278b), to(#38068d)); background-image: linear-gradient(90deg, #03278b, #38068d); } .coverbuttons { margin-top: 56px; } .buttonoutline { margin-right: 24px; padding: 16px 40px; border: 2px solid #e5e7eb; border-radius: 99px; background-color: transparent; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } .buttonoutline:hover { border-color: #bcc0c9; } .buttonoutline:active { border-color: #8d929c; } .covercontentdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 90vh; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .covercontentmouseicondiv { position: relative; z-index: 30; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 10vh; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .icon-10 { display: none; } .image-24 { color: red; } .dropdown-2 { position: static; left: auto; top: 0%; right: 0%; bottom: 0%; margin-right: 0px; margin-left: 0px; } .dropdown-list-3 { position: absolute; display: block; width: 180px; } .dropdown-link-7 { width: 180px; } .dropdown-link-8 { width: 180px; } .textkeyfuncwords { margin: 0px 16px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 40px; font-weight: 700; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .divkeyfuncimage { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 50px; margin-bottom: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .image-25 { display: none; width: 60%; } .sectiontitle { margin: 0px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 80px; font-weight: 700; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .hightlight_title_mobile { display: none; width: 100%; margin-top: 48px; margin-bottom: 64px; padding-top: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .sectionsubtitle { width: 100%; margin-top: 0px; margin-bottom: 0px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 18px; line-height: 18px; font-weight: 400; text-align: center; } .powertoolsdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 48px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-perspective: 1000px; perspective: 1000px; } .investorgrid { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .powertoolscard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; padding: 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .image-26 { overflow: visible; width: 40%; } .text-block-19 { margin-top: 35px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 24px; text-align: center; } .text-block-19-copy { margin-top: 35px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 16px; line-height: 18px; font-weight: 400; text-align: center; } .text-block-19-copy { margin-top: 16px; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 16px; line-height: 24px; text-align: center; } .powertoolscardtitle { margin-top: 40px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 24px; font-weight: 700; text-align: center; } .powertoolscarddesc { margin-top: 16px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 24px; text-align: center; } .text-block-20 { font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); text-align: left; } .text-block-20:hover { color: #fff; } .text-block-21 { font-family: 'Red Hat Display', sans-serif; } .text-block-22 { font-family: 'Red Hat Display', sans-serif; } .text-block-23 { font-family: 'Red Hat Display', sans-serif; } .sectiontitlecolorfullaunchpad { margin: 0px 0px 16px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 60px; font-weight: 500; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .grid-13-copy { -webkit-box-pack: stretch; -webkit-justify-content: stretch; -ms-flex-pack: stretch; justify-content: stretch; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .launchpadbutton { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; padding: 36px 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border: 1px none #000; border-radius: 16px; background-color: hsla(0, 0%, 100%, 0.05); } .launchpadbuttontitle { margin-top: 0px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 32px; line-height: 40px; font-weight: 700; text-align: center; } .launchpadbuttonintro { margin-top: 24px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 24px; text-align: center; } .launchpad_screenshot { width: 100%; margin-top: 80px; } .launchpaddiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 64px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_launchpad { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .section_launchpad.sectiondarkbg { background-color: rgba(0, 0, 0, 0.31); } .footer_nav_link_list { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 180px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_nav_link_list.last { width: auto; } .footer_nav_link_list._3rd { width: 220px; } .footer_nav_link_item { margin-top: 10px; margin-bottom: 0px; padding-right: 0px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.4); font-size: 14px; font-weight: 500; text-align: left; text-decoration: none; } .footer_nav_link_item:hover { opacity: 1; color: #fff; } .footer_nav_link_itemdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 20px; margin-right: 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-50 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .copright { margin-right: 0px; opacity: 1; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.4); font-size: 12px; font-weight: 400; } .bold-text-3 { font-weight: 500; } .bold-text-4 { width: 50%; color: rgba(229, 231, 235, 0.5); font-weight: 400; } .bgcombo001 { position: absolute; left: -50rem; top: 150rem; width: 1600px; opacity: 0.2; } .image-30 { position: absolute; display: block; width: 500px; } .parallaxbackground { overflow: scroll; } .bgcombo002 { position: absolute; top: 1500px; right: -800px; width: 1600px; opacity: 0.2; } .bgcombo003 { position: fixed; left: -600px; bottom: -700px; overflow: hidden; width: 1600px; opacity: 0.2; } .bgcombomov001 { position: absolute; top: 4000px; right: 200px; width: 800px; opacity: 0.2; -webkit-filter: blur(50px); filter: blur(50px); } .launchpadglasscard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; height: 200px; padding: 36px 24px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 16px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); } .slider-_highlight { display: none; overflow: visible; width: 100%; height: auto; max-width: 1080px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; color: transparent; } .mask-4 { height: 120vh; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .slide-nav-7 { display: none; } .icon-11 { opacity: 0.3; } .icon-12 { opacity: 0.3; } .cardhighlight { position: absolute; display: none; overflow: hidden; width: 200px; height: 200px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; border-radius: 50%; background-color: #fff; opacity: 0.05; -webkit-filter: blur(20px); filter: blur(20px); -o-object-fit: cover; object-fit: cover; } .securitygrid { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .collaboratordiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_securityaudits { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_securityaudits.sectiondarkbg { position: relative; z-index: 99; height: 40vh; margin-bottom: 0px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_collaborator { display: none; width: 100%; height: 110vh; margin-bottom: 200px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .section_collaborator.sectiondarkbg { background-color: rgba(0, 0, 0, 0.31); } .bgcombo004 { position: absolute; left: auto; top: 300rem; right: -60rem; width: 1600px; opacity: 0.5; } .image-31 { width: 70%; } .powertools { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .cardhighlightsmall { position: absolute; overflow: hidden; width: 250px; height: 250px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; border-radius: 50%; background-color: #fff; opacity: 0.05; -webkit-filter: blur(20px); filter: blur(20px); -o-object-fit: cover; object-fit: cover; } .whitepaper_gird { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-flow: row; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercardtitle { width: 100%; min-height: 90px; margin-top: 0px; margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e5e7eb; font-size: 24px; line-height: 28px; font-weight: 300; text-align: left; } .whitepapercarddesc { width: 100%; margin-top: 0px; margin-bottom: 8px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); font-size: 14px; line-height: 24px; text-align: left; } .whitepapercardintro { width: 100%; margin-top: 0px; margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 14px; line-height: 22px; font-weight: 400; text-align: left; } .whitepapercarddate { width: 100%; margin-top: 0px; margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 12px; font-weight: 400; text-align: left; } .div-block-51 { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; height: auto; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-right: 0px; padding-bottom: 24px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .whitepapercard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 360px; padding: 32px 24px 48px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .link-block-9 { text-decoration: none; } .text-block-24 { position: absolute; bottom: 0px; margin-bottom: 32px; color: #fff; text-decoration: none; } .link-block-10 { margin-bottom: 12px; color: #30ad64; text-decoration: none; } .link-block-11 { text-decoration: none; } .link-block-12 { text-decoration: none; } .whitepaperlink { width: 100%; -webkit-transition: -webkit-transform 200ms ease; transition: -webkit-transform 200ms ease; transition: transform 200ms ease; transition: transform 200ms ease, -webkit-transform 200ms ease; text-decoration: none; } .whitepaperlink:hover { -webkit-transform: translate(0px, -10px); -ms-transform: translate(0px, -10px); transform: translate(0px, -10px); } .highlightvideo_01 { width: 800px; height: 800px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; } .section_cover { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; height: 100vh; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-52 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .highlighttitlebar { width: 100%; padding-top: 32px; padding-bottom: 32px; } .highlightbigcard_01 { position: static; left: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 560px; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .section_highlight { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_highlight.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .highlightbigcard_02 { position: static; top: 1500px; right: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 30rem; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .maxwidth { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-right: 64px; padding-left: 64px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .grid-13 { width: 100%; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 0.5fr 1fr; grid-template-columns: 0.5fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-14 { width: 100%; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: 300px auto; grid-template-rows: 300px auto; } .grid-15 { grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_launchpad { position: static; top: 1500px; right: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .highlightbigcard_lendborrow { position: static; left: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 30rem; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .hightlight_video { width: 320px; height: 360px; background-color: transparent; } .highlightbigcard_lendborrow_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 300px; padding: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .div-block-53 { width: 100%; } .textkeyfunctitle { display: inline; margin: 32px 0px 16px; background-image: -webkit-gradient(linear, right top, left top, from(#76a0ff), to(#fff)); background-image: linear-gradient(270deg, #76a0ff, #fff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 36px; line-height: 48px; font-weight: 900; text-align: left; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .textkeyfunctitle.center { text-align: center; } .dex_grid { width: 100%; justify-items: center; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .highlightbigcard_dex_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 500px; padding-top: 40px; padding-bottom: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .lendborrow_grid { width: 100%; justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_launchpad_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; padding: 40px 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .hightlightintro { width: 100%; margin-top: 0px; margin-bottom: 0px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 18px; font-weight: 400; text-align: left; } .hightlightintro.center { width: auto; margin-top: 12px; text-align: left; } .hightlightintro { margin-top: 12px; } .highlightbigcard_dex_text { margin-top: 64px; padding-right: 40px; padding-left: 40px; } .image-32 { width: 16px; height: 16px; margin-right: 10px; opacity: 0.5; } .div-block-54 { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 24px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .text-block-25 { color: #fff; text-decoration: none; } .whitepaper_view { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 32px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .investorlistdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 24px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-perspective: 1000px; perspective: 1000px; } .div-block-55 { padding-right: 40px; padding-left: 40px; } .section_investor { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_investor.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_investor.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_investor.sectiondarkbg.investor { height: auto; margin-bottom: 100px; } .parallaxbackground { position: relative; z-index: -10; display: block; overflow: hidden; grid-auto-columns: 1fr; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .footer_links_gird { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link { font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); text-align: left; } .footer_nav_link:hover { color: #fff; } .footer_nav_title { color: #e5e7eb; font-size: 16px; font-weight: 500; } .hightlight_title_desktop { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 48px; margin-bottom: 64px; padding-top: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .bold-text-5 { font-size: 40px; line-height: 40px; } .bold-text-6 { font-size: 32px; font-weight: 500; } .bold-text-7 { font-size: 32px; font-weight: 500; } .highlightbigcard_dex_white { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 500px; padding-top: 40px; padding-bottom: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #fff; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .video { position: absolute; right: 0px; width: 1000px; height: 1000px; } .contactcard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 180px; padding: 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .conactcards { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .contactcardtitle { margin-top: 24px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 18px; font-weight: 700; text-align: center; } .contactcardlink { width: 100%; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .contactcardlink:hover { -webkit-transform: translate(0px, -10px); -ms-transform: translate(0px, -10px); transform: translate(0px, -10px); } .contactcardlink { width: 100%; text-decoration: none; } .tool_image { overflow: visible; width: 50%; } .investorlogo { width: 70%; } .section_followalex { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_followalex.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_followalex.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_followalex.sectiondarkbg.investor { margin-bottom: 0px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 50%; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-26 { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .containerdiv_whitepapers { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_investors { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_security { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_followalex { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_powertools { display: block; width: 100%; max-width: 1080px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containterdiv_footer { width: 100%; height: auto; max-width: 1080px; margin-right: 72px; margin-left: 72px; background-color: transparent; } .container-13 { overflow: hidden; } .utility-page-wrap { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100vh; max-height: 100%; max-width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; } .utility-page-content { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; } .utility-page-form { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .image-35 { width: 128px; margin-bottom: 48px; } .body-7 { background-color: #0a0822; } ._404-text { margin-bottom: 48px; font-size: 18px; line-height: 32px; } ._404-text.mobileonly { display: none; } ._404_button { margin-right: 24px; padding: 16px 64px; border-radius: 99px; background-image: -webkit-gradient(linear, left top, right top, from(#1d4ed8), to(#7c3aed)); background-image: linear-gradient(90deg, #1d4ed8, #7c3aed); font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } ._404_title { margin: 0px 0px 16px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 48px; line-height: 80px; font-weight: 300; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .securitylogo { width: 60%; } .pure_footer { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 240px; max-width: 1080px; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 20px; font-weight: 300; } .footer_new-copy { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 400px; padding-top: 55px; padding-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.31); } .pure_navigation { position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) rgba(0, 0, 0, 0.05); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .pure_section { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 200px; margin-bottom: 200px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .pure_section.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .pure_section.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .pure_section.sectiondarkbg.investor { margin-bottom: 0px; } .pure_containerdiv { display: block; width: 100%; max-width: 1080px; margin-right: 0px; margin-bottom: 48px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .pure_sectiontitlediv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .pure_content_title { width: 100%; margin-bottom: 18px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; } .pure_section_content { display: block; margin-bottom: 24px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text_num { width: 64px; margin-bottom: 18px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; opacity: 0.5; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 14px; } .pure_section_title { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 48px; margin-bottom: 18px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text.last { margin-bottom: 48px; } .pure_section_title_num { width: 64px; margin-bottom: 18px; opacity: 0.5; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; } .pure_content_text { width: 100%; margin-bottom: 18px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 14px; text-align: justify; } .pure_section_text_subdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .numdiv { width: 100px; } .link-block-14 { text-decoration: none; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .footer_privacylink:hover { color: #fff; } .section_tools { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_tools.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_tools.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_tools.sectiondarkbg.investor { margin-bottom: 0px; } .section_whitepapers { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_whitepapers.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_whitepapers.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_whitepapers.sectiondarkbg.investor { margin-bottom: 0px; } .coverscrolllink { display: block; width: 28px; height: 28px; margin-bottom: 32px; } .investors_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .investors_link:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); } .security_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .security_link:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); } @media screen and (min-width: 1280px) { .logo-long-color { width: 180px; height: auto; } .header { max-width: 1440px; } .video_cover { position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; display: block; width: 900px; height: 900px; margin-right: 5%; } .body { overflow: visible; } .coverintro { line-height: 32px; text-align: left; } .div-block-6 { display: none; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { max-width: 1440px; } .footer_nav_link_title:hover { opacity: 1; } .div-block-15 { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .footer_lastlinks { max-width: 1440px; } .div-block-24 { max-width: 1440px; } .section_content.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_content.sectiondarkbg.investor { margin-bottom: 100px; } .containerdiv { width: 100%; max-width: 1440px; } .covercontent { position: static; bottom: 20vh; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1440px; margin-top: 0px; padding-top: 6rem; padding-right: 0rem; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .coverheading { line-height: 96px; text-align: left; } .bold-text-2 { font-size: 80px; line-height: 80px; text-align: left; } .buttonoutline { border-width: 1.5px; } .covercontentdiv { position: static; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .covercontentmouseicondiv { position: relative; z-index: 30; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1440px; } .hightlight_title_mobile { display: none; } .sectionsubtitle { font-size: 18px; line-height: 24px; } .powertoolsdiv { width: 100%; } .powertoolscard { width: 100%; height: 100%; } .image-26 { width: 40%; } .text-block-20:hover { color: #fff; } .launchpadbuttontitle { line-height: 48px; } .launchpad_screenshot { width: 100%; } .section_launchpad { margin-bottom: 100px; } .footer_nav_link_list { -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_nav_link_item:hover { opacity: 1; } .copright { color: rgba(229, 231, 235, 0.4); } .bold-text-4 { font-size: 28px; text-align: left; } .bgcombo001 { overflow: hidden; } .parallaxbackground { display: none; overflow: hidden; width: 100%; } .bgcombo002 { display: none; overflow: hidden; } .bgcombo003 { left: -800px; display: block; overflow: hidden; } .bgcombo004 { display: none; overflow: hidden; } .image-31 { width: 40%; } .powertools { -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link-block-8 { margin-bottom: 32px; } .maxwidth { max-width: 1440px; } .highlightbigcard_lendborrow_new { background-color: #1e1734; } .textkeyfunctitle { background-image: -webkit-gradient(linear, right top, left top, from(#76a0ff), to(#fff)); background-image: linear-gradient(270deg, #76a0ff, #fff); } .highlightbigcard_dex_new { background-color: #1e1734; } .highlightbigcard_launchpad_new { background-color: #1e1734; } .hightlightintro { color: #a7a7a7; } .investorlistdiv { padding-right: 64px; padding-left: 64px; } .image-33 { width: 40%; } .image-34 { width: 40%; } .section_investor.sectiondarkbg.investor { height: auto; margin-bottom: 150px; } .parallaxbackground { position: relative; display: block; overflow: scroll; width: auto; } .footer_links_gird { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; justify-items: start; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -webkit-align-content: start; -ms-flex-line-pack: start; align-content: start; -ms-grid-columns: 1fr 1fr 1fr 0.5fr; grid-template-columns: 1fr 1fr 1fr 0.5fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link:hover { color: #fff; } .highlightbigcard_dex_white { background-color: #fff; } .contactcard { width: 100%; height: 200px; } .conactcards { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link-block-13 { text-decoration: none; } .contactcardlink { width: 100%; text-decoration: none; } .tool_image { width: 50%; } .section_followalex.sectiondarkbg.investor { margin-bottom: 100px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-26 { color: rgba(229, 231, 235, 0.2); font-size: 12px; } .containerdiv_whitepapers { width: 100%; max-width: 1440px; } .containerdiv_investors { width: 100%; max-width: 1440px; } .containerdiv_security { width: 100%; max-width: 1440px; } .containerdiv_followalex { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .containerdiv_powertools { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .containterdiv_footer { max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .utility-page-wrap { width: 100%; } .utility-page-content { width: auto; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .text-block-27 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; } .button-2 { margin-top: 48px; } .image-35 { width: 128px; margin-bottom: 48px; background-color: transparent; color: #fff; } .heading-6 { margin-bottom: 32px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 48px; font-weight: 300; } .body-7 { background-color: #0a0822; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; } ._404-text { margin-bottom: 48px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; } ._404-text.mobileonly { display: none; } ._404_button { margin-right: 0px; } ._404_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-weight: 300; } .securitylogo { width: 50%; } .pure_footer { height: 60px; max-width: 1440px; } .pure_section { margin-top: 200px; } .pure_section.sectiondarkbg.whitepaper { margin-bottom: 150px; } .pure_section.sectiondarkbg.investor { margin-bottom: 100px; } .pure_containerdiv { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .section_tools.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_tools.sectiondarkbg.investor { margin-bottom: 100px; } .section_whitepapers.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_whitepapers.sectiondarkbg.investor { margin-bottom: 100px; } } @media screen and (max-width: 991px) { .navigation-link { padding-top: 24px; padding-bottom: 24px; background-color: #fff; color: #3dbac5; } .navigation-link:hover { background-color: #3dbac5; opacity: 1; } .navigation-link.w--current { color: #fff; } .hamburger-button-white { display: block; overflow: visible; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 99px; background-color: transparent; color: #3dbac5; } .hamburger-button-white:hover { background-color: rgba(61, 186, 197, 0.3); } .hamburger-button-white.w--open { background-color: #3dbac5; color: #fff; } .navigation-menu { background-color: #3dbac5; color: #3dbac5; } .hero-section.centered { padding-top: 144px; padding-bottom: 144px; } .section-heading.centered { font-weight: 500; } .section-heading.centered.white { font-weight: 500; } .grid-image { width: 50%; padding: 15px; } .header { padding-right: 48px; padding-left: 48px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .video_cover { left: 0%; top: 0%; right: 0%; bottom: auto; width: 768px; height: 768px; margin-right: auto; margin-bottom: 0px; margin-left: auto; } .language { position: relative; margin-right: 0px; } .sloganbox { margin-right: 32px; margin-left: 32px; } .textkeyfunc { font-size: 28px; line-height: 40px; } .coverintro { width: 100%; margin-top: 16px; line-height: 32px; text-align: left; } .homeabout { margin-right: 0px; margin-left: 0px; padding-right: 40px; padding-left: 40px; } .image-6 { max-width: 80%; } .image-7 { max-width: 80%; } .image-8 { max-width: 80%; } .container-5 { padding-right: 24px; padding-left: 24px; } .div-block-6 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-12 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_address { line-height: 32px; } .navigation { height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .navigation-link-current { color: hsla(0, 0%, 100%, 0.52); } .navigation-link-current.w--current { color: #fff; } .div-block-14 { position: static; margin-right: 0px; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-9 { display: none; } .div-block-15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .div-block-18 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .navbar { height: 96px; } .navigation-link-green { padding-top: 24px; padding-bottom: 24px; background-color: #fff; color: #3dbac5; text-decoration: none; } .navigation-link-green:hover { background-color: #36b1bc; opacity: 1; color: #fff; } .navigation-link-green.w--current { color: #ffa543; } .navigation-link-green.current { color: #ffa543; } .text-block-9-green { display: none; } .section-_title { margin-bottom: 0px; } .div-block-20 { margin-right: 24px; margin-left: 24px; } .footer_lastlinks { margin-top: 100px; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .footer { height: 470px; } .div-block-24 { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .section_content { height: auto; margin-bottom: 150px; } .section_content.sectiondarkbg { height: auto; } .containerdiv { margin-right: 48px; margin-left: 48px; } .sectiontitlediv { margin-top: 0px; } .member_gird { max-width: none; margin-right: 16px; margin-bottom: 0px; margin-left: 16px; } .div-block-31 { margin-bottom: 0px; } .div-block-33 { width: auto; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .image-13 { height: 400px; } .div-block-35 { width: auto; margin-right: 40px; } .link-block-6 { margin-bottom: 24px; } .div-block-37-copy { margin-left: 0px; } .image-16-copy { height: 400px; } .grid-5 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .div-block-41 { margin-bottom: 32px; } .div-block-42 { margin-right: 32px; margin-left: 32px; } .slider_three { display: none; } .grid-7 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-43 { display: none; } .image-20 { max-width: 80%; } .grid_001 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .grid-8 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .silder_three { margin-bottom: 40px; } .image-22 { max-width: 100%; -o-object-fit: contain; object-fit: contain; } .grid-9 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .hamburger-button-dark { display: block; overflow: visible; padding: 8px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 99px; background-color: transparent; color: #fff; } .hamburger-button-dark:hover { background-color: rgba(61, 186, 197, 0.3); } .hamburger-button-dark.w--open { padding: 0px; background-color: #3dbac5; color: #fff; } .grid-10 { -ms-grid-columns: 1fr 1.5fr; grid-template-columns: 1fr 1.5fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-11 { justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 16px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .slider_two { display: block; } .grid-8-two { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-6 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .right-arrow { display: none; } .left-arrow { display: none; } .right-arrow-2 { display: none; } .left-arrow-2 { display: none; } .left-arrow-3 { display: none; } .right-arrow-3 { display: none; } .container_div_works_01 { margin-right: 32px; margin-left: 32px; } .grid-12 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .covercontent { position: absolute; bottom: 3rem; width: 100%; max-width: none; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .coverheading { margin-bottom: 8px; font-family: 'Red Hat Display', sans-serif; line-height: 60px; font-weight: 700; text-align: left; } .bold-text-2 { font-size: 56px; line-height: 60px; font-weight: 500; } .coverbuttons { margin-top: 32px; } .covercontentdiv { position: absolute; bottom: 0px; max-width: 1080px; margin-right: 0px; margin-left: 0px; } .covercontentmouseicondiv { display: none; } .textkeyfuncwords { font-size: 40px; line-height: 60px; } .sectiontitle { margin-bottom: 16px; font-size: 40px; line-height: 48px; font-weight: 700; } .powertoolsdiv { width: 100%; } .investorgrid { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .powertoolscard { width: 100%; height: 100%; } .image-26 { width: 30%; } .sectiontitlecolorfullaunchpad { font-size: 40px; } .launchpadbutton { padding-top: 24px; padding-bottom: 24px; } .launchpadbuttonintro { line-height: 20px; } .section_launchpad { height: auto; margin-bottom: 150px; } .copright { font-size: 12px; } .bold-text-4 { line-height: 32px; } .bgcombo002 { right: -400px; } .bgcombo003 { left: -400px; bottom: -200px; overflow: hidden; } .launchpadglasscard { height: 240px; } .section_securityaudits { margin-bottom: 150px; } .section_securityaudits.sectiondarkbg { height: auto; margin-bottom: 100px; } .section_collaborator { height: auto; margin-bottom: 200px; } .bgcombo004 { right: -500px; } .powertools { grid-column-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .link-block-8 { margin-bottom: 32px; } .link-block-8.w--current { margin-bottom: 48px; } .whitepaper_gird { display: -ms-grid; display: grid; width: 100%; grid-auto-columns: 1fr; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercardtitle { min-height: 32px; } .whitepapercard { width: 100%; height: 240px; } .whitepaperlink { width: 100%; } .section_highlight { height: auto; margin-bottom: 150px; } .section_highlight.sectiondarkbg { height: auto; } .maxwidth { padding-right: 48px; padding-left: 48px; } .grid-13 { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .grid-14 { grid-column-gap: 16px; grid-row-gap: 16px; } .grid-15 { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .textkeyfunctitle { font-size: 36px; } .dex_grid { justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_dex_new { height: 300px; } .highlightbigcard_launchpad_new { height: 300px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .hightlightintro.center { width: 70%; } .highlightbigcard_dex_text { margin-top: 0px; } .investorlistdiv { margin-bottom: 48px; } .div-block-55 { display: block; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-33 { width: 70%; } .image-34 { width: 70%; } .section_investor { height: auto; margin-bottom: 150px; } .section_investor.sectiondarkbg { height: auto; } .parallaxbackground { display: block; overflow: hidden; } .hightlight_title_desktop { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .bold-text-5 { font-size: 48px; line-height: 40px; } .bold-text-6 { font-size: 36px; } .bold-text-7 { font-size: 36px; } .highlightbigcard_dex_white { height: 300px; } .contactcard { width: 100%; height: 180px; } .conactcards { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .contactcardlink { width: 100%; } .tool_image { width: 40%; } .investorlogo.last { display: none; } .section_followalex { height: auto; margin-bottom: 150px; } .section_followalex.sectiondarkbg { height: auto; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .containerdiv_whitepapers { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_investors { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_security { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_followalex { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_powertools { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containterdiv_footer { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .container-13 { overflow: hidden; } ._404_title { font-size: 40px; } .pure_footer { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_new-copy { height: 470px; } .pure_navigation { height: 96px; } .pure_section { height: auto; margin-bottom: 150px; } .pure_section.sectiondarkbg { height: auto; } .pure_containerdiv { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .pure_sectiontitlediv { margin-top: 0px; } .section_tools { height: auto; margin-bottom: 150px; } .section_tools.sectiondarkbg { height: auto; } .section_whitepapers { height: auto; margin-bottom: 150px; } .section_whitepapers.sectiondarkbg { height: auto; } } @media screen and (max-width: 767px) { .button.full-width { margin-right: auto; margin-left: auto; } .button.tab { font-size: 12px; } .white-box { margin-bottom: 30px; } .hero-section.centered { padding-top: 119px; padding-bottom: 119px; } .hero-heading { margin-bottom: 15px; font-size: 50px; } .hero-subheading { font-size: 18px; } .form-field.text-area { display: block; } .grid-image { width: 20%; padding: 20px; } .spc { margin-bottom: 30px; } .header { margin-right: 0px; margin-left: 0px; padding-right: 24px; padding-left: 24px; } .video_cover { left: 0%; top: 0%; right: 0%; bottom: auto; width: 480px; height: 480px; margin-right: auto; margin-bottom: 200px; margin-left: auto; } .sloganbox { margin-right: 24px; margin-left: 24px; } .textkeyfunc { margin-top: 0px; margin-bottom: 0px; font-size: 32px; } .coverintro { line-height: 28px; } .div-block-6 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { height: auto; margin-right: 0px; margin-left: 0px; } .div-block-12 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-9 { width: 24px; } .image-10 { width: 24px; margin-top: 4px; } .navigation { height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .div-block-18 { width: 100%; } .navbar { height: 96px; } .heading-5 { margin-bottom: 36px; font-size: 48px; } .footer_lastlinks { margin-right: 0px; margin-left: 0px; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .footer { height: auto; } .div-block-24 { width: 100%; max-width: none; margin-right: 0px; margin-left: 0px; } .section_content { margin-top: 0px; margin-bottom: 200px; } .containerdiv { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .div-block-37 { margin-right: 0px; margin-bottom: 24px; } .contact-form { padding: 40px 20px; } .image-16-copy { height: 300px; } .silder_three { margin-bottom: 0px; } .image-22 { position: static; overflow: visible; -o-object-fit: contain; object-fit: contain; -o-object-position: 50% 0%; object-position: 50% 0%; } .grid-10 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-46 { margin-left: 16px; } .grid-11 { grid-column-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-5 { display: none; } .icon-6 { display: none; } .icon-7 { display: none; } .icon-8 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .grid-12 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .covercontent { margin-top: 14rem; margin-right: 24px; margin-left: 24px; } .bold-text-2 { font-size: 48px; line-height: 48px; } .textkeyfuncwords { margin-top: 0px; margin-bottom: 0px; line-height: 40px; } .divkeyfuncimage { margin-top: 16px; } .image-25 { width: 90%; } .sectiontitle { width: 100%; margin-bottom: 16px; font-size: 32px; line-height: 40px; font-weight: 700; text-align: center; } .hightlight_title_mobile { margin-top: 0px; padding-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .sectionsubtitle { text-align: center; } .powertoolsdiv { width: 100%; } .investorgrid { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .powertoolscard { width: 100%; height: auto; } .image-26 { width: 30%; margin-top: -10px; } .powertoolscardtitle { margin-top: 10px; } .sectiontitlecolorfullaunchpad { font-size: 32px; line-height: 40px; } .grid-13-copy { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .launchpadbuttontitle { font-size: 24px; line-height: 32px; } .section_launchpad { margin-top: 100px; margin-bottom: 100px; } .footer_nav_link_item { margin-bottom: 10px; } .copright { font-size: 12px; } .bold-text-4 { line-height: 28px; } .bgcombo003 { overflow: hidden; } .launchpadglasscard { height: 180px; } .slider-_highlight { margin-top: 0px; } .mask-4 { height: auto; } .securitygrid { grid-row-gap: 48px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .section_securityaudits { margin-top: 100px; margin-bottom: 100px; } .powertools { width: 100%; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercard { height: 300px; } .section_cover { margin-bottom: 100px; } .section_highlight { margin-top: 100px; margin-bottom: 100px; } .grid-14 { height: auto; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-15 { height: auto; } .highlightbigcard_lendborrow_new { height: 550px; } .textkeyfunctitle { margin-top: 0px; margin-bottom: 0px; line-height: 48px; } .dex_grid { justify-items: center; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_dex_new { height: 550px; } .lendborrow_grid { justify-items: center; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_launchpad_new { height: 550px; } .hightlightintro { text-align: center; } .hightlightintro.center { width: 100%; text-align: center; } .hightlightintro { text-align: center; } .highlightbigcard_dex_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-55 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-56 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_investor { margin-top: 100px; margin-bottom: 100px; } .parallaxbackground { display: block; overflow: hidden; } .footer_links_gird { display: -ms-grid; display: grid; width: 100%; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: start; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 48px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .hightlight_title_desktop { margin-top: 0px; padding-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .bold-text-5 { font-size: 32px; line-height: 32px; } .bold-text-6 { font-size: 32px; } .bold-text-7 { font-size: 24px; } .highlightbigcard_dex_white { height: 550px; } .contactcard { width: 100%; height: 160px; } .conactcards { width: 100%; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .contactcardtitle { margin-top: 16px; font-size: 20px; } .contactcardlink { width: 100%; } .tool_image { width: 30%; margin-top: -10px; } .investorlogo.last { display: block; } .section_followalex { margin-top: 100px; margin-bottom: 100px; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .containerdiv_whitepapers { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_investors { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_security { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_followalex { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_powertools { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containterdiv_footer { width: 100%; max-width: none; margin-right: 0px; margin-left: 0px; } .container-13 { overflow: hidden; } ._404_title { margin-bottom: 16px; font-size: 36px; line-height: 40px; } .pure_footer { height: auto; margin-right: 0px; margin-left: 0px; } .footer_new-copy { height: auto; } .pure_navigation { height: 96px; } .pure_section { margin-top: 100px; margin-bottom: 0px; } .pure_containerdiv { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 24px; padding-left: 24px; } .section_tools { margin-top: 100px; margin-bottom: 100px; } .section_whitepapers { margin-top: 100px; margin-bottom: 100px; } } @media screen and (max-width: 479px) { .button { margin-bottom: 25px; } .nav_transparent { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; } .hamburger-button-white { display: none; padding: 10px; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; } .hero-section.centered { padding-top: 60px; padding-bottom: 60px; } .section-subheading.center { line-height: 30px; } .grid-image { width: 35%; } .container { padding-right: 16px; padding-left: 16px; } .logo-box-color { position: static; display: block; height: 64px; max-width: none; margin-right: 0px; margin-left: 0px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .logo-long-color { display: block; width: 148px; height: 32px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .header { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: visible; width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: auto; -ms-flex-item-align: auto; align-self: auto; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; -o-object-fit: none; object-fit: none; } .video_cover { width: 320px; height: 320px; margin: 4.5rem auto 0px; padding-right: 0px; } .icon-2 { font-size: 16px; } .text-block-2 { font-size: 14px; } .language { display: block; margin-right: 0px; } .sloganbox { margin-right: 16px; margin-left: 16px; } .section-intro { padding-top: 60px; padding-bottom: 60px; } .textkeyfunc { font-size: 40px; line-height: 30px; } .text-block-5 { font-size: 14px; line-height: 24px; } .coverintro { margin-top: 24px; font-size: 16px; line-height: 18px; text-align: left; } .homeabout { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-2 { width: 100%; margin-bottom: 32px; padding-right: 0px; } .div-block-3 { width: 100%; } .div-block-6 { display: none; width: 100%; margin-bottom: 24px; } .div-block-7 { width: auto; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { margin-bottom: 0px; } .typed-slogan-text { font-size: 56px; line-height: 72px; } .footer_email { font-size: 18px; } .div-block-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-9 { width: 24px; margin-right: 16px; margin-bottom: 8px; } .image-10 { width: 24px; margin-right: 16px; margin-bottom: 8px; } .footer_address { font-size: 18px; line-height: 24px; } .navigation { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .div-block-14 { margin-right: 0px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .link-block-5 { position: static; display: block; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .link-block-5.w--current { position: static; display: block; width: 148px; height: 32px; } .image-12 { display: block; height: 64px; } .text-block-2-green { font-size: 14px; } .icon-2-green { font-size: 16px; } .section-_title { margin-top: 32px; } .div-block-20 { margin-bottom: 24px; } .heading-5 { margin-bottom: 16px; font-size: 40px; } .footer_lastlinks { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 48px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .footer { height: auto; } .div-block-24 { margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .section-zhunei { padding-top: 60px; padding-bottom: 60px; } .section_content.powertools { margin-bottom: 100px; } .containerdiv { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .list-item-zhunei { font-size: 16px; line-height: 28px; } .member_gird { width: auto; max-width: none; margin-right: 16px; margin-bottom: 0px; margin-left: 16px; } .image-13 { height: 300px; } .grid-2 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .about_company_photo { height: 240px; } .contact-form-grid { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .submit-button { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 16px; font-weight: 500; } .text-field-copy { display: block; overflow: visible; max-width: none; } .paragraph-3 { margin-right: 16px; margin-left: 16px; font-size: 18px; } .container-11 { margin-bottom: 0px; } .div-block-39 { margin-right: 16px; margin-left: 16px; } .form-block { margin-right: 16px; margin-left: 16px; } .grid-5 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .gri_two { margin-right: 0px; margin-left: 0px; grid-column-gap: 0px; grid-row-gap: 24px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-42 { margin-right: 16px; margin-left: 16px; } .work_content_details { line-height: 28px; } .grid-8 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .silder_three { height: 600px; margin-right: 16px; margin-left: 16px; } .hamburger-button-dark { display: none; padding: 10px; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; } .list-item { font-size: 16px; line-height: 28px; text-align: left; } .div-block-46 { margin-top: 16px; margin-left: 0px; } .grid-11 { grid-column-gap: 0px; } .image-23 { display: block; } .footer_lastlinks_mobile { display: block; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .grid-8-two { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .mask { height: 500px; } .mask-2 { height: 500px; } .mask-3 { height: 500px; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-5 { display: none; } .icon-6 { display: none; } .icon-7 { display: none; } .icon-8 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .container_div_works_01 { max-width: none; margin-right: 16px; margin-left: 16px; } .covercontent { width: 100%; margin-top: 7rem; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; } .coverheading { width: auto; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; font-size: 36px; line-height: 32px; font-weight: 400; text-align: left; } .bold-text-2 { width: auto; font-size: 36px; line-height: 40px; font-weight: 700; text-align: left; } .buttonprimary { margin-right: 0px; text-align: center; } .coverbuttons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; text-align: left; } .buttonoutline { display: none; margin-top: 16px; text-align: center; } .covercontentdiv { width: 90%; margin-right: 0px; margin-left: 0px; } .covercontentmouseicondiv { display: none; } .textkeyfuncwords { margin: 0px; font-size: 36px; line-height: 28px; } .sectiontitle { width: 100%; font-size: 28px; line-height: 32px; font-weight: 700; text-align: center; } .sectionsubtitle { font-size: 16px; text-align: center; } .powertoolsdiv { margin-top: 32px; } .investorgrid { grid-column-gap: 16px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .powertoolscard { height: auto; padding-right: 16px; padding-left: 16px; } .image-26 { width: 30%; margin-top: -20px; margin-bottom: 10px; } .powertoolscardtitle { font-size: 20px; } .powertoolscarddesc { font-size: 14px; } .text-block-20 { line-height: 16px; } .sectiontitlecolorfullaunchpad { font-size: 28px; line-height: 32px; } .launchpadbuttontitle { margin-top: 16px; font-size: 24px; line-height: 32px; } .launchpadbuttonintro { width: 100%; padding-right: 16px; padding-left: 16px; } .launchpad_screenshot { margin-top: 40px; } .launchpaddiv { margin-top: 32px; } .section_launchpad { margin-bottom: 100px; } .footer_nav_link_item { margin-bottom: 10px; } .footer_nav_link_itemdiv { margin-top: 10px; } .copright { color: rgba(229, 231, 235, 0.4); font-size: 12px; } .bold-text-4 { width: 100%; font-size: 16px; line-height: 20px; text-align: left; } .bgcombo002 { right: -100px; } .bgcombo003 { left: -100px; overflow: hidden; } .launchpadglasscard { width: 100%; height: 200px; padding-top: 24px; padding-right: 0px; padding-left: 0px; } .securitygrid { grid-column-gap: 16px; grid-row-gap: 32px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .bgcombo004 { right: -100px; } .image-31 { width: 80%; } .whitepaper_gird { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .whitepapercard { height: auto; } .section_cover { margin-bottom: 50px; } .maxwidth { padding-right: 16px; padding-left: 16px; } .grid-14 { -ms-grid-rows: auto; grid-template-rows: auto; } .hightlight_video { width: 260px; height: 260px; } .highlightbigcard_lendborrow_new { height: 440px; padding-right: 16px; padding-left: 16px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .textkeyfunctitle { font-size: 28px; font-weight: 700; } .textkeyfunctitle.center { font-size: 28px; font-weight: 700; } .highlightbigcard_dex_new { height: 440px; } .lendborrow_grid { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_launchpad_new { height: 440px; } .hightlightintro { font-size: 16px; text-align: center; } .hightlightintro.center { width: 100%; } .highlightbigcard_dex_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .investorlistdiv { margin-top: 16px; } .div-block-55 { margin-top: 0px; } .image-33 { width: 80%; } .image-34 { width: 80%; } .div-block-56 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_investor.powertools { margin-bottom: 100px; } .parallaxbackground { display: block; overflow: hidden; } .footer_links_gird { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link { line-height: 16px; } .hightlight_title_desktop { margin-bottom: 32px; } .bold-text-5 { font-size: 28px; line-height: 28px; } .bold-text-6 { font-size: 24px; } .bold-text-7 { font-size: 24px; } .highlightbigcard_dex_white { height: 440px; } .contactcard { height: 100%; padding-right: 16px; padding-bottom: 24px; padding-left: 16px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .conactcards { margin-top: 16px; } .contactcardtitle { margin-top: 10px; font-size: 16px; } .tool_image { width: 30%; margin-top: -20px; margin-bottom: 10px; } .investorlogo { width: 80%; } .section_followalex { margin-bottom: 100px; } .section_followalex.powertools { margin-bottom: 100px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { width: auto; margin-top: 20px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; font-size: 12px; } .text-block-26 { color: rgba(229, 231, 235, 0.2); } .containerdiv_whitepapers { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_investors { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_security { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_followalex { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_powertools { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containterdiv_footer { margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .container-13 { overflow: hidden; } ._404-text { display: none; margin-right: 16px; margin-left: 16px; } ._404-text.mobileonly { display: block; } ._404_button { text-align: center; } ._404_title { font-size: 36px; } .securitylogo { width: 70%; } .pure_footer { margin-bottom: 0px; } .footer_new-copy { height: auto; } .pure_navigation { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; } .pure_section.powertools { margin-bottom: 100px; } .pure_containerdiv { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .pure_content_title { width: auto; } .pure_section_text_num { width: 50px; } .pure_section_title_num { width: 50px; } .pure_content_text { width: auto; line-height: 18px; text-align: left; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); } .bold-text-8 { line-height: 24px; } .section_tools.powertools { margin-bottom: 100px; } .section_whitepapers.powertools { margin-bottom: 100px; } } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d072-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: center; justify-self: center; } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; } #w-node-_45ab9e51-3233-8f4d-cda0-7d9bf24df39f-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272d-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272f-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: start; justify-self: start; } #w-node-_1595bd2c-5ee2-6f46-0dd6-fd808cad4b5a-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-_35ab1f14-1a8b-e357-fd57-3f1709f97c34-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: center; justify-self: center; } #w-node-_9a4f62c6-4e1a-86a6-6665-9f89da130544-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-_3a37b062-87c3-6fb2-9465-59cf5bcfbd4d-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_179ba7c3-2cc3-8869-6855-bf20119adaeb-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_58613291-d498-5fcb-92e6-93bfba282169-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_045ad9cb-5a46-1d54-e6af-6f65227898c7-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_5ada30ac-08a7-795b-864a-3b6027c73373-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_9a1ab07b-3659-067c-cab5-0a2cc0ebb74b-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-b92b41af-2a21-f94f-81df-1221aeae3654-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_21cd094c-0650-9117-a93a-99c97785bae9-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_4dc20107-e38e-8c91-0a7e-874a6353867c-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-bb17b704-72e3-3eba-24fa-c6f0b1535303-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_42cc56bd-3020-2d75-a6cb-8d7a1ff27e30-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_9d6b6b6f-6b06-2efe-dc2f-6a04f4107d47-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_4636ac8b-b653-4e08-59ba-ba00b782217b-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_5cfa7638-479b-a164-2fc7-06b2b11547df-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } @media screen and (min-width: 1280px) { #w-node-_37c6be96-a4ec-88ab-2b74-8493f4db54f7-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-a923b944-ade8-edd9-7d1c-6c33e64b2c1d-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-def7001e-8986-6972-3cf6-187ec170a806-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-_83545abe-99e0-5bb5-e50a-0350bfdb9a2a-45936d80 { -ms-grid-column-align: end; justify-self: end; } } @media screen and (max-width: 991px) { #w-node-_74f98c65-f24d-4451-4b0f-deb91360d072-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272f-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } } @media screen and (max-width: 767px) { #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: center; justify-self: center; -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; } } @media screen and (max-width: 479px) { #w-node-c9a09d66-1428-aed9-a94c-ac02972b7910-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; } }
css/alexgo-io.css
.w-layout-grid { display: -ms-grid; display: grid; grid-auto-columns: 1fr; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; grid-row-gap: 16px; grid-column-gap: 16px; } body { background-color: #edeff2; font-family: 'Open Sans', sans-serif; color: #6a859c; font-size: 16px; line-height: 20px; } h1 { margin-top: 0px; margin-bottom: 10px; font-size: 38px; line-height: 44px; font-weight: 700; } h2 { margin-top: 0px; margin-bottom: 10px; color: #676770; font-size: 32px; line-height: 36px; font-weight: 300; text-align: center; } h3 { margin-top: 0px; margin-bottom: 0px; color: #676770; font-size: 20px; line-height: 30px; font-weight: 300; letter-spacing: 7px; text-transform: uppercase; } h4 { margin-top: 0px; margin-bottom: 10px; font-size: 18px; line-height: 24px; font-weight: 700; } h5 { margin-top: 0px; margin-bottom: 20px; color: #676770; font-size: 18px; line-height: 20px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } h6 { margin-top: 0px; margin-bottom: 10px; font-size: 12px; line-height: 18px; font-weight: 700; } p { margin-top: 10px; margin-bottom: 10px; font-size: 14px; line-height: 25px; font-weight: 300; } .button { display: inline-block; margin-right: 10px; margin-left: 10px; padding: 12px 30px; border-radius: 4px; background-color: #69b9ff; -webkit-transition: background-color 300ms ease; transition: background-color 300ms ease; color: #fff; font-size: 16px; line-height: 21px; font-weight: 300; text-align: center; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; } .button:hover { background-color: #2e9dff; } .button.w--current { background-color: #2e80b6; } .button.full-width { display: block; width: 100%; margin-right: 0px; margin-left: 0px; } .button.tab { margin-right: 8px; margin-left: 8px; background-color: #92a0ad; } .button.tab:hover { background-color: #2e80b6; } .button.tab.w--current { background-color: #2e80b6; } .navigation-link { padding-right: 32px; padding-left: 32px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 16px; font-weight: 600; } .navigation-link:hover { opacity: 0.75; color: #fff; } .navigation-link.w--current { margin-right: 0px; margin-left: 0px; padding-right: 32px; padding-left: 32px; opacity: 1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 800; } .nav_transparent { position: fixed; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none none solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.2); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .hamburger-button-white { display: none; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .navigation-menu { display: none; padding-right: 0px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; text-align: center; } .brand-text { margin-top: 0px; margin-bottom: 0px; font-family: 'Open Sans', sans-serif; color: #69b9ff; font-size: 25px; line-height: 25px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } .brand-link { padding-top: 16px; padding-bottom: 16px; } .section { position: relative; display: block; width: 100%; margin-right: 0px; margin-bottom: 120px; margin-left: 0px; padding: 0px; background-color: #fff; color: #5d6266; text-align: center; } .section.accent { background-color: #fff; color: #fff; } .white-box { padding: 0px; border: 1px none #dcebf7; border-radius: 5px; background-color: #fff; text-align: center; } .white-box.transparent { border-style: none; background-color: transparent; } .hero-section { padding-top: 242px; padding-bottom: 242px; } .hero-section.centered { display: block; padding-top: 195px; padding-bottom: 195px; border-bottom: 4px solid #69b9ff; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 157, 255, 0.5)), to(rgba(46, 157, 255, 0.22))), url('../images/photo-1416359658663-73a3834895eb.jpg'); background-image: linear-gradient(180deg, rgba(46, 157, 255, 0.5), rgba(46, 157, 255, 0.22)), url('../images/photo-1416359658663-73a3834895eb.jpg'); background-position: 0px 0px, 50% 50%; background-size: auto, cover; text-align: center; } .hero-heading { margin-bottom: 30px; color: #fff; font-size: 60px; line-height: 60px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; } .hero-subheading { margin-bottom: 40px; color: #2e9dff; font-size: 25px; line-height: 25px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; } .hollow-button { display: inline-block; margin-right: 10px; margin-left: 10px; padding: 10px 30px; border: 1px solid #fff; border-radius: 4px; -webkit-transition: background-color 300ms ease, border 300ms ease, color 300ms ease; transition: background-color 300ms ease, border 300ms ease, color 300ms ease; color: #fff; line-height: 21px; font-weight: 300; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; } .hollow-button:hover { border-color: #2e9dff; color: #2e9dff; } .hollow-button.all-caps { text-transform: uppercase; } .section-heading { margin-top: 0px; margin-bottom: 16px; } .section-heading.centered { margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; font-weight: 500; text-align: center; letter-spacing: 5px; text-transform: uppercase; } .section-heading.centered.white { color: #3dbac5; font-weight: 500; } .section-subheading.center { color: #8e8e9c; font-size: 18px; font-weight: 300; text-align: center; letter-spacing: 3px; text-transform: uppercase; } .section-subheading.center.off-white { padding-bottom: 0px; color: #e8e8e8; } .section-title-group { width: 100%; max-width: 1400px; margin-right: 0px; margin-bottom: 56px; margin-left: 0px; } .form-field { height: 45px; margin-bottom: 17px; border: 0px solid #000; border-radius: 3px; box-shadow: 0 0 0 1px rgba(64, 64, 71, 0.3); } .form-field.text-area { height: 110px; } .contact { padding-top: 60px; padding-bottom: 35px; background-color: #3dbac5; color: #eaecef; } .contact.center { padding-top: 24px; padding-bottom: 0px; border-top: 1px solid #dbdbdb; background-color: #1a1a1a; text-align: center; } .footer-text { margin-top: 5px; margin-bottom: 5px; font-family: Montserrat, sans-serif; color: #fff; font-size: 12px; line-height: 32px; text-align: left; } .grid-image { display: block; width: 0%; margin: 20px auto; padding: 20px; border: 10px solid #fff; border-radius: 50%; background-color: #69b9ff; box-shadow: 0 0 0 1px #2e9dff; } .info-icon { float: left; } .footer-link { display: block; margin-bottom: 6px; padding-bottom: 10px; border-bottom: 1px solid #d5d5e0; color: #668cad; font-size: 14px; font-weight: 300; text-decoration: none; } .footer-link:hover { color: rgba(0, 140, 255, 0.84); } .footer-link.with-icon { margin-bottom: 0px; margin-left: 30px; padding-bottom: 0px; border: 1px none #000; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 300; } .footer-link.with-icon:hover { color: hsla(0, 0%, 100%, 0.5); } .footer-link-wrapper { margin-right: 16px; border: 1px none #000; } .tab-menu { margin-bottom: 40px; text-align: center; } .tabs-wrapper { text-align: center; } .fullwidth-image { width: 100%; margin-bottom: 20px; } .white-text { margin-bottom: 20px; color: #fff; } .form { margin-top: 40px; } .spc { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .heading { position: relative; left: auto; top: auto; right: auto; display: block; margin: 100px 60px 0px; padding-top: 0px; font-size: 64px; font-weight: 300; -o-object-fit: fill; object-fit: fill; } .background-video { position: relative; top: auto; display: block; height: 640px; margin-top: 80px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image { position: static; } .image-2 { display: block; text-align: left; } .logo-box-color { display: none; height: 64px; } .logo-long-color { height: 48px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .header { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: visible; min-width: 100%; margin: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; border-bottom: 1px none rgba(0, 0, 0, 0.1); background-color: transparent; -o-object-fit: fill; object-fit: fill; } .video_cover { position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; display: block; overflow: hidden; width: 800px; height: 800px; margin-right: 0%; padding-right: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -o-object-fit: fill; object-fit: fill; } .logo-long-white { height: 48px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .coverslogan { position: static; left: 0px; bottom: 0px; margin-bottom: 48px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 56px; line-height: 72px; font-weight: 400; text-align: justify; } .container-2 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: auto; max-width: 1200px; margin-bottom: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .dropdown { opacity: 0.5; color: #fff; } .dropdown:hover { opacity: 1; } .dropdown:active { opacity: 0.5; } .text-block { font-family: Montserrat, sans-serif; color: #fff; font-size: 14px; } .text-block:hover { color: hsla(0, 0%, 100%, 0.5); } .icon { color: #fff; } .dropdown-list { display: block; border-radius: 4px; background-color: #fff; box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.15); font-family: Montserrat, sans-serif; } .dropdown-list.w--open { display: none; } .dropdown-link { font-size: 14px; } .dropdown-link:hover { border-radius: 4px 4px 0px 0px; background-color: #54c1ce; color: #fff; } .dropdown-link-2 { font-size: 14px; } .dropdown-link-2:hover { background-color: #54c1ce; color: #fff; } .dropdown-link-3 { font-size: 14px; } .dropdown-link-3:hover { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; background-color: #54c1ce; color: #fff; } .icon-2 { display: none; margin-right: 0px; color: #fff; } .text-block-2 { color: #fff; font-size: 16px; } .language { display: block; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; border: 1px none #000; opacity: 1; } .language:hover { opacity: 1; } .menuitem { padding: 16px 60px 16px 20px; border-radius: 0px; background-color: transparent; opacity: 1; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 16px; font-weight: 400; text-align: left; } .menuitem:hover { background-color: hsla(0, 0%, 100%, 0.9); color: #111827; } .menuitem.first { border-top-left-radius: 12px; border-top-right-radius: 12px; background-color: transparent; } .menuitem.first:hover { background-color: hsla(0, 0%, 100%, 0.9); } .menuitem.last { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } .dropdown-link-5 { padding: 16px 40px; border-radius: 0px 0px 4px 4px; background-color: #212630; color: #3dbac5; font-size: 14px; text-align: left; } .dropdown-link-5:hover { background-color: #3dbac5; color: #fff; } .dropdown-link-6 { padding: 16px 40px; background-color: #212630; color: #3dbac5; font-size: 14px; text-align: left; } .dropdown-link-6:hover { background-color: #3dbac5; color: #fff; } .dropdown-list-2 { padding-left: 16px; border-radius: 12px; } .dropdown-list-2.w--open { left: auto; top: auto; right: 0px; bottom: auto; margin-top: 0px; margin-right: 0px; padding-right: 0px; padding-left: 0px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 12px; background-color: hsla(0, 0%, 100%, 0.1); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); text-align: left; } .covertitle { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: none; margin-bottom: 40px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 24px; font-weight: 400; } .sloganbox { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 0px; margin-left: 72px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .coversmalltitle { margin-bottom: 16px; font-size: 18px; } .section-2 { margin-top: 80px; margin-bottom: 80px; background-color: #fff; } .body { background-color: #0d0b1d; font-family: 'Red Hat Display', sans-serif; color: #fff; } .section-intro { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-right: 0px; margin-left: 0px; padding: 0px 0px 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .container-3 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; padding-right: 0px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .text-block-3 { display: block; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-weight: 500; text-align: center; } .textkeyfunc { margin: 0px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 32px; line-height: 32px; font-weight: 500; text-align: center; } .text-block-5 { position: static; margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 32px; font-weight: 300; text-align: justify; } .coverintro { position: static; left: 0%; top: auto; right: auto; bottom: 0%; display: block; width: 50%; margin-bottom: 0px; margin-left: 0px; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 20px; line-height: 24px; font-weight: 400; text-align: justify; } .section-slogan { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 80vh; padding-top: 140px; padding-bottom: 220px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #3dbac5; background-image: url('../images/homeWorldMap.svg'); background-position: 50% 50%; background-size: cover; background-repeat: no-repeat; } .text-block-6 { margin-bottom: 48px; color: #fff; font-size: 56px; line-height: 72px; } .coverslogan { width: 100%; margin-bottom: 60px; font-size: 80px; text-align: left; } .homeabout { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 64px; margin-left: 72px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .div-block-2 { width: 100%; margin-right: 0px; margin-bottom: 24px; padding-right: 0px; } .div-block-3 { width: 100%; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; -o-object-fit: fill; object-fit: fill; } .scrolltip { position: static; left: 0%; top: auto; right: 0%; bottom: 0%; margin-bottom: 0px; text-align: left; } .homeaboutimages { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 300px; max-width: 140px; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: auto; -ms-flex-item-align: auto; align-self: auto; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .image-3 { margin-right: 32px; margin-left: 32px; } .image-4 { margin-right: 32px; margin-left: 32px; } .image-5 { margin-right: 32px; margin-left: 32px; } .div-block-4 { width: 32%; height: 240px; background-color: #f0f0f0; } .link-block { display: block; width: 28px; height: 28px; margin-bottom: 32px; } .container-4 { display: block; max-width: 1400px; padding-right: 0px; padding-left: 0px; } .background-video-2 { overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .background-video-3 { position: relative; overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .background-video-4 { overflow: visible; width: 32%; height: 240px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .columns { width: 100%; max-width: 1400px; margin-right: 0px; margin-bottom: 48px; margin-left: 0px; } .columns-2 { margin-right: 0px; margin-left: 0px; } .image-6 { max-width: 60%; } .image-7 { max-width: 60%; } .image-8 { max-width: 60%; } .container-5 { max-width: 1400px; padding-right: 72px; padding-left: 72px; } .heading-2 { color: #fff; } .heading-3 { display: block; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 32px; font-weight: 400; } .heading-4 { color: #fff; } .container-6 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1200px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_old { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 32px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #3dbac5; } .div-block-5 { max-width: 1200px; } .container-7 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; padding: 24px 72px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: #3dbac5; } .footer_copyright { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 13px; font-weight: 300; } .div-block-6 { display: none; width: 50%; margin-right: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-7 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 50%; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_link { margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 400; text-decoration: none; } .footer_link:hover { opacity: 0.5; color: #fff; } .footer_nav { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 240px; max-width: 1080px; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 20px; font-weight: 300; } .div-block-8 { display: block; width: 20%; } .div-block-9 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .div-block-10 { display: block; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .container-8 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 80px; max-width: 1200px; padding-top: 0px; padding-bottom: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-3 { display: block; background-color: #3dbac5; } .typed-slogan-text { margin-bottom: 0px; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 72px; line-height: 90px; font-weight: 500; text-align: center; } .div-block-11 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .footer_email { margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; font-weight: 500; } .footer_email:hover { color: rgba(61, 186, 197, 0.5); } .footer_addresscn { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 28px; line-height: 48px; font-weight: 200; } .text-block-7 { margin-bottom: 24px; } .div-block-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 36px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .image-9 { width: 32px; max-width: none; margin-right: 24px; } .image-10 { width: 32px; max-width: none; margin-right: 24px; color: #eaecef; } .footer_address { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; font-weight: 500; } .navigation { position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) rgba(0, 0, 0, 0.05); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .text-block-8 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 18px; font-weight: 300; } .link-block-2 { margin-right: 32px; margin-bottom: 0px; margin-left: 0px; opacity: 0.6; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 300; text-decoration: none; } .link-block-3 { text-decoration: none; } .link-block-4 { text-decoration: none; } .div-block-13 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 100px; margin-bottom: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; text-align: left; } .navigation-link-current { padding-right: 40px; padding-left: 40px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; color: #ffa543; } .navigation-link-current:hover { color: #fff; } .navigation-link-current.w--current { margin-right: 0px; margin-left: 0px; padding-right: 40px; padding-left: 40px; opacity: 1; color: #fff; } .div-block-14 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .dropdown-toggle { padding: 10px; border: 1px solid transparent; border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 1px 1px 5px 0 rgba(0, 0, 0, 0.1); opacity: 0.6; font-size: 18px; } .dropdown-toggle:hover { padding: 10px; border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.1); opacity: 1; } .dropdown-toggle.w--open { margin-top: 10px; margin-bottom: 10px; padding: 10px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 50%; background-color: hsla(0, 0%, 100%, 0.1); opacity: 1; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); } .text-block-9 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 24px; font-weight: 100; } .link-block-5 { -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .link-block-5.w--current { -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .section-4 { background-color: #3dbac5; } .container-9 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; padding: 24px 72px 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: #3dbac5; -o-object-fit: fill; object-fit: fill; } .footer_nav_link_title { margin-bottom: 0px; padding-right: 0px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e5e7eb; font-size: 16px; font-weight: 500; text-align: left; text-decoration: none; } .footer_nav_link_title:hover { opacity: 0.5; } .div-block-15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 48px; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-16 { width: 100%; margin-right: 72px; margin-bottom: 48px; margin-left: 72px; } .image-11 { height: 32px; } .text-block-10 { margin-right: 16px; margin-left: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 12px; font-weight: 300; } .text-block-11 { margin-right: 0px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 14px; font-weight: 400; } .image-12 { display: none; height: 48px; margin-bottom: 36px; } .div-block-17 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1400px; margin-right: auto; margin-left: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } .div-block-18 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .language-copy { -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; border: 1px none #000; opacity: 1; } .language-copy:hover { opacity: 1; } .dropdown-list-2-copy { padding-left: 16px; } .dropdown-list-2-copy.w--open { left: auto; top: auto; right: 0%; bottom: 51px; margin-right: 0px; padding-right: 0px; padding-left: 0px; border-radius: 4px; box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.05); text-align: left; } .section-5 { height: 500px; } .section-6 { width: 100%; } .navigation_green { width: 100%; } .navbar { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); background-color: #fff; } .navigation-link-green { padding-right: 32px; padding-left: 32px; opacity: 1; -webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 16px; font-weight: 600; } .navigation-link-green:hover { opacity: 0.5; color: #3dbac5; } .navigation-link-green.w--current { margin-right: 0px; margin-left: 0px; padding-right: 32px; padding-left: 32px; opacity: 1; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #ffa543; font-weight: 800; } .text-block-2-green { color: #3dbac5; font-size: 16px; } .icon-2-green { margin-right: 0px; color: #3dbac5; } .text-block-12 { margin-bottom: 24px; } .text-block-13 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 14px; } .text-block-14 { margin-bottom: 12px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 14px; font-weight: 300; } .text-block-9-green { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: rgba(61, 186, 197, 0.5); font-size: 24px; font-weight: 100; } .body-2 { display: block; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: #fff; } .body-3 { background-color: #fff; } .body-4 { background-color: #fff; } .body-5 { background-color: #fff; } .body-6 { background-color: #fff; } .div-block-19 { width: 10%; } .section-_title { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 72px; margin-bottom: 72px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-20 { width: 100%; max-width: 1400px; margin-right: 72px; margin-bottom: 36px; margin-left: 72px; padding-right: 0px; padding-left: 0px; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; } .heading-5 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 56px; line-height: 64px; font-weight: 400; text-align: center; } .div-block-21 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; max-width: 1400px; margin: 24px 0px 32px; padding-right: 72px; padding-left: 72px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-22 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; max-width: 1400px; min-width: 100%; margin: 24px 0px; padding-right: 72px; padding-left: 72px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-23 { max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } .footer_lastlinks { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1080px; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .container-10 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .footer { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 400px; padding-top: 55px; padding-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.31); } .div-block-24 { width: 100%; height: auto; max-width: 1080px; margin-right: 72px; margin-left: 72px; background-color: transparent; } .div-block-25 { width: 100%; height: 100px; max-width: 1400px; margin-right: 72px; margin-left: 72px; } .section-zhunei { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-right: 0px; margin-left: 0px; padding: 0px 0px 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-8 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 80px; padding-bottom: 80px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .div-block-26 { display: block; width: 100%; height: auto; max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .section_content { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-bottom: 200px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_content.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_content.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_content.sectiondarkbg.investor { margin-bottom: 0px; } .containerdiv { display: block; width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .sectiontitlediv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .list_zhunei { margin-bottom: 0px; padding-left: 0px; } .list-item-zhunei { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; text-align: left; } .list-item-2 { margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; font-weight: 300; } .div-block-29 { width: 100%; height: 100px; max-width: 1400px; margin-right: 0px; margin-left: 0px; background-color: #f8c740; } .column { padding-right: 0px; padding-left: 0px; } .column-2 { padding-right: 0px; padding-left: 0px; } .section-10 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .section-11 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-bottom: 100px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .grid { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 0px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 0px 1fr 0px 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto 0px auto; grid-template-rows: auto auto; } .member_gird { max-width: 1400px; margin-right: 72px; margin-bottom: 0px; margin-left: 72px; } .section-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 64px; margin-bottom: 100px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-30 { display: block; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slider { width: 450px; height: 600px; } .about_slider_zhunei { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; } .div-block-31 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 64px; margin-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-32 { margin-right: 0px; } .div-block-33 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-13 { width: 100%; height: 600px; -o-object-fit: cover; object-fit: cover; } .grid-2 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .image-14 { height: 300px; } .image-15 { height: 300px; } .about_company_photo { width: 100%; height: 300px; -o-object-fit: cover; object-fit: cover; } .div-block-34 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .div-block-35 { width: 50%; margin-right: 64px; } .gray_line { display: block; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .text-block-15 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 64px; font-weight: 400; text-align: center; } .div-block-28-copy { margin-bottom: 64px; } .text-block-16 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; } .text-block-17 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 48px; line-height: 80px; font-weight: 300; } .div-block-36 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-37 { margin-right: 64px; } .paragraph { font-size: 18px; } .paragraph-2 { margin-top: 0px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; } .div-block-38 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .grid-3 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .image-16 { display: block; width: 100%; margin-bottom: 16px; -o-object-fit: cover; object-fit: cover; } .link-block-6 { display: block; } .div-block-37-copy { margin-right: 0px; margin-left: 24px; } .image-17 { color: #2a699e; } .go_youtube_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 36px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-decoration: none; } .go_youtube_link:hover { opacity: 0.75; } .youtube_green_icon { width: 32px; margin-right: 12px; } .go_youtube_text { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 24px; font-weight: 500; text-decoration: none; } .sub-section-title { display: block; margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 14px; font-weight: 600; text-align: left; } .grid-4 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .contact-form { padding-top: 100px; padding-bottom: 100px; } .small-text { text-align: center; } .contact-form-grid { display: -ms-grid; display: grid; margin-top: 40px; grid-auto-columns: 1fr; grid-column-gap: 20px; grid-row-gap: 20px; grid-template-areas: "." "Area"; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto 20px auto 20px auto 20px auto 20px auto; grid-template-rows: auto auto auto auto auto; } .submit-button { width: 100%; margin-top: 24px; padding-top: 24px; padding-bottom: 24px; border-radius: 8px; background-color: #ffa543; font-size: 20px; } .field-label { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-weight: 500; } .italic-text { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; font-style: normal; font-weight: 400; text-align: center; } .text-field { height: 48px; border: 2px solid #3dbac5; } .text-field-copy { border: 2px solid #3dbac5; } .paragraph-3 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 20px; font-weight: 400; text-align: center; } .container-11 { margin-bottom: 60px; } .div-block-39 { margin-top: 60px; } .form-block { margin-bottom: 60px; } .success-message { margin-top: 64px; padding: 40px; border: 2px solid #3dbac5; background-color: #fff; } .div-block-40 { margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 24px; } .error-message { margin-top: 32px; padding-right: 40px; padding-left: 40px; } .paragraph-4 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e64c40; font-size: 18px; font-weight: 400; } .checkbox-field { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 24px; margin-bottom: 0px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .checkbox-label { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; font-weight: 400; } .link { text-decoration: none; } .checkbox { width: 20px; height: 20px; margin-right: 10px; padding: 8px; border-width: 2px; border-color: #3dbac5; } .link-2 { color: #3dbac5; line-height: 20px; text-decoration: none; } .contact-arrow { width: 24px; margin-right: 12px; } .contact-button { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 180px; height: 48px; margin-top: 48px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 8px; background-color: #ffa543; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-weight: 500; text-decoration: none; } .image-18 { width: 12px; margin-right: 12px; } .design_comment { color: #d6d6d6; font-size: 12px; text-align: center; } .link-3 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; text-decoration: none; } .image-16-copy { display: block; width: 100%; height: 400px; margin-bottom: 16px; -o-object-fit: cover; object-fit: cover; } .grid-5 { justify-items: center; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .gri_two { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 4px; grid-row-gap: 4px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 4px 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .heading-3-center { display: block; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 32px; font-weight: 600; text-align: center; } .grid-three { display: -ms-grid; display: grid; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 16px; grid-template-areas: "Area"; -ms-grid-columns: 1fr 8px 1fr 8px 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto 16px auto; grid-template-rows: auto auto; } .grid-6 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section_content-copy { display: none; width: 100%; height: auto; margin-bottom: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .content_title { margin-top: 16px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 18px; line-height: 24px; font-weight: 500; text-align: left; text-decoration: none; } .link-block-7 { text-decoration: none; } .content_intro { margin-top: 4px; margin-bottom: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 14px; line-height: 24px; font-weight: 400; text-align: left; text-decoration: none; } .div-block-41 { margin-bottom: 48px; } .section-13 { width: 10%; } .section-14 { width: 100%; } .container-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 100%; margin-bottom: 100px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-42 { max-width: 1400px; } .work_content_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 48px; font-weight: 500; text-align: left; } .work_content_details { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 16px; line-height: 32px; font-weight: 400; text-align: left; } .form-2 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .slider_three { display: block; background-color: #fff; } .grid-7 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; background-color: #fff; color: transparent; } .div-block-43 { display: none; } .cooperate_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #3dbac5; font-size: 36px; line-height: 48px; font-weight: 500; text-align: left; } .cooperate_block001 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .content_topblock { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-19 { max-width: 60%; } .image-20 { max-width: 60%; } .grid_001 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; background-color: #fff; color: transparent; } .image-21 { text-align: left; } .grid-8 { grid-column-gap: 4px; grid-row-gap: 4px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .silder_three { margin-bottom: 80px; } .div-block-45 { margin-bottom: 80px; } .image-22 { max-width: 75%; -o-object-fit: contain; object-fit: contain; } .grid-9 { -ms-grid-rows: auto; grid-template-rows: auto; } .hamburger-button-dark { display: block; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .grid-10 { -ms-grid-columns: 1fr 2fr; grid-template-columns: 1fr 2fr; -ms-grid-rows: auto; grid-template-rows: auto; } .list-item { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #999; font-size: 18px; line-height: 32px; font-weight: 400; text-align: center; } .div-block-46 { margin-right: 0px; margin-left: 48px; padding-right: 0px; } .grid-11 { justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 0px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .image-23 { height: 32px; } .footer_lastlinks_mobile { position: static; display: none; max-width: 1400px; margin-right: 0px; margin-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slider_two { display: none; background-color: #fff; } .grid-8-two { grid-column-gap: 4px; grid-row-gap: 4px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .container_div_works_01 { display: block; width: 100%; max-width: 1400px; margin-right: 72px; margin-left: 72px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; } .grid-12 { -ms-grid-rows: auto; grid-template-rows: auto; } .slide-nav-4 { display: none; } .slide-nav-5 { display: none; } .slide-nav-6 { display: none; } .icon-9 { display: none; } .covercontent { position: static; bottom: 15%; width: 100%; margin-top: 5rem; padding-right: 8rem; padding-left: 64px; } .coverheading { width: 100%; margin-bottom: 24px; font-family: Varela, sans-serif; font-size: 56px; line-height: 64px; text-align: left; } .bold-text { font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 24px; line-height: 24px; font-weight: 400; } .bold-text-2 { font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 64px; line-height: 64px; font-weight: 500; } .buttonprimary { margin-right: 24px; padding: 16px 64px; border-radius: 99px; background-image: -webkit-gradient(linear, left top, right top, from(#1d4ed8), to(#7c3aed)); background-image: linear-gradient(90deg, #1d4ed8, #7c3aed); font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } .buttonprimary:hover { background-image: -webkit-gradient(linear, left top, right top, from(#0e37ac), to(#5821b8)); background-image: linear-gradient(90deg, #0e37ac, #5821b8); } .buttonprimary:active { background-image: -webkit-gradient(linear, left top, right top, from(#03278b), to(#38068d)); background-image: linear-gradient(90deg, #03278b, #38068d); } .coverbuttons { margin-top: 56px; } .buttonoutline { margin-right: 24px; padding: 16px 40px; border: 2px solid #e5e7eb; border-radius: 99px; background-color: transparent; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } .buttonoutline:hover { border-color: #bcc0c9; } .buttonoutline:active { border-color: #8d929c; } .covercontentdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 90vh; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .covercontentmouseicondiv { position: relative; z-index: 30; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 10vh; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .icon-10 { display: none; } .image-24 { color: red; } .dropdown-2 { position: static; left: auto; top: 0%; right: 0%; bottom: 0%; margin-right: 0px; margin-left: 0px; } .dropdown-list-3 { position: absolute; display: block; width: 180px; } .dropdown-link-7 { width: 180px; } .dropdown-link-8 { width: 180px; } .textkeyfuncwords { margin: 0px 16px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 40px; font-weight: 700; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .divkeyfuncimage { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 50px; margin-bottom: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .image-25 { display: none; width: 60%; } .sectiontitle { margin: 0px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 80px; font-weight: 700; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .hightlight_title_mobile { display: none; width: 100%; margin-top: 48px; margin-bottom: 64px; padding-top: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .sectionsubtitle { width: 100%; margin-top: 0px; margin-bottom: 0px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 18px; line-height: 18px; font-weight: 400; text-align: center; } .powertoolsdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 48px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-perspective: 1000px; perspective: 1000px; } .investorgrid { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .powertoolscard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; padding: 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .image-26 { overflow: visible; width: 40%; } .text-block-19 { margin-top: 35px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 24px; text-align: center; } .text-block-19-copy { margin-top: 35px; font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 16px; line-height: 18px; font-weight: 400; text-align: center; } .text-block-19-copy { margin-top: 16px; font-family: 'Red Hat Display', sans-serif; color: hsla(0, 0%, 100%, 0.6); font-size: 16px; line-height: 24px; text-align: center; } .powertoolscardtitle { margin-top: 40px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 24px; font-weight: 700; text-align: center; } .powertoolscarddesc { margin-top: 16px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 24px; text-align: center; } .text-block-20 { font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); text-align: left; } .text-block-20:hover { color: #fff; } .text-block-21 { font-family: 'Red Hat Display', sans-serif; } .text-block-22 { font-family: 'Red Hat Display', sans-serif; } .text-block-23 { font-family: 'Red Hat Display', sans-serif; } .sectiontitlecolorfullaunchpad { margin: 0px 0px 16px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 40px; line-height: 60px; font-weight: 500; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .grid-13-copy { -webkit-box-pack: stretch; -webkit-justify-content: stretch; -ms-flex-pack: stretch; justify-content: stretch; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .launchpadbutton { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; padding: 36px 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border: 1px none #000; border-radius: 16px; background-color: hsla(0, 0%, 100%, 0.05); } .launchpadbuttontitle { margin-top: 0px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 32px; line-height: 40px; font-weight: 700; text-align: center; } .launchpadbuttonintro { margin-top: 24px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 24px; text-align: center; } .launchpad_screenshot { width: 100%; margin-top: 80px; } .launchpaddiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 64px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_launchpad { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .section_launchpad.sectiondarkbg { background-color: rgba(0, 0, 0, 0.31); } .footer_nav_link_list { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 180px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_nav_link_list.last { width: auto; } .footer_nav_link_list._3rd { width: 220px; } .footer_nav_link_item { margin-top: 10px; margin-bottom: 0px; padding-right: 0px; padding-left: 0px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.4); font-size: 14px; font-weight: 500; text-align: left; text-decoration: none; } .footer_nav_link_item:hover { opacity: 1; color: #fff; } .footer_nav_link_itemdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 20px; margin-right: 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-50 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .copright { margin-right: 0px; opacity: 1; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.4); font-size: 12px; font-weight: 400; } .bold-text-3 { font-weight: 500; } .bold-text-4 { width: 50%; color: rgba(229, 231, 235, 0.5); font-weight: 400; } .bgcombo001 { position: absolute; left: -50rem; top: 150rem; width: 1600px; opacity: 0.2; } .image-30 { position: absolute; display: block; width: 500px; } .parallaxbackground { overflow: scroll; } .bgcombo002 { position: absolute; top: 1500px; right: -800px; width: 1600px; opacity: 0.2; } .bgcombo003 { position: fixed; left: -600px; bottom: -700px; overflow: hidden; width: 1600px; opacity: 0.2; } .bgcombomov001 { position: absolute; top: 4000px; right: 200px; width: 800px; opacity: 0.2; -webkit-filter: blur(50px); filter: blur(50px); } .launchpadglasscard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; height: 200px; padding: 36px 24px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 16px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); } .slider-_highlight { display: none; overflow: visible; width: 100%; height: auto; max-width: 1080px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; color: transparent; } .mask-4 { height: 120vh; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .slide-nav-7 { display: none; } .icon-11 { opacity: 0.3; } .icon-12 { opacity: 0.3; } .cardhighlight { position: absolute; display: none; overflow: hidden; width: 200px; height: 200px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; border-radius: 50%; background-color: #fff; opacity: 0.05; -webkit-filter: blur(20px); filter: blur(20px); -o-object-fit: cover; object-fit: cover; } .securitygrid { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .collaboratordiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_securityaudits { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_securityaudits.sectiondarkbg { position: relative; z-index: 99; height: 40vh; margin-bottom: 0px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_collaborator { display: none; width: 100%; height: 110vh; margin-bottom: 200px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: transparent; } .section_collaborator.sectiondarkbg { background-color: rgba(0, 0, 0, 0.31); } .bgcombo004 { position: absolute; left: auto; top: 300rem; right: -60rem; width: 1600px; opacity: 0.5; } .image-31 { width: 70%; } .powertools { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .cardhighlightsmall { position: absolute; overflow: hidden; width: 250px; height: 250px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; border-radius: 50%; background-color: #fff; opacity: 0.05; -webkit-filter: blur(20px); filter: blur(20px); -o-object-fit: cover; object-fit: cover; } .whitepaper_gird { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-flow: row; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercardtitle { width: 100%; min-height: 90px; margin-top: 0px; margin-bottom: 8px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #e5e7eb; font-size: 24px; line-height: 28px; font-weight: 300; text-align: left; } .whitepapercarddesc { width: 100%; margin-top: 0px; margin-bottom: 8px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); font-size: 14px; line-height: 24px; text-align: left; } .whitepapercardintro { width: 100%; margin-top: 0px; margin-bottom: 24px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 14px; line-height: 22px; font-weight: 400; text-align: left; } .whitepapercarddate { width: 100%; margin-top: 0px; margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 12px; font-weight: 400; text-align: left; } .div-block-51 { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; height: auto; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-right: 0px; padding-bottom: 24px; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .whitepapercard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 360px; padding: 32px 24px 48px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .link-block-9 { text-decoration: none; } .text-block-24 { position: absolute; bottom: 0px; margin-bottom: 32px; color: #fff; text-decoration: none; } .link-block-10 { margin-bottom: 12px; color: #30ad64; text-decoration: none; } .link-block-11 { text-decoration: none; } .link-block-12 { text-decoration: none; } .whitepaperlink { width: 100%; -webkit-transition: -webkit-transform 200ms ease; transition: -webkit-transform 200ms ease; transition: transform 200ms ease; transition: transform 200ms ease, -webkit-transform 200ms ease; text-decoration: none; } .whitepaperlink:hover { -webkit-transform: translate(0px, -10px); -ms-transform: translate(0px, -10px); transform: translate(0px, -10px); } .highlightvideo_01 { width: 800px; height: 800px; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; } .section_cover { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; height: 100vh; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-52 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .highlighttitlebar { width: 100%; padding-top: 32px; padding-bottom: 32px; } .highlightbigcard_01 { position: static; left: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 560px; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .section_highlight { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_highlight.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .highlightbigcard_02 { position: static; top: 1500px; right: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 30rem; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .maxwidth { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-right: 64px; padding-left: 64px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .grid-13 { width: 100%; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 0.5fr 1fr; grid-template-columns: 0.5fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-14 { width: 100%; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: 300px auto; grid-template-rows: 300px auto; } .grid-15 { grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_launchpad { position: static; top: 1500px; right: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .highlightbigcard_lendborrow { position: static; left: 10rem; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 30rem; margin-top: 0px; padding: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .hightlight_video { width: 320px; height: 360px; background-color: transparent; } .highlightbigcard_lendborrow_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 300px; padding: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .div-block-53 { width: 100%; } .textkeyfunctitle { display: inline; margin: 32px 0px 16px; background-image: -webkit-gradient(linear, right top, left top, from(#76a0ff), to(#fff)); background-image: linear-gradient(270deg, #76a0ff, #fff); font-family: 'Red Hat Display', sans-serif; color: #fff; font-size: 36px; line-height: 48px; font-weight: 900; text-align: left; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .textkeyfunctitle.center { text-align: center; } .dex_grid { width: 100%; justify-items: center; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .highlightbigcard_dex_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 500px; padding-top: 40px; padding-bottom: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .lendborrow_grid { width: 100%; justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_launchpad_new { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 100%; padding: 40px 0px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #18152d; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .hightlightintro { width: 100%; margin-top: 0px; margin-bottom: 0px; font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.5); font-size: 16px; line-height: 18px; font-weight: 400; text-align: left; } .hightlightintro.center { width: auto; margin-top: 12px; text-align: left; } .hightlightintro { margin-top: 12px; } .highlightbigcard_dex_text { margin-top: 64px; padding-right: 40px; padding-left: 40px; } .image-32 { width: 16px; height: 16px; margin-right: 10px; opacity: 0.5; } .div-block-54 { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 24px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .text-block-25 { color: #fff; text-decoration: none; } .whitepaper_view { position: absolute; bottom: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 32px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .investorlistdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 24px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-perspective: 1000px; perspective: 1000px; } .div-block-55 { padding-right: 40px; padding-left: 40px; } .section_investor { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_investor.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_investor.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_investor.sectiondarkbg.investor { height: auto; margin-bottom: 100px; } .parallaxbackground { position: relative; z-index: -10; display: block; overflow: hidden; grid-auto-columns: 1fr; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .footer_links_gird { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link { font-family: 'Red Hat Display', sans-serif; color: rgba(229, 231, 235, 0.3); text-align: left; } .footer_nav_link:hover { color: #fff; } .footer_nav_title { color: #e5e7eb; font-size: 16px; font-weight: 500; } .hightlight_title_desktop { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 48px; margin-bottom: 64px; padding-top: 0px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .bold-text-5 { font-size: 40px; line-height: 40px; } .bold-text-6 { font-size: 32px; font-weight: 500; } .bold-text-7 { font-size: 32px; font-weight: 500; } .highlightbigcard_dex_white { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 500px; padding-top: 40px; padding-bottom: 40px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: #fff; box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .video { position: absolute; right: 0px; width: 1000px; height: 1000px; } .contactcard { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 100%; height: 180px; padding: 48px 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: solid; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.05); border-radius: 32px; background-color: hsla(0, 0%, 100%, 0.05); box-shadow: inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.05), 3px 3px 4px 2px rgba(0, 0, 0, 0.1); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -webkit-transform: none; -ms-transform: none; transform: none; } .conactcards { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .contactcardtitle { margin-top: 24px; font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-size: 18px; font-weight: 700; text-align: center; } .contactcardlink { width: 100%; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .contactcardlink:hover { -webkit-transform: translate(0px, -10px); -ms-transform: translate(0px, -10px); transform: translate(0px, -10px); } .contactcardlink { width: 100%; text-decoration: none; } .tool_image { overflow: visible; width: 50%; } .investorlogo { width: 70%; } .section_followalex { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_followalex.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_followalex.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_followalex.sectiondarkbg.investor { margin-bottom: 0px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 50%; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-26 { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .containerdiv_whitepapers { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_investors { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_security { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_followalex { display: block; width: 100%; max-width: 1080px; margin-right: auto; margin-left: auto; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containerdiv_powertools { display: block; width: 100%; max-width: 1080px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .containterdiv_footer { width: 100%; height: auto; max-width: 1080px; margin-right: 72px; margin-left: 72px; background-color: transparent; } .container-13 { overflow: hidden; } .utility-page-wrap { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100vh; max-height: 100%; max-width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; } .utility-page-content { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; } .utility-page-form { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .image-35 { width: 128px; margin-bottom: 48px; } .body-7 { background-color: #0a0822; } ._404-text { margin-bottom: 48px; font-size: 18px; line-height: 32px; } ._404-text.mobileonly { display: none; } ._404_button { margin-right: 24px; padding: 16px 64px; border-radius: 99px; background-image: -webkit-gradient(linear, left top, right top, from(#1d4ed8), to(#7c3aed)); background-image: linear-gradient(90deg, #1d4ed8, #7c3aed); font-family: 'Red Hat Display', sans-serif; color: #e5e7eb; font-weight: 500; } ._404_title { margin: 0px 0px 16px; background-image: -webkit-gradient(linear, left top, right top, from(#02e1b3), color-stop(48%, #0b9dff), to(#ba74ff)); background-image: linear-gradient(90deg, #02e1b3, #0b9dff 48%, #ba74ff); font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; font-size: 48px; line-height: 80px; font-weight: 300; text-align: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .securitylogo { width: 60%; } .pure_footer { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 240px; max-width: 1080px; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding-right: 0px; padding-left: 0px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #1a1a1a; font-size: 20px; font-weight: 300; } .footer_new-copy { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 400px; padding-top: 55px; padding-bottom: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.31); } .pure_navigation { position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 120px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-style: none; border-width: 1px; border-color: hsla(0, 0%, 100%, 0.15) hsla(0, 0%, 100%, 0.15) rgba(0, 0, 0, 0.05); background-color: transparent; color: transparent; background-clip: border-box; -webkit-text-fill-color: inherit; -o-object-fit: fill; object-fit: fill; } .pure_section { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 200px; margin-bottom: 200px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .pure_section.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .pure_section.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .pure_section.sectiondarkbg.investor { margin-bottom: 0px; } .pure_containerdiv { display: block; width: 100%; max-width: 1080px; margin-right: 0px; margin-bottom: 48px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; background-color: transparent; text-align: left; } .pure_sectiontitlediv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .pure_content_title { width: 100%; margin-bottom: 18px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; } .pure_section_content { display: block; margin-bottom: 24px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text_num { width: 64px; margin-bottom: 18px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; opacity: 0.5; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 14px; } .pure_section_title { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 48px; margin-bottom: 18px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .pure_section_text.last { margin-bottom: 48px; } .pure_section_title_num { width: 64px; margin-bottom: 18px; opacity: 0.5; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; } .pure_content_text { width: 100%; margin-bottom: 18px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 14px; text-align: justify; } .pure_section_text_subdiv { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .numdiv { width: 100px; } .link-block-14 { text-decoration: none; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .footer_privacylink:hover { color: #fff; } .section_tools { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_tools.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_tools.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_tools.sectiondarkbg.investor { margin-bottom: 0px; } .section_whitepapers { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-top: 150px; margin-bottom: 150px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: transparent; } .section_whitepapers.sectiondarkbg { position: relative; z-index: 99; height: 100vh; margin-bottom: 120px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; background-color: transparent; -webkit-perspective: 2000px; perspective: 2000px; -webkit-transform: none; -ms-transform: none; transform: none; } .section_whitepapers.sectiondarkbg.whitepaper { height: auto; margin-bottom: 100px; } .section_whitepapers.sectiondarkbg.investor { margin-bottom: 0px; } .coverscrolllink { display: block; width: 28px; height: 28px; margin-bottom: 32px; } .investors_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .investors_link:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); } .security_link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-transition: all 200ms ease; transition: all 200ms ease; } .security_link:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); } @media screen and (min-width: 1280px) { .logo-long-color { width: 180px; height: auto; } .header { max-width: 1440px; } .video_cover { position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; display: block; width: 900px; height: 900px; margin-right: 5%; } .body { overflow: visible; } .coverintro { line-height: 32px; text-align: left; } .div-block-6 { display: none; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { max-width: 1440px; } .footer_nav_link_title:hover { opacity: 1; } .div-block-15 { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .footer_lastlinks { max-width: 1440px; } .div-block-24 { max-width: 1440px; } .section_content.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_content.sectiondarkbg.investor { margin-bottom: 100px; } .containerdiv { width: 100%; max-width: 1440px; } .covercontent { position: static; bottom: 20vh; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1440px; margin-top: 0px; padding-top: 6rem; padding-right: 0rem; padding-left: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .coverheading { line-height: 96px; text-align: left; } .bold-text-2 { font-size: 80px; line-height: 80px; text-align: left; } .buttonoutline { border-width: 1.5px; } .covercontentdiv { position: static; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .covercontentmouseicondiv { position: relative; z-index: 30; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1440px; } .hightlight_title_mobile { display: none; } .sectionsubtitle { font-size: 18px; line-height: 24px; } .powertoolsdiv { width: 100%; } .powertoolscard { width: 100%; height: 100%; } .image-26 { width: 40%; } .text-block-20:hover { color: #fff; } .launchpadbuttontitle { line-height: 48px; } .launchpad_screenshot { width: 100%; } .section_launchpad { margin-bottom: 100px; } .footer_nav_link_list { -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_nav_link_item:hover { opacity: 1; } .copright { color: rgba(229, 231, 235, 0.4); } .bold-text-4 { font-size: 28px; text-align: left; } .bgcombo001 { overflow: hidden; } .parallaxbackground { display: none; overflow: hidden; width: 100%; } .bgcombo002 { display: none; overflow: hidden; } .bgcombo003 { left: -800px; display: block; overflow: hidden; } .bgcombo004 { display: none; overflow: hidden; } .image-31 { width: 40%; } .powertools { -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link-block-8 { margin-bottom: 32px; } .maxwidth { max-width: 1440px; } .highlightbigcard_lendborrow_new { background-color: #1e1734; } .textkeyfunctitle { background-image: -webkit-gradient(linear, right top, left top, from(#76a0ff), to(#fff)); background-image: linear-gradient(270deg, #76a0ff, #fff); } .highlightbigcard_dex_new { background-color: #1e1734; } .highlightbigcard_launchpad_new { background-color: #1e1734; } .hightlightintro { color: #a7a7a7; } .investorlistdiv { padding-right: 64px; padding-left: 64px; } .image-33 { width: 40%; } .image-34 { width: 40%; } .section_investor.sectiondarkbg.investor { height: auto; margin-bottom: 150px; } .parallaxbackground { position: relative; display: block; overflow: scroll; width: auto; } .footer_links_gird { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; justify-items: start; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -webkit-align-content: start; -ms-flex-line-pack: start; align-content: start; -ms-grid-columns: 1fr 1fr 1fr 0.5fr; grid-template-columns: 1fr 1fr 1fr 0.5fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link:hover { color: #fff; } .highlightbigcard_dex_white { background-color: #fff; } .contactcard { width: 100%; height: 200px; } .conactcards { width: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link-block-13 { text-decoration: none; } .contactcardlink { width: 100%; text-decoration: none; } .tool_image { width: 50%; } .section_followalex.sectiondarkbg.investor { margin-bottom: 100px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-26 { color: rgba(229, 231, 235, 0.2); font-size: 12px; } .containerdiv_whitepapers { width: 100%; max-width: 1440px; } .containerdiv_investors { width: 100%; max-width: 1440px; } .containerdiv_security { width: 100%; max-width: 1440px; } .containerdiv_followalex { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .containerdiv_powertools { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .containterdiv_footer { max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .utility-page-wrap { width: 100%; } .utility-page-content { width: auto; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .text-block-27 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; } .button-2 { margin-top: 48px; } .image-35 { width: 128px; margin-bottom: 48px; background-color: transparent; color: #fff; } .heading-6 { margin-bottom: 32px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: hsla(0, 0%, 100%, 0.5); font-size: 48px; font-weight: 300; } .body-7 { background-color: #0a0822; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; color: #fff; } ._404-text { margin-bottom: 48px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 18px; line-height: 32px; } ._404-text.mobileonly { display: none; } ._404_button { margin-right: 0px; } ._404_title { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-weight: 300; } .securitylogo { width: 50%; } .pure_footer { height: 60px; max-width: 1440px; } .pure_section { margin-top: 200px; } .pure_section.sectiondarkbg.whitepaper { margin-bottom: 150px; } .pure_section.sectiondarkbg.investor { margin-bottom: 100px; } .pure_containerdiv { width: 100%; max-width: 1440px; margin-right: 0px; margin-left: 0px; padding-right: 64px; padding-left: 64px; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); font-size: 12px; } .section_tools.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_tools.sectiondarkbg.investor { margin-bottom: 100px; } .section_whitepapers.sectiondarkbg.whitepaper { margin-bottom: 150px; } .section_whitepapers.sectiondarkbg.investor { margin-bottom: 100px; } } @media screen and (max-width: 991px) { .navigation-link { padding-top: 24px; padding-bottom: 24px; background-color: #fff; color: #3dbac5; } .navigation-link:hover { background-color: #3dbac5; opacity: 1; } .navigation-link.w--current { color: #fff; } .hamburger-button-white { display: block; overflow: visible; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 99px; background-color: transparent; color: #3dbac5; } .hamburger-button-white:hover { background-color: rgba(61, 186, 197, 0.3); } .hamburger-button-white.w--open { background-color: #3dbac5; color: #fff; } .navigation-menu { background-color: #3dbac5; color: #3dbac5; } .hero-section.centered { padding-top: 144px; padding-bottom: 144px; } .section-heading.centered { font-weight: 500; } .section-heading.centered.white { font-weight: 500; } .grid-image { width: 50%; padding: 15px; } .header { padding-right: 48px; padding-left: 48px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .video_cover { left: 0%; top: 0%; right: 0%; bottom: auto; width: 768px; height: 768px; margin-right: auto; margin-bottom: 0px; margin-left: auto; } .language { position: relative; margin-right: 0px; } .sloganbox { margin-right: 32px; margin-left: 32px; } .textkeyfunc { font-size: 28px; line-height: 40px; } .coverintro { width: 100%; margin-top: 16px; line-height: 32px; text-align: left; } .homeabout { margin-right: 0px; margin-left: 0px; padding-right: 40px; padding-left: 40px; } .image-6 { max-width: 80%; } .image-7 { max-width: 80%; } .image-8 { max-width: 80%; } .container-5 { padding-right: 24px; padding-left: 24px; } .div-block-6 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-12 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer_address { line-height: 32px; } .navigation { height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .navigation-link-current { color: hsla(0, 0%, 100%, 0.52); } .navigation-link-current.w--current { color: #fff; } .div-block-14 { position: static; margin-right: 0px; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .text-block-9 { display: none; } .div-block-15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .div-block-18 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .navbar { height: 96px; } .navigation-link-green { padding-top: 24px; padding-bottom: 24px; background-color: #fff; color: #3dbac5; text-decoration: none; } .navigation-link-green:hover { background-color: #36b1bc; opacity: 1; color: #fff; } .navigation-link-green.w--current { color: #ffa543; } .navigation-link-green.current { color: #ffa543; } .text-block-9-green { display: none; } .section-_title { margin-bottom: 0px; } .div-block-20 { margin-right: 24px; margin-left: 24px; } .footer_lastlinks { margin-top: 100px; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .footer { height: 470px; } .div-block-24 { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .section_content { height: auto; margin-bottom: 150px; } .section_content.sectiondarkbg { height: auto; } .containerdiv { margin-right: 48px; margin-left: 48px; } .sectiontitlediv { margin-top: 0px; } .member_gird { max-width: none; margin-right: 16px; margin-bottom: 0px; margin-left: 16px; } .div-block-31 { margin-bottom: 0px; } .div-block-33 { width: auto; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .image-13 { height: 400px; } .div-block-35 { width: auto; margin-right: 40px; } .link-block-6 { margin-bottom: 24px; } .div-block-37-copy { margin-left: 0px; } .image-16-copy { height: 400px; } .grid-5 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .div-block-41 { margin-bottom: 32px; } .div-block-42 { margin-right: 32px; margin-left: 32px; } .slider_three { display: none; } .grid-7 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-43 { display: none; } .image-20 { max-width: 80%; } .grid_001 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .grid-8 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .silder_three { margin-bottom: 40px; } .image-22 { max-width: 100%; -o-object-fit: contain; object-fit: contain; } .grid-9 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .hamburger-button-dark { display: block; overflow: visible; padding: 8px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 99px; background-color: transparent; color: #fff; } .hamburger-button-dark:hover { background-color: rgba(61, 186, 197, 0.3); } .hamburger-button-dark.w--open { padding: 0px; background-color: #3dbac5; color: #fff; } .grid-10 { -ms-grid-columns: 1fr 1.5fr; grid-template-columns: 1fr 1.5fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-11 { justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-column-gap: 16px; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .slider_two { display: block; } .grid-8-two { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-6 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .right-arrow { display: none; } .left-arrow { display: none; } .right-arrow-2 { display: none; } .left-arrow-2 { display: none; } .left-arrow-3 { display: none; } .right-arrow-3 { display: none; } .container_div_works_01 { margin-right: 32px; margin-left: 32px; } .grid-12 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .covercontent { position: absolute; bottom: 3rem; width: 100%; max-width: none; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .coverheading { margin-bottom: 8px; font-family: 'Red Hat Display', sans-serif; line-height: 60px; font-weight: 700; text-align: left; } .bold-text-2 { font-size: 56px; line-height: 60px; font-weight: 500; } .coverbuttons { margin-top: 32px; } .covercontentdiv { position: absolute; bottom: 0px; max-width: 1080px; margin-right: 0px; margin-left: 0px; } .covercontentmouseicondiv { display: none; } .textkeyfuncwords { font-size: 40px; line-height: 60px; } .sectiontitle { margin-bottom: 16px; font-size: 40px; line-height: 48px; font-weight: 700; } .powertoolsdiv { width: 100%; } .investorgrid { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .powertoolscard { width: 100%; height: 100%; } .image-26 { width: 30%; } .sectiontitlecolorfullaunchpad { font-size: 40px; } .launchpadbutton { padding-top: 24px; padding-bottom: 24px; } .launchpadbuttonintro { line-height: 20px; } .section_launchpad { height: auto; margin-bottom: 150px; } .copright { font-size: 12px; } .bold-text-4 { line-height: 32px; } .bgcombo002 { right: -400px; } .bgcombo003 { left: -400px; bottom: -200px; overflow: hidden; } .launchpadglasscard { height: 240px; } .section_securityaudits { margin-bottom: 150px; } .section_securityaudits.sectiondarkbg { height: auto; margin-bottom: 100px; } .section_collaborator { height: auto; margin-bottom: 200px; } .bgcombo004 { right: -500px; } .powertools { grid-column-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .link-block-8 { margin-bottom: 32px; } .link-block-8.w--current { margin-bottom: 48px; } .whitepaper_gird { display: -ms-grid; display: grid; width: 100%; grid-auto-columns: 1fr; grid-column-gap: 24px; grid-row-gap: 24px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercardtitle { min-height: 32px; } .whitepapercard { width: 100%; height: 240px; } .whitepaperlink { width: 100%; } .section_highlight { height: auto; margin-bottom: 150px; } .section_highlight.sectiondarkbg { height: auto; } .maxwidth { padding-right: 48px; padding-left: 48px; } .grid-13 { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .grid-14 { grid-column-gap: 16px; grid-row-gap: 16px; } .grid-15 { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .textkeyfunctitle { font-size: 36px; } .dex_grid { justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlightbigcard_dex_new { height: 300px; } .highlightbigcard_launchpad_new { height: 300px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .hightlightintro.center { width: 70%; } .highlightbigcard_dex_text { margin-top: 0px; } .investorlistdiv { margin-bottom: 48px; } .div-block-55 { display: block; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-33 { width: 70%; } .image-34 { width: 70%; } .section_investor { height: auto; margin-bottom: 150px; } .section_investor.sectiondarkbg { height: auto; } .parallaxbackground { display: block; overflow: hidden; } .hightlight_title_desktop { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .bold-text-5 { font-size: 48px; line-height: 40px; } .bold-text-6 { font-size: 36px; } .bold-text-7 { font-size: 36px; } .highlightbigcard_dex_white { height: 300px; } .contactcard { width: 100%; height: 180px; } .conactcards { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .contactcardlink { width: 100%; } .tool_image { width: 40%; } .investorlogo.last { display: none; } .section_followalex { height: auto; margin-bottom: 150px; } .section_followalex.sectiondarkbg { height: auto; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .containerdiv_whitepapers { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_investors { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_security { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_followalex { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_powertools { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containterdiv_footer { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .container-13 { overflow: hidden; } ._404_title { font-size: 40px; } .pure_footer { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_new-copy { height: 470px; } .pure_navigation { height: 96px; } .pure_section { height: auto; margin-bottom: 150px; } .pure_section.sectiondarkbg { height: auto; } .pure_containerdiv { margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .pure_sectiontitlediv { margin-top: 0px; } .section_tools { height: auto; margin-bottom: 150px; } .section_tools.sectiondarkbg { height: auto; } .section_whitepapers { height: auto; margin-bottom: 150px; } .section_whitepapers.sectiondarkbg { height: auto; } } @media screen and (max-width: 767px) { .button.full-width { margin-right: auto; margin-left: auto; } .button.tab { font-size: 12px; } .white-box { margin-bottom: 30px; } .hero-section.centered { padding-top: 119px; padding-bottom: 119px; } .hero-heading { margin-bottom: 15px; font-size: 50px; } .hero-subheading { font-size: 18px; } .form-field.text-area { display: block; } .grid-image { width: 20%; padding: 20px; } .spc { margin-bottom: 30px; } .header { margin-right: 0px; margin-left: 0px; padding-right: 24px; padding-left: 24px; } .video_cover { left: 0%; top: 0%; right: 0%; bottom: auto; width: 480px; height: 480px; margin-right: auto; margin-bottom: 200px; margin-left: auto; } .sloganbox { margin-right: 24px; margin-left: 24px; } .textkeyfunc { margin-top: 0px; margin-bottom: 0px; font-size: 32px; } .coverintro { line-height: 28px; } .div-block-6 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .div-block-7 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { height: auto; margin-right: 0px; margin-left: 0px; } .div-block-12 { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-9 { width: 24px; } .image-10 { width: 24px; margin-top: 4px; } .navigation { height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .div-block-18 { width: 100%; } .navbar { height: 96px; } .heading-5 { margin-bottom: 36px; font-size: 48px; } .footer_lastlinks { margin-right: 0px; margin-left: 0px; -webkit-box-align: end; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; } .footer { height: auto; } .div-block-24 { width: 100%; max-width: none; margin-right: 0px; margin-left: 0px; } .section_content { margin-top: 0px; margin-bottom: 200px; } .containerdiv { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .div-block-37 { margin-right: 0px; margin-bottom: 24px; } .contact-form { padding: 40px 20px; } .image-16-copy { height: 300px; } .silder_three { margin-bottom: 0px; } .image-22 { position: static; overflow: visible; -o-object-fit: contain; object-fit: contain; -o-object-position: 50% 0%; object-position: 50% 0%; } .grid-10 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-46 { margin-left: 16px; } .grid-11 { grid-column-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-5 { display: none; } .icon-6 { display: none; } .icon-7 { display: none; } .icon-8 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .grid-12 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .covercontent { margin-top: 14rem; margin-right: 24px; margin-left: 24px; } .bold-text-2 { font-size: 48px; line-height: 48px; } .textkeyfuncwords { margin-top: 0px; margin-bottom: 0px; line-height: 40px; } .divkeyfuncimage { margin-top: 16px; } .image-25 { width: 90%; } .sectiontitle { width: 100%; margin-bottom: 16px; font-size: 32px; line-height: 40px; font-weight: 700; text-align: center; } .hightlight_title_mobile { margin-top: 0px; padding-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .sectionsubtitle { text-align: center; } .powertoolsdiv { width: 100%; } .investorgrid { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .powertoolscard { width: 100%; height: auto; } .image-26 { width: 30%; margin-top: -10px; } .powertoolscardtitle { margin-top: 10px; } .sectiontitlecolorfullaunchpad { font-size: 32px; line-height: 40px; } .grid-13-copy { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .launchpadbuttontitle { font-size: 24px; line-height: 32px; } .section_launchpad { margin-top: 100px; margin-bottom: 100px; } .footer_nav_link_item { margin-bottom: 10px; } .copright { font-size: 12px; } .bold-text-4 { line-height: 28px; } .bgcombo003 { overflow: hidden; } .launchpadglasscard { height: 180px; } .slider-_highlight { margin-top: 0px; } .mask-4 { height: auto; } .securitygrid { grid-row-gap: 48px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .section_securityaudits { margin-top: 100px; margin-bottom: 100px; } .powertools { width: 100%; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .whitepapercard { height: 300px; } .section_cover { margin-bottom: 100px; } .section_highlight { margin-top: 100px; margin-bottom: 100px; } .grid-14 { height: auto; -ms-grid-rows: auto; grid-template-rows: auto; } .grid-15 { height: auto; } .highlightbigcard_lendborrow_new { height: 550px; } .textkeyfunctitle { margin-top: 0px; margin-bottom: 0px; line-height: 48px; } .dex_grid { justify-items: center; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_dex_new { height: 550px; } .lendborrow_grid { justify-items: center; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_launchpad_new { height: 550px; } .hightlightintro { text-align: center; } .hightlightintro.center { width: 100%; text-align: center; } .hightlightintro { text-align: center; } .highlightbigcard_dex_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-55 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .div-block-56 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_investor { margin-top: 100px; margin-bottom: 100px; } .parallaxbackground { display: block; overflow: hidden; } .footer_links_gird { display: -ms-grid; display: grid; width: 100%; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; justify-items: start; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 48px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .hightlight_title_desktop { margin-top: 0px; padding-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .bold-text-5 { font-size: 32px; line-height: 32px; } .bold-text-6 { font-size: 32px; } .bold-text-7 { font-size: 24px; } .highlightbigcard_dex_white { height: 550px; } .contactcard { width: 100%; height: 160px; } .conactcards { width: 100%; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .contactcardtitle { margin-top: 16px; font-size: 20px; } .contactcardlink { width: 100%; } .tool_image { width: 30%; margin-top: -10px; } .investorlogo.last { display: block; } .section_followalex { margin-top: 100px; margin-bottom: 100px; } .footerbar_privacypolicy { -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .containerdiv_whitepapers { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_investors { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_security { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_followalex { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containerdiv_powertools { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 48px; padding-left: 48px; } .containterdiv_footer { width: 100%; max-width: none; margin-right: 0px; margin-left: 0px; } .container-13 { overflow: hidden; } ._404_title { margin-bottom: 16px; font-size: 36px; line-height: 40px; } .pure_footer { height: auto; margin-right: 0px; margin-left: 0px; } .footer_new-copy { height: auto; } .pure_navigation { height: 96px; } .pure_section { margin-top: 100px; margin-bottom: 0px; } .pure_containerdiv { width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 24px; padding-left: 24px; } .section_tools { margin-top: 100px; margin-bottom: 100px; } .section_whitepapers { margin-top: 100px; margin-bottom: 100px; } } @media screen and (max-width: 479px) { .button { margin-bottom: 25px; } .nav_transparent { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; } .hamburger-button-white { display: none; padding: 10px; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; } .hero-section.centered { padding-top: 60px; padding-bottom: 60px; } .section-subheading.center { line-height: 30px; } .grid-image { width: 35%; } .container { padding-right: 16px; padding-left: 16px; } .logo-box-color { position: static; display: block; height: 64px; max-width: none; margin-right: 0px; margin-left: 0px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .logo-long-color { display: block; width: 148px; height: 32px; -webkit-box-ordinal-group: 0; -webkit-order: -1; -ms-flex-order: -1; order: -1; } .header { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: visible; width: 100%; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: auto; -ms-flex-item-align: auto; align-self: auto; -webkit-box-ordinal-group: 1; -webkit-order: 0; -ms-flex-order: 0; order: 0; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; -o-object-fit: none; object-fit: none; } .video_cover { width: 320px; height: 320px; margin: 4.5rem auto 0px; padding-right: 0px; } .icon-2 { font-size: 16px; } .text-block-2 { font-size: 14px; } .language { display: block; margin-right: 0px; } .sloganbox { margin-right: 16px; margin-left: 16px; } .section-intro { padding-top: 60px; padding-bottom: 60px; } .textkeyfunc { font-size: 40px; line-height: 30px; } .text-block-5 { font-size: 14px; line-height: 24px; } .coverintro { margin-top: 24px; font-size: 16px; line-height: 18px; text-align: left; } .homeabout { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .div-block-2 { width: 100%; margin-bottom: 32px; padding-right: 0px; } .div-block-3 { width: 100%; } .div-block-6 { display: none; width: 100%; margin-bottom: 24px; } .div-block-7 { width: auto; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .footer_nav { margin-bottom: 0px; } .typed-slogan-text { font-size: 56px; line-height: 72px; } .footer_email { font-size: 18px; } .div-block-12 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .image-9 { width: 24px; margin-right: 16px; margin-bottom: 8px; } .image-10 { width: 24px; margin-right: 16px; margin-bottom: 8px; } .footer_address { font-size: 18px; line-height: 24px; } .navigation { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; } .link-block-2 { margin-right: 24px; margin-left: 0px; } .div-block-14 { margin-right: 0px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .link-block-5 { position: static; display: block; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .link-block-5.w--current { position: static; display: block; width: 148px; height: 32px; } .image-12 { display: block; height: 64px; } .text-block-2-green { font-size: 14px; } .icon-2-green { font-size: 16px; } .section-_title { margin-top: 32px; } .div-block-20 { margin-bottom: 24px; } .heading-5 { margin-bottom: 16px; font-size: 40px; } .footer_lastlinks { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 48px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; } .footer { height: auto; } .div-block-24 { margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .section-zhunei { padding-top: 60px; padding-bottom: 60px; } .section_content.powertools { margin-bottom: 100px; } .containerdiv { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .list-item-zhunei { font-size: 16px; line-height: 28px; } .member_gird { width: auto; max-width: none; margin-right: 16px; margin-bottom: 0px; margin-left: 16px; } .image-13 { height: 300px; } .grid-2 { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .about_company_photo { height: 240px; } .contact-form-grid { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .submit-button { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 16px; font-weight: 500; } .text-field-copy { display: block; overflow: visible; max-width: none; } .paragraph-3 { margin-right: 16px; margin-left: 16px; font-size: 18px; } .container-11 { margin-bottom: 0px; } .div-block-39 { margin-right: 16px; margin-left: 16px; } .form-block { margin-right: 16px; margin-left: 16px; } .grid-5 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .gri_two { margin-right: 0px; margin-left: 0px; grid-column-gap: 0px; grid-row-gap: 24px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .div-block-42 { margin-right: 16px; margin-left: 16px; } .work_content_details { line-height: 28px; } .grid-8 { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .silder_three { height: 600px; margin-right: 16px; margin-left: 16px; } .hamburger-button-dark { display: none; padding: 10px; -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; } .list-item { font-size: 16px; line-height: 28px; text-align: left; } .div-block-46 { margin-top: 16px; margin-left: 0px; } .grid-11 { grid-column-gap: 0px; } .image-23 { display: block; } .footer_lastlinks_mobile { display: block; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .grid-8-two { grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto auto; grid-template-rows: auto auto auto; } .mask { height: 500px; } .mask-2 { height: 500px; } .mask-3 { height: 500px; } .icon-3 { display: none; } .icon-4 { display: none; } .icon-5 { display: none; } .icon-6 { display: none; } .icon-7 { display: none; } .icon-8 { display: none; } .slide-nav { display: none; } .slide-nav-2 { display: none; } .slide-nav-3 { display: none; } .container_div_works_01 { max-width: none; margin-right: 16px; margin-left: 16px; } .covercontent { width: 100%; margin-top: 7rem; margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; } .coverheading { width: auto; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; font-size: 36px; line-height: 32px; font-weight: 400; text-align: left; } .bold-text-2 { width: auto; font-size: 36px; line-height: 40px; font-weight: 700; text-align: left; } .buttonprimary { margin-right: 0px; text-align: center; } .coverbuttons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; text-align: left; } .buttonoutline { display: none; margin-top: 16px; text-align: center; } .covercontentdiv { width: 90%; margin-right: 0px; margin-left: 0px; } .covercontentmouseicondiv { display: none; } .textkeyfuncwords { margin: 0px; font-size: 36px; line-height: 28px; } .sectiontitle { width: 100%; font-size: 28px; line-height: 32px; font-weight: 700; text-align: center; } .sectionsubtitle { font-size: 16px; text-align: center; } .powertoolsdiv { margin-top: 32px; } .investorgrid { grid-column-gap: 16px; grid-row-gap: 24px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .powertoolscard { height: auto; padding-right: 16px; padding-left: 16px; } .image-26 { width: 30%; margin-top: -20px; margin-bottom: 10px; } .powertoolscardtitle { font-size: 20px; } .powertoolscarddesc { font-size: 14px; } .text-block-20 { line-height: 16px; } .sectiontitlecolorfullaunchpad { font-size: 28px; line-height: 32px; } .launchpadbuttontitle { margin-top: 16px; font-size: 24px; line-height: 32px; } .launchpadbuttonintro { width: 100%; padding-right: 16px; padding-left: 16px; } .launchpad_screenshot { margin-top: 40px; } .launchpaddiv { margin-top: 32px; } .section_launchpad { margin-bottom: 100px; } .footer_nav_link_item { margin-bottom: 10px; } .footer_nav_link_itemdiv { margin-top: 10px; } .copright { color: rgba(229, 231, 235, 0.4); font-size: 12px; } .bold-text-4 { width: 100%; font-size: 16px; line-height: 20px; text-align: left; } .bgcombo002 { right: -100px; } .bgcombo003 { left: -100px; overflow: hidden; } .launchpadglasscard { width: 100%; height: 200px; padding-top: 24px; padding-right: 0px; padding-left: 0px; } .securitygrid { grid-column-gap: 16px; grid-row-gap: 32px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .bgcombo004 { right: -100px; } .image-31 { width: 80%; } .whitepaper_gird { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .whitepapercard { height: auto; } .section_cover { margin-bottom: 50px; } .maxwidth { padding-right: 16px; padding-left: 16px; } .grid-14 { -ms-grid-rows: auto; grid-template-rows: auto; } .hightlight_video { width: 260px; height: 260px; } .highlightbigcard_lendborrow_new { height: 440px; padding-right: 16px; padding-left: 16px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .textkeyfunctitle { font-size: 28px; font-weight: 700; } .textkeyfunctitle.center { font-size: 28px; font-weight: 700; } .highlightbigcard_dex_new { height: 440px; } .lendborrow_grid { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .highlightbigcard_launchpad_new { height: 440px; } .hightlightintro { font-size: 16px; text-align: center; } .hightlightintro.center { width: 100%; } .highlightbigcard_dex_text { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .investorlistdiv { margin-top: 16px; } .div-block-55 { margin-top: 0px; } .image-33 { width: 80%; } .image-34 { width: 80%; } .div-block-56 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section_investor.powertools { margin-bottom: 100px; } .parallaxbackground { display: block; overflow: hidden; } .footer_links_gird { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer_nav_link { line-height: 16px; } .hightlight_title_desktop { margin-bottom: 32px; } .bold-text-5 { font-size: 28px; line-height: 28px; } .bold-text-6 { font-size: 24px; } .bold-text-7 { font-size: 24px; } .highlightbigcard_dex_white { height: 440px; } .contactcard { height: 100%; padding-right: 16px; padding-bottom: 24px; padding-left: 16px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .conactcards { margin-top: 16px; } .contactcardtitle { margin-top: 10px; font-size: 16px; } .tool_image { width: 30%; margin-top: -20px; margin-bottom: 10px; } .investorlogo { width: 80%; } .section_followalex { margin-bottom: 100px; } .section_followalex.powertools { margin-bottom: 100px; } .footer_nav_link_inactivateditem { margin-top: 10px; color: rgba(229, 231, 235, 0.2); font-size: 14px; } .footerbar_privacypolicy { width: auto; margin-top: 20px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; font-size: 12px; } .text-block-26 { color: rgba(229, 231, 235, 0.2); } .containerdiv_whitepapers { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_investors { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_security { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_followalex { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containerdiv_powertools { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .containterdiv_footer { margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .container-13 { overflow: hidden; } ._404-text { display: none; margin-right: 16px; margin-left: 16px; } ._404-text.mobileonly { display: block; } ._404_button { text-align: center; } ._404_title { font-size: 36px; } .securitylogo { width: 70%; } .pure_footer { margin-bottom: 0px; } .footer_new-copy { height: auto; } .pure_navigation { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 96px; } .pure_section.powertools { margin-bottom: 100px; } .pure_containerdiv { max-width: none; margin-right: 0px; margin-left: 0px; padding-right: 16px; padding-left: 16px; } .pure_content_title { width: auto; } .pure_section_text_num { width: 50px; } .pure_section_title_num { width: 50px; } .pure_content_text { width: auto; line-height: 18px; text-align: left; } .footer_privacylink { color: rgba(229, 231, 235, 0.3); } .bold-text-8 { line-height: 24px; } .section_tools.powertools { margin-bottom: 100px; } .section_whitepapers.powertools { margin-bottom: 100px; } } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d072-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: center; justify-self: center; } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; } #w-node-_45ab9e51-3233-8f4d-cda0-7d9bf24df39f-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272d-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272f-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: start; justify-self: start; } #w-node-_1595bd2c-5ee2-6f46-0dd6-fd808cad4b5a-a60c1c20 { -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; -ms-grid-column-align: center; justify-self: center; } #w-node-_35ab1f14-1a8b-e357-fd57-3f1709f97c34-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: center; justify-self: center; } #w-node-_9a4f62c6-4e1a-86a6-6665-9f89da130544-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-_3a37b062-87c3-6fb2-9465-59cf5bcfbd4d-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_179ba7c3-2cc3-8869-6855-bf20119adaeb-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_58613291-d498-5fcb-92e6-93bfba282169-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_045ad9cb-5a46-1d54-e6af-6f65227898c7-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_5ada30ac-08a7-795b-864a-3b6027c73373-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_9a1ab07b-3659-067c-cab5-0a2cc0ebb74b-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-b92b41af-2a21-f94f-81df-1221aeae3654-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_21cd094c-0650-9117-a93a-99c97785bae9-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_4dc20107-e38e-8c91-0a7e-874a6353867c-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-bb17b704-72e3-3eba-24fa-c6f0b1535303-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_42cc56bd-3020-2d75-a6cb-8d7a1ff27e30-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_9d6b6b6f-6b06-2efe-dc2f-6a04f4107d47-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_4636ac8b-b653-4e08-59ba-ba00b782217b-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-_5cfa7638-479b-a164-2fc7-06b2b11547df-a60c1c20 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } @media screen and (min-width: 1280px) { #w-node-_37c6be96-a4ec-88ab-2b74-8493f4db54f7-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-a923b944-ade8-edd9-7d1c-6c33e64b2c1d-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-def7001e-8986-6972-3cf6-187ec170a806-45936d80 { -ms-grid-column-align: end; justify-self: end; } #w-node-_83545abe-99e0-5bb5-e50a-0350bfdb9a2a-45936d80 { -ms-grid-column-align: end; justify-self: end; } } @media screen and (max-width: 991px) { #w-node-_74f98c65-f24d-4451-4b0f-deb91360d072-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; -webkit-align-self: auto; -ms-flex-item-align: auto; -ms-grid-row-align: auto; align-self: auto; } #w-node-ac610228-7b99-8b89-f372-9188ca4c272f-a60c1c20 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } } @media screen and (max-width: 767px) { #w-node-_74f98c65-f24d-4451-4b0f-deb91360d074-a60c1c20 { -ms-grid-column-align: center; justify-self: center; -webkit-align-self: start; -ms-flex-item-align: start; -ms-grid-row-align: start; align-self: start; } } @media screen and (max-width: 479px) { #w-node-c9a09d66-1428-aed9-a94c-ac02972b7910-a60c1c20 { -ms-grid-column-align: auto; justify-self: auto; } }
0.370909
0.103794
html, body { height: 100%; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, a.desc:after { position: relative; bottom: -1px; display: block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; font-size: xx-small; line-height: 1; } a.asc:after { content: /*"\e113"*/ "\e252"; } a.desc:after { content: /*"\e114"*/ "\e253"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view th { white-space: nowrap; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } /* * START Fixed header table container */ div[class].tableContainer { overflow: auto; } /* clean up for allowing display Opera 5.x/6.x and MacIE 5.x */ html>body div.tableContainer { height: auto; padding: 0; } /* define width of table. Opera 5.x/6.x and MacIE 5.x */ html>body div.tableContainer table { float: none; margin: 0; } /* Reset overflow value to hidden for all non-IE browsers. */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].tableContainer { overflow: hidden; } /* define width of table. IE browsers only */ /* if width is set to 100%, you can remove the width */ /* property from div.tableContainer and have the div scale */ div[class].tableContainer table { float: left; width: 100% } /* set THEAD element to have block level attributes. All other non-IE browsers */ /* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body tr[class].fixedHeader { display: block; } head:first-child+body div[class].tableContainer table tbody { display: block; overflow: auto; width: 100% } div[class].tableContainer th { padding-left: 0.3em; padding-right: 0.3em; padding-top: 3px; padding-bottom: 3px; } div[class].tableContainer td { padding-left: 0.3em; padding-right: 0.3em; } /* * END Fixed header table container */ /* * START Lineup container dimensions */ div[class].lineup-index div[class].tableContainer { width: 1001px; } html>body div.lineup-index div.tableContainer table { width: 985px } /* Reset overflow value to hidden for all non-IE browsers. */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].lineup-index div[class].tableContainer { width: 1001px } /* define width of table. Add 16px to width for scrollbar. */ /* All other non-IE browsers. Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].lineup-index div[class].tableContainer table { width: 1001px } head:first-child+body div[class].lineup-index div[class].tableContainer table tbody { height: 380px; } /* * END Lineup container dimensions */ .lineup { padding-left: 5px; } .statColumn { text-align: right; } .timeColumn { text-align: center; } .descColumn { text-align: left; } .titleHeaderCenter { text-align: center; } /*.titleHeaderCenter :not(a.desc):after { content: 'o'; font-size: 8px; }*/ .panel-heading { padding: 0px; /*background-color: #387FCB; border-color: #387FCB;*/ } .fixed-header { background-color: rgb(228, 239, 239); } .kv-panel-after { padding: 5px; } .kv-grid-container { background-color: aliceblue; color: #5e5e5e; } .panel-title-container { align-items: center; display: flex; justify-content: center; height: 34px; } .sepia {-webkit-filter: sepia(100%); filter: sepia(100%);}
web/css/site.css
html, body { height: 100%; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #c55; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, a.desc:after { position: relative; bottom: -1px; display: block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; font-size: xx-small; line-height: 1; } a.asc:after { content: /*"\e113"*/ "\e252"; } a.desc:after { content: /*"\e114"*/ "\e253"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view th { white-space: nowrap; } .hint-block { display: block; margin-top: 5px; color: #999; } .error-summary { color: #a94442; background: #fdf7f7; border-left: 3px solid #eed3d7; padding: 10px 20px; margin: 0 0 15px 0; } /* * START Fixed header table container */ div[class].tableContainer { overflow: auto; } /* clean up for allowing display Opera 5.x/6.x and MacIE 5.x */ html>body div.tableContainer { height: auto; padding: 0; } /* define width of table. Opera 5.x/6.x and MacIE 5.x */ html>body div.tableContainer table { float: none; margin: 0; } /* Reset overflow value to hidden for all non-IE browsers. */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].tableContainer { overflow: hidden; } /* define width of table. IE browsers only */ /* if width is set to 100%, you can remove the width */ /* property from div.tableContainer and have the div scale */ div[class].tableContainer table { float: left; width: 100% } /* set THEAD element to have block level attributes. All other non-IE browsers */ /* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body tr[class].fixedHeader { display: block; } head:first-child+body div[class].tableContainer table tbody { display: block; overflow: auto; width: 100% } div[class].tableContainer th { padding-left: 0.3em; padding-right: 0.3em; padding-top: 3px; padding-bottom: 3px; } div[class].tableContainer td { padding-left: 0.3em; padding-right: 0.3em; } /* * END Fixed header table container */ /* * START Lineup container dimensions */ div[class].lineup-index div[class].tableContainer { width: 1001px; } html>body div.lineup-index div.tableContainer table { width: 985px } /* Reset overflow value to hidden for all non-IE browsers. */ /* Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].lineup-index div[class].tableContainer { width: 1001px } /* define width of table. Add 16px to width for scrollbar. */ /* All other non-IE browsers. Filter out Opera 5.x/6.x and MacIE 5.x */ head:first-child+body div[class].lineup-index div[class].tableContainer table { width: 1001px } head:first-child+body div[class].lineup-index div[class].tableContainer table tbody { height: 380px; } /* * END Lineup container dimensions */ .lineup { padding-left: 5px; } .statColumn { text-align: right; } .timeColumn { text-align: center; } .descColumn { text-align: left; } .titleHeaderCenter { text-align: center; } /*.titleHeaderCenter :not(a.desc):after { content: 'o'; font-size: 8px; }*/ .panel-heading { padding: 0px; /*background-color: #387FCB; border-color: #387FCB;*/ } .fixed-header { background-color: rgb(228, 239, 239); } .kv-panel-after { padding: 5px; } .kv-grid-container { background-color: aliceblue; color: #5e5e5e; } .panel-title-container { align-items: center; display: flex; justify-content: center; height: 34px; } .sepia {-webkit-filter: sepia(100%); filter: sepia(100%);}
0.449393
0.107391
@media print { a[href]:after { content: none !important; } } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: local('Open Sans Light'), local('OpenSans-Light'), url(../fonts/opensans-light-webfont.woff) format('woff'); } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: local('Open Sans'), local('OpenSans'), url(../fonts/opensans-regular-webfont.woff) format('woff'); } /* @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/opensans-semibold-webfont.woff) format('woff'); } */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/opensans-bold-webfont.woff) format('woff'); } /*@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');*/ /*@import url('http://fonts.googleapis.com/css?family=Ubuntu:300,400,700');*/ body { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-size: 12px; } code, pre { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; } label, input, button, select, textarea { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-size: 12px; } h1, h2, h3 { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-weight: 300; } h4, h5, h6 { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-weight: 400; } /* * Callouts * * Not quite alerts, but custom and helpful notes for folks reading the docs. * Requires a base and modifier class. */ .callout { padding: 15px; margin-bottom: 20px; border-left: 3px solid #eee; } .callout h4 { margin-top: 0; margin-bottom: 5px; } .callout p:last-child { margin-bottom: 0; } .callout-danger { background-color: #fdf7f7; border-color: #eed3d7; } .callout-danger h4 { color: #b94a48; } .callout-info { background-color: #f4f8fa; border-color: #bce8f1; } .callout-info h4 { color: #3a87ad; } .callout-warning { background-color: #faf8f0; border-color: #faebcc; } .callout-warning h4 { color: #c09853; } .callout-success { background-color: #dff0d8; border-color: #d6e9c6; } .callout-success h4 { color: #468847; } .form-group label { font-weight: 400; } blockquote p { font-size: 12px; } .monospace { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; } .img-rounded-2 { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .pager-compact li > a, .pager-compact li > span { padding: 0 5px; } .table-borderless { border: 0; } .table-borderless td, .table-borderless th, .table-borderless tr { border: 0; } .help-block.error { color: #b94a48; } .help-block.warning { color: #c09853; } .nav-list { padding-left: 15px; padding-right: 15px; margin-bottom: 0; } .nav-list > li > a, .nav-list .nav-header { margin-left: -15px; margin-right: -15px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); } .nav-list > li > a { padding: 3px 15px; } .nav-list > .active > a, .nav-list > .active > a:hover, .nav-list > .active > a:focus { color: white; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); background-color: #08c; } .nav-list [class^="glyphicon-"], .nav-list [class*=" glyphicon-"] { margin-right: 2px; } .nav-list .divider { *width: 100%; height: 1px; margin: -0.28571429 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #428bca; border-bottom: 1px solid white; } .nav-header { display: block; padding: 3px 15px; font-size: 11px; font-weight: bold; line-height: 1.428571429; color: #999; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); text-transform: uppercase; } .nav li + .nav-header { margin-top: 9px; } @media (min-width: 992px) { #header { width: 854px; } } #header { /*margin: 10px auto;*/ margin: 10px 5px; background-color: #01aef0; height: 50px; } #header table { width: 100%; } #header table td { text-align: center; } #header .logo img { height: 50px; width: 125px; margin: auto auto; left: 50%; } #footer { line-height: 2; margin-bottom: 100px; margin-top: 50px; text-align: center; } #footer a { margin-left: 5px; margin-right: 5px; white-space: nowrap; } .carousel-control.left, .carousel-control.right { background-image: none; background-repeat: no-repeat; } .carousel-indicators { bottom: 0; } .carousel-indicators li, .carousel-indicators li.active { height: 8px; margin: 1px 3px; width: 8px; } .fp-one { margin-bottom: 10px; } .fp-one .carousel-control.left .glyphicon-chevron-left, .fp-one .carousel-control.right .glyphicon-chevron-left, .fp-one .carousel-control.left .glyphicon-chevron-right, .fp-one .carousel-control.right .glyphicon-chevron-right { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); top: 33%; } .fp-one .carousel-indicators { background-color: #333; margin: 0; padding: 3px 0; position: static; width: 100%; } .fp-one .carousel-indicators li, .fp-one .carousel-indicators li.active { height: 8px; margin: 1px 5px; width: 8px; } .fp-one .carousel-caption { bottom: 120px; font-size: 14px; padding-top: 0; text-decoration: none; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); } .fp-one .carousel-caption:hover, .fp-one .carousel-caption:active { color: #ffffff; } .fp-one .fp-one-imagen { width: 100%; } .fp-one .fp-one-imagen-footer { background-color: #333; color: #fff; padding: 3px 0; text-align: center; } .fp-one .fp-one-imagen-footer br { display: none; } .fp-one .fp-one-cita-wrapper { background-color: #d6d6d6; height: 120px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate { background-color: #f2f2f2; color: #333; float: right; height: 120px; padding: 12.5px; text-align: center; width: 100px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .titulo { margin: 0 0 5px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .dom { font-size: 56px; font-weight: 600; height: 56px; line-height: 56px; margin: 0; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .may { margin: 0; } .fp-one .fp-one-cita-wrapper .fp-one-cita { display: table-cell; font-size: 14px; height: 120px; line-height: 1.67; margin-right: 100px; padding: 10px 5%; vertical-align: middle; } .fp-one .fp-one-cita-wrapper .fp-one-cita a { color: #000; text-decoration: none; } .fp-one-articulo, .fp-one-cuestion, .fp-one-cosas { background-color: #f6f6f6; margin-bottom: 10px; } .fp-one-articulo h4, .fp-one-cuestion h4, .fp-one-cosas h4 { background-color: #01aef0; color: #fff; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-articulo h4 a, .fp-one-cuestion h4 a, .fp-one-cosas h4 a { color: #fff; } .fp-one-articulo .corriente, .fp-one-cuestion .corriente, .fp-one-cosas .corriente { padding: 0 10px; } .fp-one-articulo .corriente .one-titulo, .fp-one-cuestion .corriente .one-titulo, .fp-one-cosas .corriente .one-titulo { font-size: 12px; margin-bottom: 5px; } .fp-one-articulo .corriente .one-articulo-titulo, .fp-one-cuestion .corriente .one-articulo-titulo, .fp-one-cosas .corriente .one-articulo-titulo, .fp-one-articulo .corriente .one-cuestion-titulo, .fp-one-cuestion .corriente .one-cuestion-titulo, .fp-one-cosas .corriente .one-cuestion-titulo, .fp-one-articulo .corriente .one-cosas-titulo, .fp-one-cuestion .corriente .one-cosas-titulo, .fp-one-cosas .corriente .one-cosas-titulo { font-size: 16px; height: 50px; margin-bottom: 5px; display: table-cell; vertical-align: middle; } .fp-one-articulo .pasado, .fp-one-cuestion .pasado, .fp-one-cosas .pasado { padding: 0 0 10px 0; } .fp-one-articulo .pasado li, .fp-one-cuestion .pasado li, .fp-one-cosas .pasado li { font-size: 12px; height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; text-overflow: ellipsis; white-space: nowrap; } .fp-one-articulo .pasado li a, .fp-one-cuestion .pasado li a, .fp-one-cosas .pasado li a { color: #666; } .fp-one-cosas .one-cosas-imagen { width: 100%; } .fp-one-app { margin: 20px auto; max-width: 320px; padding-bottom: 10px; text-align: center; } .fp-one-app h4 { color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-app h4 a { color: #000; } .fp-one-app p { line-height: 2; } .fp-one-app img { max-width: 100%; } .fp-one-app-alt { border-left: 1px solid #f6f6f6; border-right: 1px solid #f6f6f6; margin-bottom: 10px; padding-bottom: 10px; text-align: center; } .fp-one-app-alt h4 { color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-app-alt h4 a { color: #000; } .fp-one-app-alt p { line-height: 2; margin-bottom: 20px; } .fp-one-app-alt img { max-width: 100%; margin-bottom: 10px; } .fp-one-noticias, .fp-one-foro { background-color: #f6f6f6; margin-bottom: 10px; } .fp-one-noticias h4, .fp-one-foro h4 { background-color: #e3e3e3; color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-noticias h4 a, .fp-one-foro h4 a { color: #000; } .fp-one-noticias .corriente, .fp-one-foro .corriente { padding: 0 10px 10px; } .fp-one-noticias .corriente li, .fp-one-foro .corriente li { height: 30px; line-height: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .fp-one-noticias .corriente li:last-child, .fp-one-foro .corriente li:last-child { border: 0; } .fp-one-noticias .corriente li .date { color: #999; float: right; margin-left: 5px; } .fp-one-noticias .corriente li .nuevo { background-color: #d9534f; border-radius: .25em; color: #ffffff; display: inline; font-size: 83.33%; line-height: 1; margin: -0.2em 0.6em 0 0; padding: .2em .6em .3em; text-align: center; vertical-align: baseline; white-space: nowrap; } .fp-one-foro .corriente li .rango { background-color: #01aef0; border-radius: .25em; color: #ffffff; display: inline; font-size: 83.33%; line-height: 1; margin: -0.2em 0.6em 0 0; padding: .2em .6em .3em; text-align: center; vertical-align: baseline; white-space: nowrap; width: 20px; } .fp-one-foro .corriente li .rango-123 { background-color: #d9534f; } .fp-one-foro .corriente li:last-child { border: 0; } .fp-one-producto { margin-bottom: 10px; } .fp-one-producto h4 { background-color: #e3e3e3; color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-producto h4 a { color: #000; } .fp-one-producto .fp-one-producto-imagen { margin-left: auto; margin-right: auto; } #one-navbar { background-color: #fff; border: 0; min-height: 40px; } #one-navbar .container { background-color: #d6d6d6; } #one-navbar .navbar-nav { float: left; margin: 0; } #one-navbar .navbar-nav li { float: left; font-size: 12px; text-align: center; font-weight: 600; } #one-navbar .navbar-nav li a { color: #333; line-height: 1.25; padding: 15px 10px; } #one-navbar .navbar-nav li a:hover, #one-navbar .navbar-nav li a:active { background-color: #ccc; color: #000; } .one { margin-bottom: 30px; margin-top: 30px; } .one .one-imagen { margin-bottom: 30px; } .one .one-imagen img { width: 100%; } .one .one-imagen-footer { margin-bottom: 30px; } .one .one-imagen-footer .one-titulo { float: left; font-size: 20px; height: 40px; line-height: 40px; } .one .one-imagen-footer .one-imagen-leyenda { float: right; font-size: 14px; height: 40px; text-align: right; } .one .one-cita-wrapper { background-color: #f2f2f2; display: table; height: 180px; margin-bottom: 30px; } .one .one-cita-wrapper .one-pubdate { color: #01aef0; float: right; padding: 50px 0; width: 120px; } .one .one-cita-wrapper .one-pubdate .dom { font-size: 56px; font-weight: 600; height: 56px; line-height: 56px; margin: 0; text-align: center; } .one .one-cita-wrapper .one-pubdate .may { margin: 0; font-size: 14px; text-align: center; } .one .one-cita-wrapper .one-cita { display: table-cell; font-size: 14px; height: 120px; line-height: 1.67; margin-right: 120px; padding: 10px 5%; text-align: left; vertical-align: middle; width: 100%; } .one .one-compartir { margin-bottom: 30px; } .one .one-articulo .articulo-principal { color: #999; font-size: 14px; line-height: 1.67; } .one .one-articulo .articulo-principal .comilla-abrir { display: table; background-image: url(http://s2.wufazhuce.com/images/articulo-principal-comilla-abrir.png); background-position: left top; background-repeat: no-repeat; width: 100%; } .one .one-articulo .articulo-principal .comilla-cerrar { display: table-cell; background-image: url(http://s2.wufazhuce.com/images/articulo-principal-comilla-cerrar.png); background-position: right bottom; background-repeat: no-repeat; padding: 20px 40px; vertical-align: middle; } .one .one-articulo .articulo-titulo { line-height: 1.67; } .one .one-articulo .articulo-autor { font-size: 14px; line-height: 1.67; } .one .one-articulo .articulo-compartir { margin-top: 20px; } .one .one-articulo .articulo-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 40px; margin-top: 40px; } .one .one-articulo .articulo-contenido p { margin-bottom: 20px; } .one .one-articulo .articulo-editor { font-size: 14px; font-style: italic; line-height: 1.67; margin-bottom: 40px; margin-top: 60px; } .one .one-cuestion .cuestion-q-icono, .one .one-cuestion .cuestion-a-icono { background-image: url(http://s2.wufazhuce.com/images/cuestion.png); background-repeat: no-repeat; width: 75px; height: 40px; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .one .one-cuestion .cuestion-q-icono { background-position: left; } .one .one-cuestion .cuestion-a-icono { background-position: right; } .one .one-cuestion h4 { font-size: 16px; font-weight: 600; line-height: 40px; } .one .one-cuestion hr { margin-top: 20px; margin-bottom: 20px; } .one .one-cuestion .cuestion-contenido { font-size: 14px; line-height: 24px; } .one .one-cuestion .cuestion-compartir { margin-top: 20px; margin-bottom: 20px; } .one .one-cuestion .cuestion-editor { font-size: 14px; font-style: italic; line-height: 24px; margin-bottom: 40px; margin-top: 60px; } .one .one-cosas .cosas-imagen { margin-bottom: 30px; } .one .one-cosas .cosas-imagen img { width: 100%; } .one .one-cosas .cosas-titulo { line-height: 1.67; } .one .one-cosas .cosas-compartir { margin-top: 20px; } .one .one-cosas .cosas-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 40px; margin-top: 20px; } .one .one-cosas .cosas-contenido p { margin-bottom: 20px; } .one-indice { margin-bottom: 30px; margin-top: 30px; } .one-indice a { text-decoration: none; } .one-indice .corriente .one-imagen { margin: 0 auto 10px auto; width: 100%; } .one-indice .corriente .one-titulo { font-size: 16px; } .one-indice .pasado .one-imagen { margin: 0 auto 10px auto; width: 100%; } .one-indice .pasado .one-titulo { font-size: 11px; } .noticias-indice h2 { line-height: 1.5; } .noticias-indice li { margin-bottom: 30px; } .noticias-indice li .noticias-titulo { margin-bottom: 15px; } .noticias-indice li .noticias-titulo a { color: #000; } .noticias-indice li .noticias-titulo small { float: right; } .noticias-indice li .noticias-excerpt { clear: both; color: #7f7f7f; font-size: 12px; letter-spacing: 1px; line-height: 1.67; margin-bottom: 15px; } .noticias h2 { line-height: 1.5; } .noticias .noticias-titulo a { color: #000; } .noticias .noticias-meta { font-size: 14px; } .noticias .noticias-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 50px; } .noticias .noticias-contenido img { max-width: 100%; } .noticias .noticias-contenido p { margin-bottom: 20px; } .noticias .noticias-comments { margin-bottom: 50px; } .noticias .noticias-footer { font-size: 14px; } .site-content { font-size: 16px; } .site-content section { margin-bottom: 30px; } .site-content section h3 { margin-bottom: 20px; } .site-contacto-weibo { font-size: 16px; } .site-contacto-weibo li { margin-bottom: 10px; margin-left: 40px; } .site-contacto-email dt { font-weight: 400; } .site-contacto-email dd { margin-bottom: 10px; } .site-acercade-equipo dt { font-weight: 400; } .site-acercade-equipo dd { margin-bottom: 10px; } .table-admin-index thead tr td, .table-admin-index tbody tr td, .table-admin-index thead tr th, .table-admin-index tbody tr th { line-height: 1.67; word-break: break-all; } #header.admin { background-color: #fff200; margin-top: 0; } #footer.admin { background-color: #fff200; margin-bottom: 0; } #footer.admin .container { padding: 20px; } @media (max-width: 767px) { .fp-one .carousel-caption { font-size: 12px; } .fp-one .fp-one-imagen-footer br { display: inline; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate { width: 80px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .dom { font-size: 48px; height: 48px; line-height: 48px; } .fp-one .fp-one-cita-wrapper .fp-one-cita { font-size: 12px; margin-right: 80px; } .one { margin-bottom: 0; margin-top: 0; } .one .one-imagen { margin-bottom: 10px; } .one .one-imagen-footer { margin-bottom: 10px; } .one .one-cita-wrapper .one-pubdate { width: 80px; } .one .one-cita-wrapper .one-pubdate .dom { font-size: 48px; height: 48px; line-height: 48px; } .one .one-cita-wrapper .one-cita { font-size: 12px; margin-right: 80px; } .one .one-articulo { padding-left: 8px; padding-right: 8px; } .one .one-articulo .articulo-lead { font-size: 12px; line-height: 21px; } .one .one-articulo .articulo-titulo { font-size: 24px; } .one .one-articulo .articulo-autor { font-size: 12px; } .one .one-articulo .articulo-content { font-size: 12px; margin-bottom: 20px; margin-top: 20px; } .one .one-articulo .articulo-editor { font-size: 12px; margin-top: 40px; margin-bottom: 40px; } .one .one-cuestion { padding-left: 8px; padding-right: 8px; } .one .one-cuestion h4 { font-size: 14px; line-height: 24px; } .one .one-cuestion .cuestion-contenido { font-size: 12px; line-height: 21px; } .one .one-cuestion hr { margin-top: 10px; margin-bottom: 10px; } .one .one-cuestion .cuestion-editor { font-size: 12px; line-height: 21px; margin-bottom: 20px; margin-top: 40px; } .noticias-indice li .noticias-titulo small { display: block; float: none; font-size: 12px; margin: 10px 0; } .noticias .noticias-titulo { font-size: 24px; } .noticias .noticias-meta { font-size: 12px; } .noticias .noticias-contenido { font-size: 12px; } .noticias .noticias-footer { font-size: 12px; } } @media (max-width: 991px) { .fp-one-articulo .current .lead, .fp-one-cuestion .current .lead { height: auto; } } @media (min-width: 768px) { .carousel-indicators { bottom: 0; } #header .navbar .container .navbar-inner { margin-left: 0px; margin-right: 0; } } .container{ max-width:864px; }
assets/css/app.css
@media print { a[href]:after { content: none !important; } } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: local('Open Sans Light'), local('OpenSans-Light'), url(../fonts/opensans-light-webfont.woff) format('woff'); } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: local('Open Sans'), local('OpenSans'), url(../fonts/opensans-regular-webfont.woff) format('woff'); } /* @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/opensans-semibold-webfont.woff) format('woff'); } */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/opensans-bold-webfont.woff) format('woff'); } /*@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');*/ /*@import url('http://fonts.googleapis.com/css?family=Ubuntu:300,400,700');*/ body { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-size: 12px; } code, pre { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; } label, input, button, select, textarea { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-size: 12px; } h1, h2, h3 { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-weight: 300; } h4, h5, h6 { font-family: "Open Sans", "Helvetica Neue", Helvetica, "BBAlpha Sans", "S60 Sans", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; font-weight: 400; } /* * Callouts * * Not quite alerts, but custom and helpful notes for folks reading the docs. * Requires a base and modifier class. */ .callout { padding: 15px; margin-bottom: 20px; border-left: 3px solid #eee; } .callout h4 { margin-top: 0; margin-bottom: 5px; } .callout p:last-child { margin-bottom: 0; } .callout-danger { background-color: #fdf7f7; border-color: #eed3d7; } .callout-danger h4 { color: #b94a48; } .callout-info { background-color: #f4f8fa; border-color: #bce8f1; } .callout-info h4 { color: #3a87ad; } .callout-warning { background-color: #faf8f0; border-color: #faebcc; } .callout-warning h4 { color: #c09853; } .callout-success { background-color: #dff0d8; border-color: #d6e9c6; } .callout-success h4 { color: #468847; } .form-group label { font-weight: 400; } blockquote p { font-size: 12px; } .monospace { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; } .img-rounded-2 { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .pager-compact li > a, .pager-compact li > span { padding: 0 5px; } .table-borderless { border: 0; } .table-borderless td, .table-borderless th, .table-borderless tr { border: 0; } .help-block.error { color: #b94a48; } .help-block.warning { color: #c09853; } .nav-list { padding-left: 15px; padding-right: 15px; margin-bottom: 0; } .nav-list > li > a, .nav-list .nav-header { margin-left: -15px; margin-right: -15px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); } .nav-list > li > a { padding: 3px 15px; } .nav-list > .active > a, .nav-list > .active > a:hover, .nav-list > .active > a:focus { color: white; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); background-color: #08c; } .nav-list [class^="glyphicon-"], .nav-list [class*=" glyphicon-"] { margin-right: 2px; } .nav-list .divider { *width: 100%; height: 1px; margin: -0.28571429 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #428bca; border-bottom: 1px solid white; } .nav-header { display: block; padding: 3px 15px; font-size: 11px; font-weight: bold; line-height: 1.428571429; color: #999; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); text-transform: uppercase; } .nav li + .nav-header { margin-top: 9px; } @media (min-width: 992px) { #header { width: 854px; } } #header { /*margin: 10px auto;*/ margin: 10px 5px; background-color: #01aef0; height: 50px; } #header table { width: 100%; } #header table td { text-align: center; } #header .logo img { height: 50px; width: 125px; margin: auto auto; left: 50%; } #footer { line-height: 2; margin-bottom: 100px; margin-top: 50px; text-align: center; } #footer a { margin-left: 5px; margin-right: 5px; white-space: nowrap; } .carousel-control.left, .carousel-control.right { background-image: none; background-repeat: no-repeat; } .carousel-indicators { bottom: 0; } .carousel-indicators li, .carousel-indicators li.active { height: 8px; margin: 1px 3px; width: 8px; } .fp-one { margin-bottom: 10px; } .fp-one .carousel-control.left .glyphicon-chevron-left, .fp-one .carousel-control.right .glyphicon-chevron-left, .fp-one .carousel-control.left .glyphicon-chevron-right, .fp-one .carousel-control.right .glyphicon-chevron-right { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); top: 33%; } .fp-one .carousel-indicators { background-color: #333; margin: 0; padding: 3px 0; position: static; width: 100%; } .fp-one .carousel-indicators li, .fp-one .carousel-indicators li.active { height: 8px; margin: 1px 5px; width: 8px; } .fp-one .carousel-caption { bottom: 120px; font-size: 14px; padding-top: 0; text-decoration: none; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); } .fp-one .carousel-caption:hover, .fp-one .carousel-caption:active { color: #ffffff; } .fp-one .fp-one-imagen { width: 100%; } .fp-one .fp-one-imagen-footer { background-color: #333; color: #fff; padding: 3px 0; text-align: center; } .fp-one .fp-one-imagen-footer br { display: none; } .fp-one .fp-one-cita-wrapper { background-color: #d6d6d6; height: 120px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate { background-color: #f2f2f2; color: #333; float: right; height: 120px; padding: 12.5px; text-align: center; width: 100px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .titulo { margin: 0 0 5px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .dom { font-size: 56px; font-weight: 600; height: 56px; line-height: 56px; margin: 0; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .may { margin: 0; } .fp-one .fp-one-cita-wrapper .fp-one-cita { display: table-cell; font-size: 14px; height: 120px; line-height: 1.67; margin-right: 100px; padding: 10px 5%; vertical-align: middle; } .fp-one .fp-one-cita-wrapper .fp-one-cita a { color: #000; text-decoration: none; } .fp-one-articulo, .fp-one-cuestion, .fp-one-cosas { background-color: #f6f6f6; margin-bottom: 10px; } .fp-one-articulo h4, .fp-one-cuestion h4, .fp-one-cosas h4 { background-color: #01aef0; color: #fff; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-articulo h4 a, .fp-one-cuestion h4 a, .fp-one-cosas h4 a { color: #fff; } .fp-one-articulo .corriente, .fp-one-cuestion .corriente, .fp-one-cosas .corriente { padding: 0 10px; } .fp-one-articulo .corriente .one-titulo, .fp-one-cuestion .corriente .one-titulo, .fp-one-cosas .corriente .one-titulo { font-size: 12px; margin-bottom: 5px; } .fp-one-articulo .corriente .one-articulo-titulo, .fp-one-cuestion .corriente .one-articulo-titulo, .fp-one-cosas .corriente .one-articulo-titulo, .fp-one-articulo .corriente .one-cuestion-titulo, .fp-one-cuestion .corriente .one-cuestion-titulo, .fp-one-cosas .corriente .one-cuestion-titulo, .fp-one-articulo .corriente .one-cosas-titulo, .fp-one-cuestion .corriente .one-cosas-titulo, .fp-one-cosas .corriente .one-cosas-titulo { font-size: 16px; height: 50px; margin-bottom: 5px; display: table-cell; vertical-align: middle; } .fp-one-articulo .pasado, .fp-one-cuestion .pasado, .fp-one-cosas .pasado { padding: 0 0 10px 0; } .fp-one-articulo .pasado li, .fp-one-cuestion .pasado li, .fp-one-cosas .pasado li { font-size: 12px; height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; text-overflow: ellipsis; white-space: nowrap; } .fp-one-articulo .pasado li a, .fp-one-cuestion .pasado li a, .fp-one-cosas .pasado li a { color: #666; } .fp-one-cosas .one-cosas-imagen { width: 100%; } .fp-one-app { margin: 20px auto; max-width: 320px; padding-bottom: 10px; text-align: center; } .fp-one-app h4 { color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-app h4 a { color: #000; } .fp-one-app p { line-height: 2; } .fp-one-app img { max-width: 100%; } .fp-one-app-alt { border-left: 1px solid #f6f6f6; border-right: 1px solid #f6f6f6; margin-bottom: 10px; padding-bottom: 10px; text-align: center; } .fp-one-app-alt h4 { color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-app-alt h4 a { color: #000; } .fp-one-app-alt p { line-height: 2; margin-bottom: 20px; } .fp-one-app-alt img { max-width: 100%; margin-bottom: 10px; } .fp-one-noticias, .fp-one-foro { background-color: #f6f6f6; margin-bottom: 10px; } .fp-one-noticias h4, .fp-one-foro h4 { background-color: #e3e3e3; color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-noticias h4 a, .fp-one-foro h4 a { color: #000; } .fp-one-noticias .corriente, .fp-one-foro .corriente { padding: 0 10px 10px; } .fp-one-noticias .corriente li, .fp-one-foro .corriente li { height: 30px; line-height: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .fp-one-noticias .corriente li:last-child, .fp-one-foro .corriente li:last-child { border: 0; } .fp-one-noticias .corriente li .date { color: #999; float: right; margin-left: 5px; } .fp-one-noticias .corriente li .nuevo { background-color: #d9534f; border-radius: .25em; color: #ffffff; display: inline; font-size: 83.33%; line-height: 1; margin: -0.2em 0.6em 0 0; padding: .2em .6em .3em; text-align: center; vertical-align: baseline; white-space: nowrap; } .fp-one-foro .corriente li .rango { background-color: #01aef0; border-radius: .25em; color: #ffffff; display: inline; font-size: 83.33%; line-height: 1; margin: -0.2em 0.6em 0 0; padding: .2em .6em .3em; text-align: center; vertical-align: baseline; white-space: nowrap; width: 20px; } .fp-one-foro .corriente li .rango-123 { background-color: #d9534f; } .fp-one-foro .corriente li:last-child { border: 0; } .fp-one-producto { margin-bottom: 10px; } .fp-one-producto h4 { background-color: #e3e3e3; color: #000; font-size: 18px; font-weight: 400; line-height: 32px; margin: 0 0 10px 0; padding: 5px 10px; } .fp-one-producto h4 a { color: #000; } .fp-one-producto .fp-one-producto-imagen { margin-left: auto; margin-right: auto; } #one-navbar { background-color: #fff; border: 0; min-height: 40px; } #one-navbar .container { background-color: #d6d6d6; } #one-navbar .navbar-nav { float: left; margin: 0; } #one-navbar .navbar-nav li { float: left; font-size: 12px; text-align: center; font-weight: 600; } #one-navbar .navbar-nav li a { color: #333; line-height: 1.25; padding: 15px 10px; } #one-navbar .navbar-nav li a:hover, #one-navbar .navbar-nav li a:active { background-color: #ccc; color: #000; } .one { margin-bottom: 30px; margin-top: 30px; } .one .one-imagen { margin-bottom: 30px; } .one .one-imagen img { width: 100%; } .one .one-imagen-footer { margin-bottom: 30px; } .one .one-imagen-footer .one-titulo { float: left; font-size: 20px; height: 40px; line-height: 40px; } .one .one-imagen-footer .one-imagen-leyenda { float: right; font-size: 14px; height: 40px; text-align: right; } .one .one-cita-wrapper { background-color: #f2f2f2; display: table; height: 180px; margin-bottom: 30px; } .one .one-cita-wrapper .one-pubdate { color: #01aef0; float: right; padding: 50px 0; width: 120px; } .one .one-cita-wrapper .one-pubdate .dom { font-size: 56px; font-weight: 600; height: 56px; line-height: 56px; margin: 0; text-align: center; } .one .one-cita-wrapper .one-pubdate .may { margin: 0; font-size: 14px; text-align: center; } .one .one-cita-wrapper .one-cita { display: table-cell; font-size: 14px; height: 120px; line-height: 1.67; margin-right: 120px; padding: 10px 5%; text-align: left; vertical-align: middle; width: 100%; } .one .one-compartir { margin-bottom: 30px; } .one .one-articulo .articulo-principal { color: #999; font-size: 14px; line-height: 1.67; } .one .one-articulo .articulo-principal .comilla-abrir { display: table; background-image: url(http://s2.wufazhuce.com/images/articulo-principal-comilla-abrir.png); background-position: left top; background-repeat: no-repeat; width: 100%; } .one .one-articulo .articulo-principal .comilla-cerrar { display: table-cell; background-image: url(http://s2.wufazhuce.com/images/articulo-principal-comilla-cerrar.png); background-position: right bottom; background-repeat: no-repeat; padding: 20px 40px; vertical-align: middle; } .one .one-articulo .articulo-titulo { line-height: 1.67; } .one .one-articulo .articulo-autor { font-size: 14px; line-height: 1.67; } .one .one-articulo .articulo-compartir { margin-top: 20px; } .one .one-articulo .articulo-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 40px; margin-top: 40px; } .one .one-articulo .articulo-contenido p { margin-bottom: 20px; } .one .one-articulo .articulo-editor { font-size: 14px; font-style: italic; line-height: 1.67; margin-bottom: 40px; margin-top: 60px; } .one .one-cuestion .cuestion-q-icono, .one .one-cuestion .cuestion-a-icono { background-image: url(http://s2.wufazhuce.com/images/cuestion.png); background-repeat: no-repeat; width: 75px; height: 40px; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .one .one-cuestion .cuestion-q-icono { background-position: left; } .one .one-cuestion .cuestion-a-icono { background-position: right; } .one .one-cuestion h4 { font-size: 16px; font-weight: 600; line-height: 40px; } .one .one-cuestion hr { margin-top: 20px; margin-bottom: 20px; } .one .one-cuestion .cuestion-contenido { font-size: 14px; line-height: 24px; } .one .one-cuestion .cuestion-compartir { margin-top: 20px; margin-bottom: 20px; } .one .one-cuestion .cuestion-editor { font-size: 14px; font-style: italic; line-height: 24px; margin-bottom: 40px; margin-top: 60px; } .one .one-cosas .cosas-imagen { margin-bottom: 30px; } .one .one-cosas .cosas-imagen img { width: 100%; } .one .one-cosas .cosas-titulo { line-height: 1.67; } .one .one-cosas .cosas-compartir { margin-top: 20px; } .one .one-cosas .cosas-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 40px; margin-top: 20px; } .one .one-cosas .cosas-contenido p { margin-bottom: 20px; } .one-indice { margin-bottom: 30px; margin-top: 30px; } .one-indice a { text-decoration: none; } .one-indice .corriente .one-imagen { margin: 0 auto 10px auto; width: 100%; } .one-indice .corriente .one-titulo { font-size: 16px; } .one-indice .pasado .one-imagen { margin: 0 auto 10px auto; width: 100%; } .one-indice .pasado .one-titulo { font-size: 11px; } .noticias-indice h2 { line-height: 1.5; } .noticias-indice li { margin-bottom: 30px; } .noticias-indice li .noticias-titulo { margin-bottom: 15px; } .noticias-indice li .noticias-titulo a { color: #000; } .noticias-indice li .noticias-titulo small { float: right; } .noticias-indice li .noticias-excerpt { clear: both; color: #7f7f7f; font-size: 12px; letter-spacing: 1px; line-height: 1.67; margin-bottom: 15px; } .noticias h2 { line-height: 1.5; } .noticias .noticias-titulo a { color: #000; } .noticias .noticias-meta { font-size: 14px; } .noticias .noticias-contenido { font-size: 14px; line-height: 1.67; margin-bottom: 50px; } .noticias .noticias-contenido img { max-width: 100%; } .noticias .noticias-contenido p { margin-bottom: 20px; } .noticias .noticias-comments { margin-bottom: 50px; } .noticias .noticias-footer { font-size: 14px; } .site-content { font-size: 16px; } .site-content section { margin-bottom: 30px; } .site-content section h3 { margin-bottom: 20px; } .site-contacto-weibo { font-size: 16px; } .site-contacto-weibo li { margin-bottom: 10px; margin-left: 40px; } .site-contacto-email dt { font-weight: 400; } .site-contacto-email dd { margin-bottom: 10px; } .site-acercade-equipo dt { font-weight: 400; } .site-acercade-equipo dd { margin-bottom: 10px; } .table-admin-index thead tr td, .table-admin-index tbody tr td, .table-admin-index thead tr th, .table-admin-index tbody tr th { line-height: 1.67; word-break: break-all; } #header.admin { background-color: #fff200; margin-top: 0; } #footer.admin { background-color: #fff200; margin-bottom: 0; } #footer.admin .container { padding: 20px; } @media (max-width: 767px) { .fp-one .carousel-caption { font-size: 12px; } .fp-one .fp-one-imagen-footer br { display: inline; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate { width: 80px; } .fp-one .fp-one-cita-wrapper .fp-one-titulo-pubdate .dom { font-size: 48px; height: 48px; line-height: 48px; } .fp-one .fp-one-cita-wrapper .fp-one-cita { font-size: 12px; margin-right: 80px; } .one { margin-bottom: 0; margin-top: 0; } .one .one-imagen { margin-bottom: 10px; } .one .one-imagen-footer { margin-bottom: 10px; } .one .one-cita-wrapper .one-pubdate { width: 80px; } .one .one-cita-wrapper .one-pubdate .dom { font-size: 48px; height: 48px; line-height: 48px; } .one .one-cita-wrapper .one-cita { font-size: 12px; margin-right: 80px; } .one .one-articulo { padding-left: 8px; padding-right: 8px; } .one .one-articulo .articulo-lead { font-size: 12px; line-height: 21px; } .one .one-articulo .articulo-titulo { font-size: 24px; } .one .one-articulo .articulo-autor { font-size: 12px; } .one .one-articulo .articulo-content { font-size: 12px; margin-bottom: 20px; margin-top: 20px; } .one .one-articulo .articulo-editor { font-size: 12px; margin-top: 40px; margin-bottom: 40px; } .one .one-cuestion { padding-left: 8px; padding-right: 8px; } .one .one-cuestion h4 { font-size: 14px; line-height: 24px; } .one .one-cuestion .cuestion-contenido { font-size: 12px; line-height: 21px; } .one .one-cuestion hr { margin-top: 10px; margin-bottom: 10px; } .one .one-cuestion .cuestion-editor { font-size: 12px; line-height: 21px; margin-bottom: 20px; margin-top: 40px; } .noticias-indice li .noticias-titulo small { display: block; float: none; font-size: 12px; margin: 10px 0; } .noticias .noticias-titulo { font-size: 24px; } .noticias .noticias-meta { font-size: 12px; } .noticias .noticias-contenido { font-size: 12px; } .noticias .noticias-footer { font-size: 12px; } } @media (max-width: 991px) { .fp-one-articulo .current .lead, .fp-one-cuestion .current .lead { height: auto; } } @media (min-width: 768px) { .carousel-indicators { bottom: 0; } #header .navbar .container .navbar-inner { margin-left: 0px; margin-right: 0; } } .container{ max-width:864px; }
0.325735
0.066691
@import "../plugins/font-awesome-4.7.0/css/font-awesome.min.css"; /********************************* 1. Header *********************************/ .header { position: fixed; top: 0; left: 0; width: 100%; background: #3f6fce; z-index: 200; border-bottom: solid 1px transparent; border-image: linear-gradient(to right, #487fee, #32fa95); border-image-slice: 1; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .header_content { height: 101px; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .header.scrolled { background: rgba(63, 111, 206, 0.85); } .header.scrolled .header_content { height: 80px; } .logo { width: 110px; } .logo img { max-width: 100%; } .main_nav { margin-left: 157px; } .main_nav ul li { display: inline-block; } .main_nav ul li:not(:last-child) { margin-right: 60px; } .main_nav ul li a { font-size: 16px; font-weight: 500; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .main_nav ul li.active a, .main_nav ul li a:hover { color: #2cd983; } .phone_num { height: 43px; border-radius: 22px; background: linear-gradient(to right, #487fee, #32fa95); padding: 2px; overflow: hidden; } .phone_num_inner { width: 100%; height: 100%; padding-left: 16px; padding-right: 18px; background: #3f6fce; border-radius: 20px; } .phone_num span { font-size: 16px; font-weight: 500; color: #FFFFFF; margin-left: 11px; line-height: 39px; } .hamburger { display: none; cursor: pointer; } .hamburger i { font-size: 18px; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .hamburger i:hover { color: #2cd983; } /********************************* 2. Menu *********************************/ .menu { position: fixed; width: 100vw; height: 100vh; background: linear-gradient(to right, #487fee, #32fa95); z-index: 201; opacity: 0; visibility: hidden; } .menu.active { opacity: 0.98; visibility: visible; } .menu_content { width: 100%; height: 100%; } .menu_item { position: relative; margin-bottom: 3px; } .menu_item:last-child { margin-bottom: 0px; } .menu_logo { margin-bottom: 38px; } .menu_logo a img { } .menu_logo .logo_text, .menu_logo .logo_sub { color: #FFFFFF; } .menu_item a { display: inline-block; position: relative; font-size: 30px; color: #FFFFFF; font-weight: 500; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_item a:hover { color: #2cd983; } .menu_close_container { position: absolute; top: 94px; right: 122px; width: 21px; height: 21px; cursor: pointer; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .menu_close { top: 9px; width: 21px; height: 3px; background: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_close::after { display: block; position: absolute; top: -9px; left: 9px; content: ''; width: 3px; height: 21px; background: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_close_container:hover .menu_close, .menu_close_container:hover .menu_close::after { background: #3f6fce; } .menu_phone { position: absolute; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); bottom: 15px; font-size: 14px; color: #828282; font-weight: 500; color: #FFFFFF; } .menu_phone span { text-transform: uppercase; font-weight: 600; } /********************************* 3. Newsletter *********************************/ .newsletter { width: 100%; padding-top: 107px; padding-bottom: 105px; } .newsletter_title { font-size: 30px; font-weight: 600; color: #FFFFFF; line-height: 0.75; white-space: nowrap; } .newsletter_subtitle { font-size: 14px; font-weight: 400; color: #FFFFFF; line-height: 0.75; margin-top: 15px; } .newsletter_content { } .newsletter_form_container { margin-left: 30px; width: 100%; } .newsletter_form { display: block; position: relative; width: 100%; } .newsletter_input { width: 100%; height: 72px; border-radius: 36px; background: #FFFFFF; border: none; outline: none; padding-left: 45px; } .newsletter_input::-webkit-input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input:-moz-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input::-moz-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input:-ms-input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input::input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_button { position: absolute; top: 0; right: 0; width: 193px; height: 72px; color: #FFFFFF; border-radius: 36px; border: none; outline: none; font-size: 14px; font-weight: 700; cursor: pointer; text-transform: uppercase; background: linear-gradient(to right, #487fee, #32fa95); } .newsletter_button:active { outline: none; border: none; } /********************************* 4. Footer *********************************/ .footer { width: 100%; } .footer_main { width: 100%; background: #3f6fce; padding-top: 80px; padding-bottom: 72px; } .footer_about_text { font-size: 12px; font-weight: 500; font-style: italic; color: #FFFFFF; margin-top: 39px; } .footer_title { font-size: 18px; font-weight: 500; color: #FFFFFF; } .footer_latest { padding-top: 40px; } .footer_latest_image { width: 86px; height: 86px; } .footer_latest_image img { max-width: 100%; } .footer_latest_content { padding-left: 17px; } .footer_latest_location { font-size: 11px; font-weight: 400; color: #FFFFFF; line-height: 0.75; } .footer_latest_name { margin-top: 8px; } .footer_latest_name a { font-size: 16px; font-weight: 400; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .footer_latest_name a:hover { color: #32f996; } .footer_latest_price { font-size: 14px; font-weight: 600; color: #32f996; margin-top: 7px; } .footer_bar { width: 100%; background: #FFFFFF; } .footer_bar_content { height: 97px; } .cr { font-size: 14px; font-weight: 500; color: #828282; } .footer_nav { margin-left: 170px; } .footer_nav ul li { display: inline-block; } .footer_nav ul li:not(:last-child) { margin-right: 47px; } .footer_nav ul li a { font-size: 14px; font-weight: 500; color: #828282; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .footer_nav ul li a:hover { color: #32f996; } .footer_phone { font-size: 14px; color: #828282; font-weight: 500; } .footer_phone span { text-transform: uppercase; font-weight: 600; }
resources/css/main.css
@import "../plugins/font-awesome-4.7.0/css/font-awesome.min.css"; /********************************* 1. Header *********************************/ .header { position: fixed; top: 0; left: 0; width: 100%; background: #3f6fce; z-index: 200; border-bottom: solid 1px transparent; border-image: linear-gradient(to right, #487fee, #32fa95); border-image-slice: 1; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .header_content { height: 101px; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .header.scrolled { background: rgba(63, 111, 206, 0.85); } .header.scrolled .header_content { height: 80px; } .logo { width: 110px; } .logo img { max-width: 100%; } .main_nav { margin-left: 157px; } .main_nav ul li { display: inline-block; } .main_nav ul li:not(:last-child) { margin-right: 60px; } .main_nav ul li a { font-size: 16px; font-weight: 500; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .main_nav ul li.active a, .main_nav ul li a:hover { color: #2cd983; } .phone_num { height: 43px; border-radius: 22px; background: linear-gradient(to right, #487fee, #32fa95); padding: 2px; overflow: hidden; } .phone_num_inner { width: 100%; height: 100%; padding-left: 16px; padding-right: 18px; background: #3f6fce; border-radius: 20px; } .phone_num span { font-size: 16px; font-weight: 500; color: #FFFFFF; margin-left: 11px; line-height: 39px; } .hamburger { display: none; cursor: pointer; } .hamburger i { font-size: 18px; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .hamburger i:hover { color: #2cd983; } /********************************* 2. Menu *********************************/ .menu { position: fixed; width: 100vw; height: 100vh; background: linear-gradient(to right, #487fee, #32fa95); z-index: 201; opacity: 0; visibility: hidden; } .menu.active { opacity: 0.98; visibility: visible; } .menu_content { width: 100%; height: 100%; } .menu_item { position: relative; margin-bottom: 3px; } .menu_item:last-child { margin-bottom: 0px; } .menu_logo { margin-bottom: 38px; } .menu_logo a img { } .menu_logo .logo_text, .menu_logo .logo_sub { color: #FFFFFF; } .menu_item a { display: inline-block; position: relative; font-size: 30px; color: #FFFFFF; font-weight: 500; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_item a:hover { color: #2cd983; } .menu_close_container { position: absolute; top: 94px; right: 122px; width: 21px; height: 21px; cursor: pointer; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .menu_close { top: 9px; width: 21px; height: 3px; background: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_close::after { display: block; position: absolute; top: -9px; left: 9px; content: ''; width: 3px; height: 21px; background: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .menu_close_container:hover .menu_close, .menu_close_container:hover .menu_close::after { background: #3f6fce; } .menu_phone { position: absolute; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); bottom: 15px; font-size: 14px; color: #828282; font-weight: 500; color: #FFFFFF; } .menu_phone span { text-transform: uppercase; font-weight: 600; } /********************************* 3. Newsletter *********************************/ .newsletter { width: 100%; padding-top: 107px; padding-bottom: 105px; } .newsletter_title { font-size: 30px; font-weight: 600; color: #FFFFFF; line-height: 0.75; white-space: nowrap; } .newsletter_subtitle { font-size: 14px; font-weight: 400; color: #FFFFFF; line-height: 0.75; margin-top: 15px; } .newsletter_content { } .newsletter_form_container { margin-left: 30px; width: 100%; } .newsletter_form { display: block; position: relative; width: 100%; } .newsletter_input { width: 100%; height: 72px; border-radius: 36px; background: #FFFFFF; border: none; outline: none; padding-left: 45px; } .newsletter_input::-webkit-input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input:-moz-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input::-moz-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input:-ms-input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_input::input-placeholder { font-size: 11px !important; font-weight: 400 !important; font-style: italic; color: #828282 !important; } .newsletter_button { position: absolute; top: 0; right: 0; width: 193px; height: 72px; color: #FFFFFF; border-radius: 36px; border: none; outline: none; font-size: 14px; font-weight: 700; cursor: pointer; text-transform: uppercase; background: linear-gradient(to right, #487fee, #32fa95); } .newsletter_button:active { outline: none; border: none; } /********************************* 4. Footer *********************************/ .footer { width: 100%; } .footer_main { width: 100%; background: #3f6fce; padding-top: 80px; padding-bottom: 72px; } .footer_about_text { font-size: 12px; font-weight: 500; font-style: italic; color: #FFFFFF; margin-top: 39px; } .footer_title { font-size: 18px; font-weight: 500; color: #FFFFFF; } .footer_latest { padding-top: 40px; } .footer_latest_image { width: 86px; height: 86px; } .footer_latest_image img { max-width: 100%; } .footer_latest_content { padding-left: 17px; } .footer_latest_location { font-size: 11px; font-weight: 400; color: #FFFFFF; line-height: 0.75; } .footer_latest_name { margin-top: 8px; } .footer_latest_name a { font-size: 16px; font-weight: 400; color: #FFFFFF; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .footer_latest_name a:hover { color: #32f996; } .footer_latest_price { font-size: 14px; font-weight: 600; color: #32f996; margin-top: 7px; } .footer_bar { width: 100%; background: #FFFFFF; } .footer_bar_content { height: 97px; } .cr { font-size: 14px; font-weight: 500; color: #828282; } .footer_nav { margin-left: 170px; } .footer_nav ul li { display: inline-block; } .footer_nav ul li:not(:last-child) { margin-right: 47px; } .footer_nav ul li a { font-size: 14px; font-weight: 500; color: #828282; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .footer_nav ul li a:hover { color: #32f996; } .footer_phone { font-size: 14px; color: #828282; font-weight: 500; } .footer_phone span { text-transform: uppercase; font-weight: 600; }
0.385375
0.056107
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ .logo { white-space: normal; text-align: center; text-decoration: none !important; word-break: break-all; color: black; border: none !important; } /* Load spinner */ .loader { display: none; border: 5px solid #f3f3f3; border-top: 5px solid #3498db; border-radius: 50%; width: 50px; height: 50px; animation: spin 2s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } textarea { resize: none; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; /* Set the fixed height of the footer here */ height: 60px; line-height: 60px; /* Vertically center the text there */ } .dropdown-toggle:after { display: none; } body { font-family: "Lato", sans-serif; } body.auth-body { overflow: hidden; background-color: #ccebff; } .friendRequestNotifications { width: 300px; } li.navigation { margin-bottom: 0px !important; font-size: 25px !important; padding-left: 25px !important; padding-right: 25px !important; } li.navigation:hover { background-color: #e6e6e6; } .main-head { height: 150px; } .full-picture { margin-right: -15px; width: 100%; min-height: 100em; overflow-x: hidden; padding-top: 20px; background-image: url("../images/auto-doggo.jpg"); background-position: right top; background-repeat: no-repeat; background-size: 100%; background-color: #000; } ul.feed-sidenav > li.nav-item > a { width: 100%; padding: 10px; text-align: left; } ul.feed-sidenav > li.nav-item:hover > a { background-color: #cccccc; border-radius: 5px; } ul.feed-sizenav > li.nav-item > a { font-size: 15px !important; } .main { padding: 0px 10px; } .forgot-password { color: black; text-decoration: none; } .forgot-password:hover { text-decoration: underline; } @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } } @media screen and (max-width: 450px) { .register-form { margin-top: 10%; } } @media screen and (min-width: 768px) { .sidenav { width: 40%; position: fixed; z-index: 1; top: 0; left: 0; } .register-form { margin-top: 20%; } } div.login-form label { color: white !important; } div.login-form hr { color: white !important; } .form-container { display: flex; } .form-header { color: white; text-align: center; } div.form-header > h1 { color: white; } .main-backgroup { background-image: url("../images/login-bg.jpg"); background-size: 100% 100%; background-repeat: no-repeat; height: 1000px; } .login-main-text { margin-top: 20%; padding: 60px; color: #fff; } p > a.forgot-password { color: white; border-bottom: 0px; } a.forgot-password:hover { text-decoration: underline; } .login-main-text h2 { font-weight: 300; } .btn-black { background-color: #000 !important; color: #fff; } .group-info { background-color: #f2f2f2; border-radius: 10px; } .group-cover { width: 100%; height: 150px; } .user-partial-img { width: 50px; height: 50px; } .message-img { height: 300px; } /*Profile css*/ .profileImage { width: 200px; height: 200px; position: absolute; margin-top: 10px; margin-left: 25px; } .cover-image { width: 100%; height: 150px; } .friend-thumbnail-img { width: 75px; height: 75px; } .profile-imgs-index { width: 100px; height: 100px; }
Web/Socializer.Web/wwwroot/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ .logo { white-space: normal; text-align: center; text-decoration: none !important; word-break: break-all; color: black; border: none !important; } /* Load spinner */ .loader { display: none; border: 5px solid #f3f3f3; border-top: 5px solid #3498db; border-radius: 50%; width: 50px; height: 50px; animation: spin 2s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } textarea { resize: none; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; /* Set the fixed height of the footer here */ height: 60px; line-height: 60px; /* Vertically center the text there */ } .dropdown-toggle:after { display: none; } body { font-family: "Lato", sans-serif; } body.auth-body { overflow: hidden; background-color: #ccebff; } .friendRequestNotifications { width: 300px; } li.navigation { margin-bottom: 0px !important; font-size: 25px !important; padding-left: 25px !important; padding-right: 25px !important; } li.navigation:hover { background-color: #e6e6e6; } .main-head { height: 150px; } .full-picture { margin-right: -15px; width: 100%; min-height: 100em; overflow-x: hidden; padding-top: 20px; background-image: url("../images/auto-doggo.jpg"); background-position: right top; background-repeat: no-repeat; background-size: 100%; background-color: #000; } ul.feed-sidenav > li.nav-item > a { width: 100%; padding: 10px; text-align: left; } ul.feed-sidenav > li.nav-item:hover > a { background-color: #cccccc; border-radius: 5px; } ul.feed-sizenav > li.nav-item > a { font-size: 15px !important; } .main { padding: 0px 10px; } .forgot-password { color: black; text-decoration: none; } .forgot-password:hover { text-decoration: underline; } @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } } @media screen and (max-width: 450px) { .register-form { margin-top: 10%; } } @media screen and (min-width: 768px) { .sidenav { width: 40%; position: fixed; z-index: 1; top: 0; left: 0; } .register-form { margin-top: 20%; } } div.login-form label { color: white !important; } div.login-form hr { color: white !important; } .form-container { display: flex; } .form-header { color: white; text-align: center; } div.form-header > h1 { color: white; } .main-backgroup { background-image: url("../images/login-bg.jpg"); background-size: 100% 100%; background-repeat: no-repeat; height: 1000px; } .login-main-text { margin-top: 20%; padding: 60px; color: #fff; } p > a.forgot-password { color: white; border-bottom: 0px; } a.forgot-password:hover { text-decoration: underline; } .login-main-text h2 { font-weight: 300; } .btn-black { background-color: #000 !important; color: #fff; } .group-info { background-color: #f2f2f2; border-radius: 10px; } .group-cover { width: 100%; height: 150px; } .user-partial-img { width: 50px; height: 50px; } .message-img { height: 300px; } /*Profile css*/ .profileImage { width: 200px; height: 200px; position: absolute; margin-top: 10px; margin-left: 25px; } .cover-image { width: 100%; height: 150px; } .friend-thumbnail-img { width: 75px; height: 75px; } .profile-imgs-index { width: 100px; height: 100px; }
0.586523
0.10079
* @file * Styling for the shortcut module. */ :root { /** * Shortcut action. */ } /** * Add/remove links. */ .shortcut-action { display: inline-block; margin-left: 0.5rem; /* LTR */ } [dir="rtl"] .shortcut-action { margin-right: 0.5rem; } .shortcut-action__message { display: inline-block; margin-left: 0.75rem; /* LTR */ padding: 0.25rem 1rem; transition: all 0.2s ease-out; transform: translateY(-0.5rem); vertical-align: top; opacity: 0; color: #fff; border-radius: 2px; background: #545560; font-size: 0.889rem; -webkit-backface-visibility: hidden; backface-visibility: hidden; } [dir="rtl"] .shortcut-action__message { margin-right: 0.75rem; margin-left: 0; } .shortcut-action:hover .shortcut-action__message, .shortcut-action:focus .shortcut-action__message { transform: translateY(0); opacity: 1; } .shortcut-action__icon { display: inline-block; width: 1.5rem; height: 1.5rem; vertical-align: -0.0625rem; background: transparent url("data:image/svg+xml,%3csvg height='24' width='96' xmlns='http://www.w3.org/2000/svg'%3e%3cg stroke='%238e929c'%3e%3cpath d='m94.46 9.667h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007zm-24 0h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007z' fill='%23ffd23f'/%3e%3cg fill='none'%3e%3cpath d='m38.42 9.327.11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665zm-24.002 0 .11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665z'/%3e%3cpath d='m42.5 1v7m-3.5-3.5h7m42 2.5 6-6m0 6-6-6' stroke-linecap='square' stroke-miterlimit='3'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e") left top / 6rem 1.5rem no-repeat; } [dir="rtl"] .shortcut-action__icon { background-image: url("data:image/svg+xml,%3csvg height='24' width='96' xmlns='http://www.w3.org/2000/svg'%3e%3cg stroke='%238e929c'%3e%3cpath d='m94.46 9.667h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007zm-24 0h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007z' fill='%23ffd23f'/%3e%3cg fill='none'%3e%3cpath d='m38.42 9.327.11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665zm-24.002 0 .11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665z'/%3e%3cpath d='m29.5 1v7m-3.5-3.5h7m42 2.5 6-6m0 6-6-6' stroke-linecap='square' stroke-miterlimit='3'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e"); } .shortcut-action--add:hover .shortcut-action__icon, .shortcut-action--add:focus .shortcut-action__icon { background-position: -1.5rem top; } .shortcut-action--remove .shortcut-action__icon { background-position: -3rem top; } .shortcut-action--remove:focus .shortcut-action__icon, .shortcut-action--remove:hover .shortcut-action__icon { background-position: -4.5rem top; }
web/core/themes/claro/css/components/shortcut.css
* @file * Styling for the shortcut module. */ :root { /** * Shortcut action. */ } /** * Add/remove links. */ .shortcut-action { display: inline-block; margin-left: 0.5rem; /* LTR */ } [dir="rtl"] .shortcut-action { margin-right: 0.5rem; } .shortcut-action__message { display: inline-block; margin-left: 0.75rem; /* LTR */ padding: 0.25rem 1rem; transition: all 0.2s ease-out; transform: translateY(-0.5rem); vertical-align: top; opacity: 0; color: #fff; border-radius: 2px; background: #545560; font-size: 0.889rem; -webkit-backface-visibility: hidden; backface-visibility: hidden; } [dir="rtl"] .shortcut-action__message { margin-right: 0.75rem; margin-left: 0; } .shortcut-action:hover .shortcut-action__message, .shortcut-action:focus .shortcut-action__message { transform: translateY(0); opacity: 1; } .shortcut-action__icon { display: inline-block; width: 1.5rem; height: 1.5rem; vertical-align: -0.0625rem; background: transparent url("data:image/svg+xml,%3csvg height='24' width='96' xmlns='http://www.w3.org/2000/svg'%3e%3cg stroke='%238e929c'%3e%3cpath d='m94.46 9.667h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007zm-24 0h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007z' fill='%23ffd23f'/%3e%3cg fill='none'%3e%3cpath d='m38.42 9.327.11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665zm-24.002 0 .11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665z'/%3e%3cpath d='m42.5 1v7m-3.5-3.5h7m42 2.5 6-6m0 6-6-6' stroke-linecap='square' stroke-miterlimit='3'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e") left top / 6rem 1.5rem no-repeat; } [dir="rtl"] .shortcut-action__icon { background-image: url("data:image/svg+xml,%3csvg height='24' width='96' xmlns='http://www.w3.org/2000/svg'%3e%3cg stroke='%238e929c'%3e%3cpath d='m94.46 9.667h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007zm-24 0h-7.937l-2.523-8.007-2.523 8.007h-7.937l6.768 4.926-3.076 8.007 6.768-4.927 6.768 4.927-3.076-8.007z' fill='%23ffd23f'/%3e%3cg fill='none'%3e%3cpath d='m38.42 9.327.11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665zm-24.002 0 .11.35h7.934l-6.521 4.742-.31.225.138.358 2.922 7.599-6.397-4.653-.294-.214-.294.214-6.397 4.653 2.923-7.599.137-.358-.31-.225-6.521-4.742h7.934l.11-.35 2.418-7.665z'/%3e%3cpath d='m29.5 1v7m-3.5-3.5h7m42 2.5 6-6m0 6-6-6' stroke-linecap='square' stroke-miterlimit='3'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e"); } .shortcut-action--add:hover .shortcut-action__icon, .shortcut-action--add:focus .shortcut-action__icon { background-position: -1.5rem top; } .shortcut-action--remove .shortcut-action__icon { background-position: -3rem top; } .shortcut-action--remove:focus .shortcut-action__icon, .shortcut-action--remove:hover .shortcut-action__icon { background-position: -4.5rem top; }
0.469763
0.062531
.articles-img { height: 300px; width: 98%; position: relative; margin-left: 10px; } .article-profile-header { height: 75px; width: 100%; position: relative; margin: 5px; padding: 5px; border-radius: 5px; background: rgba(211, 211, 211, 0.32); } .articles-thumbnail { height: 50px; width: 50px; position: relative; margin: 5px; } .article-profile-name { font-size: 1.5em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .article-content { font-size: 1.5em; margin: 10px; word-break: break-word; color: grey !important; padding: 5px; } .article-post-title { font-size: .75em; color: darkgrey; text-transform: none; } .pointer { cursor: pointer; } .comment-actions { margin-top: 10px; font-size: 1.5em; color: darkgrey; font-weight: bold; text-transform: none; margin-bottom: 5px; padding: 15px; } .comment-inline-response { min-height: 125px; width: 95%; padding: 20px; font-size: 1.0em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-icons { margin-right: 30px; margin-left: 5px; } .comment-icon { color: grey; font-size: .85em !important; } .article-container { border-radius: 5px; margin: 15px; } .comment-section-1 { min-height: 50px; width: 95%; padding: 10px; font-size: 1.0em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-section-2 { min-height: 125px; width: 95%; padding: 20px; font-size: 1.25em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-section-3 { min-height: 125px; width: 95%; padding: 20px; font-size: 1.25em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .name { font-size: 1.5em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .comment-display-name { font-size: 1.0em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .addResponse-content { height: 40px; width: 75%; background: white; padding: 10px; margin-top: 10px; color: darkgrey; font-size: 1.25em; margin-left: 10px; } .comment-status { color: darkgrey; font-size: 1.25em; }
modules/articles/client/css/articles.css
.articles-img { height: 300px; width: 98%; position: relative; margin-left: 10px; } .article-profile-header { height: 75px; width: 100%; position: relative; margin: 5px; padding: 5px; border-radius: 5px; background: rgba(211, 211, 211, 0.32); } .articles-thumbnail { height: 50px; width: 50px; position: relative; margin: 5px; } .article-profile-name { font-size: 1.5em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .article-content { font-size: 1.5em; margin: 10px; word-break: break-word; color: grey !important; padding: 5px; } .article-post-title { font-size: .75em; color: darkgrey; text-transform: none; } .pointer { cursor: pointer; } .comment-actions { margin-top: 10px; font-size: 1.5em; color: darkgrey; font-weight: bold; text-transform: none; margin-bottom: 5px; padding: 15px; } .comment-inline-response { min-height: 125px; width: 95%; padding: 20px; font-size: 1.0em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-icons { margin-right: 30px; margin-left: 5px; } .comment-icon { color: grey; font-size: .85em !important; } .article-container { border-radius: 5px; margin: 15px; } .comment-section-1 { min-height: 50px; width: 95%; padding: 10px; font-size: 1.0em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-section-2 { min-height: 125px; width: 95%; padding: 20px; font-size: 1.25em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .comment-section-3 { min-height: 125px; width: 95%; padding: 20px; font-size: 1.25em; border-radius: 5px; background: #F1F1F1; color: grey; margin-left: 10px; } .name { font-size: 1.5em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .comment-display-name { font-size: 1.0em; color: grey; font-weight: bold; text-transform: capitalize; margin-bottom: 5px; } .addResponse-content { height: 40px; width: 75%; background: white; padding: 10px; margin-top: 10px; color: darkgrey; font-size: 1.25em; margin-left: 10px; } .comment-status { color: darkgrey; font-size: 1.25em; }
0.587233
0.106505
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,400'); body { overflow-x: hidden; background-color: #f0f6ff; font-family: Poppins,sans-serif; --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; } #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: rgb(255, 255, 255); -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 */ .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: #718EB1; font-size: 13px; } .sidebar-nav li a i { font-size: 16px; width: 25px; } .sidebar-nav li a:hover { text-decoration: none; color: #635ebe; 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: 18px; line-height: 60px; } .sidebar-nav>.sidebar-brand a { color: #718EB1; color: rgba(113,142,177,.6); font-size: 11px; text-transform: uppercase; } .sidebar-nav >.sidebar-brand a:hover { color: rgba(113,142,177,.6); background: none; cursor: default; } .navbar{ background: linear-gradient(135deg,#736cc7 21%,#3190f0 100%,#3190f0 100%); height: 4.0625rem; } .navbar-light .navbar-brand{ color: rgba(255,255,255,.7); } .navbar-light .navbar-nav .nav-link { color: rgba(255,255,255,.7); font-size: 14px; } .navbar-light .navbar-nav .nav-link:hover { color: white; } .sidebar-nav li a > span{ margin-left: 25px; } .navbar-light .navbar-brand{ color: rgb(255, 255, 255); } .navbar-light .navbar-brand:hover{ color: rgb(255, 255, 255); } .logo{ height: 40px; margin-right: 10px; } .page-name{ margin: 0; display: inline-block; padding: 7px 20px 7px 0; font-weight: 300; color: #4d5a68;; font-family: Poppins, sans-serif; font-size: 24px; } .card .card-header { padding: 15px 20px; position: relative; border-bottom: 1px solid rgba(234,243,253,.9); background-color: transparent; min-height: 45px; color: #4d5a68; } .card .card-header, .card .card-header .card-title { font-weight: 300; font-size: 1rem; }.card .card-header, .card .card-header .card-title { font-weight: 300; font-size: 1rem; } .card { box-shadow: 0 10px 40px 0 rgba(18,106,211,.07), 0 2px 9px 0 rgba(18,106,211,.06); border: none; margin-bottom: 1.875rem; transition: all .3s ease; } .card .card-toolbar.top-right { right: 20px; top: 17px; } .card .card-toolbar { position: absolute; } .p-t-25 { padding-top: 25px!important; } .p-b-20 { padding-bottom: 20px!important; } .card .card-toolbar .nav-pills .nav-link { font-size: .875rem; padding: 7px 16px; border-radius: 25px; color: #4d5a68; } .card .card-toolbar .nav-pills .nav-link.active { background-color: #736cc7; color: white; } .card-body { color: #617182; font-size: .875rem; line-height: 1.7; font-weight: 300; } @media(min-width:768px) { #wrapper { padding-left: 0; } #wrapper.toggled { padding-left: 250px; } #sidebar-wrapper { width: 0; } #wrapper.toggled #sidebar-wrapper { width: 250px; z-index: 100; } #page-content-wrapper { padding: 20px; position: relative; } #wrapper.toggled #page-content-wrapper { position: relative; margin-right: 0; } }
client/public/assets/styles/style.css
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,400'); body { overflow-x: hidden; background-color: #f0f6ff; font-family: Poppins,sans-serif; --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; } #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: rgb(255, 255, 255); -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 */ .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: #718EB1; font-size: 13px; } .sidebar-nav li a i { font-size: 16px; width: 25px; } .sidebar-nav li a:hover { text-decoration: none; color: #635ebe; 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: 18px; line-height: 60px; } .sidebar-nav>.sidebar-brand a { color: #718EB1; color: rgba(113,142,177,.6); font-size: 11px; text-transform: uppercase; } .sidebar-nav >.sidebar-brand a:hover { color: rgba(113,142,177,.6); background: none; cursor: default; } .navbar{ background: linear-gradient(135deg,#736cc7 21%,#3190f0 100%,#3190f0 100%); height: 4.0625rem; } .navbar-light .navbar-brand{ color: rgba(255,255,255,.7); } .navbar-light .navbar-nav .nav-link { color: rgba(255,255,255,.7); font-size: 14px; } .navbar-light .navbar-nav .nav-link:hover { color: white; } .sidebar-nav li a > span{ margin-left: 25px; } .navbar-light .navbar-brand{ color: rgb(255, 255, 255); } .navbar-light .navbar-brand:hover{ color: rgb(255, 255, 255); } .logo{ height: 40px; margin-right: 10px; } .page-name{ margin: 0; display: inline-block; padding: 7px 20px 7px 0; font-weight: 300; color: #4d5a68;; font-family: Poppins, sans-serif; font-size: 24px; } .card .card-header { padding: 15px 20px; position: relative; border-bottom: 1px solid rgba(234,243,253,.9); background-color: transparent; min-height: 45px; color: #4d5a68; } .card .card-header, .card .card-header .card-title { font-weight: 300; font-size: 1rem; }.card .card-header, .card .card-header .card-title { font-weight: 300; font-size: 1rem; } .card { box-shadow: 0 10px 40px 0 rgba(18,106,211,.07), 0 2px 9px 0 rgba(18,106,211,.06); border: none; margin-bottom: 1.875rem; transition: all .3s ease; } .card .card-toolbar.top-right { right: 20px; top: 17px; } .card .card-toolbar { position: absolute; } .p-t-25 { padding-top: 25px!important; } .p-b-20 { padding-bottom: 20px!important; } .card .card-toolbar .nav-pills .nav-link { font-size: .875rem; padding: 7px 16px; border-radius: 25px; color: #4d5a68; } .card .card-toolbar .nav-pills .nav-link.active { background-color: #736cc7; color: white; } .card-body { color: #617182; font-size: .875rem; line-height: 1.7; font-weight: 300; } @media(min-width:768px) { #wrapper { padding-left: 0; } #wrapper.toggled { padding-left: 250px; } #sidebar-wrapper { width: 0; } #wrapper.toggled #sidebar-wrapper { width: 250px; z-index: 100; } #page-content-wrapper { padding: 20px; position: relative; } #wrapper.toggled #page-content-wrapper { position: relative; margin-right: 0; } }
0.363195
0.054879
.tile { background-color: #wheat; display: inline-block; margin-bottom: 3%; margin-right: 3.1%; position: relative; vertical-align: top; width:10%; } .tile--height-1 { height: 184px; } .tile--height-2 { height: 400px; } .tile--height-2 .tile__content__data--chart { height: 335px; } .tile--height-bpcebarsdonotuse { height: 700px; } .tile--height-bpcebarsdonotuse .tile__content__data--chart { height: 650px; } .tile--width-1 { width: 30%; } .tile--width-2 { width: 63%; } .tile--width-3 { width: 96%; } .tile--width-bpcebarsdonotuse { width: 96%; } .tile__content { height: 100%; padding: 15px; } .tile__content > a { display: block; height: 100%; } .tile__content > a:hover, .tile__content > a:focus { color: inherit; text-decoration: none; } .tile__content__title{ padding-left:10px; } .tile__content__title__icon_status { cursor: pointer; float:left; font-size: 1.4rem; margin-right: 10px; vertical-align: top; width: 22px; } .tile__content__title__icon { cursor: pointer; float:left; font-size: 1.5rem; margin-right: 10px; vertical-align: top; width: 22px; } .tile__content__title__icon__content { display: inline-block; width: inherit; } .tile__content__title__text { padding-left: 10px display: inline-block; font-size: 1.4rem; line-height: 1.8rem; margin: 0; width: calc(100% - 32px); color:#7f8c8d; } .tile__content__subtitle__no-data { margin-top: 30px; padding-left: 27px; line-height: 1.8rem; } .tile__content__subtitle__no-data--no-padding { padding-left: 0px; } .tile__content__data__metrics { padding-left: 10px; } .tile__content__data__criticity{ margin-top:14%; } .tile__content__data__metrics__value { font-size: 1.5rem; margin: 25px 0 10px; } .tile__content__data__metrics__comparison__icon { font-size: 14px; margin-right: 7px; vertical-align: top; display: inline-block; color:#95a5a6; } .tile__content__data__metrics__comparison__icon--positive { transform: rotate(-45deg); } .tile__content__data__metrics__comparison__icon--positive #comparsion-arrow-border { stroke: #27ae60; } .tile__content__data__metrics__comparison__icon--positive #comparsion-arrow-arrow { fill: #27ae60; } .tile__content__data__metrics__comparison__icon--negative { transform: rotate(45deg); } .tile__content__data__metrics__comparison__icon--negative #comparsion-arrow-border { stroke: #253240; } .tile__content__data__metrics__comparison__icon--negative #comparsion-arrow-arrow { fill: #253240; } .tile__content__data__metrics__comparison__icon--due #comparsion-arrow-border { stroke: #0971e4; } .tile__content__data__metrics__comparison__icon--due #comparsion-arrow-arrow { fill: #0971e4; } .tile__content__data__metrics__comparison__text { display: inline-block; font-size: 1.3rem; margin: 0; width: calc(100% - 30px); line-height: 1.8rem; } .tile__content__data__info { bottom: 15px; position: absolute; right: 15px; width: calc(100% - 30px); } .tile__content__data__info__source { background-position: left center; background-repeat: no-repeat; background-size: auto 100%; bottom: 5px; font-size: 1.3rem; position: absolute; text-indent: 30px; } .tile__content__data__info__source--pc_analysis { background-image: url('assets/images/connector_logos/pc_analysis.png'); } .tile__content__data__info__source--facebook { background-image: url('assets/images/connector_logos/facebook.png'); } .tile__content__data__info__source--twitter { background-image: url('assets/images/connector_logos/twitter.png'); } .tile__content__data__info__source--mobile_analysis { background-image: url('assets/images/connector_logos/mobile_analysis.png'); } .tile__content__data__info__source--youtube { background-image: url('assets/images/connector_logos/youtube.png'); } .tile__content__data__info__source--instagram { background-image: url('assets/images/connector_logos/instagram.png'); } .tile__content__data__info__source--linkedin { background-image: url('assets/images/connector_logos/linkedin.png'); } .tile__content__data__info__source--googleplus { background-image: url('assets/images/connector_logos/googleplus.png'); } .tile__content__data__info__source--pinterest { background-image: url('assets/images/connector_logos/pinterest.png'); } .tile__content__data__info__picture { float: right; margin-bottom: -5px; width: 32px; } .tile__content__data__info__picture .loaded-icon { width: 32px; } .tile__content__data--sentence .tile__content__data__metrics__value { font-size: 3rem; } .tile__content__data--sentence .tile__content__data__metrics__value > span { display: block; } .tile__content__data--text .tile__content__data__metrics__value { font-size: 1.8rem; line-height: 2.5rem; margin-left: -15px; } .tile__content__data--chart { font-size: 1.4rem; height: 105px; margin-top: 13px; width: 100%; } .tile__content__data--chart .leaderboard.thumbnail { background: none; border: none; } .red { color:#e74c3c ; } .orange { color: #f1c40f; } .green { color: white; }
public/stylesheets/tile.css
.tile { background-color: #wheat; display: inline-block; margin-bottom: 3%; margin-right: 3.1%; position: relative; vertical-align: top; width:10%; } .tile--height-1 { height: 184px; } .tile--height-2 { height: 400px; } .tile--height-2 .tile__content__data--chart { height: 335px; } .tile--height-bpcebarsdonotuse { height: 700px; } .tile--height-bpcebarsdonotuse .tile__content__data--chart { height: 650px; } .tile--width-1 { width: 30%; } .tile--width-2 { width: 63%; } .tile--width-3 { width: 96%; } .tile--width-bpcebarsdonotuse { width: 96%; } .tile__content { height: 100%; padding: 15px; } .tile__content > a { display: block; height: 100%; } .tile__content > a:hover, .tile__content > a:focus { color: inherit; text-decoration: none; } .tile__content__title{ padding-left:10px; } .tile__content__title__icon_status { cursor: pointer; float:left; font-size: 1.4rem; margin-right: 10px; vertical-align: top; width: 22px; } .tile__content__title__icon { cursor: pointer; float:left; font-size: 1.5rem; margin-right: 10px; vertical-align: top; width: 22px; } .tile__content__title__icon__content { display: inline-block; width: inherit; } .tile__content__title__text { padding-left: 10px display: inline-block; font-size: 1.4rem; line-height: 1.8rem; margin: 0; width: calc(100% - 32px); color:#7f8c8d; } .tile__content__subtitle__no-data { margin-top: 30px; padding-left: 27px; line-height: 1.8rem; } .tile__content__subtitle__no-data--no-padding { padding-left: 0px; } .tile__content__data__metrics { padding-left: 10px; } .tile__content__data__criticity{ margin-top:14%; } .tile__content__data__metrics__value { font-size: 1.5rem; margin: 25px 0 10px; } .tile__content__data__metrics__comparison__icon { font-size: 14px; margin-right: 7px; vertical-align: top; display: inline-block; color:#95a5a6; } .tile__content__data__metrics__comparison__icon--positive { transform: rotate(-45deg); } .tile__content__data__metrics__comparison__icon--positive #comparsion-arrow-border { stroke: #27ae60; } .tile__content__data__metrics__comparison__icon--positive #comparsion-arrow-arrow { fill: #27ae60; } .tile__content__data__metrics__comparison__icon--negative { transform: rotate(45deg); } .tile__content__data__metrics__comparison__icon--negative #comparsion-arrow-border { stroke: #253240; } .tile__content__data__metrics__comparison__icon--negative #comparsion-arrow-arrow { fill: #253240; } .tile__content__data__metrics__comparison__icon--due #comparsion-arrow-border { stroke: #0971e4; } .tile__content__data__metrics__comparison__icon--due #comparsion-arrow-arrow { fill: #0971e4; } .tile__content__data__metrics__comparison__text { display: inline-block; font-size: 1.3rem; margin: 0; width: calc(100% - 30px); line-height: 1.8rem; } .tile__content__data__info { bottom: 15px; position: absolute; right: 15px; width: calc(100% - 30px); } .tile__content__data__info__source { background-position: left center; background-repeat: no-repeat; background-size: auto 100%; bottom: 5px; font-size: 1.3rem; position: absolute; text-indent: 30px; } .tile__content__data__info__source--pc_analysis { background-image: url('assets/images/connector_logos/pc_analysis.png'); } .tile__content__data__info__source--facebook { background-image: url('assets/images/connector_logos/facebook.png'); } .tile__content__data__info__source--twitter { background-image: url('assets/images/connector_logos/twitter.png'); } .tile__content__data__info__source--mobile_analysis { background-image: url('assets/images/connector_logos/mobile_analysis.png'); } .tile__content__data__info__source--youtube { background-image: url('assets/images/connector_logos/youtube.png'); } .tile__content__data__info__source--instagram { background-image: url('assets/images/connector_logos/instagram.png'); } .tile__content__data__info__source--linkedin { background-image: url('assets/images/connector_logos/linkedin.png'); } .tile__content__data__info__source--googleplus { background-image: url('assets/images/connector_logos/googleplus.png'); } .tile__content__data__info__source--pinterest { background-image: url('assets/images/connector_logos/pinterest.png'); } .tile__content__data__info__picture { float: right; margin-bottom: -5px; width: 32px; } .tile__content__data__info__picture .loaded-icon { width: 32px; } .tile__content__data--sentence .tile__content__data__metrics__value { font-size: 3rem; } .tile__content__data--sentence .tile__content__data__metrics__value > span { display: block; } .tile__content__data--text .tile__content__data__metrics__value { font-size: 1.8rem; line-height: 2.5rem; margin-left: -15px; } .tile__content__data--chart { font-size: 1.4rem; height: 105px; margin-top: 13px; width: 100%; } .tile__content__data--chart .leaderboard.thumbnail { background: none; border: none; } .red { color:#e74c3c ; } .orange { color: #f1c40f; } .green { color: white; }
0.513912
0.072571
body { background: url("../assets/bg.jpg"); /*background: linear-gradient(to right, #dc2424, #4a569d); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *! background-size: 1000% 1000%;*/ /*animation: Gradient 8s ease infinite;*/ } @keyframes Gradient { 0% { background-position: 0 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } .m-padded-mini { padding: 0.2em !important; } .m-padded-tiny { padding: 0.3em !important; } .m-padded { padding: 1em !important; } .m-padded-tb-mini { padding-top: 0.2em !important; padding-bottom: 0.2em !important; } .m-padded-tb-tiny { padding-top: 0.3em !important; padding-bottom: 0.3em !important; } .m-padded-tb-small { padding-top: 0.5em !important; padding-bottom: 0.5em !important; } .m-padded-tb { padding-top: 1em !important; padding-bottom: 1em !important; } .m-padded-tb-large { padding-top: 2em !important; padding-bottom: 2em !important; } .m-padded-tb-big { padding-top: 3em !important; padding-bottom: 3em !important; } .m-padded-tb-huge { padding-top: 4em !important; padding-bottom: 4em !important; } .m-padded-tb-massive { padding-top: 5em !important; padding-bottom: 5em !important; } .m-padded-lr-responsive { padding-left: 2em !important; padding-right: 2em !important; } /*-------text -----*/ .my-blue { color: #1685a9 !important; } .m-text { font-weight: 300 !important; letter-spacing: 1px !important; line-height: 1.8; } .m-text-thin { font-weight: 300 !important; } .m-text-spaced { letter-spacing: 1px !important; } .m-text-lined { line-height: 1.8; } /*-----margin------*/ .m-margin-top-small { margin-top:0.5em !important; } .m-margin-top { margin-top: 1em !important; } .m-margin-top-large { margin-top: 2em !important; } .m-margin-tb-tiny { margin-top: 0.3em !important; margin-bottom: 0.3em !important; } .m-margin-bottom-small { margin-bottom: 0.5em !important; } /*-----opacity------*/ .m-opacity-mini { opacity: 0.8 !important; } .m-opacity-tiny { opacity: 0.6 !important; } /*------position---*/ .m-right-top { position: absolute; top:0; right: 0; } /*------display------*/ .m-inline-block { display: inline-block !important; } /*-----container*/ .m-container { max-width: 72em !important; margin: auto !important; } .m-container-small { max-width: 60em !important; margin: auto !important; } /*------shadow------*/ .m-shadow-small { -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important; box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important; } /*------positon-----*/ .m-fixed { position: fixed !important; z-index: 10 !important; } .m-right-bottom { bottom: 0 !important; right: 0 !important; } /*-----color-----*/ .my-blog-shadow:hover{ border-radius: 8px !important; box-shadow: 0px 4px 12px 12px rgba(7, 17, 27, 0.15) !important; } .my-shadow { background: #fff !important; color: #4c4948; border-radius: 8px !important; box-shadow: 0 4px 8px 6px rgba(7, 17, 27, 0.06) !important; transition: all 0.3s; } .my-shadow:hover { box-shadow: 0 4px 12px 12px rgba(7, 17, 27, 0.15) !important; } .m-black { color: #333 !important; } .m-mobile-show { display: none !important; } @media screen and (max-width: 768px){ .m-mobile-hide { display: none !important; } .m-mobile-show { display: block !important; } .m-padded-lr-responsive { padding-left: 0 !important; padding-right: 0 !important; } .m-mobile-lr-clear { padding-left: 0 !important; padding-right: 0 !important; } .m-mobile-wide { width: 100% !important; } }
src/styles/me_tcefrep.css
body { background: url("../assets/bg.jpg"); /*background: linear-gradient(to right, #dc2424, #4a569d); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *! background-size: 1000% 1000%;*/ /*animation: Gradient 8s ease infinite;*/ } @keyframes Gradient { 0% { background-position: 0 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } .m-padded-mini { padding: 0.2em !important; } .m-padded-tiny { padding: 0.3em !important; } .m-padded { padding: 1em !important; } .m-padded-tb-mini { padding-top: 0.2em !important; padding-bottom: 0.2em !important; } .m-padded-tb-tiny { padding-top: 0.3em !important; padding-bottom: 0.3em !important; } .m-padded-tb-small { padding-top: 0.5em !important; padding-bottom: 0.5em !important; } .m-padded-tb { padding-top: 1em !important; padding-bottom: 1em !important; } .m-padded-tb-large { padding-top: 2em !important; padding-bottom: 2em !important; } .m-padded-tb-big { padding-top: 3em !important; padding-bottom: 3em !important; } .m-padded-tb-huge { padding-top: 4em !important; padding-bottom: 4em !important; } .m-padded-tb-massive { padding-top: 5em !important; padding-bottom: 5em !important; } .m-padded-lr-responsive { padding-left: 2em !important; padding-right: 2em !important; } /*-------text -----*/ .my-blue { color: #1685a9 !important; } .m-text { font-weight: 300 !important; letter-spacing: 1px !important; line-height: 1.8; } .m-text-thin { font-weight: 300 !important; } .m-text-spaced { letter-spacing: 1px !important; } .m-text-lined { line-height: 1.8; } /*-----margin------*/ .m-margin-top-small { margin-top:0.5em !important; } .m-margin-top { margin-top: 1em !important; } .m-margin-top-large { margin-top: 2em !important; } .m-margin-tb-tiny { margin-top: 0.3em !important; margin-bottom: 0.3em !important; } .m-margin-bottom-small { margin-bottom: 0.5em !important; } /*-----opacity------*/ .m-opacity-mini { opacity: 0.8 !important; } .m-opacity-tiny { opacity: 0.6 !important; } /*------position---*/ .m-right-top { position: absolute; top:0; right: 0; } /*------display------*/ .m-inline-block { display: inline-block !important; } /*-----container*/ .m-container { max-width: 72em !important; margin: auto !important; } .m-container-small { max-width: 60em !important; margin: auto !important; } /*------shadow------*/ .m-shadow-small { -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important; box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important; } /*------positon-----*/ .m-fixed { position: fixed !important; z-index: 10 !important; } .m-right-bottom { bottom: 0 !important; right: 0 !important; } /*-----color-----*/ .my-blog-shadow:hover{ border-radius: 8px !important; box-shadow: 0px 4px 12px 12px rgba(7, 17, 27, 0.15) !important; } .my-shadow { background: #fff !important; color: #4c4948; border-radius: 8px !important; box-shadow: 0 4px 8px 6px rgba(7, 17, 27, 0.06) !important; transition: all 0.3s; } .my-shadow:hover { box-shadow: 0 4px 12px 12px rgba(7, 17, 27, 0.15) !important; } .m-black { color: #333 !important; } .m-mobile-show { display: none !important; } @media screen and (max-width: 768px){ .m-mobile-hide { display: none !important; } .m-mobile-show { display: block !important; } .m-padded-lr-responsive { padding-left: 0 !important; padding-right: 0 !important; } .m-mobile-lr-clear { padding-left: 0 !important; padding-right: 0 !important; } .m-mobile-wide { width: 100% !important; } }
0.510985
0.096962
@-moz-document url-prefix(https://dtf.ru/){ html { overflow-x: hidden; } h1, h2 { margin-left: 15px; } body > *, #welcome, #headerUploadBtn, #headerUpgradePremiumBtn, .premiumPromoBannerWrapper, .networkBar, header li#menuItem1, header li#menuItem4, header li#menuItem6, header li#menuItem8, ul.videos li .wrap .fadeUp:after, .abovePlayer, #vpContentContainer > *, .headerBtnsWrapper, #profileStream, .profile-sidebar, .bottomContainer, html.supportsGridLayout #profileContent .profileContentRight, .feedSideBar .feedItemSection[data-table="stream_sites_subscriptions"], .feedItemSection[data-table="stream_subscriptions_users"], .feedItemSection[data-table="stream_comments_photos"], .feedItemSection[data-table="stream_grouped_comments_videos"], .feedItemSection[data-table="stream_subscriptions_pornstars"], .feedItemSection[data-table="stream_grouped_comments_videos"], .feedItemSection[data-table="stream_albums"], .feedItemSection[data-table="stream_comments_blogs"], .feedItemSection[data-table="stream_posts_videos"], .feedItemSection[data-table="stream_posts_users"], .feedItemSection[data-table="stream_achievements"], .feedItemSection[data-table="stream_posts_photos"], .feedItemSection[data-table="stream_posts_gifs"], .feedItemSection[data-table="stream_playlists"], .feedItemSection[data-table="stream_posts_playlists"], .feedItemSection[data-table="stream_comments_playlists"], .feedItemSection[data-table="stream_videos_uploaded"], .feedItemSection .feedCaption, .feedItemSection .actionsWrap, .feedItemSection .feedComments, .feedSideBar, #cmtPlaylist, ul.videos.search-video-thumbs li.alpha, ul.videos-morepad.videos li.alpha, .pornstar_container > *, #popularPornstars li.alpha, .nf-videos .sectionWrapper .sectionWrapper ul.streamateContent, .video-wrapper .hd, #channelsProfile .leftSide > *, li.sniperModeEngaged, ul.videos > *, .searchDataContainer, .recommendedContainerLoseOne li.sniperModeEngaged, .playlist-videos .playlist-thumb, .section_bar_sidebar, nav.nf-categories-sidebar, #topBannerSlider, .sectionCarousel, #loadMoreRelatedVideosCenter { display: none !important; } body > div.wrapper, ul.videos li.js-pop, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked), #vpContentContainer > div#hd-leftColVideoPage, .gridWrapper, .mainSection, html.supportsGridLayout #profileContent, html.supportsGridLayout .container-wrapper-feeds, .feedInfo .usernameWrap, .pornstar_container > #pornstarsFilterContainer, .pornstar_container > .pagination3, #channelsProfile .leftSide .sectionChannelsWrapper, ul.videos > li, html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul, section.feedItemSection ul.feedVideos, .recommendedContainerLoseOne li:hover .not-interested-wrapper, .recommendedContainerLoseOne li:hover .add-to-playlist-icon { display: block !important; } div.nf-videos, .container, #hd-leftColVideoPage, #channelsProfile #channelsBody .leftSide, #channelsProfile #channelsBody .rightSide, .feedItemSection li, #main-container div.hd-videos_wrapper, .listChannelsWrapper ul li.wrap, ul.videos.popular-pornstar, #channelVideosList li, html.supportsGridLayout.fluidContainer .sectionWrapper#pornstarsFilterContainer, html.supportsGridLayout.fluidContainer .sectionWrapper.photosPage, html.supportsGridLayout.fluidContainer .sectionWrapper.topTrendingPornstars, ul.row-5-thumbs.search-video-thumbs li, .full-row-thumbs li { width: 100% !important; min-width: 100% !important; max-width: 100% !important; } .search-video-thumbs.videos li.videoBox .wrap .img img, .full-row-thumbs.videos li.videoBox .wrap .img img, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs.videos li.videoBox .wrap .img img, .recommendedContainerLoseOne.videos li.videoBox .wrap .img img, ul.videos.user-playlist.playlist-listingSmall li .wrap .linkWrapper { width: 100% !important; height: auto !important; } .watchedVideoText, html.supportsGridLayout .hide { display: block !important; top: 0; left: 0; width: 100%; height: 100%; text-align: left; background: rgba(255,154,1,0.70); } html.supportsGridLayout #header.hasAdAlert { grid-template-rows: 60px 40px 0px; } html.supportsGridLayout #header #headerWrapper #headerContainer { width: 100%; grid-template-columns: 20% 42% 25%; } html.supportsGridLayout #header #headerWrapper #headerContainer #topRightProfileMenu { grid-column-start: 3; } div.pagination3 ul li.page_current, div.pagination3 ul li.page_next_set, div.pagination3 ul li.page_number { width: 38px; } div.pagination3 ul li.page_smoothing, div.pagination3 ul li.page_smoothing.page_thousend { width: 55px; } div.pagination3 ul li { line-height: 40px; } div.pagination3 ul li.page_next a, div.pagination3 ul li.page_next span, div.pagination3 ul li.page_previous a, div.pagination3 ul li.page_previous span { line-height: 36px; } div.pagination3 ul li { font-size: 18px; } html.supportsGridLayout .sideBarChannelGridWrapper { display: block; } html.supportsGridLayout .sideBarChannelGridWrapper li.channelWig { width: 150px; } .sectionChannelsWrapper ul.videos li .wrap, ul.videos li .wrap { width: auto !important; height: auto !important; } .feedLeft .feedInfo { width: 75%; } .feedVideoContainer { min-height: auto !important; max-height: none !important; } .feedItemSection ul.videos { padding-top: 0; } .feedContent .feedItems .feedItemSection .feedLeft, .feedContent .feedItems>section .feedLeft { padding-bottom: 0; } .feedItemSection ul.videos li { display: none !important; } .feedItemSection ul.videos li:first-child { display: block !important; } .pagination3 .firstPage { margin-bottom: 35px; } html.supportsGridLayout #header #headerMenuContainer #headerMainMenuInner ul#headerMainMenu { grid-template-columns: repeat(5,1fr); } ul.videos.user-playlist.playlist-listing li .wrap .linkWrapper { margin: 0 auto; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 570px; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player.wide { display: block !important; width: 480px !important; height: 360px !important; margin: 0 auto; padding: 0 !important; max-width: 100% !important; min-width: auto !important; max-height: 100% !important; min-height: auto !important; } .feedContent .feedItems .feedItemSection, .feedContent .feedItems>section { margin-bottom: 0; } .feedContent.communityFeed #moreDataBtnStream { margin-top: 35px !important; } .sectionWrapper.sectionRelatedStars .videos li, html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul li { display: inline-block !important; margin-left: 5px; margin-right: 5px; } html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul li { width: auto !important; } ul.videos li .wrap .thumbnail-info-wrapper .added { display: inline-block !important; vertical-align: top; margin: 5px 0 0 0; } ul.videos.pornstarIndex li div.wrap, ul.videos.pornstarIndex li div.wrap>a { width: auto !important; height: auto !important; } ul.videos.pornstarIndex li div.wrap>a { padding: 0 10px; } ul.videos.pornstarIndex li div.wrap a img { width: 100% !important; height: auto !important; } ul.row-5-thumbs.search-video-thumbs li { float: none; } html.supportsGridLayout.fluidContainer div.nf-videos #videoSearchResult li.videoBox:not(.sniperModeEngaged), html.supportsGridLayout.fluidContainer div.nf-videos #videoCategory li.videoBox:not(.sniperModeEngaged) { max-width: 100%; } html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 20px; grid-column-gap: 20px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems #videosUploadedSection, #moreData.feedItems ul { padding-left: 0 !important; padding-right: 0 !important; } html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos { display: grid; grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(4,1fr); } ul.videos.user-playlist .linkWrapper .borderLink { border: 0; } ul.videos.user-playlist.playlist-listingSmall li .wrap .linkWrapper .playlist-videos { height: 30px; } .marker-overlays { position: relative; padding: 0; } .marker-overlays .duration { display: inline-block; vertical-align: top; padding: 5px 10px !important; margin: 0 !important; color: #fff; background: rgba(0,0,0,0.77); } .feedItemSection, .videoblock { position: relative; overflow: hidden; } .feedItemSection .contentPadding { padding: 0; } .feedItemSection .thumbnail-info-wrapper.clearfix { padding: 5px 10px } ul.videos li { position: relative; } ul.videos li .img .marker-overlays { overflow: visible; } ul.videos li .thumbnail-info-wrapper.clearfix .price, ul.videos li .img .marker-overlays .premiumIcon, ul.videos li .premiumLockedVideo { position: absolute; top: 0; left: 0; width: 100%; height: 1000%; background: red; opacity: 0.85; text-indent: -1000px; z-index: 10; } ul.videos li .img .marker-overlays .premiumIcon { top: -1000px; left: -1000px; width: 10000%; height: 100000%; } ul.videos li .img .marker-overlays .hd-thumbnail { display: inline-block; vertical-align: top; padding: 4px 10px; margin: 0; background: rgba(255,153,0,0.77); } @media all and (min-width: 1200px) { html.supportsGridLayout.fluidContainer .container { min-width: 1170px !important; width: 1170px !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 1200px) { html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { display: grid; grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 968px) { html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 534px; } html.supportsGridLayout ul#popularPornstars, html.supportsGridLayout .members-page #memberWrapper .content ul.userWidgetWrapperGrid { grid-template-columns: repeat(4,1fr); } .feedLeft .feedInfo { width: 70%; } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(3,1fr); } } @media all and (max-width: 680px) { html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(3,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 680px) { html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(1,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 370px; } html.supportsGridLayout ul#popularPornstars, html.supportsGridLayout .members-page #memberWrapper .content ul.userWidgetWrapperGrid { grid-template-columns: repeat(3,1fr); } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(2,1fr); } #moreData.feedItems { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 580px) { html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #header #headerWrapper #headerContainer { width: 100%; grid-template-columns: 20% 24%; } html.supportsGridLayout #header #headerWrapper #headerContainer #headerSearchWrapperFree, html.supportsGridLayout #header #headerWrapper #headerContainer .headerSearchWrapper { display: none; } html.supportsGridLayout #header #headerWrapper #headerContainer #topRightProfileMenu { grid-column-start: 2; } main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 292px; } html.supportsGridLayout #header #headerMenuContainer #headerMainMenuInner ul#headerMainMenu { grid-template-columns: repeat(8,1fr); } #moreData.feedItems { display: grid; grid-template-columns: repeat(1,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #recommendations .recommendedCategoriesWrapper ul.popularSectionList, html.supportsGridLayout #recommendations .recommendedCategoriesWrapper ul.recommendedCategoryList, html.supportsGridLayout #recommendations .recommendedPornstarsWrapper ul.popularSectionList, html.supportsGridLayout #recommendations .recommendedPornstarsWrapper ul.recommendedCategoryList { grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(2,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } /* PREMIUM UPDS */ .sectionWrapperPremium .js-Carousel .full-row-thumbs > li { display: inline-block !important; width: 991px !important; min-width: inherit !important; max-width: inherit !important; } .sectionWrapperPremium .js-Carousel .full-row-thumbs.videos .videoBox { height: auto !important; } /*.watchedVideoText { background: transparent !important; }*/ }
data/usercss/174094.user.css
@-moz-document url-prefix(https://dtf.ru/){ html { overflow-x: hidden; } h1, h2 { margin-left: 15px; } body > *, #welcome, #headerUploadBtn, #headerUpgradePremiumBtn, .premiumPromoBannerWrapper, .networkBar, header li#menuItem1, header li#menuItem4, header li#menuItem6, header li#menuItem8, ul.videos li .wrap .fadeUp:after, .abovePlayer, #vpContentContainer > *, .headerBtnsWrapper, #profileStream, .profile-sidebar, .bottomContainer, html.supportsGridLayout #profileContent .profileContentRight, .feedSideBar .feedItemSection[data-table="stream_sites_subscriptions"], .feedItemSection[data-table="stream_subscriptions_users"], .feedItemSection[data-table="stream_comments_photos"], .feedItemSection[data-table="stream_grouped_comments_videos"], .feedItemSection[data-table="stream_subscriptions_pornstars"], .feedItemSection[data-table="stream_grouped_comments_videos"], .feedItemSection[data-table="stream_albums"], .feedItemSection[data-table="stream_comments_blogs"], .feedItemSection[data-table="stream_posts_videos"], .feedItemSection[data-table="stream_posts_users"], .feedItemSection[data-table="stream_achievements"], .feedItemSection[data-table="stream_posts_photos"], .feedItemSection[data-table="stream_posts_gifs"], .feedItemSection[data-table="stream_playlists"], .feedItemSection[data-table="stream_posts_playlists"], .feedItemSection[data-table="stream_comments_playlists"], .feedItemSection[data-table="stream_videos_uploaded"], .feedItemSection .feedCaption, .feedItemSection .actionsWrap, .feedItemSection .feedComments, .feedSideBar, #cmtPlaylist, ul.videos.search-video-thumbs li.alpha, ul.videos-morepad.videos li.alpha, .pornstar_container > *, #popularPornstars li.alpha, .nf-videos .sectionWrapper .sectionWrapper ul.streamateContent, .video-wrapper .hd, #channelsProfile .leftSide > *, li.sniperModeEngaged, ul.videos > *, .searchDataContainer, .recommendedContainerLoseOne li.sniperModeEngaged, .playlist-videos .playlist-thumb, .section_bar_sidebar, nav.nf-categories-sidebar, #topBannerSlider, .sectionCarousel, #loadMoreRelatedVideosCenter { display: none !important; } body > div.wrapper, ul.videos li.js-pop, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked), #vpContentContainer > div#hd-leftColVideoPage, .gridWrapper, .mainSection, html.supportsGridLayout #profileContent, html.supportsGridLayout .container-wrapper-feeds, .feedInfo .usernameWrap, .pornstar_container > #pornstarsFilterContainer, .pornstar_container > .pagination3, #channelsProfile .leftSide .sectionChannelsWrapper, ul.videos > li, html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul, section.feedItemSection ul.feedVideos, .recommendedContainerLoseOne li:hover .not-interested-wrapper, .recommendedContainerLoseOne li:hover .add-to-playlist-icon { display: block !important; } div.nf-videos, .container, #hd-leftColVideoPage, #channelsProfile #channelsBody .leftSide, #channelsProfile #channelsBody .rightSide, .feedItemSection li, #main-container div.hd-videos_wrapper, .listChannelsWrapper ul li.wrap, ul.videos.popular-pornstar, #channelVideosList li, html.supportsGridLayout.fluidContainer .sectionWrapper#pornstarsFilterContainer, html.supportsGridLayout.fluidContainer .sectionWrapper.photosPage, html.supportsGridLayout.fluidContainer .sectionWrapper.topTrendingPornstars, ul.row-5-thumbs.search-video-thumbs li, .full-row-thumbs li { width: 100% !important; min-width: 100% !important; max-width: 100% !important; } .search-video-thumbs.videos li.videoBox .wrap .img img, .full-row-thumbs.videos li.videoBox .wrap .img img, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs.videos li.videoBox .wrap .img img, .recommendedContainerLoseOne.videos li.videoBox .wrap .img img, ul.videos.user-playlist.playlist-listingSmall li .wrap .linkWrapper { width: 100% !important; height: auto !important; } .watchedVideoText, html.supportsGridLayout .hide { display: block !important; top: 0; left: 0; width: 100%; height: 100%; text-align: left; background: rgba(255,154,1,0.70); } html.supportsGridLayout #header.hasAdAlert { grid-template-rows: 60px 40px 0px; } html.supportsGridLayout #header #headerWrapper #headerContainer { width: 100%; grid-template-columns: 20% 42% 25%; } html.supportsGridLayout #header #headerWrapper #headerContainer #topRightProfileMenu { grid-column-start: 3; } div.pagination3 ul li.page_current, div.pagination3 ul li.page_next_set, div.pagination3 ul li.page_number { width: 38px; } div.pagination3 ul li.page_smoothing, div.pagination3 ul li.page_smoothing.page_thousend { width: 55px; } div.pagination3 ul li { line-height: 40px; } div.pagination3 ul li.page_next a, div.pagination3 ul li.page_next span, div.pagination3 ul li.page_previous a, div.pagination3 ul li.page_previous span { line-height: 36px; } div.pagination3 ul li { font-size: 18px; } html.supportsGridLayout .sideBarChannelGridWrapper { display: block; } html.supportsGridLayout .sideBarChannelGridWrapper li.channelWig { width: 150px; } .sectionChannelsWrapper ul.videos li .wrap, ul.videos li .wrap { width: auto !important; height: auto !important; } .feedLeft .feedInfo { width: 75%; } .feedVideoContainer { min-height: auto !important; max-height: none !important; } .feedItemSection ul.videos { padding-top: 0; } .feedContent .feedItems .feedItemSection .feedLeft, .feedContent .feedItems>section .feedLeft { padding-bottom: 0; } .feedItemSection ul.videos li { display: none !important; } .feedItemSection ul.videos li:first-child { display: block !important; } .pagination3 .firstPage { margin-bottom: 35px; } html.supportsGridLayout #header #headerMenuContainer #headerMainMenuInner ul#headerMainMenu { grid-template-columns: repeat(5,1fr); } ul.videos.user-playlist.playlist-listing li .wrap .linkWrapper { margin: 0 auto; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 570px; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player.wide { display: block !important; width: 480px !important; height: 360px !important; margin: 0 auto; padding: 0 !important; max-width: 100% !important; min-width: auto !important; max-height: 100% !important; min-height: auto !important; } .feedContent .feedItems .feedItemSection, .feedContent .feedItems>section { margin-bottom: 0; } .feedContent.communityFeed #moreDataBtnStream { margin-top: 35px !important; } .sectionWrapper.sectionRelatedStars .videos li, html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul li { display: inline-block !important; margin-left: 5px; margin-right: 5px; } html.supportsGridLayout .profileContentLeft .channelSubWidgetContainer ul li { width: auto !important; } ul.videos li .wrap .thumbnail-info-wrapper .added { display: inline-block !important; vertical-align: top; margin: 5px 0 0 0; } ul.videos.pornstarIndex li div.wrap, ul.videos.pornstarIndex li div.wrap>a { width: auto !important; height: auto !important; } ul.videos.pornstarIndex li div.wrap>a { padding: 0 10px; } ul.videos.pornstarIndex li div.wrap a img { width: 100% !important; height: auto !important; } ul.row-5-thumbs.search-video-thumbs li { float: none; } html.supportsGridLayout.fluidContainer div.nf-videos #videoSearchResult li.videoBox:not(.sniperModeEngaged), html.supportsGridLayout.fluidContainer div.nf-videos #videoCategory li.videoBox:not(.sniperModeEngaged) { max-width: 100%; } html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 20px; grid-column-gap: 20px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems #videosUploadedSection, #moreData.feedItems ul { padding-left: 0 !important; padding-right: 0 !important; } html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos { display: grid; grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(4,1fr); } ul.videos.user-playlist .linkWrapper .borderLink { border: 0; } ul.videos.user-playlist.playlist-listingSmall li .wrap .linkWrapper .playlist-videos { height: 30px; } .marker-overlays { position: relative; padding: 0; } .marker-overlays .duration { display: inline-block; vertical-align: top; padding: 5px 10px !important; margin: 0 !important; color: #fff; background: rgba(0,0,0,0.77); } .feedItemSection, .videoblock { position: relative; overflow: hidden; } .feedItemSection .contentPadding { padding: 0; } .feedItemSection .thumbnail-info-wrapper.clearfix { padding: 5px 10px } ul.videos li { position: relative; } ul.videos li .img .marker-overlays { overflow: visible; } ul.videos li .thumbnail-info-wrapper.clearfix .price, ul.videos li .img .marker-overlays .premiumIcon, ul.videos li .premiumLockedVideo { position: absolute; top: 0; left: 0; width: 100%; height: 1000%; background: red; opacity: 0.85; text-indent: -1000px; z-index: 10; } ul.videos li .img .marker-overlays .premiumIcon { top: -1000px; left: -1000px; width: 10000%; height: 100000%; } ul.videos li .img .marker-overlays .hd-thumbnail { display: inline-block; vertical-align: top; padding: 4px 10px; margin: 0; background: rgba(255,153,0,0.77); } @media all and (min-width: 1200px) { html.supportsGridLayout.fluidContainer .container { min-width: 1170px !important; width: 1170px !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 1200px) { html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } #moreData.feedItems { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { display: grid; grid-template-columns: repeat(5,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 968px) { html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 534px; } html.supportsGridLayout ul#popularPornstars, html.supportsGridLayout .members-page #memberWrapper .content ul.userWidgetWrapperGrid { grid-template-columns: repeat(4,1fr); } .feedLeft .feedInfo { width: 70%; } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(3,1fr); } } @media all and (max-width: 680px) { html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(3,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 680px) { html.supportsGridLayout .listChannelsWrapper .channelGridWrapper { display: grid; grid-template-columns: repeat(1,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; } #main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 370px; } html.supportsGridLayout ul#popularPornstars, html.supportsGridLayout .members-page #memberWrapper .content ul.userWidgetWrapperGrid { grid-template-columns: repeat(3,1fr); } html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage #under-player-playlists #videoPlayList { grid-template-columns: repeat(2,1fr); } #moreData.feedItems { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } } @media all and (max-width: 580px) { html.supportsGridLayout .nf-videos #incategoryVideos, html.supportsGridLayout .nf-videos #videoCategory, html.supportsGridLayout .nf-videos #videoSearchResult, html.supportsGridLayout .sectionWrapper .full-row-thumbs#hotVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostRecentVideosSection, html.supportsGridLayout .sectionWrapper .full-row-thumbs#mostViewedPerCountry, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-category-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#recommended-videos, html.supportsGridLayout .sectionWrapper .full-row-thumbs#videoFeedsSection, html.supportsGridLayout #main-container #vpContentContainer:not(.premiumLocked) #hd-leftColVideoPage .video-wrapper #relatedVideosCenter.underplayer-thumbs, html.supportsGridLayout #recommendations ul.recommendedContainerLoseOne, html.supportsGridLayout .sectionChannelsWrapper ul.videosGridWrapper, html.supportsGridLayout .mainContainer.amateurModel ul.videos, html.supportsGridLayout .mainContainer.claimed ul.videos, html.supportsGridLayout #profileContent ul.videos.row-5-thumbs, html.supportsGridLayout #profileContent ul.videos.row-3-thumbs, html.supportsGridLayout ul.videos#videoPlaylist, html.supportsGridLayout ul.videos.playlist-listing, html.supportsGridLayout .nf-videos ul.categories-list#categoriesListSection, html.supportsGridLayout ul.videos#pornstarsVideoSection, #channelVideosList, ul.row-5-thumbs.search-video-thumbs, .full-row-thumbs, html.supportsGridLayout.fluidContainer .mainContainer.amateurModel ul.videos, html.supportsGridLayout.fluidContainer .mainContainer.claimed ul.videos, html.supportsGridLayout .display-grid.col-4 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-row-gap: 15px; grid-column-gap: 10px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #header #headerWrapper #headerContainer { width: 100%; grid-template-columns: 20% 24%; } html.supportsGridLayout #header #headerWrapper #headerContainer #headerSearchWrapperFree, html.supportsGridLayout #header #headerWrapper #headerContainer .headerSearchWrapper { display: none; } html.supportsGridLayout #header #headerWrapper #headerContainer #topRightProfileMenu { grid-column-start: 2; } main-container .video-wrapper #lockedPlayer, #main-container .video-wrapper #player { height: 292px; } html.supportsGridLayout #header #headerMenuContainer #headerMainMenuInner ul#headerMainMenu { grid-template-columns: repeat(8,1fr); } #moreData.feedItems { display: grid; grid-template-columns: repeat(1,minmax(0,1fr)); grid-row-gap: 7px; grid-column-gap: 7px !important; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout #recommendations .recommendedCategoriesWrapper ul.popularSectionList, html.supportsGridLayout #recommendations .recommendedCategoriesWrapper ul.recommendedCategoryList, html.supportsGridLayout #recommendations .recommendedPornstarsWrapper ul.popularSectionList, html.supportsGridLayout #recommendations .recommendedPornstarsWrapper ul.recommendedCategoryList { grid-template-columns: repeat(3,minmax(0,1fr)); grid-row-gap: 15px; margin-left: 0 !important; margin-right: 0 !important; } html.supportsGridLayout.fluidContainer ul#popularPornstars, .sectionWrapper.sectionRelatedStars .videos, html.supportsGridLayout .sectionChannelsWrapper ul.videos.chanelPornstars { grid-template-columns: repeat(2,minmax(104px,1fr)); margin-left: 0 !important; margin-right: 0 !important; } } /* PREMIUM UPDS */ .sectionWrapperPremium .js-Carousel .full-row-thumbs > li { display: inline-block !important; width: 991px !important; min-width: inherit !important; max-width: inherit !important; } .sectionWrapperPremium .js-Carousel .full-row-thumbs.videos .videoBox { height: auto !important; } /*.watchedVideoText { background: transparent !important; }*/ }
0.210117
0.036425
.App { text-align: center; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } body { justify-content: center; background-attachment: fixed; background-image: linear-gradient(147deg, #923cb5 0%, #000000 74%); } .Headline { color: white; position: relative; margin: 300px auto 0; width: 900px; height: 100px; font-size: 3em; } .loginButton { background: linear-gradient(to bottom, #2ab64f 5%, #48a818 100%); background-color: #1fa743; width: 100%; height: 100px; display: inline-block; cursor: pointer; color: #ffffff; font-family: Arial; font-size: 18px; padding: 9px 20px; text-shadow: 0px 1px 0px #2f6627; } .loginButton:hover { background: linear-gradient(to bottom, #61c92d 5%, #50d674 100%); background-color: #91e468; transform: scale(1.02); text-shadow: none; } .loginButton:active { position: relative; top: 1px; } .block { position: relative; margin: 50px auto 0; width: 200px; height: 100px; background: linear-gradient(0deg, #000, #272727); } .block:before, .block:after { content: ''; position: absolute; left: -2px; top: -2px; background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000); background-size: 400%; width: calc(100% + 4px); height: calc(100% + 4px); z-index: -1; animation: steam 20s linear infinite; } @keyframes steam { 0% { background-position: 0 0; } 50% { background-position: 400% 0; } 100% { background-position: 0 0; } } .block:after { filter: blur(50px); } .logoutButton { position: fixed; top: 3px; left: 0px; width: 7vw; height: 4vh; border-radius: 12px; background-color: #74006e; color: white; min-width: 80px; min-height: 20px; }
client/src/App.css
.App { text-align: center; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } body { justify-content: center; background-attachment: fixed; background-image: linear-gradient(147deg, #923cb5 0%, #000000 74%); } .Headline { color: white; position: relative; margin: 300px auto 0; width: 900px; height: 100px; font-size: 3em; } .loginButton { background: linear-gradient(to bottom, #2ab64f 5%, #48a818 100%); background-color: #1fa743; width: 100%; height: 100px; display: inline-block; cursor: pointer; color: #ffffff; font-family: Arial; font-size: 18px; padding: 9px 20px; text-shadow: 0px 1px 0px #2f6627; } .loginButton:hover { background: linear-gradient(to bottom, #61c92d 5%, #50d674 100%); background-color: #91e468; transform: scale(1.02); text-shadow: none; } .loginButton:active { position: relative; top: 1px; } .block { position: relative; margin: 50px auto 0; width: 200px; height: 100px; background: linear-gradient(0deg, #000, #272727); } .block:before, .block:after { content: ''; position: absolute; left: -2px; top: -2px; background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000); background-size: 400%; width: calc(100% + 4px); height: calc(100% + 4px); z-index: -1; animation: steam 20s linear infinite; } @keyframes steam { 0% { background-position: 0 0; } 50% { background-position: 400% 0; } 100% { background-position: 0 0; } } .block:after { filter: blur(50px); } .logoutButton { position: fixed; top: 3px; left: 0px; width: 7vw; height: 4vh; border-radius: 12px; background-color: #74006e; color: white; min-width: 80px; min-height: 20px; }
0.565059
0.120155
 /************************************* 布局 *******************************************/ html,body,div,table,tr,td,ul,li{ padding:0px; margin:0px; } div,ul,li,table{ float:left; } .top{ background:#001A33; width:100%; height:120px; color:white; } .right{ float:right; margin:10px; } .right a:link,.right a:visited,.right a:hover{ text-decoration:none; color:white; } #h1{ float:left; font-family:微软雅黑,黑体; font-size:45px; line-height:48px; margin-left:25px; } #content{ width:87%; height:auto; } a:link{color: #000000; text-decoration:none;} /*常规时候的样式*/ a:visited{color: #000000; text-decoration:none;} /*鼠标指上去的样式*/ a:hover {color: #000000; text-decoration:underline;} /************************************* 面包屑 *************************************/ .bread{ width:98%; margin-left:5px; margin-top:0px; line-height:48px; border-bottom:1px dashed black; } .bread ul{ margin-left:10px; } .bread ul li{ float:left; margin-left:6px; } .bread ul li:after{ content:" >"; } .bread .active:after{ content:''; } .breadcrumb{ list-style-type:none; } .active{ } /********************************** page ************************************************/ .pagination{ width:100%; clear:both; list-style-type:none; } .pagination li{ float:left; padding:3px 8px; border:1px solid #cccccc; margin-left:5px; } .pagination .active{ background:#ccf; } .disabled{ color:#ccc; } /********************************** list ************************************************/ .list-box{ margin:10px; } .list-table{ clear:both; border-collapse:collapse; } .tab-ul{ list-style-type:none; height:40px; } .tab-ul li{ padding:10px; } .list-active{ background:#3399FF; } .list-table,tr,td{ border:1px solid #3399FF; } .odd{background:#ffffee;} .even{background:#ddeeff;} .even0{background:#99ccff;} .list-table td{ padding:5px 13px; } /************************************* 菜单 *************************************/ .leftform{ width:13%; min-height:760px; background:#fff; } .leftform ul li{ float:left; } .menu-image{ width:20px; height:20px; margin-top:15px; margin-left:8px; } .menu-top{ width:100%; height:48px; font-size:21px; line-height:48px; list-style-type:none; color:#fff; text-align:center; background:#336699; } .menu-title{ width:100%; height:48px; font-size:21px; line-height:48px; background:#3399FF; color:white; border-bottom: 2px solid #3399FF; } .menu{ width:81%; height:36px; font-size:18px; line-height:28px; margin-top:5px; padding-left:45px; font-weight:70; border-bottom: 1px solid #3399FF; } .menu-last{ width:81%; height:36px; font-size:18px; line-height:28px; margin-top:5px; padding-left:45px; font-weight:70; } /************************************* 内容部分 *************************************/ /*中间主要表格*/ .content-box{ width:98%; margin:10px; } /************************************* 表单部分 *************************************/ label{ } .control-label{ display:block; float:left; width:100px; margin: 3px 10px; font-size:16px; } .form-group{ float:left; height:auto; clear:both; margin:5px; } textarea, #article-content{ width:800px; height:auto; float:left; } .form-control{ float:left; border-radius:2px; height:20px; width:200px; float:left; border:1px solid #000; } .address{ border:1px solid black; float:left; } .form-group button{ margin:5px; padding:3px 10px; font-size:16px; float:left; } .help-block{ margin:8px; clear:both; float:left; } .separator{ border-top:1px dashed blue; float:left; width:700px; clear:both; margin:10px; } /************************************* 客户简单列表 *************************************/ .client-list{ border:1px dashed blue; background:#ffffdd; margin:10px 20px; padding:10px; } .tip{ right:15px; top:180px; position:absolute; } .client-list span{ margin:10px; line-height:36px; } a.blue:link, a.blue:visited, a.blue:hover, a.blue:active{ color:blue; } /************************************* 底部 *************************************/ .footer{ background:#001A33; text-align: center; line-height:20px; height:50px; width:100%; color:white; }
web/css/mainstyle.css
 /************************************* 布局 *******************************************/ html,body,div,table,tr,td,ul,li{ padding:0px; margin:0px; } div,ul,li,table{ float:left; } .top{ background:#001A33; width:100%; height:120px; color:white; } .right{ float:right; margin:10px; } .right a:link,.right a:visited,.right a:hover{ text-decoration:none; color:white; } #h1{ float:left; font-family:微软雅黑,黑体; font-size:45px; line-height:48px; margin-left:25px; } #content{ width:87%; height:auto; } a:link{color: #000000; text-decoration:none;} /*常规时候的样式*/ a:visited{color: #000000; text-decoration:none;} /*鼠标指上去的样式*/ a:hover {color: #000000; text-decoration:underline;} /************************************* 面包屑 *************************************/ .bread{ width:98%; margin-left:5px; margin-top:0px; line-height:48px; border-bottom:1px dashed black; } .bread ul{ margin-left:10px; } .bread ul li{ float:left; margin-left:6px; } .bread ul li:after{ content:" >"; } .bread .active:after{ content:''; } .breadcrumb{ list-style-type:none; } .active{ } /********************************** page ************************************************/ .pagination{ width:100%; clear:both; list-style-type:none; } .pagination li{ float:left; padding:3px 8px; border:1px solid #cccccc; margin-left:5px; } .pagination .active{ background:#ccf; } .disabled{ color:#ccc; } /********************************** list ************************************************/ .list-box{ margin:10px; } .list-table{ clear:both; border-collapse:collapse; } .tab-ul{ list-style-type:none; height:40px; } .tab-ul li{ padding:10px; } .list-active{ background:#3399FF; } .list-table,tr,td{ border:1px solid #3399FF; } .odd{background:#ffffee;} .even{background:#ddeeff;} .even0{background:#99ccff;} .list-table td{ padding:5px 13px; } /************************************* 菜单 *************************************/ .leftform{ width:13%; min-height:760px; background:#fff; } .leftform ul li{ float:left; } .menu-image{ width:20px; height:20px; margin-top:15px; margin-left:8px; } .menu-top{ width:100%; height:48px; font-size:21px; line-height:48px; list-style-type:none; color:#fff; text-align:center; background:#336699; } .menu-title{ width:100%; height:48px; font-size:21px; line-height:48px; background:#3399FF; color:white; border-bottom: 2px solid #3399FF; } .menu{ width:81%; height:36px; font-size:18px; line-height:28px; margin-top:5px; padding-left:45px; font-weight:70; border-bottom: 1px solid #3399FF; } .menu-last{ width:81%; height:36px; font-size:18px; line-height:28px; margin-top:5px; padding-left:45px; font-weight:70; } /************************************* 内容部分 *************************************/ /*中间主要表格*/ .content-box{ width:98%; margin:10px; } /************************************* 表单部分 *************************************/ label{ } .control-label{ display:block; float:left; width:100px; margin: 3px 10px; font-size:16px; } .form-group{ float:left; height:auto; clear:both; margin:5px; } textarea, #article-content{ width:800px; height:auto; float:left; } .form-control{ float:left; border-radius:2px; height:20px; width:200px; float:left; border:1px solid #000; } .address{ border:1px solid black; float:left; } .form-group button{ margin:5px; padding:3px 10px; font-size:16px; float:left; } .help-block{ margin:8px; clear:both; float:left; } .separator{ border-top:1px dashed blue; float:left; width:700px; clear:both; margin:10px; } /************************************* 客户简单列表 *************************************/ .client-list{ border:1px dashed blue; background:#ffffdd; margin:10px 20px; padding:10px; } .tip{ right:15px; top:180px; position:absolute; } .client-list span{ margin:10px; line-height:36px; } a.blue:link, a.blue:visited, a.blue:hover, a.blue:active{ color:blue; } /************************************* 底部 *************************************/ .footer{ background:#001A33; text-align: center; line-height:20px; height:50px; width:100%; color:white; }
0.198724
0.052912
@charset "UTF-8"; *{ margin:0px; padding:0px; border: none; font-family: times new roman, verdana; } #tudo{ width:100%; } #conteudo{ margin-top: 2vw; background-image: url(../imagens/fundo.png); background-position: center; background-size:90%; background-attachment: fixed; } #rodape{ clear: both; } header{ height:38vw; float:center; background-image: url(../imagens/banner.png); background-repeat: no-repeat; background-size: 100vw; } .pagina { font-style:oblique; font-weight: bolder; font-size: 1.8vw; float:center; text-align: center; color: #ffffff; line-height:2500%; } nav{ width: 100%; float:right; /*cor do menu*/ background-color: #0054a6; height:42px; } nav ul{ width:100%; list-style-type:none; float:left; } nav li{ width:11vw; float:left; } nav a{ color:#fff; text-decoration:none; font-size: 1.5vw; width:11vw; float:left; text-align:center; line-height:43px; border-right: 1px solid #666; transition:all 0.9s; } nav a:hover{ width: 11vw; background-color:#FFC125; } nav li:last-child a{ border:none; } table, td, th, tfoot{ border:solid 1px #000; padding:5px; margin-right: 5vw; } tr, td, th{ background-color:#FFA500; } #voltar{ font-size: 35px; color: #ffffff; } figure{ position: relative; border: 8px solid white; box-shadow: 1px 1px 5px black; color: blue; text-decoration: underline; } figure img{ width: 15vw; height: 15vw; } p{ text-align: center; text-indent: 50px; } figure figcaption .desc { opacity: 0; position: absolute; top: 0px; background-color: rgba(0,0,0,.4); color: #ffffff; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; font-size: 1.5vw; } .desc:hover{ opacity: 1; } table, tfoot{ border:solid 1px #0000ff; padding:3vw; color: #ffffff; margin-left: 3vw; } #empre{ color:white; text-align: center; font-size: 1vw; margin-left:0; } caption{ font-size:2vw; color:#000000; margin-left: 5vw; } colgroup{ background:#F60; } table{ margin-left: 19vw; } tr, th, td{ border-collapse:collapse; border-width:2px; border-style:solid; border-color:#0000FF; width:225px; text-align:center; margin-left: 29vw; } img{ width: 300px; height: 300px; } #voltar{ color:#000000; } article{ width:100%; float:left; background-color:#ffff; } #autoria{ text-align: center; float: center; font-size: 1vw; } footer{ background-color:#0054a6; padding:7%; color: white; }
petshop/css/estiloprodutos.css
@charset "UTF-8"; *{ margin:0px; padding:0px; border: none; font-family: times new roman, verdana; } #tudo{ width:100%; } #conteudo{ margin-top: 2vw; background-image: url(../imagens/fundo.png); background-position: center; background-size:90%; background-attachment: fixed; } #rodape{ clear: both; } header{ height:38vw; float:center; background-image: url(../imagens/banner.png); background-repeat: no-repeat; background-size: 100vw; } .pagina { font-style:oblique; font-weight: bolder; font-size: 1.8vw; float:center; text-align: center; color: #ffffff; line-height:2500%; } nav{ width: 100%; float:right; /*cor do menu*/ background-color: #0054a6; height:42px; } nav ul{ width:100%; list-style-type:none; float:left; } nav li{ width:11vw; float:left; } nav a{ color:#fff; text-decoration:none; font-size: 1.5vw; width:11vw; float:left; text-align:center; line-height:43px; border-right: 1px solid #666; transition:all 0.9s; } nav a:hover{ width: 11vw; background-color:#FFC125; } nav li:last-child a{ border:none; } table, td, th, tfoot{ border:solid 1px #000; padding:5px; margin-right: 5vw; } tr, td, th{ background-color:#FFA500; } #voltar{ font-size: 35px; color: #ffffff; } figure{ position: relative; border: 8px solid white; box-shadow: 1px 1px 5px black; color: blue; text-decoration: underline; } figure img{ width: 15vw; height: 15vw; } p{ text-align: center; text-indent: 50px; } figure figcaption .desc { opacity: 0; position: absolute; top: 0px; background-color: rgba(0,0,0,.4); color: #ffffff; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; font-size: 1.5vw; } .desc:hover{ opacity: 1; } table, tfoot{ border:solid 1px #0000ff; padding:3vw; color: #ffffff; margin-left: 3vw; } #empre{ color:white; text-align: center; font-size: 1vw; margin-left:0; } caption{ font-size:2vw; color:#000000; margin-left: 5vw; } colgroup{ background:#F60; } table{ margin-left: 19vw; } tr, th, td{ border-collapse:collapse; border-width:2px; border-style:solid; border-color:#0000FF; width:225px; text-align:center; margin-left: 29vw; } img{ width: 300px; height: 300px; } #voltar{ color:#000000; } article{ width:100%; float:left; background-color:#ffff; } #autoria{ text-align: center; float: center; font-size: 1vw; } footer{ background-color:#0054a6; padding:7%; color: white; }
0.334155
0.076408
caption, th, td { text-align: right; } .navigation .nav-links .nav-next a { padding-right: 15px; padding-left: 25px; } textarea { padding-right: 3px; } .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus { right: 5px; } .alignleft { float: right; margin-left: 15px; } .alignright { float: left; margin-right: 15px; } article.hentry .entry-footer>span { margin: 0 20px 0 14px; } .nav-links .nav-previous { margin-left: 2%; margin-right: auto; } .nav-links .nav-next { text-align: left; } .nav-links .nav-previous a:before { margin-left: 5px; right: 10px; } .nav-links .nav-next a:after { margin-right: 5px; left: 10px; } .entry-thumbnail { float: right; } .entry-exrecpt { float: left; } .short-content+.bttn { float: left; } .entry-content .gallery { margin-right: -2%; } .gallery-item { margin-right: 2%; } .gallery-caption { right: 0; background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) repeat scroll right 0; text-align: right; } .comments-area ol.children { margin: 0 15px 0 0; } .comment-author img { margin-left: 15px; } .comment-metadata { padding-right: 50px; } .comment-metadata a time { padding-left: 10px; } .comment-content { padding-right: 50px; } .commentmetadata { float: left; } .reply .comment-reply-link { background: none repeat scroll right 0; } #cancel-comment-reply-link:before { margin: 0 20px 0 5px; } .woocommerce .price-cart { padding: 0 10px 0 0; } .woocommerce .price-cart:after { right: 0; } .woocommerce ul.products li.product .price-cart .button { float: left; padding-right: 30px; } .woocommerce ul.products li.product .price del { margin-left: 10px; } .woocommerce ul.products li.product .price-cart .price { float: right; } .woocommerce ul.products li.product .onsale, .woocommerce span.onsale { right: -33px; left: auto; } .woocommerce span.onsale { right: 0; } .woocommerce .woocommerce-info, .woocommerce .woocommerce-message { padding: 16px 50px 16px 20px; } .woocommerce .product-categories .children { padding-right: 20px; } .woocommerce div.product p.price del { float: right; margin-left: 15px; } .woocommerce table.shop_table td, .woocommerce table.shop_table th, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th { border-left: none; } .woocommerce .shop_table tbody tr td:first-child, .woocommerce .shop_table thead tr th.product-remove, .woocommerce table.shop_table tfoot td:first-child, .woocommerce table.shop_table tfoot th:first-child { border-right: medium; } .woocommerce div.product form.cart .button { padding: 8px 10px 8px 40px; margin-right: 10px; } .woocommerce .single_add_to_cart_button:after, .woocommerce .woocommerce-notices-wrapper a.button:after { left: -8px; } .woocommerce .single_add_to_cart_button:after { left: 12px; right: auto; } .woocommerce div.product .woocommerce-tabs ul.tabs { text-align: right; } .woocommerce div.product .woocommerce-tabs ul.tabs li { margin-left: 10px; margin-right: 0; } .widget_rss .rss-widget-icon { margin-left: 10px; } .widget_rss cite { margin-right: 16px; } .widget_rss cite::after { right: -12px; } .widget_product_categories a, .widget_archive a, .widget_categories a, .widget_recent_entries a, .widget_meta a, .widget_recent_comments li, .widget_rss li, .widget_pages li a, .widget_nav_menu li a { margin-right: 24px; margin-left: 12px; } .widget_nav_menu li .sub-menu a { margin-right: 0; } .widget_product_categories a:before, .widget_archive a::before, .widget_categories a::before, .widget_recent_entries a::before, .widget_meta a::before, .widget_recent_comments li::before, .widget_rss li:before, .widget_pages li a:before, .widget_nav_menu li a:before { right: -23px; } .widget_search .search-field { float: right; } .widget_recent_entries .post-date { padding-right: 24px; } .widget_nav_menu .sub-menu { margin: 10px 10px 0 0; } .widget-title::after { right: 0; } .widget_nav_menu .sub-menu, .widget_nav_menu .children { right: 0; margin-right: 0; } .widget_nav_menu .sub-menu ul, .widget_nav_menu .children ul { left: -100%; right: auto; } .widget_nav_menu ul li.menu-item-has-children { margin-left: 0; } .widget_nav_menu li.menu-item-has-children>a::after, .widget_nav_menu li.page_item_has_children>a::after { left: 0; } .widget_nav_menu .sub-menu li.menu-item-has-children>a::after, .widget_nav_menu .children li.page_item_has_children>a::after { left: 15px; } .widget_nav_menu li.menu-item-has-children>a, .widget_nav_menu li.page_item_has_children>a { padding-left: 15px; } .widget_nav_menu .sub-toggle { left: 0px; } #primary, .home.blog #primary { float: right; } #secondary, .home.blog #secondary { float: left; } .left-sidebar #primary { float: left; } .left-sidebar #secondary { float: right; } body.site--boxed-layout { background: #ececec none repeat scroll right 0; } .tags-links:before, .cat-links::before, .comments-link a::before, .edit-link a::before { margin-left: 5px; right: -20px; } .top-header-elements { float: right; margin-right: 18px; } #top-menu li { margin-right: 10px; } .top-header-elements i { margin-left: 8px; } .menu-top-menu-container::after { right: -2px; } .site-branding-toggle-wrapper { float: right; } .sticky-sidebar-icon::before, .sticky-sidebar-icon::after { right: 0; } .site-branding { margin-left: -4px; } #site-navigation { float: right; } .header-site-info-wrap { float: left; } #site-navigation ul li a .menu-item-description { left: -30px; right: auto; } #site-navigation .menu-item-description::after { right: 0; border-width: 3px 0 0 3px; border-color: #ED6D23 transparent transparent transparent; } #masthead .primary-menu-wrap, #masthead .menu-toggle { float: right; } #site-navigation li.menu-item-has-children>a::after, #site-navigation li.page_item_has_children>a::after { left: auto; right: 0; } #masthead #primary-menu li.menu-item-has-children, #masthead #primary-menu li.page_item_has_children { margin-left: 0; } #site-navigation ul#primary-menu>li.menu-item-has-children>a, #site-navigation #primary-menu ul>li.page_item_has_children>a { padding-left: 35px; padding-right: 15px; } #site-navigation ul li .sub-menu, #site-navigation ul li .children { text-align: right; right: 0; } #site-navigation ul li .sub-menu ul, #site-navigation ul li .children ul { right: 100%; } #site-navigation ul li .sub-menu li a, #site-navigation ul li .children li a { border-left: none; } .sticky-sidebar-content-wrapper { left: -100px; } .sticky-sidebar-content-wrapper.header-sidebar-active { left: 0; } .main-category-list-title { float: right; } .shopay-cat-menu.deactivate-menu { right: 0; } .main-category-list-title i { margin-right: 10px; } .header-search-form-wrap { float: right; } .header-woo-links-wrap { float: left; } #site-header-cart li { float: right; margin-right: 10px; padding-right: 5px; } #search-bar-section .site-header-cart:hover .widget_shopping_cart, #search-bar-section .site-header-cart.focus .widget_shopping_cart:hover { left: 0; right: auto; } .header-search-form-wrap .search-submit, .sm_search_form #searchsubmit { margin-right: -5px; } .search-wrap .sm_search_wrap { left: 11%; right: auto; } #search-bar-section .woocommerce-mini-cart-item a { padding-right: 20px; } #search-bar-section .woocommerce.widget_shopping_cart .woocommerce-mini-cart.cart_list li a.remove { padding-right: 0; } #search-bar-section .widget_shopping_cart .woocommerce-mini-cart .quantity { padding-right: 20px; } #site-header-cart li.woocommerce-mini-cart-item { margin-right: 0; } .shopay-whishlist { float: right; margin-right: 10px; } .count { margin-left: 10px; } .count::after { left: -7px; } .slide-content-wrap { right: 0; } .slider-content { padding-right: 50px; } .slider-featured-section .featured-section { float: right; } .featured-image-content { right: 20px; } .featured-image-content.featured-image-content-two { left: auto; right: 5%; } .shopay-slider-section .slider-featured-section.slider-featured-left { float: left; width: 22%; margin-right: 3%; padding-right: 0; } .shopay-slider-section .slider-featured-section.slider-featured-left .section-title { text-align: right; } .product-categories .children { right: 0; margin-right: 0; padding-right: 8px; } .product-categories .children li .sub-toggle { left: 14px; } .product-categories .children .children { margin-right: 0; } .product-categories .sub-toggle, #primary-menu .sub-toggle { left: 0px; right: auto; } .widget .product-categories .sub-toggle, .widget .product-categories .children li .sub-toggle { right: auto; } .widget .product-categories .sub-toggle .fa-angle-right, .widget .product-categories .children li .sub-toggle .fa-angle-right, .product-categories .sub-toggle .fa-angle-right, #primary-menu .sub-toggle .fa-angle-right { transform: rotate(180deg); -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -o-transform: rotate(180deg); } .widget .product-categories .children li .sub-toggle { top: 6px; } #primary-menu .sub-toggle { margin-left: 10px; } .shopay_category_collection .section-title-control-wrapper { float: right; margin-left: 1%; margin-right: auto; } .shopay_category_collection .section-title-control-wrapper .categorySlider-controls__prev { float: left; margin-left: 110px; } .shopay_category_collection .section-title { text-align: right; } .category-collection-wrap { float: right; } .section-title-control-wrapper span { margin-left: 12px; } .pfc-wrap .category-titles-wrap li a::after { left: -18px; right:auto; } .pfc-wrap .category-titles-wrap { margin: 0px auto 40px auto; } .button.yith-wcqv-button { right: 50% !important; } .woocommerce ul.products .star-rating, .related.products .star-rating, .latest-products-wrap .star-rating, .category-products-wrap .star-rating, .shopay_product_filterby_category .star-rating { right: 10px; } .woocommerce .yith-wcwl-add-button a, .product-btns-wrap a { text-align: right; } .woocommerce .yith-wcwl-add-button a.add_to_wishlist:after, .product-btns-wrap a.added_to_cart:after, .product-btns-wrap a.wishlist-button:after, .product-btns-wrap a.add_to_cart_button::after { left: 8px; right: auto; } .product-thumbnail-wrap::after { right: 0; } .services-wrap li { margin-left: -4px; } .services-item i { margin-left: 12px; } .shopay_category_products .category-products-wrap li { margin-right: 3%; margin-left: -4px; } .shopay_category_products .category-products-wrap { margin-right: -3%; } .shopay_category_products .shopay-category-products-section .product-btns-wrap a:after, .shopay_category_products .shopay-category-products-section .product-btns-wrap a { padding-right: 10px; padding-left: 0; } .shopay-image-figure-wrapper { float: right; } .latest-products-wrap { float: left; } .latest-products-wrap li { margin-right: 5%; margin-left: -4px; } .blog-posts-wrap article { float: right; margin-right: 3%; margin-left: auto; } .blog-posts-wrap { margin-right: -3%; margin-left:auto; } .shopay_default_posts .post-author { float: right; padding: 0 10px 10px 10px 10px; } .shopay_default_posts .post-elements { margin-right: 2%; float: left; } .shopay_default_posts .entry-content p { margin: 8px 0 0 0; } .shopay_default_posts .posted-on { margin-left: 20px; } .shopay_default_posts .posted-on::after { left: -11px; right: auto; } .post-elements { padding-right: 20px; } .post-elements::before { right: -2%; border-right: 2px dashed #eee; border-left:none; } .home.page #page { background: #f5f5f5 none repeat scroll right 0; } .home.page article { padding: 34px 0 28px 0; } .blog .entry-meta { left: 0; padding-right: 0; } .blog .entry-meta span { margin-left: 15px; } .blog .no-thumbnail .entry-meta { text-align: right; } .blog .no-thumbnail .entry-meta span { margin-left: 15px; } .home .price del { margin-left: 10px; margin-right: auto; } .footer-widget-wrapper { margin-right: -3%; } .footer-widget--one-column .footer-widget, .footer-widget--two-column .footer-widget, .footer-widget--three-column .footer-widget, .footer-widget--four-column .footer-widget, .footer-widget--five-column .footer-widget { margin-right: 3%; margin-left: auto; } .footer-content-wrap { padding: 40px 0 0 0; } .footer-description { padding: 0 0 20px 0; } .footer-social-media-section .follow-us-icon { margin-left: 18px; margin-right: auto; } .footer-social-media-section .follow-us-icon:last-child { margin-left: 0; } .footer-social-media-section { margin: 10px 0 10px 0; } .single .edit-link { margin-right: 32px; } .post .entry-meta .posted-on:before { padding-left: 5px; } .blog .entry-meta span, .archive .entry-meta span { padding-left: 20px; } .edit-link .post-edit-link { display: inline-block; } .search-article-wrapper article { margin-right: 3%; margin-left: -4px; } .search-article-wrapper article.post, .search-article-wrapper article.page { text-align: right; } .search-article-wrapper article .entry-footer .cat-links { margin-right: 0; } .error404 .page-content input[type="search"], .search-no-results .page-content input[type="search"] { margin-left: -5px; } #shopay-scroll-to-top { left: 40px; } .highlight-content-wrap { padding-right: 12px; padding-left: 0; text-align: right; } .breadcrumb-trail ul.trail-items .trail-item { padding-left: 5px; } .single-post .entry-meta span { margin-left: 20px; margin-right:auto; } .single-post .posted-on { margin-left: 20px; } .single-post .posted-on:before { padding-left: 5px; } .single-post .byline:before { padding-left: 5px; } .page .wc-block-grid .wc-block-grid__product { text-align: right; } .page .wc-block-grid .wc-block-grid__product .wc-block-grid__product-onsale { left: -33px; } .page .wc-block-grid .add_to_cart_button { margin-left: 1%; } .page .wc-block-grid .add_to_cart_button, .page .wc-block-grid .added_to_cart { text-align: right; } .page .wc-block-grid .add_to_cart_button:after, .page .wc-block-grid .added_to_cart:after { left: 8px; } .woocommerce table.shop_table td:last-child { border-left: 1px solid #eee; } .woocommerce .shop_table tbody tr td:first-child { border-right: 1px solid #eee; } .highlight-products-section-content { direction: ltr; } .highlight-product-wrap { display: inline-flex; flex-direction: row-reverse; } @media (max-width:980px) { #site-navigation #primary-menu li.menu-item-has-children .sub-menu li { text-align: right; padding-right: 40px; } #masthead .menu-toggle i { padding-left: 7px; } } @media (max-width:1400px) { .shopay_category_collection .section-title-control-wrapper .categorySlider-controls__prev { margin-left: 80px; } }
wp-content/themes/shopay/rtl.css
caption, th, td { text-align: right; } .navigation .nav-links .nav-next a { padding-right: 15px; padding-left: 25px; } textarea { padding-right: 3px; } .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus { right: 5px; } .alignleft { float: right; margin-left: 15px; } .alignright { float: left; margin-right: 15px; } article.hentry .entry-footer>span { margin: 0 20px 0 14px; } .nav-links .nav-previous { margin-left: 2%; margin-right: auto; } .nav-links .nav-next { text-align: left; } .nav-links .nav-previous a:before { margin-left: 5px; right: 10px; } .nav-links .nav-next a:after { margin-right: 5px; left: 10px; } .entry-thumbnail { float: right; } .entry-exrecpt { float: left; } .short-content+.bttn { float: left; } .entry-content .gallery { margin-right: -2%; } .gallery-item { margin-right: 2%; } .gallery-caption { right: 0; background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) repeat scroll right 0; text-align: right; } .comments-area ol.children { margin: 0 15px 0 0; } .comment-author img { margin-left: 15px; } .comment-metadata { padding-right: 50px; } .comment-metadata a time { padding-left: 10px; } .comment-content { padding-right: 50px; } .commentmetadata { float: left; } .reply .comment-reply-link { background: none repeat scroll right 0; } #cancel-comment-reply-link:before { margin: 0 20px 0 5px; } .woocommerce .price-cart { padding: 0 10px 0 0; } .woocommerce .price-cart:after { right: 0; } .woocommerce ul.products li.product .price-cart .button { float: left; padding-right: 30px; } .woocommerce ul.products li.product .price del { margin-left: 10px; } .woocommerce ul.products li.product .price-cart .price { float: right; } .woocommerce ul.products li.product .onsale, .woocommerce span.onsale { right: -33px; left: auto; } .woocommerce span.onsale { right: 0; } .woocommerce .woocommerce-info, .woocommerce .woocommerce-message { padding: 16px 50px 16px 20px; } .woocommerce .product-categories .children { padding-right: 20px; } .woocommerce div.product p.price del { float: right; margin-left: 15px; } .woocommerce table.shop_table td, .woocommerce table.shop_table th, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th { border-left: none; } .woocommerce .shop_table tbody tr td:first-child, .woocommerce .shop_table thead tr th.product-remove, .woocommerce table.shop_table tfoot td:first-child, .woocommerce table.shop_table tfoot th:first-child { border-right: medium; } .woocommerce div.product form.cart .button { padding: 8px 10px 8px 40px; margin-right: 10px; } .woocommerce .single_add_to_cart_button:after, .woocommerce .woocommerce-notices-wrapper a.button:after { left: -8px; } .woocommerce .single_add_to_cart_button:after { left: 12px; right: auto; } .woocommerce div.product .woocommerce-tabs ul.tabs { text-align: right; } .woocommerce div.product .woocommerce-tabs ul.tabs li { margin-left: 10px; margin-right: 0; } .widget_rss .rss-widget-icon { margin-left: 10px; } .widget_rss cite { margin-right: 16px; } .widget_rss cite::after { right: -12px; } .widget_product_categories a, .widget_archive a, .widget_categories a, .widget_recent_entries a, .widget_meta a, .widget_recent_comments li, .widget_rss li, .widget_pages li a, .widget_nav_menu li a { margin-right: 24px; margin-left: 12px; } .widget_nav_menu li .sub-menu a { margin-right: 0; } .widget_product_categories a:before, .widget_archive a::before, .widget_categories a::before, .widget_recent_entries a::before, .widget_meta a::before, .widget_recent_comments li::before, .widget_rss li:before, .widget_pages li a:before, .widget_nav_menu li a:before { right: -23px; } .widget_search .search-field { float: right; } .widget_recent_entries .post-date { padding-right: 24px; } .widget_nav_menu .sub-menu { margin: 10px 10px 0 0; } .widget-title::after { right: 0; } .widget_nav_menu .sub-menu, .widget_nav_menu .children { right: 0; margin-right: 0; } .widget_nav_menu .sub-menu ul, .widget_nav_menu .children ul { left: -100%; right: auto; } .widget_nav_menu ul li.menu-item-has-children { margin-left: 0; } .widget_nav_menu li.menu-item-has-children>a::after, .widget_nav_menu li.page_item_has_children>a::after { left: 0; } .widget_nav_menu .sub-menu li.menu-item-has-children>a::after, .widget_nav_menu .children li.page_item_has_children>a::after { left: 15px; } .widget_nav_menu li.menu-item-has-children>a, .widget_nav_menu li.page_item_has_children>a { padding-left: 15px; } .widget_nav_menu .sub-toggle { left: 0px; } #primary, .home.blog #primary { float: right; } #secondary, .home.blog #secondary { float: left; } .left-sidebar #primary { float: left; } .left-sidebar #secondary { float: right; } body.site--boxed-layout { background: #ececec none repeat scroll right 0; } .tags-links:before, .cat-links::before, .comments-link a::before, .edit-link a::before { margin-left: 5px; right: -20px; } .top-header-elements { float: right; margin-right: 18px; } #top-menu li { margin-right: 10px; } .top-header-elements i { margin-left: 8px; } .menu-top-menu-container::after { right: -2px; } .site-branding-toggle-wrapper { float: right; } .sticky-sidebar-icon::before, .sticky-sidebar-icon::after { right: 0; } .site-branding { margin-left: -4px; } #site-navigation { float: right; } .header-site-info-wrap { float: left; } #site-navigation ul li a .menu-item-description { left: -30px; right: auto; } #site-navigation .menu-item-description::after { right: 0; border-width: 3px 0 0 3px; border-color: #ED6D23 transparent transparent transparent; } #masthead .primary-menu-wrap, #masthead .menu-toggle { float: right; } #site-navigation li.menu-item-has-children>a::after, #site-navigation li.page_item_has_children>a::after { left: auto; right: 0; } #masthead #primary-menu li.menu-item-has-children, #masthead #primary-menu li.page_item_has_children { margin-left: 0; } #site-navigation ul#primary-menu>li.menu-item-has-children>a, #site-navigation #primary-menu ul>li.page_item_has_children>a { padding-left: 35px; padding-right: 15px; } #site-navigation ul li .sub-menu, #site-navigation ul li .children { text-align: right; right: 0; } #site-navigation ul li .sub-menu ul, #site-navigation ul li .children ul { right: 100%; } #site-navigation ul li .sub-menu li a, #site-navigation ul li .children li a { border-left: none; } .sticky-sidebar-content-wrapper { left: -100px; } .sticky-sidebar-content-wrapper.header-sidebar-active { left: 0; } .main-category-list-title { float: right; } .shopay-cat-menu.deactivate-menu { right: 0; } .main-category-list-title i { margin-right: 10px; } .header-search-form-wrap { float: right; } .header-woo-links-wrap { float: left; } #site-header-cart li { float: right; margin-right: 10px; padding-right: 5px; } #search-bar-section .site-header-cart:hover .widget_shopping_cart, #search-bar-section .site-header-cart.focus .widget_shopping_cart:hover { left: 0; right: auto; } .header-search-form-wrap .search-submit, .sm_search_form #searchsubmit { margin-right: -5px; } .search-wrap .sm_search_wrap { left: 11%; right: auto; } #search-bar-section .woocommerce-mini-cart-item a { padding-right: 20px; } #search-bar-section .woocommerce.widget_shopping_cart .woocommerce-mini-cart.cart_list li a.remove { padding-right: 0; } #search-bar-section .widget_shopping_cart .woocommerce-mini-cart .quantity { padding-right: 20px; } #site-header-cart li.woocommerce-mini-cart-item { margin-right: 0; } .shopay-whishlist { float: right; margin-right: 10px; } .count { margin-left: 10px; } .count::after { left: -7px; } .slide-content-wrap { right: 0; } .slider-content { padding-right: 50px; } .slider-featured-section .featured-section { float: right; } .featured-image-content { right: 20px; } .featured-image-content.featured-image-content-two { left: auto; right: 5%; } .shopay-slider-section .slider-featured-section.slider-featured-left { float: left; width: 22%; margin-right: 3%; padding-right: 0; } .shopay-slider-section .slider-featured-section.slider-featured-left .section-title { text-align: right; } .product-categories .children { right: 0; margin-right: 0; padding-right: 8px; } .product-categories .children li .sub-toggle { left: 14px; } .product-categories .children .children { margin-right: 0; } .product-categories .sub-toggle, #primary-menu .sub-toggle { left: 0px; right: auto; } .widget .product-categories .sub-toggle, .widget .product-categories .children li .sub-toggle { right: auto; } .widget .product-categories .sub-toggle .fa-angle-right, .widget .product-categories .children li .sub-toggle .fa-angle-right, .product-categories .sub-toggle .fa-angle-right, #primary-menu .sub-toggle .fa-angle-right { transform: rotate(180deg); -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -o-transform: rotate(180deg); } .widget .product-categories .children li .sub-toggle { top: 6px; } #primary-menu .sub-toggle { margin-left: 10px; } .shopay_category_collection .section-title-control-wrapper { float: right; margin-left: 1%; margin-right: auto; } .shopay_category_collection .section-title-control-wrapper .categorySlider-controls__prev { float: left; margin-left: 110px; } .shopay_category_collection .section-title { text-align: right; } .category-collection-wrap { float: right; } .section-title-control-wrapper span { margin-left: 12px; } .pfc-wrap .category-titles-wrap li a::after { left: -18px; right:auto; } .pfc-wrap .category-titles-wrap { margin: 0px auto 40px auto; } .button.yith-wcqv-button { right: 50% !important; } .woocommerce ul.products .star-rating, .related.products .star-rating, .latest-products-wrap .star-rating, .category-products-wrap .star-rating, .shopay_product_filterby_category .star-rating { right: 10px; } .woocommerce .yith-wcwl-add-button a, .product-btns-wrap a { text-align: right; } .woocommerce .yith-wcwl-add-button a.add_to_wishlist:after, .product-btns-wrap a.added_to_cart:after, .product-btns-wrap a.wishlist-button:after, .product-btns-wrap a.add_to_cart_button::after { left: 8px; right: auto; } .product-thumbnail-wrap::after { right: 0; } .services-wrap li { margin-left: -4px; } .services-item i { margin-left: 12px; } .shopay_category_products .category-products-wrap li { margin-right: 3%; margin-left: -4px; } .shopay_category_products .category-products-wrap { margin-right: -3%; } .shopay_category_products .shopay-category-products-section .product-btns-wrap a:after, .shopay_category_products .shopay-category-products-section .product-btns-wrap a { padding-right: 10px; padding-left: 0; } .shopay-image-figure-wrapper { float: right; } .latest-products-wrap { float: left; } .latest-products-wrap li { margin-right: 5%; margin-left: -4px; } .blog-posts-wrap article { float: right; margin-right: 3%; margin-left: auto; } .blog-posts-wrap { margin-right: -3%; margin-left:auto; } .shopay_default_posts .post-author { float: right; padding: 0 10px 10px 10px 10px; } .shopay_default_posts .post-elements { margin-right: 2%; float: left; } .shopay_default_posts .entry-content p { margin: 8px 0 0 0; } .shopay_default_posts .posted-on { margin-left: 20px; } .shopay_default_posts .posted-on::after { left: -11px; right: auto; } .post-elements { padding-right: 20px; } .post-elements::before { right: -2%; border-right: 2px dashed #eee; border-left:none; } .home.page #page { background: #f5f5f5 none repeat scroll right 0; } .home.page article { padding: 34px 0 28px 0; } .blog .entry-meta { left: 0; padding-right: 0; } .blog .entry-meta span { margin-left: 15px; } .blog .no-thumbnail .entry-meta { text-align: right; } .blog .no-thumbnail .entry-meta span { margin-left: 15px; } .home .price del { margin-left: 10px; margin-right: auto; } .footer-widget-wrapper { margin-right: -3%; } .footer-widget--one-column .footer-widget, .footer-widget--two-column .footer-widget, .footer-widget--three-column .footer-widget, .footer-widget--four-column .footer-widget, .footer-widget--five-column .footer-widget { margin-right: 3%; margin-left: auto; } .footer-content-wrap { padding: 40px 0 0 0; } .footer-description { padding: 0 0 20px 0; } .footer-social-media-section .follow-us-icon { margin-left: 18px; margin-right: auto; } .footer-social-media-section .follow-us-icon:last-child { margin-left: 0; } .footer-social-media-section { margin: 10px 0 10px 0; } .single .edit-link { margin-right: 32px; } .post .entry-meta .posted-on:before { padding-left: 5px; } .blog .entry-meta span, .archive .entry-meta span { padding-left: 20px; } .edit-link .post-edit-link { display: inline-block; } .search-article-wrapper article { margin-right: 3%; margin-left: -4px; } .search-article-wrapper article.post, .search-article-wrapper article.page { text-align: right; } .search-article-wrapper article .entry-footer .cat-links { margin-right: 0; } .error404 .page-content input[type="search"], .search-no-results .page-content input[type="search"] { margin-left: -5px; } #shopay-scroll-to-top { left: 40px; } .highlight-content-wrap { padding-right: 12px; padding-left: 0; text-align: right; } .breadcrumb-trail ul.trail-items .trail-item { padding-left: 5px; } .single-post .entry-meta span { margin-left: 20px; margin-right:auto; } .single-post .posted-on { margin-left: 20px; } .single-post .posted-on:before { padding-left: 5px; } .single-post .byline:before { padding-left: 5px; } .page .wc-block-grid .wc-block-grid__product { text-align: right; } .page .wc-block-grid .wc-block-grid__product .wc-block-grid__product-onsale { left: -33px; } .page .wc-block-grid .add_to_cart_button { margin-left: 1%; } .page .wc-block-grid .add_to_cart_button, .page .wc-block-grid .added_to_cart { text-align: right; } .page .wc-block-grid .add_to_cart_button:after, .page .wc-block-grid .added_to_cart:after { left: 8px; } .woocommerce table.shop_table td:last-child { border-left: 1px solid #eee; } .woocommerce .shop_table tbody tr td:first-child { border-right: 1px solid #eee; } .highlight-products-section-content { direction: ltr; } .highlight-product-wrap { display: inline-flex; flex-direction: row-reverse; } @media (max-width:980px) { #site-navigation #primary-menu li.menu-item-has-children .sub-menu li { text-align: right; padding-right: 40px; } #masthead .menu-toggle i { padding-left: 7px; } } @media (max-width:1400px) { .shopay_category_collection .section-title-control-wrapper .categorySlider-controls__prev { margin-left: 80px; } }
0.539226
0.139367
button, .pointer { cursor: pointer; } .btn-outline-primary{ color: #238193!important; border-color: #238193!important; } .btn-outline-primary:hover{ color: white!important; background-color: #238193!important; } /* code element styling */ code { color: black; } /* p element styling */ p { font-family: 'Barlow', sans-serif; } /* html and body element styling */ html, body { max-width: 100%; overflow-x: hidden; background: url("../images/background.jpg") fixed no-repeat; background-color: transparent; background-size: cover; } /* ------------------------------------------- NAVBAR */ /* class 'navbar' */ .navbar{ background: white; display: flex; padding: 1rem; } /* Styles navbars with ALL of these classes => MAIN NAVBAR */ .navbar.navbar-expand-lg.navbar-light.bg-light.fixed-top{ background: white; height: 9%; position: sticky; top: 0; right: 0; left: 0; } /* --------------------LOGO */ .logo-link{ display: flex; height: 50px; width: 50px; } /* image inside 'logo-link' */ .logo { object-fit: contain; object-position: center; height: 50px; width: 50px; } /* --------------------RSVP BUTTON */ .btn--rsvp { display: flex; flex-flow: row nowrap; justify-content: space-evenly; width: 170px; height: 45px; border: 2px solid #238193; border-radius: .5rem; font-weight: 700; color: #238193; transition: .35s; } .btn--rsvp:hover { color: rgba(255, 255, 255, 0.92); background-color: #238193; } .btn-left { width: 39%; height: 100%; display: flex; align-items: center; justify-items: center; text-align: center; } .btn-spacer { display: flex; align-self: center; justify-self: center; justify-items: center; text-align: center; width: 1%; height: 20px; background-color: #238193; transition: .35s; } .btn--rsvp:hover > .btn-spacer { background-color: rgba(255, 255, 255, 0.92) !important; } .btn-right { width: 60%; height: 100%; display: flex; align-items: center; justify-items: center; text-align: center; } .jan, .dd { transition: .35s; text-align: center; width: 100%; align-content: center; } /* Adds margin to the right side of all Navbar list items */ .nav-spacing { margin-right: 2em; } .cohort42{ display: flex; justify-content: center; align-content: center; width: 15%; } .cohort42-text { color: #238193; display: flex; flex-flow: row nowrap; justify-self: center; align-self: center; text-align: center; min-width: 145px; } /* space between rsvp btn and nav links */ .top-nav-spacer { width: 20%; height: 100%; } .image-spacer { width: 100%; height: 9%; } /* selects the image element inside of the jumbotron div */ .group-pic-wrapper img{ object-fit: cover; object-position: center; } .lil-nav-wrapper { width: 100%; height: 5%; } .lil-nav-wrapper.devs { margin-bottom: 1rem; } .lil-nav-wrapper.tech { margin-bottom: 3rem; } .lil-nav-wrapper.thanks { margin: 3rem 0rem; } .lil-nav-wrapper.footer { margin-top: 3rem; } /* id to override styling on smaller navbars */ #jumbheader{ box-shadow: 2px 2px 2px rgb(167, 166, 166); background-color: #238193!important; color: lightgray; } .header-text{ margin: 0 auto; font-weight: bold; height: 50px; color: white; } .modal-title, .modal-header { display: flex; flex-flow: row nowrap; justify-items: center; text-align: center; } .invisible { visibility:hidden; } .student-name-modal { display: flex; width: 80%; justify-items: center; } .navbar.navbar-light.bg-light.footer{ margin-top:10px; font-size: 1em; background-color: #238193!important; color: white; } #demo-date { text-align: center; } #demo-date a { color: #238193!important; } button{ cursor: pointer; } .btn-outline-primary{ color: #238193!important; border-color: #238193!important; } .btn-outline-primary:hover{ color: white!important; background-color: #238193!important; } /* adjusts size of contact icons depending on size of card */ @media (min-width: 992px) and (max-width: 1200px){ .fa-3x{ font-size: 2.5em!important; } } @media (min-width: 768px) and (max-width: 991px){ .fa-3x{ font-size: 2em!important; } } @media (max-width: 900px) { .jumbotron.jumbotron-fluid img{ background: white; margin-top: 10%; padding-top: 1rem; } .jumbotron.jumbotron-fluid.sm-width{ width: 100%; margin-top: 10%; padding-top: none; } .header-text{ margin: 0 auto; height: 30px; } .header-text h2{ font-size: 1.5em; margin-top: -10px; } .modal-body{ display: block; } .modal-content { width: 100%; } .modal-body img{ width: 100%; } main { margin-bottom: 100px; margin-top: -50px; width: 100% } .navbar-brand img{ padding-right: none; } } /* -------------------Styling for RSVP Button */ .btn--rsvp { font-weight: 700; border: 2px solid rgba(33, 37, 41, 0.95); color: rgba(33, 37, 41, 0.95) !important; border-radius: 5px; text-align: center; vertical-align: center; width: 170px; height: 44px; transition: .35s; cursor: pointer; display: flex; justify-self: right; align-self: right; text-align: right; vertical-align: middle; } main { display: flex; flex-flow: column nowrap; width: 100%; overflow-y: hidden; overflow-x: hidden; } .inner-main { display: flex; flex-flow: row nowrap; width: 100% } .inner-main.thankyous, .inner-main.technology { margin-top: 3rem; } .right-spacer-main, .left-spacer-main { width: 10%; } .container { width: 80%; } .row { justify-content: space-evenly; padding: 0; } .navbar-collapse { justify-content: flex-end; font-weight: bold; text-transform: uppercase; } /* Student Card */ .col-md-3.cohortMems{ display: flex; flex-flow: column nowrap; justify-content: space-evenly; align-content: center; border: 1px solid lightgray; border-radius: .5rem; box-shadow: 2px 2px 2px lightgray; margin: 2%; margin-bottom: 5%; background: white; min-width: 235px; max-width: 300px; } .col-sm-2.technologies{ border: none; border-radius: none; box-shadow: none; } .technos, .words{ margin-top: -55px; background: white; padding:20px; border-radius: 20px; } .techs{ width: 70px; margin: 20px 0px; } .words{ padding:50px; } .no-gutters { margin-right: 0; margin-left: 0; } .card-img-top{ border-top-left-radius: 10px; border-top-right-radius: 10px; } .col, [class*="col-"] { padding-right: 0; padding-left: 0; } .modal-body{ display: block; } .studentContact{ text-align: center; display: flex; justify-content: space-evenly; -webkit-justify-content: space-evenly; margin-bottom: .75rem; } .contactIcons{ color: #238193; } .contactIcons:hover{ transform: scale(1.2); } /* -------------------------------------- "COME SEE OUR DEMO" LINK */ /* aligns text center */ .demo-date { text-align: center; } /* styles hyperlink text */ .demo-date__link { color: #238193 !important; text-decoration: none !important; transition: .35s; } /* changes hyperlink text color on hover over demo-date element */ .demo-date:hover > .demo-date__link { color: #0f5d6d !important; } /* -------------------------ICON SIZE @ 992px - 1200px - Full Screen*/ @media (min-width: 992px) and (max-width: 1200px){ .fa-3x{ font-size: 2.5em!important; } } /* -------------------------ICON SIZE @ 768px - 991px - Full Screen*/ @media (min-width: 768px) and (max-width: 991px){ .fa-3x{ font-size: 1.5em!important; } } /* -------------------------------------------------- 900px */ @media (max-width: 900px) { .header-text{ margin: 0 auto; height: 30px; } .header-text h2{ font-size: 1.5em; margin-top: -10px; } .modal-body{ display: block; } .modal-body img{ width: 100%; } .modal-content { width: 100%; } } .card-body { display: flex; flex-flow: column nowrap; width: 100%; } /* -------------------------------- RESUME BUTTON */ /* */ .resumeHyperlink { text-decoration: none !important; color: #238193!important; } /* breathing room for Download Resume btn */ .resumeDiv, .learnMoreButtonContain { margin-bottom: 1rem; } /* changes hyperlink text color when hovering over btn element */ .resumeButton:hover > .resumeHyperlink { color: white!important; } /* */ .resumeButton, .detailsButton { display: flex; justify-content: center; width: 100%; align-self: flex-end; } /*---------------------------------------- CARD BODY QUOTE */ /* quoted text aligns left */ .quote { text-align: left; } /* moves the by line to the right side of the card */ .whosaidthat { display: flex; justify-content: flex-end; align-content: flex-start; text-align: right; } /* italicizes citations */ .cite { font-style: italic; } /* scoots the by line a little to the left */ .scoot { margin-right: 1.5rem; } /* ----------------------------------------- MODAL INFO*/ /* modal header - contains name and close btn*/ .modal-header{ background-color: lightgray!important; color: #238193; display: flex; } /* student name inside modal header */ .student-name-modal { display: flex; justify-content: center; align-contetnt: center; } /* img inside modal -----------FUN IMG */ .modal-body img{ width: 50%; height: 50%; box-shadow: 3px 3px 5px #cacaca; border-radius: 10px; } /* breating room for the back button */ .backButton{ margin-bottom: 1rem; } /* -------- BIO */ .bioContainer { display: flex; flex-flow: column nowrap; padding: 1rem 2rem; text-align: left; } /* ---------------------------------------------- FOOTER */ .navbar.navbar-light.bg-light.footer{ font-size: 1em; background-color: #238193!important; color: white; display: flex; justify-content: center; align-content: center; } .inner-footer { display: flex; flex-flow: row nowrap; justify-items: center; align-items: center; } .copy { display: flex; width: 100%; text-align: center; } /* --------------------------------------- HIDES SCROLLBAR */ ::-webkit-scrollbar { display: none; }
styles/main.css
button, .pointer { cursor: pointer; } .btn-outline-primary{ color: #238193!important; border-color: #238193!important; } .btn-outline-primary:hover{ color: white!important; background-color: #238193!important; } /* code element styling */ code { color: black; } /* p element styling */ p { font-family: 'Barlow', sans-serif; } /* html and body element styling */ html, body { max-width: 100%; overflow-x: hidden; background: url("../images/background.jpg") fixed no-repeat; background-color: transparent; background-size: cover; } /* ------------------------------------------- NAVBAR */ /* class 'navbar' */ .navbar{ background: white; display: flex; padding: 1rem; } /* Styles navbars with ALL of these classes => MAIN NAVBAR */ .navbar.navbar-expand-lg.navbar-light.bg-light.fixed-top{ background: white; height: 9%; position: sticky; top: 0; right: 0; left: 0; } /* --------------------LOGO */ .logo-link{ display: flex; height: 50px; width: 50px; } /* image inside 'logo-link' */ .logo { object-fit: contain; object-position: center; height: 50px; width: 50px; } /* --------------------RSVP BUTTON */ .btn--rsvp { display: flex; flex-flow: row nowrap; justify-content: space-evenly; width: 170px; height: 45px; border: 2px solid #238193; border-radius: .5rem; font-weight: 700; color: #238193; transition: .35s; } .btn--rsvp:hover { color: rgba(255, 255, 255, 0.92); background-color: #238193; } .btn-left { width: 39%; height: 100%; display: flex; align-items: center; justify-items: center; text-align: center; } .btn-spacer { display: flex; align-self: center; justify-self: center; justify-items: center; text-align: center; width: 1%; height: 20px; background-color: #238193; transition: .35s; } .btn--rsvp:hover > .btn-spacer { background-color: rgba(255, 255, 255, 0.92) !important; } .btn-right { width: 60%; height: 100%; display: flex; align-items: center; justify-items: center; text-align: center; } .jan, .dd { transition: .35s; text-align: center; width: 100%; align-content: center; } /* Adds margin to the right side of all Navbar list items */ .nav-spacing { margin-right: 2em; } .cohort42{ display: flex; justify-content: center; align-content: center; width: 15%; } .cohort42-text { color: #238193; display: flex; flex-flow: row nowrap; justify-self: center; align-self: center; text-align: center; min-width: 145px; } /* space between rsvp btn and nav links */ .top-nav-spacer { width: 20%; height: 100%; } .image-spacer { width: 100%; height: 9%; } /* selects the image element inside of the jumbotron div */ .group-pic-wrapper img{ object-fit: cover; object-position: center; } .lil-nav-wrapper { width: 100%; height: 5%; } .lil-nav-wrapper.devs { margin-bottom: 1rem; } .lil-nav-wrapper.tech { margin-bottom: 3rem; } .lil-nav-wrapper.thanks { margin: 3rem 0rem; } .lil-nav-wrapper.footer { margin-top: 3rem; } /* id to override styling on smaller navbars */ #jumbheader{ box-shadow: 2px 2px 2px rgb(167, 166, 166); background-color: #238193!important; color: lightgray; } .header-text{ margin: 0 auto; font-weight: bold; height: 50px; color: white; } .modal-title, .modal-header { display: flex; flex-flow: row nowrap; justify-items: center; text-align: center; } .invisible { visibility:hidden; } .student-name-modal { display: flex; width: 80%; justify-items: center; } .navbar.navbar-light.bg-light.footer{ margin-top:10px; font-size: 1em; background-color: #238193!important; color: white; } #demo-date { text-align: center; } #demo-date a { color: #238193!important; } button{ cursor: pointer; } .btn-outline-primary{ color: #238193!important; border-color: #238193!important; } .btn-outline-primary:hover{ color: white!important; background-color: #238193!important; } /* adjusts size of contact icons depending on size of card */ @media (min-width: 992px) and (max-width: 1200px){ .fa-3x{ font-size: 2.5em!important; } } @media (min-width: 768px) and (max-width: 991px){ .fa-3x{ font-size: 2em!important; } } @media (max-width: 900px) { .jumbotron.jumbotron-fluid img{ background: white; margin-top: 10%; padding-top: 1rem; } .jumbotron.jumbotron-fluid.sm-width{ width: 100%; margin-top: 10%; padding-top: none; } .header-text{ margin: 0 auto; height: 30px; } .header-text h2{ font-size: 1.5em; margin-top: -10px; } .modal-body{ display: block; } .modal-content { width: 100%; } .modal-body img{ width: 100%; } main { margin-bottom: 100px; margin-top: -50px; width: 100% } .navbar-brand img{ padding-right: none; } } /* -------------------Styling for RSVP Button */ .btn--rsvp { font-weight: 700; border: 2px solid rgba(33, 37, 41, 0.95); color: rgba(33, 37, 41, 0.95) !important; border-radius: 5px; text-align: center; vertical-align: center; width: 170px; height: 44px; transition: .35s; cursor: pointer; display: flex; justify-self: right; align-self: right; text-align: right; vertical-align: middle; } main { display: flex; flex-flow: column nowrap; width: 100%; overflow-y: hidden; overflow-x: hidden; } .inner-main { display: flex; flex-flow: row nowrap; width: 100% } .inner-main.thankyous, .inner-main.technology { margin-top: 3rem; } .right-spacer-main, .left-spacer-main { width: 10%; } .container { width: 80%; } .row { justify-content: space-evenly; padding: 0; } .navbar-collapse { justify-content: flex-end; font-weight: bold; text-transform: uppercase; } /* Student Card */ .col-md-3.cohortMems{ display: flex; flex-flow: column nowrap; justify-content: space-evenly; align-content: center; border: 1px solid lightgray; border-radius: .5rem; box-shadow: 2px 2px 2px lightgray; margin: 2%; margin-bottom: 5%; background: white; min-width: 235px; max-width: 300px; } .col-sm-2.technologies{ border: none; border-radius: none; box-shadow: none; } .technos, .words{ margin-top: -55px; background: white; padding:20px; border-radius: 20px; } .techs{ width: 70px; margin: 20px 0px; } .words{ padding:50px; } .no-gutters { margin-right: 0; margin-left: 0; } .card-img-top{ border-top-left-radius: 10px; border-top-right-radius: 10px; } .col, [class*="col-"] { padding-right: 0; padding-left: 0; } .modal-body{ display: block; } .studentContact{ text-align: center; display: flex; justify-content: space-evenly; -webkit-justify-content: space-evenly; margin-bottom: .75rem; } .contactIcons{ color: #238193; } .contactIcons:hover{ transform: scale(1.2); } /* -------------------------------------- "COME SEE OUR DEMO" LINK */ /* aligns text center */ .demo-date { text-align: center; } /* styles hyperlink text */ .demo-date__link { color: #238193 !important; text-decoration: none !important; transition: .35s; } /* changes hyperlink text color on hover over demo-date element */ .demo-date:hover > .demo-date__link { color: #0f5d6d !important; } /* -------------------------ICON SIZE @ 992px - 1200px - Full Screen*/ @media (min-width: 992px) and (max-width: 1200px){ .fa-3x{ font-size: 2.5em!important; } } /* -------------------------ICON SIZE @ 768px - 991px - Full Screen*/ @media (min-width: 768px) and (max-width: 991px){ .fa-3x{ font-size: 1.5em!important; } } /* -------------------------------------------------- 900px */ @media (max-width: 900px) { .header-text{ margin: 0 auto; height: 30px; } .header-text h2{ font-size: 1.5em; margin-top: -10px; } .modal-body{ display: block; } .modal-body img{ width: 100%; } .modal-content { width: 100%; } } .card-body { display: flex; flex-flow: column nowrap; width: 100%; } /* -------------------------------- RESUME BUTTON */ /* */ .resumeHyperlink { text-decoration: none !important; color: #238193!important; } /* breathing room for Download Resume btn */ .resumeDiv, .learnMoreButtonContain { margin-bottom: 1rem; } /* changes hyperlink text color when hovering over btn element */ .resumeButton:hover > .resumeHyperlink { color: white!important; } /* */ .resumeButton, .detailsButton { display: flex; justify-content: center; width: 100%; align-self: flex-end; } /*---------------------------------------- CARD BODY QUOTE */ /* quoted text aligns left */ .quote { text-align: left; } /* moves the by line to the right side of the card */ .whosaidthat { display: flex; justify-content: flex-end; align-content: flex-start; text-align: right; } /* italicizes citations */ .cite { font-style: italic; } /* scoots the by line a little to the left */ .scoot { margin-right: 1.5rem; } /* ----------------------------------------- MODAL INFO*/ /* modal header - contains name and close btn*/ .modal-header{ background-color: lightgray!important; color: #238193; display: flex; } /* student name inside modal header */ .student-name-modal { display: flex; justify-content: center; align-contetnt: center; } /* img inside modal -----------FUN IMG */ .modal-body img{ width: 50%; height: 50%; box-shadow: 3px 3px 5px #cacaca; border-radius: 10px; } /* breating room for the back button */ .backButton{ margin-bottom: 1rem; } /* -------- BIO */ .bioContainer { display: flex; flex-flow: column nowrap; padding: 1rem 2rem; text-align: left; } /* ---------------------------------------------- FOOTER */ .navbar.navbar-light.bg-light.footer{ font-size: 1em; background-color: #238193!important; color: white; display: flex; justify-content: center; align-content: center; } .inner-footer { display: flex; flex-flow: row nowrap; justify-items: center; align-items: center; } .copy { display: flex; width: 100%; text-align: center; } /* --------------------------------------- HIDES SCROLLBAR */ ::-webkit-scrollbar { display: none; }
0.402862
0.053428
@page { size: auto; margin: 0mm; } html, body { margin: 0; padding: 0; box-sizing: border-box; } @media print { .screen-only { display: none; } } /* logo */ @media screen { body { background: url(../logo/logo-plain.svg); background-repeat: no-repeat; background-size: 80px 80px; background-position: top right; } } /* base sections */ @media screen { body > section { padding: 1em; border-bottom: 1px solid black; } } @media screen { #cards > * { margin: 1em; } } /* fonts */ body,table { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; } .page { font-family: 'Times New Roman', Times, serif; } /** Pages There is a requirement to have two cards on one page. So each card takes half of the screen. */ .page, .page section { box-sizing: border-box; } /* division line */ .page { position: relative; } .page::before { box-sizing: border-box; display: block; position: absolute; border-bottom: 1px solid black; content: " "; width: 100%; top: 50%; } @media screen { .page:not(.full-page)::before { display: none; } } /* remove default p margin for first element * .page section p:first-child { margin-top: 0; padding-top: 0; } /* page shadow emulation */ @media screen { .page { border: 1px outset #999; box-shadow: 5px 5px 5px #888; -moz-box-shadow: 5px 5px 5px #888; -webkit-box-shadow: 5px 5px 5px #888; } } /* main print layout */ @media print { .page { height: 100vh; /* for whatever reason adding a border here removes the 2nd page on Firefox */ /* don't work for Chrome though... */ border: 1px solid grey; } .page::before { /* 50vh block works better for positing border in print, especially for Firefox */ height: 50vh; top: 0; } .page section { /* height need to be reduced by margins: (1 + 2 + 1) / 2 = 2 */ height: calc(50vh - 2cm); /* 1cm is our page margin */ /* min page margin is mentioned here: https://stackoverflow.com/a/3513476/333296 */ margin: 1cm; /* border: 1px solid black; */ } /* change margin to make top margin for both cards even */ .page section:first-child { margin-bottom: 2cm; } } /* similar margins for screen */ @media screen { .page section { margin: 1cm; } .page section:first-child { margin-bottom: 2cm; } }
app/css/main.css
@page { size: auto; margin: 0mm; } html, body { margin: 0; padding: 0; box-sizing: border-box; } @media print { .screen-only { display: none; } } /* logo */ @media screen { body { background: url(../logo/logo-plain.svg); background-repeat: no-repeat; background-size: 80px 80px; background-position: top right; } } /* base sections */ @media screen { body > section { padding: 1em; border-bottom: 1px solid black; } } @media screen { #cards > * { margin: 1em; } } /* fonts */ body,table { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; } .page { font-family: 'Times New Roman', Times, serif; } /** Pages There is a requirement to have two cards on one page. So each card takes half of the screen. */ .page, .page section { box-sizing: border-box; } /* division line */ .page { position: relative; } .page::before { box-sizing: border-box; display: block; position: absolute; border-bottom: 1px solid black; content: " "; width: 100%; top: 50%; } @media screen { .page:not(.full-page)::before { display: none; } } /* remove default p margin for first element * .page section p:first-child { margin-top: 0; padding-top: 0; } /* page shadow emulation */ @media screen { .page { border: 1px outset #999; box-shadow: 5px 5px 5px #888; -moz-box-shadow: 5px 5px 5px #888; -webkit-box-shadow: 5px 5px 5px #888; } } /* main print layout */ @media print { .page { height: 100vh; /* for whatever reason adding a border here removes the 2nd page on Firefox */ /* don't work for Chrome though... */ border: 1px solid grey; } .page::before { /* 50vh block works better for positing border in print, especially for Firefox */ height: 50vh; top: 0; } .page section { /* height need to be reduced by margins: (1 + 2 + 1) / 2 = 2 */ height: calc(50vh - 2cm); /* 1cm is our page margin */ /* min page margin is mentioned here: https://stackoverflow.com/a/3513476/333296 */ margin: 1cm; /* border: 1px solid black; */ } /* change margin to make top margin for both cards even */ .page section:first-child { margin-bottom: 2cm; } } /* similar margins for screen */ @media screen { .page section { margin: 1cm; } .page section:first-child { margin-bottom: 2cm; } }
0.224225
0.06165
.landing-design-preview-wrap { --design-preview-bg: white; --design-preview-primary: #2fc6f6; --design-preview-color: #333; --design-preview-color-h: #111; --design-preview-font-size: 14px; --design-preview-font-weight: 400; --design-preview-font-weight-h: 700; --design-preview-line-height: 1.5; --design-preview-font: "Montserrat", Arial, sans-serif; --design-preview-font-theme: "Montserrat", Arial, sans-serif; --design-preview-font-h: "Montserrat", Arial, sans-serif; --design-preview-font-h-theme: "Montserrat", Arial, sans-serif; } .landing-design-preview-wrap { position: absolute; top: 0; right: 20px; width: 45%; } .landing-design-preview { position: relative; display: flex; flex-direction: column; padding: 30px 25px; margin-top: 20px; color: var(--design-preview-color); font-size: var(--design-preview-font-size); font-weight: var(--design-preview-font-weight); line-height: var(--design-preview-line-height); background: var(--design-preview-bg); box-shadow: 0 4px 15px -10px var(--design-preview-primary); font-family: var(--design-preview-font); font-family: var(--design-preview-font-theme); } .landing-design-preview-title, .landing-design-preview-subtitle { font-weight: var(--design-preview-font-weight-h); color: var(--design-preview-color-h); margin-top: 0; margin-bottom: 7px; /* 0.5rem */ font-family: var(--design-preview-font-h); font-family: var(--design-preview-font-h-theme); } .landing-design-preview-title { font-size: 28px; /* 2rem */ } .landing-design-preview-subtitle { font-size: 21px; /* 1.5rem */ } .landing-design-preview-text { margin-top: 0; margin-bottom: 14px; /* 1rem */ } .landing-design-preview-link { color: var(--design-preview-primary); } .landing-design-preview-link:hover { color: var(--design-preview-primary); text-decoration: underline; } .landing-design-preview-button { background-color: var(--design-preview-primary); color: white; line-height: 1.4; padding: 8px 20px; font-size: 15px; /* 1.07143rem */ font-weight: 700 !important; position: relative; transition: .2s ease; cursor: pointer; display: inline-block; text-align: center; vertical-align: middle; } .landing-design-preview-button:hover { color: white; } .landing-ui-panel-google-fonts { top: 0 !important; } .landing-ui-panel-content { z-index: 1000; } .landing-ui-font-preview { width: calc(100%/3 - 80px); }
bitrix/modules/landing/install/js/landing/settingsform/designpreview/src/css/style.css
.landing-design-preview-wrap { --design-preview-bg: white; --design-preview-primary: #2fc6f6; --design-preview-color: #333; --design-preview-color-h: #111; --design-preview-font-size: 14px; --design-preview-font-weight: 400; --design-preview-font-weight-h: 700; --design-preview-line-height: 1.5; --design-preview-font: "Montserrat", Arial, sans-serif; --design-preview-font-theme: "Montserrat", Arial, sans-serif; --design-preview-font-h: "Montserrat", Arial, sans-serif; --design-preview-font-h-theme: "Montserrat", Arial, sans-serif; } .landing-design-preview-wrap { position: absolute; top: 0; right: 20px; width: 45%; } .landing-design-preview { position: relative; display: flex; flex-direction: column; padding: 30px 25px; margin-top: 20px; color: var(--design-preview-color); font-size: var(--design-preview-font-size); font-weight: var(--design-preview-font-weight); line-height: var(--design-preview-line-height); background: var(--design-preview-bg); box-shadow: 0 4px 15px -10px var(--design-preview-primary); font-family: var(--design-preview-font); font-family: var(--design-preview-font-theme); } .landing-design-preview-title, .landing-design-preview-subtitle { font-weight: var(--design-preview-font-weight-h); color: var(--design-preview-color-h); margin-top: 0; margin-bottom: 7px; /* 0.5rem */ font-family: var(--design-preview-font-h); font-family: var(--design-preview-font-h-theme); } .landing-design-preview-title { font-size: 28px; /* 2rem */ } .landing-design-preview-subtitle { font-size: 21px; /* 1.5rem */ } .landing-design-preview-text { margin-top: 0; margin-bottom: 14px; /* 1rem */ } .landing-design-preview-link { color: var(--design-preview-primary); } .landing-design-preview-link:hover { color: var(--design-preview-primary); text-decoration: underline; } .landing-design-preview-button { background-color: var(--design-preview-primary); color: white; line-height: 1.4; padding: 8px 20px; font-size: 15px; /* 1.07143rem */ font-weight: 700 !important; position: relative; transition: .2s ease; cursor: pointer; display: inline-block; text-align: center; vertical-align: middle; } .landing-design-preview-button:hover { color: white; } .landing-ui-panel-google-fonts { top: 0 !important; } .landing-ui-panel-content { z-index: 1000; } .landing-ui-font-preview { width: calc(100%/3 - 80px); }
0.435661
0.061565
* { margin: 0; padding: 0; font-family: Arial, Verdana !important; } html{ background: #fff; } .limitHome { height: 100%; width: 1024px; margin-left: auto; margin-right: auto; } .limitSugestao { height: 450px; width: 900px; margin-top: 10px; margin-left: auto; margin-right: auto; } #sugestao{ height: 450px; border-right: 1px solid #ccc; margin-left: -20px; } #sugestaoAvalia{ height: 450px; margin-left: -20px; } .boxBorda{ height: 450px; border-right: 1px solid #ccc } .top{ margin-top: 40px; } #tituloHome{ font-size: 44px; margin-bottom: 20px; } #barraMenuHome{ width: 100%; height: 35px; background: #f1f1f1; border-top: 3px solid #999999; font-size: 14px; color: grey; } #barraMenuHome a{ text-decoration: none; color: grey; } #barraMenuHome a:hover{ font-weight: bold; } #barraMenuHome ul{ list-style-type: none; margin: 0; padding: 0; overflow: hidden; } #barraMenuHome li{ float: left; text-align: center; padding: 8px; } .conteudo{ margin-top: 20px; } .conteudo select{ width: 292px; height: 28px; border: 1px solid #cccccc; color: gray; } .sT{ font-size: 16px; } .conteudo .botao{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0px } .botaoVerde{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0px; } .botaoCinza{ background: #999; color: #fff; height: 30px; width: 100%; border: 0px; margin-top: 5px; } .botaoVermelho{ background: #d9534f; color: #fff; height: 30px; width: 100%; border: 0px; margin-top: 5px; } .perigo{ background: #d9534f; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .pPerigo{ background: #5cb85c; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .alerta{ background: #e68a00; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .coneudo input textarea{ width: 100%; height: 400px; border: 1px solid #cccccc; } .conteudo input{ width: 100%; height: 28px; border: 1px solid #cccccc; } .conteudo select{ width: 100%; border: 1px solid #cccccc; } .conteudo ul{ list-style-type: none; margin: 0; padding: 0; } .conteudo li{ margin-bottom: 12px; } .sugestao{ height: 300px; } .conteudoCadastro{ margin-top: 20px; } .conteudoCadastro .sT{ font-size: 16px; } .conteudoCadastro .botao{ background: #5cb85c; color: #fff; height: 34px; width: 100%; } .conteudoCadastro input{ width: 292px; height: 28px; border: 1px solid #cccccc; } .conteudoCadastro ul{ list-style-type: none; margin: 0; padding: 0; } .conteudoCadastro li{ margin-bottom: 12px; } .menuSugestoes{ margin-top: 10px; margin-left: -22px; } .menuSugestoes .botao{ background: #5cb85c; color: #fff; height: 28px; border: 1px solid #cccccc; width: 150px; height: 30px; } .menuSugestoes select{ border: 1px solid #cccccc; width: 210px; height: 30px; } .bOk{ height: 30px; width: 30px; background: #999; color: #fff; border: 0; } .tPopulares{ font-size: 20px; width: 30px; } .subPopulares{ font-size: 16px; color: #23527b; white-space: nowrap; width: 20em; overflow: hidden; text-overflow: ellipsis; } .pSugestao{ font-size: 12px; white-space: nowrap; width: 24em; overflow: hidden; text-overflow: ellipsis; } .pData{ font-size: 12px; color: #ccc; } .pVerMais a { text-decoration: none; color: #999; } .pVerMais button { border: 0; background: #FFF; } .vSugestao{ margin-top: 20px; } .titulo{ font-size: 16px; color: #23527b; } .lSugestao{ font-size: 12px; } .boxSugestao{ margin-left: -64px; margin-bottom: 10px; padding-left: 15px; border-sizing: border-box; height: 60px; } .vsTitulo{ font-size: 16px; color: #23527b; margin-bottom: 20px; } .vsSugestao{ font-size: 16px; margin-bottom: 20px; } .vsAcao input{ width: 100%; height: 100px; border: 1px solid #cccccc; } .vsAcao textarea{ width: 100%; height: 100px; border: 1px solid #cccccc; } .vsAcao button{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0; margin-top: 10px; } .vsUsuario{ font-size: 16px; color: #23527b; } .feedback{ width: 100%; height: 120px; border: 1px solid #cccccc; } #oportunidadesAltas{ padding-left: 15px; padding-top: 5px; } @media (max-width: 990px){ }
WebContent/css/styleHome.css
* { margin: 0; padding: 0; font-family: Arial, Verdana !important; } html{ background: #fff; } .limitHome { height: 100%; width: 1024px; margin-left: auto; margin-right: auto; } .limitSugestao { height: 450px; width: 900px; margin-top: 10px; margin-left: auto; margin-right: auto; } #sugestao{ height: 450px; border-right: 1px solid #ccc; margin-left: -20px; } #sugestaoAvalia{ height: 450px; margin-left: -20px; } .boxBorda{ height: 450px; border-right: 1px solid #ccc } .top{ margin-top: 40px; } #tituloHome{ font-size: 44px; margin-bottom: 20px; } #barraMenuHome{ width: 100%; height: 35px; background: #f1f1f1; border-top: 3px solid #999999; font-size: 14px; color: grey; } #barraMenuHome a{ text-decoration: none; color: grey; } #barraMenuHome a:hover{ font-weight: bold; } #barraMenuHome ul{ list-style-type: none; margin: 0; padding: 0; overflow: hidden; } #barraMenuHome li{ float: left; text-align: center; padding: 8px; } .conteudo{ margin-top: 20px; } .conteudo select{ width: 292px; height: 28px; border: 1px solid #cccccc; color: gray; } .sT{ font-size: 16px; } .conteudo .botao{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0px } .botaoVerde{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0px; } .botaoCinza{ background: #999; color: #fff; height: 30px; width: 100%; border: 0px; margin-top: 5px; } .botaoVermelho{ background: #d9534f; color: #fff; height: 30px; width: 100%; border: 0px; margin-top: 5px; } .perigo{ background: #d9534f; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .pPerigo{ background: #5cb85c; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .alerta{ background: #e68a00; color: #fff; height: 30px; width: 40%; border: 0px; margin-top: 5px; } .coneudo input textarea{ width: 100%; height: 400px; border: 1px solid #cccccc; } .conteudo input{ width: 100%; height: 28px; border: 1px solid #cccccc; } .conteudo select{ width: 100%; border: 1px solid #cccccc; } .conteudo ul{ list-style-type: none; margin: 0; padding: 0; } .conteudo li{ margin-bottom: 12px; } .sugestao{ height: 300px; } .conteudoCadastro{ margin-top: 20px; } .conteudoCadastro .sT{ font-size: 16px; } .conteudoCadastro .botao{ background: #5cb85c; color: #fff; height: 34px; width: 100%; } .conteudoCadastro input{ width: 292px; height: 28px; border: 1px solid #cccccc; } .conteudoCadastro ul{ list-style-type: none; margin: 0; padding: 0; } .conteudoCadastro li{ margin-bottom: 12px; } .menuSugestoes{ margin-top: 10px; margin-left: -22px; } .menuSugestoes .botao{ background: #5cb85c; color: #fff; height: 28px; border: 1px solid #cccccc; width: 150px; height: 30px; } .menuSugestoes select{ border: 1px solid #cccccc; width: 210px; height: 30px; } .bOk{ height: 30px; width: 30px; background: #999; color: #fff; border: 0; } .tPopulares{ font-size: 20px; width: 30px; } .subPopulares{ font-size: 16px; color: #23527b; white-space: nowrap; width: 20em; overflow: hidden; text-overflow: ellipsis; } .pSugestao{ font-size: 12px; white-space: nowrap; width: 24em; overflow: hidden; text-overflow: ellipsis; } .pData{ font-size: 12px; color: #ccc; } .pVerMais a { text-decoration: none; color: #999; } .pVerMais button { border: 0; background: #FFF; } .vSugestao{ margin-top: 20px; } .titulo{ font-size: 16px; color: #23527b; } .lSugestao{ font-size: 12px; } .boxSugestao{ margin-left: -64px; margin-bottom: 10px; padding-left: 15px; border-sizing: border-box; height: 60px; } .vsTitulo{ font-size: 16px; color: #23527b; margin-bottom: 20px; } .vsSugestao{ font-size: 16px; margin-bottom: 20px; } .vsAcao input{ width: 100%; height: 100px; border: 1px solid #cccccc; } .vsAcao textarea{ width: 100%; height: 100px; border: 1px solid #cccccc; } .vsAcao button{ background: #5cb85c; color: #fff; height: 30px; width: 100%; border: 0; margin-top: 10px; } .vsUsuario{ font-size: 16px; color: #23527b; } .feedback{ width: 100%; height: 120px; border: 1px solid #cccccc; } #oportunidadesAltas{ padding-left: 15px; padding-top: 5px; } @media (max-width: 990px){ }
0.357119
0.088702
:root { --primaryColor: #35a0ee; --primaryColor50: #35a0ee1a; --primaryDarkcolor: #2696e8; --primaryLightColor: #f6fbff; --mainWhite: #fff; --offWhite: #f7fbff; --mainWhite50: #ffffff80; --mainBlack: #0b1d2e; --darkBlack: #07111b; --naturalBlack: #031106; --mainGrey: #a4aeb4; --lightGrey: #d5d9dc; --naturalGrey: #dddddd; --mainBackground: #dce8ff; --mainBgModal: #dce8ffb4; --error: #ff0000; --lightShadow: 0px 0px 20px rgba(53, 160, 238, 0.251); --darkShadow: 0px 8px 20px rgba(3, 17, 6, 0.03); --mainTransition: all 0.3s linear; --monserrat: 'Montserrat', sans-serif; --monserratAlt: 'Montserrat Alternates', sans-serif; --poppin: 'Poppins', sans-serif; --mainSpacing: 0.7px; --mainLineHeight: 24px; --mainTitleSize: 28px; --mainTitleLineHeight: 36px; --mainTitleWeight: 800; --title2Size: 21px; --title2LineHeight: 28px; --title2Weight: 700; --mainTextSize: 16px; --mainTextLineHeight: 22.5px; --mainTextWeight: 500; --mainTextInputSize: 21px; --mainTextInputLineHeight: 28px; --mainTextInputWeight: 600; --mainBorderRadius: 4px; /*Mockup values end*/ /*Responsive main dimensions*/ --outerMaxWidth: 1440px; --outerMargin: 0 auto; --logoMobileHeight: 80px; --progressMobileHeight: 40px; --progressMargin: 50px 0; --innerHeight: 100vh; --innerMinHeight: 520px; --innerMaxHeight: 800px; --innerPadding: 1% 1% 0; --sectionHeight: auto; --sectionMargin: 0.5rem 0 0; } /*XS – smartphone portrait*/ @media all and (min-width: 360px) { :root { --innerHeight: calc( 100vh - var(--logoMobileHeight) - var(--progressMobileHeight) ); --innerPadding: 3% 7% 0; } } /*SM - Smartphones landscape*/ @media all and (min-width: 640px) { :root { --innerPadding: 1.5% 5% 0 3%; --innerMinHeight: 640px; --sectionHeight: 520px; } } /*LG - large tablet portrait*/ @media all and (min-width: 992px) and (min-height: 800px) and (orientation: portrait) { :root { --outerColLeft: 450px; --innerPadding: 5% 4% 10%; --sidebarPadding: 8% 0 14% 7%; --innerHeight: 100vh; --innerMaxHeight: 1400px; --sectionHeight: 750px; } } /*LG - common properties for larger screens*/ @media all and (min-width: 1200px) { :root { --outerColLeft: 460px; --innerPadding: 3% 3% 1% 7%; --sidebarPadding: 6% 0 5% 7%; --innerHeight: 100vh; --innerMinHeight: 650px; --innerMaxHeight: 1200px; --sectionMargin: 0; } } /*XXL*/ @media all and (min-width: 1440px) and (min-height: 900px) { :root { --outerColLeft: 516px; --innerPadding: 40px 150px 43px 116px; --sidebarPadding: 40px 0 50px 73px; --innerMaxHeight: 900px; --sectionHeight: 600px; --sectionMargin: 30px 0 0; --progressMargin: 100px 0 0; } } /*XXXL*/ @media all and (min-width: 1920px) { :root { --outerMargin: 1% auto 0; } } /*Responsive main dimensions end*/
src/assets/style/variables.css
:root { --primaryColor: #35a0ee; --primaryColor50: #35a0ee1a; --primaryDarkcolor: #2696e8; --primaryLightColor: #f6fbff; --mainWhite: #fff; --offWhite: #f7fbff; --mainWhite50: #ffffff80; --mainBlack: #0b1d2e; --darkBlack: #07111b; --naturalBlack: #031106; --mainGrey: #a4aeb4; --lightGrey: #d5d9dc; --naturalGrey: #dddddd; --mainBackground: #dce8ff; --mainBgModal: #dce8ffb4; --error: #ff0000; --lightShadow: 0px 0px 20px rgba(53, 160, 238, 0.251); --darkShadow: 0px 8px 20px rgba(3, 17, 6, 0.03); --mainTransition: all 0.3s linear; --monserrat: 'Montserrat', sans-serif; --monserratAlt: 'Montserrat Alternates', sans-serif; --poppin: 'Poppins', sans-serif; --mainSpacing: 0.7px; --mainLineHeight: 24px; --mainTitleSize: 28px; --mainTitleLineHeight: 36px; --mainTitleWeight: 800; --title2Size: 21px; --title2LineHeight: 28px; --title2Weight: 700; --mainTextSize: 16px; --mainTextLineHeight: 22.5px; --mainTextWeight: 500; --mainTextInputSize: 21px; --mainTextInputLineHeight: 28px; --mainTextInputWeight: 600; --mainBorderRadius: 4px; /*Mockup values end*/ /*Responsive main dimensions*/ --outerMaxWidth: 1440px; --outerMargin: 0 auto; --logoMobileHeight: 80px; --progressMobileHeight: 40px; --progressMargin: 50px 0; --innerHeight: 100vh; --innerMinHeight: 520px; --innerMaxHeight: 800px; --innerPadding: 1% 1% 0; --sectionHeight: auto; --sectionMargin: 0.5rem 0 0; } /*XS – smartphone portrait*/ @media all and (min-width: 360px) { :root { --innerHeight: calc( 100vh - var(--logoMobileHeight) - var(--progressMobileHeight) ); --innerPadding: 3% 7% 0; } } /*SM - Smartphones landscape*/ @media all and (min-width: 640px) { :root { --innerPadding: 1.5% 5% 0 3%; --innerMinHeight: 640px; --sectionHeight: 520px; } } /*LG - large tablet portrait*/ @media all and (min-width: 992px) and (min-height: 800px) and (orientation: portrait) { :root { --outerColLeft: 450px; --innerPadding: 5% 4% 10%; --sidebarPadding: 8% 0 14% 7%; --innerHeight: 100vh; --innerMaxHeight: 1400px; --sectionHeight: 750px; } } /*LG - common properties for larger screens*/ @media all and (min-width: 1200px) { :root { --outerColLeft: 460px; --innerPadding: 3% 3% 1% 7%; --sidebarPadding: 6% 0 5% 7%; --innerHeight: 100vh; --innerMinHeight: 650px; --innerMaxHeight: 1200px; --sectionMargin: 0; } } /*XXL*/ @media all and (min-width: 1440px) and (min-height: 900px) { :root { --outerColLeft: 516px; --innerPadding: 40px 150px 43px 116px; --sidebarPadding: 40px 0 50px 73px; --innerMaxHeight: 900px; --sectionHeight: 600px; --sectionMargin: 30px 0 0; --progressMargin: 100px 0 0; } } /*XXXL*/ @media all and (min-width: 1920px) { :root { --outerMargin: 1% auto 0; } } /*Responsive main dimensions end*/
0.410047
0.108637
html,body,.container{ width:100%; height:100%; font-family: 'Montserrat', sans-serif; } .container{ display:block; background-color: #2a2b38; background-image: linear-gradient(#30313e .1em, transparent .1em); background-size: 100% 1.2em; } .section{ width:100%; height: 100vh; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; } .presentation{ width:100%; text-align: center; } .presentation .content-all{ height:240px; } .presentation .content{ width: 375px; margin: 0 auto; color: #fff; font-size: 15px; font-weight: 300; visibility: hidden; opacity: 0; transition: visibility 0s, opacity 0.5s linear; height:0; } .navigation{ list-style: none; margin:0; padding: 0; } .navigation-li{ display:inline-block; font-family: 'Boogaloo', cursive; margin: 0 8px; } .navigation-li a{ text-decoration:none; color:#dcdcdc; font-size: 32px; transition:.4s; position:relative; } .navigation-li a:before{ content:''; position:absolute; width:0; height:3px; bottom:0; left:50%; background:#fff; transition:.3s; } .navigation-li.active a:before{ color:#fff; width:100%; left:0; } .navigation-li a:hover{ color:#fff; } .navigation-li a:hover:before{ width:100%; left:0; } .profile{ width:100px; height:100px; padding:8px; margin:50px auto; cursor:pointer; background:#f5eb5c; border-radius:50%; overflow:hidden; position:relative; z-index:1; } .picture{ background-image: url(./../img/cat.jpg); background-repeat: no-repeat; background-size: cover; width: 100%; height: 100%; border-radius:50%; position:relative; z-index:3; } .profile:before{ content:''; position:absolute; width:100%; height:200%; position:absolute; transform-origin: 50% 50%; transition:0.5s; z-index:2; } .profile:before{ background: #555555; left: 55px; top: -50%; } .profile:hover:before{ /* transform: rotate(27deg); */ transform: rotate(90deg); } .show{ visibility: visible !important; opacity: 1 !important; height:auto !important; }
css/style.css
html,body,.container{ width:100%; height:100%; font-family: 'Montserrat', sans-serif; } .container{ display:block; background-color: #2a2b38; background-image: linear-gradient(#30313e .1em, transparent .1em); background-size: 100% 1.2em; } .section{ width:100%; height: 100vh; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; } .presentation{ width:100%; text-align: center; } .presentation .content-all{ height:240px; } .presentation .content{ width: 375px; margin: 0 auto; color: #fff; font-size: 15px; font-weight: 300; visibility: hidden; opacity: 0; transition: visibility 0s, opacity 0.5s linear; height:0; } .navigation{ list-style: none; margin:0; padding: 0; } .navigation-li{ display:inline-block; font-family: 'Boogaloo', cursive; margin: 0 8px; } .navigation-li a{ text-decoration:none; color:#dcdcdc; font-size: 32px; transition:.4s; position:relative; } .navigation-li a:before{ content:''; position:absolute; width:0; height:3px; bottom:0; left:50%; background:#fff; transition:.3s; } .navigation-li.active a:before{ color:#fff; width:100%; left:0; } .navigation-li a:hover{ color:#fff; } .navigation-li a:hover:before{ width:100%; left:0; } .profile{ width:100px; height:100px; padding:8px; margin:50px auto; cursor:pointer; background:#f5eb5c; border-radius:50%; overflow:hidden; position:relative; z-index:1; } .picture{ background-image: url(./../img/cat.jpg); background-repeat: no-repeat; background-size: cover; width: 100%; height: 100%; border-radius:50%; position:relative; z-index:3; } .profile:before{ content:''; position:absolute; width:100%; height:200%; position:absolute; transform-origin: 50% 50%; transition:0.5s; z-index:2; } .profile:before{ background: #555555; left: 55px; top: -50%; } .profile:hover:before{ /* transform: rotate(27deg); */ transform: rotate(90deg); } .show{ visibility: visible !important; opacity: 1 !important; height:auto !important; }
0.489748
0.07267
:root { --nav-height: 100px; } html, body { position: relative; background-color: #222; min-height: 150vh; scroll-behavior: smooth; } body { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #f8f8f8; } #main-wrapper { position: relative; top: 100px; } #main { padding-bottom: 20px; } nav { padding: 10px; height: var(--nav-height); position: fixed; z-index: 1; top: 0; width: 100%; background-color: rgba(34, 34, 34, 1); text-align: left; -webkit-transition: background-color 0.5s ease; -o-transition: background-color 0.5s ease; transition: background-color 0.5s ease; } nav.translucent { background-color: rgba(51, 51, 51, 0.9); } nav span { padding: 0 10px 0 10px; color: #aaa; font-style: italic; position: absolute; bottom: 20px; left: 10%; margin: auto; width: 80%; } #logo { height: 100%; max-width: 100%; } nav a { position: absolute; right: 30px; top: 30px; } nav a svg { height: 40px; width: 40px; } #insta-path { fill: #ddd; } nav span { opacity: 0; } .autocarousel { height: 80px; } #previous-projects { background-color: #222; color: #ddd; overflow: auto; } .autocarousel li { display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 0 20px; overflow-wrap: break-word; } h2 { padding: 10px; z-index: 5; font-size: 70px; border-radius: 5px; background-color: rgba(0, 0, 0, 0.3); color: #eee; text-align: center; } h3 { text-align: center; margin: 20px 0 10px; } section { max-width: 700px; padding: 20px; margin: auto; } td { padding: 50px 0; } p { line-height: 1.2em; margin-top: 25px; } table { width: 100%; } th { width: 70%; text-align: left; } td p { margin-top: 0px; } p:first-child { margin-top: 0; } footer { font-size: 15px; min-height: 50px; padding: 0 20px; color: #dddddd; background-color: #111; text-align: center; width: 100%; position: absolute; } footer div { margin: 0 auto; max-width: 900px; } footer span.outer { font-size: 15px; width: 240px; height: 100%; margin: 0; line-height: 50px; display: inline-block; } footer a { color: inherit; } .jarallax { 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; height: 500px; position: relative; z-index: 0; } .jarallax img { position: absolute; -o-object-fit: cover; object-fit: cover; font-family: 'object-fit: cover;'; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } form { padding: 0; } form input, form textarea, form button { display: block; font-size: inherit; margin: 5px 0 20px 0; border-radius: 8px; background-color: #eee; } form #email, form #subject, form button { height: 2rem; width: 90%; padding: 0 5px; } /* This is the style of our error messages */ .error { position: relative; bottom: 15px; display: none; max-width: 300px; padding: 0; font-size: 80%; color: white; background-color: #900; border-radius: 5px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0.3em; } .error.active { display: block; } .error#recaptcha-error { bottom: 5px; margin: -10px auto 10px auto; text-align: center; } form textarea { resize: none; padding: 5px; width: 100%; height: 180px; } form input { max-width: 300px; } form button, form img { max-width: 200px; } form button:hover { cursor: pointer; } form button { margin: 0 auto; } /* #gallery-container { max-height: calc(100vh - var(--nav-height)); } */ @media screen and (max-width: 650px) { nav a { right: 15px; top: 33px; } nav a svg { height: 34px; width: 34px; } } @media screen and (max-width: 500px) { nav a { top: 23px; } section { font-size: 15px; } table { padding: 0 20px; } nav { height: 80px; padding: 10px; } #main-wrapper { top: 80px; } nav span { font-size: 14px; bottom: 5px; } .jarallax { height: 300px; } h2 { font-size: 40px; } h3 { font-size: 13px; } #previous-projects { font-size: 0.9rem; } } @media screen and (max-width: 350px) { nav a { top: 16px; } nav a svg { height: 28px; width: 28px; } section { font-size: 14px; padding: 10px; } table { padding: 0; } footer span.outer { width: 200px; } nav { height: 60px; padding: 8px; } #main-wrapper { top: 60px; } } @media screen and (max-width: 250px) { th { display: none; } nav { padding: 10px; } nav span { font-size: 14px; bottom: 5px; } .jarallax { height: 300px; } h2 { font-size: 40px; } footer span.outer { font-size: 12px; } }
src/styles/main.css
:root { --nav-height: 100px; } html, body { position: relative; background-color: #222; min-height: 150vh; scroll-behavior: smooth; } body { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #f8f8f8; } #main-wrapper { position: relative; top: 100px; } #main { padding-bottom: 20px; } nav { padding: 10px; height: var(--nav-height); position: fixed; z-index: 1; top: 0; width: 100%; background-color: rgba(34, 34, 34, 1); text-align: left; -webkit-transition: background-color 0.5s ease; -o-transition: background-color 0.5s ease; transition: background-color 0.5s ease; } nav.translucent { background-color: rgba(51, 51, 51, 0.9); } nav span { padding: 0 10px 0 10px; color: #aaa; font-style: italic; position: absolute; bottom: 20px; left: 10%; margin: auto; width: 80%; } #logo { height: 100%; max-width: 100%; } nav a { position: absolute; right: 30px; top: 30px; } nav a svg { height: 40px; width: 40px; } #insta-path { fill: #ddd; } nav span { opacity: 0; } .autocarousel { height: 80px; } #previous-projects { background-color: #222; color: #ddd; overflow: auto; } .autocarousel li { display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 0 20px; overflow-wrap: break-word; } h2 { padding: 10px; z-index: 5; font-size: 70px; border-radius: 5px; background-color: rgba(0, 0, 0, 0.3); color: #eee; text-align: center; } h3 { text-align: center; margin: 20px 0 10px; } section { max-width: 700px; padding: 20px; margin: auto; } td { padding: 50px 0; } p { line-height: 1.2em; margin-top: 25px; } table { width: 100%; } th { width: 70%; text-align: left; } td p { margin-top: 0px; } p:first-child { margin-top: 0; } footer { font-size: 15px; min-height: 50px; padding: 0 20px; color: #dddddd; background-color: #111; text-align: center; width: 100%; position: absolute; } footer div { margin: 0 auto; max-width: 900px; } footer span.outer { font-size: 15px; width: 240px; height: 100%; margin: 0; line-height: 50px; display: inline-block; } footer a { color: inherit; } .jarallax { 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; height: 500px; position: relative; z-index: 0; } .jarallax img { position: absolute; -o-object-fit: cover; object-fit: cover; font-family: 'object-fit: cover;'; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } form { padding: 0; } form input, form textarea, form button { display: block; font-size: inherit; margin: 5px 0 20px 0; border-radius: 8px; background-color: #eee; } form #email, form #subject, form button { height: 2rem; width: 90%; padding: 0 5px; } /* This is the style of our error messages */ .error { position: relative; bottom: 15px; display: none; max-width: 300px; padding: 0; font-size: 80%; color: white; background-color: #900; border-radius: 5px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0.3em; } .error.active { display: block; } .error#recaptcha-error { bottom: 5px; margin: -10px auto 10px auto; text-align: center; } form textarea { resize: none; padding: 5px; width: 100%; height: 180px; } form input { max-width: 300px; } form button, form img { max-width: 200px; } form button:hover { cursor: pointer; } form button { margin: 0 auto; } /* #gallery-container { max-height: calc(100vh - var(--nav-height)); } */ @media screen and (max-width: 650px) { nav a { right: 15px; top: 33px; } nav a svg { height: 34px; width: 34px; } } @media screen and (max-width: 500px) { nav a { top: 23px; } section { font-size: 15px; } table { padding: 0 20px; } nav { height: 80px; padding: 10px; } #main-wrapper { top: 80px; } nav span { font-size: 14px; bottom: 5px; } .jarallax { height: 300px; } h2 { font-size: 40px; } h3 { font-size: 13px; } #previous-projects { font-size: 0.9rem; } } @media screen and (max-width: 350px) { nav a { top: 16px; } nav a svg { height: 28px; width: 28px; } section { font-size: 14px; padding: 10px; } table { padding: 0; } footer span.outer { width: 200px; } nav { height: 60px; padding: 8px; } #main-wrapper { top: 60px; } } @media screen and (max-width: 250px) { th { display: none; } nav { padding: 10px; } nav span { font-size: 14px; bottom: 5px; } .jarallax { height: 300px; } h2 { font-size: 40px; } footer span.outer { font-size: 12px; } }
0.432543
0.101768
:root{--theme-green:#34a734;--theme-green-dark:#0f3f1c;--theme-red:#e00023;--theme-black:#000000;--theme-white:#ffffff;--theme-blue:#5ab1d2;} body{font-family:Montserrat;font-size:10pt;line-height:1.6;color:#000000;padding:10px 30px;background-color:#fff} p{text-align:justify} a,a:visited,a:active{color:#e00023;text-decoration:none} a:hover{border-bottom:1px solid #e00023;} a.absent{color:#5ab1d2;} p a{margin:0 2px} h1,h2,h3,h4,h5,h6{-webkit-font-smoothing:antialiased;font-weight:bold;} h2,h3,h4,h5,h6{margin:12px 0 8px;} h1{font-size:28pt;margin:10pt 0pt;padding:0 0 4pt;page-break-before:always;color:#6D6C6C; border-bottom:2px solid #0f3f1c;} h1:first-of-type{page-break-before:avoid} h2{font-size:24pt;color:#34a734;} h3{font-size:16pt;} h4{font-size:14pt;} h5{font-size:12pt;} h6{font-size:10pt;} table{padding:0;border-collapse:collapse;width:100%} table tr{border-top:1px solid #888;background-color:#fff;margin:0;padding:0} table tr:nth-child(2n){background-color:#DEDEDE;} table tr th,table tr td{text-align:left;margin:0;padding:6px 13px;border:1px solid #888} table tr th{font-weight:bold;background:#0f3f1c;color:#FFF;border:1px solid #000;} img{margin:0 auto 24px;display:block; max-width:600px;padding:5px;} ul,ol{padding-left:30px;} ul :first-child,ol :first-child{margin-top:0} ul ul > li,ol ul > li, ul > li{list-style:circle inside;font-size:9pt} li{line-height:150%;margin-bottom:5px;margin-top:0} dl{padding:0} dl dt{font-weight:700;font-style:italic;padding:0;margin:12px 0 8px} dl dt:first-child{padding:0} dl dt > :first-child{margin-top:0} dl dt > :last-child{margin-bottom:0} dl dd{margin:0 0 15px;padding:0 15px} dl dd > :first-child{margin-top:0} dl dd > :last-child{margin-bottom:0} code,pre,tt{border:1px solid ##0f3f1c;background-color:#DEDEDE;font-family:Consolas;font-size:8pt;color:#000000;} code,tt{margin:0 2px;padding:0 5px;white-space:nowrap} pre{line-height:19px;overflow:auto;padding:6px 10px;} pre code{margin:0;padding:0;white-space:pre;border:none;background:transparent} pre code,pre tt{background-color:transparent;border:none} code[class*="language-"],pre[class*="language-"]{background:#DEDEDE!important} :not(pre) > code[class*="language-"],pre[class*="language-"]{background:#DEDEDE!important;} :not(pre) > code{border:none;background-color:#DEDEDE;color:#000000;padding:4px;} blockquote{border-left:3px solid #5ab1d2;color:#000;margin:0 10px;padding:0 15px} blockquote > :first-child{margin-top:0} blockquote > :last-child{margin-bottom:0} mark{background-color:#FF9A1E;color:#FFFFFF;font-weight:bold;} hr{border:none;border-bottom:3px solid #0f3f1c;} @media screen and (min-width: 914px) { body{width:854px;margin:0 auto} } @media print { body{-webkit-print-color-adjust:exact} table,pre{page-break-inside:avoid} }
Polokokta/Polokokta.css
:root{--theme-green:#34a734;--theme-green-dark:#0f3f1c;--theme-red:#e00023;--theme-black:#000000;--theme-white:#ffffff;--theme-blue:#5ab1d2;} body{font-family:Montserrat;font-size:10pt;line-height:1.6;color:#000000;padding:10px 30px;background-color:#fff} p{text-align:justify} a,a:visited,a:active{color:#e00023;text-decoration:none} a:hover{border-bottom:1px solid #e00023;} a.absent{color:#5ab1d2;} p a{margin:0 2px} h1,h2,h3,h4,h5,h6{-webkit-font-smoothing:antialiased;font-weight:bold;} h2,h3,h4,h5,h6{margin:12px 0 8px;} h1{font-size:28pt;margin:10pt 0pt;padding:0 0 4pt;page-break-before:always;color:#6D6C6C; border-bottom:2px solid #0f3f1c;} h1:first-of-type{page-break-before:avoid} h2{font-size:24pt;color:#34a734;} h3{font-size:16pt;} h4{font-size:14pt;} h5{font-size:12pt;} h6{font-size:10pt;} table{padding:0;border-collapse:collapse;width:100%} table tr{border-top:1px solid #888;background-color:#fff;margin:0;padding:0} table tr:nth-child(2n){background-color:#DEDEDE;} table tr th,table tr td{text-align:left;margin:0;padding:6px 13px;border:1px solid #888} table tr th{font-weight:bold;background:#0f3f1c;color:#FFF;border:1px solid #000;} img{margin:0 auto 24px;display:block; max-width:600px;padding:5px;} ul,ol{padding-left:30px;} ul :first-child,ol :first-child{margin-top:0} ul ul > li,ol ul > li, ul > li{list-style:circle inside;font-size:9pt} li{line-height:150%;margin-bottom:5px;margin-top:0} dl{padding:0} dl dt{font-weight:700;font-style:italic;padding:0;margin:12px 0 8px} dl dt:first-child{padding:0} dl dt > :first-child{margin-top:0} dl dt > :last-child{margin-bottom:0} dl dd{margin:0 0 15px;padding:0 15px} dl dd > :first-child{margin-top:0} dl dd > :last-child{margin-bottom:0} code,pre,tt{border:1px solid ##0f3f1c;background-color:#DEDEDE;font-family:Consolas;font-size:8pt;color:#000000;} code,tt{margin:0 2px;padding:0 5px;white-space:nowrap} pre{line-height:19px;overflow:auto;padding:6px 10px;} pre code{margin:0;padding:0;white-space:pre;border:none;background:transparent} pre code,pre tt{background-color:transparent;border:none} code[class*="language-"],pre[class*="language-"]{background:#DEDEDE!important} :not(pre) > code[class*="language-"],pre[class*="language-"]{background:#DEDEDE!important;} :not(pre) > code{border:none;background-color:#DEDEDE;color:#000000;padding:4px;} blockquote{border-left:3px solid #5ab1d2;color:#000;margin:0 10px;padding:0 15px} blockquote > :first-child{margin-top:0} blockquote > :last-child{margin-bottom:0} mark{background-color:#FF9A1E;color:#FFFFFF;font-weight:bold;} hr{border:none;border-bottom:3px solid #0f3f1c;} @media screen and (min-width: 914px) { body{width:854px;margin:0 auto} } @media print { body{-webkit-print-color-adjust:exact} table,pre{page-break-inside:avoid} }
0.269614
0.109277
/* * ---------------------------------------------------------------------------- * CSS Document @media screen Start * Author: DistantSound * IDE : * <p class="f-l p-text c-gray"> ..... </p> .p-text 样式 ,可改成 <div class="f-l p-text c-gray"> ..... </div> * ---------------------------------------------------------------------------- */ @media screen and (min-width:1200px) { .section-group h1{width:100%;margin-top:.5rem;font-size:.45rem;font-weight:400;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:12rem;} .section-group .p-text{font-size:.14rem;} .popup-signup{width:6rem;margin-top:-2rem;margin-left:-3rem;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title{padding:.3rem 0;} .sub-title h2{font-size:.3rem;padding:.3rem 0;line-height:.6rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e; } .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;} .sub-select{width:1.4rem;} .sub-select ul{width:1.4rem;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li{padding:0 .2rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .en-tabhd-1 li:first-child{margin-left:3.2rem;} .en-tabhd-2 li:first-child{margin-left:1.8rem;} .en-tabhd-3 li:first-child{margin-left:4.2rem;} .en-tabhd-4 li:first-child{margin-left:5.4rem;} .en-tabhd-5 li:first-child{margin-left:4rem;} .en-tabhd-6 li:first-child{margin-left:2.2rem;} .en-tabhd-7 li:first-child{margin-left:5.5rem;} .zh-tabhd-1 li:first-child{margin-left:3.9rem;} .zh-tabhd-2 li:first-child{margin-left:3.4rem;} .zh-tabhd-3 li:first-child{margin-left:5rem;} .zh-tabhd-4 li:first-child{margin-left:5.4rem;} .zh-tabhd-5 li:first-child{margin-left:4.6rem;} .zh-tabhd-6 li:first-child{margin-left:3.4rem;} .zh-tabhd-7 li:first-child{margin-left:5.5rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;} header{height:.85rem;position:fixed;left:0;top:0;z-index:9990;} .header-right-nav{display:none;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-c{width:100%;height:.8rem;} .header-c .l-box{margin-left:3%;} .header-c .t-logo{width:2.62rem;margin-top:.2rem;} .header-c .t-logo img{width:2.62rem;} .header-c .r-box{width:auto;margin-top:0;margin-right:3%;} .header-c nav{height:.85rem;} .header-c nav a{height:.85rem;line-height:.85rem;font-size:.18rem;font-weight:400;padding:0 .24rem;} .lang-box{width:1rem;height:.4rem;line-height:.4rem;margin-top:.225rem;margin-left:.2rem;font-size:.14rem;} .lang-box a{height:.4rem;line-height:.4rem;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.1rem;margin-right:.06rem;} .lis-1{height:10.6rem;} .lis-1 h2 {font-size:.45rem;font-weight:400;padding:.25rem;line-height:.8rem;margin-top:1.2rem;} .lis-1 h3{font-size:.2rem;font-weight:400;line-height:.3rem;} .lis-1 .animation-box{width:8.5rem;height:5.5rem;} .lis-2{height:9.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;} .lis-2 .l-box, .r-box{width:48%;margin-top:.6rem;} .lis-2 .lis-2l{display:inline-block;} .lis-2 .lis-2r{display:none;} .lis-2 h2{font-size:.28rem;line-height:.4rem;padding:.5rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.5rem;} .lis-3{height:10.6rem;} .lis-3 ul{width:12.34rem;margin-top:.3rem;} .lis-3 li{width:3.8rem;margin-right:.3rem;} .lis-3 li .pic{width:100%;height:2.25rem;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.2rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .lis-4{height:8.2rem;} .lis-4 ul{width:12.62rem;} .lis-4 li{width:5.7rem; margin:0 .5rem .5rem 0;} .lis-4 li .l-box{width:2.1rem;} .lis-4 li .r-box{width:3.6rem;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:2.1rem;height:1.25rem;} .lis-4 li h2{line-height:.3rem;font-size:.2rem;} .lis-4 li p{padding:.1rem 0;line-height:.3rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-5{height:14.2rem;} .lis-5 .l-box, .lis-5 .r-box{width:5.8rem;margin-top:.3rem;padding:.15rem 0;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li a{padding:.2rem .15rem;} .lis-5 li h2{line-height:.3rem;font-size:.2rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{width:5.7rem;} .lis-6{height:8.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{width:29%;height:3.4rem; margin:0 0 0 3.222222%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:80%;height:1rem;margin:-.5rem 10%;} .lis-6 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .lis-6 li .pic img{width:.8rem;height:.8rem;} .lis-6 li .r-box{width:1.6rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li span{line-height:.3rem;font-size:.14rem;} .lis-7{height:10.6rem;} .lis-7 ul{width:12.34rem;margin-top:.3rem;} .lis-7 li{width:3.8rem;margin-right:.3rem;} .lis-7 li .pic{height:2.25rem;} .lis-7 li .lis-3c{padding:0 .15rem;} .lis-7 li h2{font-size:.2rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display:inline-block;} .lis-8 .lis-8r{display:none;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-9{height:6.2rem;} .lis-9 ul{margin:.6rem 0 0 0;} .lis-9 li{width:3rem;} .lis-10{height:6rem;} .lis-10 h2{margin-top:2.1rem;padding:.15rem 0;font-size:.45em;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .2rem;} .listab-1 .div-c{width:105%;} .listab-1 li{width:11.6rem;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:3.9rem;} .listab-1 li .r-box{width:7.5rem;} .listab-1 li .pic{width:3.9rem;height:2.4rem;margin-top:.2rem;} .listab-1 li .pic .em{width:3.7rem;height:2.4rem;} .listab-1 li .pic img{width:3.7rem;height:2.4rem;margin-top:-.2rem;z-index:10;} .listab-1 li h4{line-height:.5rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .2rem;} .listab-2a .l-box{width:58%;margin-top:.3rem;} .listab-2a .r-box{width:40%;margin-top:.3rem;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.15rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2b p{width:100%;padding:.15rem;line-height:.3rem;} .listab-2c ul{width:105%;} .listab-2c li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-2c li .pic{height:2.25rem;} .listab-2c li .div-c{width:96%;padding:0 .15rem;} .listab-2c li h2{font-size:.18rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:105%;} .listab-2d li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-2d li .pic{height:2.25rem;} .listab-2d li .pic img{height:2.25rem;} .listab-2d li .div-c{height:2.25rem;padding:.2rem;} .listab-2d li .div-c h2{width:100%;font-size:.3rem;margin-top:.3rem;line-height:.5rem;padding:.15rem 0;} .listab-3{width:100%;padding:0 .2rem;} .listab-3 .div-c{width:105%;} .listab-3 li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.2rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .2rem;} .listab-4 .div-c{width:105%;} .listab-4 li{width:3.73rem;height:3.6rem;margin:.3rem .2rem 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li .div-b{width:80%;height:1rem;margin:-.5rem 10%;} .listab-4 li .l-box{width:1.7rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:105%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:6.5rem; height:.5rem;line-height:.5rem;padding:0 .15rem; font-size:.14rem;margin:0 0 .5rem 2.4rem;} .listab-5 .div-t .info-search{width:6.5rem;margin:0 0 .5rem 2.4rem;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .15rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:1.4rem;height:.4rem;margin-right:0;} .listab-5 .lis-select:first-child{margin-left:2.5rem;} .listab-5 .div-c li{width:5.7rem;margin:.1rem .2rem 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:2.6rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .2rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:9.6rem; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .2rem;} .listab-6 .div-c{width:105%;} .listab-6 li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-6 li .pic{height:2.25rem;} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:.96rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .2rem;} .listab-7 .div-c{width:105%;} .listab-7 li{width:5.7rem;margin:.3rem .2rem 0 0;} .listab-7 li .l-box{width:2.3rem;} .listab-7 li .r-box{width:3.4rem;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:2.3rem;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .2rem;} .listab-8 .div-c{width:105%;} .listab-8 li{width:5.7rem;margin:.3rem .2rem 0 0;} .listab-8 li .l-box{width:2.3rem;} .listab-8 li .r-box{width:3.4rem;margin:0;padding:0 .15rem;} .listab-8 li .pic{width:2.3rem;height:1.25rem;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .2rem;} .listab-9 .div-c{width:105%;} .listab-9 li{width:5.7rem;margin:.3rem .2rem 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:5.7rem;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{width:100%;padding:.5rem .2rem;} .listab-10 .img{width:auto;} .listab-11{padding:.5rem .2rem;} .listab-11 .l-box, .listab-11 .r-box{width:48%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;font-size:.14rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:48%;margin:0;} .listab-13 h2{padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:5.5rem;height:6.35rem;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;} .listab-13 .animat-r{display:none;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:48%;} .lis-listab-d1 .p-text{padding:.15rem;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:5rem;height:5rem; margin-top:.5rem;background:url(../images/bg-lis-d2.png) no-repeat;background-position:top center;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:1.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:9.6rem;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} footer{height:2.45rem;} .footer-t{height:1.2rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:960px) and (max-width:1199px) { .section-group h1{width:100%;padding:0 .25rem;line-height:.5rem;margin-top:1rem;font-size:.3rem;font-weight:400;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:100%;} .section-group .p-text{ font-size:.14rem;} .popup-signup{width:80%;top:10%;left:10%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.3rem .15rem;} .sub-title h2{font-size:.3rem;line-height:.5rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:1.4rem;} .sub-select ul{width:1.4rem;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li{padding:0 .2rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2.6rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2.6rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1 h2{font-size:.45rem;font-weight:400;padding:.25rem;line-height:.6rem;margin-top:.8rem;} .lis-1 h3{font-size:.2rem;font-weight:400;line-height:.3rem;} .lis-1 .animation-box{width:8.5rem;height:5.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:50%;margin-top:.6rem;padding:0 .15rem;} .lis-2 .lis-2l{display:inline-block;} .lis-2 .lis-2r{display:none;} .lis-2 h2{font-size:.28rem;line-height:.4rem;padding:.5rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.5rem;} .lis-2 .animation-box{width:4.6rem;} .lis-2 .animation-box img{width:4.6rem;} .lis-3{height:9.6rem;} .lis-3 ul{width:100%;margin-top:.3rem;} .lis-3 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.3rem .15rem;} .lis-4 li{width:100%; margin:0 0 .3rem 0;position:relative;} .lis-4 li .l-box{width:28%;} .lis-4 li .r-box{width:70%;margin:0;padding:0 ;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5{height:13rem;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.2rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.18rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{display:none;} .lis-6{height:8.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{height:3.5rem;} .lis-6 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;font-size:.12rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:56%;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7{height:9.6rem;} .lis-7 ul{width:100%;margin-top:.3rem;} .lis-7 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display: inline-block;} .lis-8 .lis-8r{display:none;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-8 .animation-box{width:4.5rem;} .lis-8 .animation-box img{width:4.5rem;} .lis-9 ul{margin:.6rem 0;} .lis-9 li{display:inline-block;width:25%;} .lis-9 .pic-img{display:inline-block;width:33.333333% height:1.2rem;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:6rem;} .lis-10 h2{margin-top:1.8rem;padding:.15rem 0;font-size:.5rem;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:29%;} .listab-1 li .r-box{width:70%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{width:32%;margin:.3rem 0 0 1%;} .listab-2c li .pic{/*height:2.25rem;*/} .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:32%;margin:.3rem 0 0 1%;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{ width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.2rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:32%;margin:.3rem 0 0 1%;} .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:32%;height:3.5rem; margin:.3rem 0 0 1%;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;font-size:.12rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:90%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .15rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:1.4rem;height:.4rem;margin-right:0;} .listab-5 .lis-select:first-child{margin-left:1.5rem;} .listab-5 .div-c li{width:50%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;font-size:.12rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:8rem; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;font-size:.14rem;} .listab-6{width:100%;padding:0;} .listab-6 .div-c{width:100%;} .listab-6 li{width:32%;margin:.3rem 0 0 1%;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:1.2rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:50%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:35%;} .listab-7 li .r-box{width:64%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:29%;} .listab-8 li .r-box{width:70%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:50%;margin:.3rem 0 0 0;padding:.02rem .1rem;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.24rem;font-size:.14rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{width:100%;padding:.5rem .15rem;} .listab-10 .img{width:auto;} .listab-11{padding:.5rem .2rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;font-size:.14rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;font-size:.14rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:48%;margin:0;} .listab-13 h2{padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;} .listab-13 .animat-r{display:none;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:48%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:5rem;height:5rem; margin-top:.5rem;background:url(../images/bg-lis-d2.png) no-repeat;background-position:top center;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:1.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:9.6rem;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} footer{height:2.5rem;} .footer-t{height:1rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:768px) and (max-width:959px) { .section-group h1{width:100%;padding:0 .5rem;line-height:.5rem;margin-top:.5rem;font-size:.32rem;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:100%;} .section-group .p-text{ font-size:.14rem;} .popup-signup{width:80%;top:10%;left:10%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.5rem 0;margin:0;} .sub-title h2{font-size:.3rem;line-height:.5rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.5rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{padding:0 .1rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2.6rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2.6rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1 h2 {font-size:.45rem;font-weight:400;padding:.25rem;line-height:.6rem;margin-top:.8rem;} .lis-1 h3{font-size:.2rem;font-weight:400;padding:.15rem 0;line-height:.3rem;} .lis-1 .animation-box{width:6.5rem;height:5.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:50%;margin-top:.6rem;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display: inline-block;} .lis-2 h2{font-size:.22rem;line-height:.3rem;padding:.5rem 0;} .lis-2 time{font-size:.16rem;line-height:.3rem;padding:.5rem;} .lis-2 .animation-box{width:3.6rem;margin-top:1rem;} .lis-2 .animation-box img{width:3.6rem;} .lis-3 ul{width:100%;margin-top:0;} .lis-3 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.16rem;height:1.4rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.3rem .15rem;} .lis-4 li{width:100%;margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:28%;} .lis-4 li .r-box{width:70%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.24rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.24rem;} .lis-5 li p{padding:.1rem 0;line-height:.24rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{display:none;} .lis-6{height:7.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{width:31.5%;height:3.4rem;margin:.3rem 0 0 1.3750%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.6rem;height:.6rem; margin:.2rem .1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:56%;padding:0 .15rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7{height:7rem;} .lis-7 ul{width:100%;margin-top:.3rem;} .lis-7 li{width:31.5%;height:3.4rem;margin:.3rem 0 0 1.3750%;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.16rem; line-height:.3rem;padding:.15rem 0;} .lis-8{height:7rem;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display: inline-block;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-8 .animation-box{width:3.5rem;} .lis-8 .animation-box img{width:3.5rem;} .lis-9 ul{ margin:.6rem auto;} .lis-9 li{display:inline-block;width:25%;} .lis-9 .pic-img{display:inline-block;width:33.333333% height:1.2rem;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:5rem;} .lis-10 h2{margin-top:1rem;padding:.15rem 0;font-size:.45rem;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:29%;} .listab-1 li .r-box{width:70%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;padding:0;} .listab-2c li{width:48%;margin:.3rem 1% 0 1%;overflow:hidden;} .listab-2c li .pic{/*height:2.25rem;*/} .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;padding:0;} .listab-2d li{width:48%;margin:.3rem 1% 0 1%;overflow:hidden;} .listab-2d li .pic{width:100%;} .listab-2d li .pic img{width:100%;overflow:hidden;} .listab-2d li .div-c{width:100%;height:.6rem;position:relative;left:0;top:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;padding: 0;font-size:.2rem;height:.6rem;line-height:.6rem;border:none;margin:0;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:48%;margin:.3rem 1% 0 1%; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:48%;height:3.5rem; margin:.3rem 1% 0 1%;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:90%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .0;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:24.6%;height:.4rem;} .listab-5 .lis-select:first-child{ } .listab-5 .div-c li{width:50%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:84%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 ;} .listab-6 .div-c{width:100%;} .listab-6 li{width:48%;margin:.3rem 1% 0 1%;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:1.2rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:35%;} .listab-7 li .r-box{width:64%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:29%;} .listab-8 li .r-box{width:70%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:50%;margin:.3rem 0 0 0;padding:.02rem .1rem;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.3rem;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{width:100%;line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:480px) and (max-width:767px) { .section-group h1{width:100%;padding:0 .15rem;line-height:.5rem;margin-top:.5rem;font-size:.35rem;} .section-group h1 .lis-icon{font-size:.45rem;} .section-group .p-text{ font-size:.14rem;} .container{width:100%;} .popup-signup{width:96%;top:10%;left:2%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.15rem 0;margin:0;} .sub-title h2{float:left;font-size:.2rem;line-height:.4rem;padding:.15rem 0;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{width:100%;font-size:.24rem;line-height:.5rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{float:left;line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{padding:0 .1rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1{height:7.4rem;} .lis-1 h2 {font-size:.35rem;font-weight:400;padding:.25rem;line-height:.5rem;margin-top:.5rem;} .lis-1 h3{font-size:.18rem;font-weight:400;padding:.15rem;line-height:.3rem;} .lis-1 .animation-box{width:4.5rem;height:4.5rem;} .lis-2 h3{font-size:.16rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:100%;margin-top:0;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display: inline-block;} .lis-2 h2{font-size:.2rem;line-height:.4rem;padding:.3rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.3rem;} .lis-2 .animation-box{width:4.5rem;} .lis-2 .animation-box img{width:4.5rem;} .lis-3 ul{width:100%;padding:0 .15rem;} .lis-3 li{width:100%;margin:.3rem 0;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:100%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.15rem;} .lis-4 li{width:100%; margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:100%;} .lis-4 li .r-box{width:100%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.12rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.2rem;} .lis-5 li p{padding:.1rem 0;line-height:.24rem;} .lis-5 li time{ line-height:.3rem;font-size:.12rem;} .lis-5 .img{display:none;} .lis-6 ul{margin-top:0;padding:0 .15rem;} .lis-6 li{width:100%;height:3.4rem; margin:.15rem 0;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:2.6rem;padding:0 .15rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7 ul{width:100%;margin-top:0;padding:0 .15rem;} .lis-7 li{width:100%;margin:.15rem 0;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box, .lis-8 .r-box{width:100%;padding:0 .15rem;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display: inline-block;} .lis-8 h2{font-size:.2rem;line-height:.4rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;} .lis-8 .animation-box{width:4.5rem;} .lis-8 .animation-box img{width:4.5rem;} .lis-9 ul{margin:.5rem 0;} .lis-9 li{display:inline-block;width:50%;margin-bottom:.15rem;} .lis-9 .pic-img{display:inline-block;width:100% ; overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:4rem;} .lis-10 h2{margin-top:.8rem;padding:.15rem;font-size:.35rem;} .lis-10 h3{padding:.15rem;font-size:.18rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:100%;} .listab-1 li .r-box{width:100%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;padding:0;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem 0;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{float:left;width:100%;margin-top:.3rem;padding:0;} .listab-2c li .pic{/*height:2.25rem;*/ } .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:100%;margin-top:.3rem;padding:0;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{ width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.2rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:100%;margin:.3rem 0 0 0; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:100%;height:3.5rem; margin:.3rem 0 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:85%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem 0;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:24.6%;height:.4rem;} .listab-5 .lis-select:first-child{ } .listab-5 .div-c li{width:100%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{/*height:4rem;*/line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:84%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .15rem;} .listab-6 .div-c{width:100%;} .listab-6 li{width:100%;margin:.3rem 0 0 0;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{ line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:100%;} .listab-7 li .r-box{width:100%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%; margin:0;} .listab-7 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.3rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:100%;} .listab-8 li .r-box{width:100%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:100%;margin:.3rem 0 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.5rem;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:.5rem;} .lis-listab-d1 .div-ta{width:100%;padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.4rem;height:1rem;line-height:.8rem;} .footer-b{height:1.3rem;padding:0 .15rem;} .footer-b address{height:.6rem;line-height:.3rem;font-size:.12rem; } .footer-b address a{display:inline;padding:0 .05rem;} } @media screen and (max-width:479px) { .section-group h1{width:100%;padding:0 .15rem;line-height:.5rem;margin-top:.5rem;font-size:.3rem;} .section-group h1 .lis-icon{font-size:.4rem;} .section-group .p-text{font-size:.14rem;} .container{width:100%;} .popup-signup{width:96%;top:0;left:2%;margin-top:1rem;} .popup-cbox{padding:.1rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.14rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.15rem 0;margin:0;} .sub-title h2{float:left;width:100%;font-size:.18rem;line-height:.3rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{width:100%;font-size:.18rem;line-height:.3rem;} .sub-title h3 .em-1{ height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{float:left;line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{width:100%;line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{width:100%;padding:0 .1rem;line-height:.7rem;font-size:.18rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{width:48%;height:.5rem;line-height:.5rem;margin:0 1%;font-size:.14rem; text-align:center;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{width:100%;padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{width:100%;margin:0; height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{display:inline-block;width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1{height:6rem;} .lis-1 h2 {font-size:.26rem;font-weight:400;padding:.15rem;line-height:.4rem;margin-top:.5rem;} .lis-1 h3{font-size:.16rem;font-weight:400;padding:.15rem;line-height:.3rem;} .lis-1 .animation-box{width:3.2rem;height:3.2rem;} .lis-2 h3{font-size:.14rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box, .lis-2 .r-box{width:100%;margin-top:0;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display:inline-block;} .lis-2 h2{font-size:.18rem;line-height:.3rem;padding:.15rem 0;} .lis-2 time{font-size:.12rem;line-height:.3rem;padding:.15rem;} .lis-2 .animation-box{width:3rem;} .lis-2 .animation-box img{width:3rem;} .lis-3 ul{width:100%;padding:0 .15rem;} .lis-3 li{width:100%;margin:.3rem 0;} .lis-3 li .pic{width:100%; } .lis-3 li .lis-3c{width:100%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.15rem;} .lis-4 li{width:100%; margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:100%;} .lis-4 li .r-box{width:100%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.12rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;padding:0 .15rem;} .lis-5 li{padding:0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .15rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.18rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;} .lis-5 li time{ line-height:.3rem;font-size:.12rem; } .lis-5 .img{display:none;} .lis-6 ul{margin-top:.15rem;padding:0 .15rem;} .lis-6 li{width:100%;height:3.4rem; margin:.15rem 0;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.16rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{float:left;width:1.5rem;padding:0;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7 ul{width:100%;margin-top:0;padding:0 .15rem;} .lis-7 li{width:100%;margin:.3rem 0;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box, .lis-8 .r-box{width:100%;padding:0 .15rem;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display:inline-block;} .lis-8 h2{font-size:.18rem;line-height:.5rem;} .lis-8 h3{font-size:.16rem;line-height:.4rem;} .lis-8 .animation-box{width:3rem;} .lis-8 .animation-box img{width:3rem;} .lis-9 ul{margin:.5rem 0;} .lis-9 li{display:inline-block;width:50%;margin-bottom:.15rem;} .lis-9 .pic-img{display:inline-block;width:100% ;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:4rem;} .lis-10 h2{margin-top:.8rem;padding:.15rem;font-size:.3rem;} .lis-10 h3{padding:.15rem;line-height:.3rem;font-size:.16rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:100%;} .listab-1 li .r-box{width:100%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.16rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{float:left;width:100%;margin-top:.3rem;padding:0;} .listab-2c li .pic{/*height:2.25rem;*/ } .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:100%;margin-top:.3rem;padding:0;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.18rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:100%;margin:.3rem 0 0 0; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.2rem;line-height:.3rem;margin:0;font-size:.16rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.18rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:100%;height:3.5rem; margin:.3rem 0 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:80%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .05rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:46%;height:.4rem;margin-bottom:.2rem;} .listab-5 .lis-select:first-child{} .listab-5 .div-c li{width:100%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.35rem 0;font-size:.2rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.3rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.2rem;} .lis-11 h3 span{width:80%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.16rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .15rem;} .listab-6 .div-c{width:100%;} .listab-6 li{width:100%;margin-top:.3rem;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{ line-height:.3rem;padding:.15rem 0;font-size:.16rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin-top:.3rem;} .listab-7 li .l-box{width:100%;} .listab-7 li .r-box{width:100%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%; margin:0;} .listab-7 li h2{padding:.15rem 0;line-height:.3rem;font-size:.16rem;} .listab-7 li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:100%;} .listab-8 li .r-box{width:100%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:100%;margin:.3rem 0 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.24rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.15rem 0;line-height:.3rem;} .listab-13{padding:.5rem .15rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem 0;font-size:.24rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.3rem;font-size:.2rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:3rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.15rem;} .lis-listab-d1 .div-tcb .pic{width:1.5rem;height:1.5rem;margin-top:.3rem;} .lis-listab-d1 .div-ta{width:100%;padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;text-align:left;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.4rem;height:1rem;line-height:.8rem;} .footer-b{height:1.3rem;padding:0 .15rem;} .footer-b address{height:.6rem;line-height:.3rem;font-size:.12rem;} .footer-b address a{display:inline;padding:0 .05rem;} }
static/css/meta-sub.css
/* * ---------------------------------------------------------------------------- * CSS Document @media screen Start * Author: DistantSound * IDE : * <p class="f-l p-text c-gray"> ..... </p> .p-text 样式 ,可改成 <div class="f-l p-text c-gray"> ..... </div> * ---------------------------------------------------------------------------- */ @media screen and (min-width:1200px) { .section-group h1{width:100%;margin-top:.5rem;font-size:.45rem;font-weight:400;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:12rem;} .section-group .p-text{font-size:.14rem;} .popup-signup{width:6rem;margin-top:-2rem;margin-left:-3rem;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title{padding:.3rem 0;} .sub-title h2{font-size:.3rem;padding:.3rem 0;line-height:.6rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e; } .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;} .sub-select{width:1.4rem;} .sub-select ul{width:1.4rem;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li{padding:0 .2rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .en-tabhd-1 li:first-child{margin-left:3.2rem;} .en-tabhd-2 li:first-child{margin-left:1.8rem;} .en-tabhd-3 li:first-child{margin-left:4.2rem;} .en-tabhd-4 li:first-child{margin-left:5.4rem;} .en-tabhd-5 li:first-child{margin-left:4rem;} .en-tabhd-6 li:first-child{margin-left:2.2rem;} .en-tabhd-7 li:first-child{margin-left:5.5rem;} .zh-tabhd-1 li:first-child{margin-left:3.9rem;} .zh-tabhd-2 li:first-child{margin-left:3.4rem;} .zh-tabhd-3 li:first-child{margin-left:5rem;} .zh-tabhd-4 li:first-child{margin-left:5.4rem;} .zh-tabhd-5 li:first-child{margin-left:4.6rem;} .zh-tabhd-6 li:first-child{margin-left:3.4rem;} .zh-tabhd-7 li:first-child{margin-left:5.5rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;} header{height:.85rem;position:fixed;left:0;top:0;z-index:9990;} .header-right-nav{display:none;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-c{width:100%;height:.8rem;} .header-c .l-box{margin-left:3%;} .header-c .t-logo{width:2.62rem;margin-top:.2rem;} .header-c .t-logo img{width:2.62rem;} .header-c .r-box{width:auto;margin-top:0;margin-right:3%;} .header-c nav{height:.85rem;} .header-c nav a{height:.85rem;line-height:.85rem;font-size:.18rem;font-weight:400;padding:0 .24rem;} .lang-box{width:1rem;height:.4rem;line-height:.4rem;margin-top:.225rem;margin-left:.2rem;font-size:.14rem;} .lang-box a{height:.4rem;line-height:.4rem;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.1rem;margin-right:.06rem;} .lis-1{height:10.6rem;} .lis-1 h2 {font-size:.45rem;font-weight:400;padding:.25rem;line-height:.8rem;margin-top:1.2rem;} .lis-1 h3{font-size:.2rem;font-weight:400;line-height:.3rem;} .lis-1 .animation-box{width:8.5rem;height:5.5rem;} .lis-2{height:9.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;} .lis-2 .l-box, .r-box{width:48%;margin-top:.6rem;} .lis-2 .lis-2l{display:inline-block;} .lis-2 .lis-2r{display:none;} .lis-2 h2{font-size:.28rem;line-height:.4rem;padding:.5rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.5rem;} .lis-3{height:10.6rem;} .lis-3 ul{width:12.34rem;margin-top:.3rem;} .lis-3 li{width:3.8rem;margin-right:.3rem;} .lis-3 li .pic{width:100%;height:2.25rem;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.2rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .lis-4{height:8.2rem;} .lis-4 ul{width:12.62rem;} .lis-4 li{width:5.7rem; margin:0 .5rem .5rem 0;} .lis-4 li .l-box{width:2.1rem;} .lis-4 li .r-box{width:3.6rem;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:2.1rem;height:1.25rem;} .lis-4 li h2{line-height:.3rem;font-size:.2rem;} .lis-4 li p{padding:.1rem 0;line-height:.3rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-5{height:14.2rem;} .lis-5 .l-box, .lis-5 .r-box{width:5.8rem;margin-top:.3rem;padding:.15rem 0;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li a{padding:.2rem .15rem;} .lis-5 li h2{line-height:.3rem;font-size:.2rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{width:5.7rem;} .lis-6{height:8.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{width:29%;height:3.4rem; margin:0 0 0 3.222222%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:80%;height:1rem;margin:-.5rem 10%;} .lis-6 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .lis-6 li .pic img{width:.8rem;height:.8rem;} .lis-6 li .r-box{width:1.6rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li span{line-height:.3rem;font-size:.14rem;} .lis-7{height:10.6rem;} .lis-7 ul{width:12.34rem;margin-top:.3rem;} .lis-7 li{width:3.8rem;margin-right:.3rem;} .lis-7 li .pic{height:2.25rem;} .lis-7 li .lis-3c{padding:0 .15rem;} .lis-7 li h2{font-size:.2rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display:inline-block;} .lis-8 .lis-8r{display:none;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-9{height:6.2rem;} .lis-9 ul{margin:.6rem 0 0 0;} .lis-9 li{width:3rem;} .lis-10{height:6rem;} .lis-10 h2{margin-top:2.1rem;padding:.15rem 0;font-size:.45em;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .2rem;} .listab-1 .div-c{width:105%;} .listab-1 li{width:11.6rem;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:3.9rem;} .listab-1 li .r-box{width:7.5rem;} .listab-1 li .pic{width:3.9rem;height:2.4rem;margin-top:.2rem;} .listab-1 li .pic .em{width:3.7rem;height:2.4rem;} .listab-1 li .pic img{width:3.7rem;height:2.4rem;margin-top:-.2rem;z-index:10;} .listab-1 li h4{line-height:.5rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .2rem;} .listab-2a .l-box{width:58%;margin-top:.3rem;} .listab-2a .r-box{width:40%;margin-top:.3rem;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.15rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2b p{width:100%;padding:.15rem;line-height:.3rem;} .listab-2c ul{width:105%;} .listab-2c li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-2c li .pic{height:2.25rem;} .listab-2c li .div-c{width:96%;padding:0 .15rem;} .listab-2c li h2{font-size:.18rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:105%;} .listab-2d li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-2d li .pic{height:2.25rem;} .listab-2d li .pic img{height:2.25rem;} .listab-2d li .div-c{height:2.25rem;padding:.2rem;} .listab-2d li .div-c h2{width:100%;font-size:.3rem;margin-top:.3rem;line-height:.5rem;padding:.15rem 0;} .listab-3{width:100%;padding:0 .2rem;} .listab-3 .div-c{width:105%;} .listab-3 li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.2rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .2rem;} .listab-4 .div-c{width:105%;} .listab-4 li{width:3.73rem;height:3.6rem;margin:.3rem .2rem 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li .div-b{width:80%;height:1rem;margin:-.5rem 10%;} .listab-4 li .l-box{width:1.7rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:105%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:6.5rem; height:.5rem;line-height:.5rem;padding:0 .15rem; font-size:.14rem;margin:0 0 .5rem 2.4rem;} .listab-5 .div-t .info-search{width:6.5rem;margin:0 0 .5rem 2.4rem;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .15rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:1.4rem;height:.4rem;margin-right:0;} .listab-5 .lis-select:first-child{margin-left:2.5rem;} .listab-5 .div-c li{width:5.7rem;margin:.1rem .2rem 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:2.6rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .2rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:9.6rem; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .2rem;} .listab-6 .div-c{width:105%;} .listab-6 li{width:3.73rem;margin:.3rem .2rem 0 0;} .listab-6 li .pic{height:2.25rem;} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:.96rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .2rem;} .listab-7 .div-c{width:105%;} .listab-7 li{width:5.7rem;margin:.3rem .2rem 0 0;} .listab-7 li .l-box{width:2.3rem;} .listab-7 li .r-box{width:3.4rem;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:2.3rem;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .2rem;} .listab-8 .div-c{width:105%;} .listab-8 li{width:5.7rem;margin:.3rem .2rem 0 0;} .listab-8 li .l-box{width:2.3rem;} .listab-8 li .r-box{width:3.4rem;margin:0;padding:0 .15rem;} .listab-8 li .pic{width:2.3rem;height:1.25rem;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .2rem;} .listab-9 .div-c{width:105%;} .listab-9 li{width:5.7rem;margin:.3rem .2rem 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:5.7rem;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{width:100%;padding:.5rem .2rem;} .listab-10 .img{width:auto;} .listab-11{padding:.5rem .2rem;} .listab-11 .l-box, .listab-11 .r-box{width:48%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;font-size:.14rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:48%;margin:0;} .listab-13 h2{padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:5.5rem;height:6.35rem;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;} .listab-13 .animat-r{display:none;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:48%;} .lis-listab-d1 .p-text{padding:.15rem;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:5rem;height:5rem; margin-top:.5rem;background:url(../images/bg-lis-d2.png) no-repeat;background-position:top center;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:1.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:9.6rem;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} footer{height:2.45rem;} .footer-t{height:1.2rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:960px) and (max-width:1199px) { .section-group h1{width:100%;padding:0 .25rem;line-height:.5rem;margin-top:1rem;font-size:.3rem;font-weight:400;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:100%;} .section-group .p-text{ font-size:.14rem;} .popup-signup{width:80%;top:10%;left:10%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.3rem .15rem;} .sub-title h2{font-size:.3rem;line-height:.5rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:1.4rem;} .sub-select ul{width:1.4rem;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li{padding:0 .2rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2.6rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2.6rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1 h2{font-size:.45rem;font-weight:400;padding:.25rem;line-height:.6rem;margin-top:.8rem;} .lis-1 h3{font-size:.2rem;font-weight:400;line-height:.3rem;} .lis-1 .animation-box{width:8.5rem;height:5.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:50%;margin-top:.6rem;padding:0 .15rem;} .lis-2 .lis-2l{display:inline-block;} .lis-2 .lis-2r{display:none;} .lis-2 h2{font-size:.28rem;line-height:.4rem;padding:.5rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.5rem;} .lis-2 .animation-box{width:4.6rem;} .lis-2 .animation-box img{width:4.6rem;} .lis-3{height:9.6rem;} .lis-3 ul{width:100%;margin-top:.3rem;} .lis-3 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem;height:1.2rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.3rem .15rem;} .lis-4 li{width:100%; margin:0 0 .3rem 0;position:relative;} .lis-4 li .l-box{width:28%;} .lis-4 li .r-box{width:70%;margin:0;padding:0 ;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5{height:13rem;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.2rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.18rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{display:none;} .lis-6{height:8.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{height:3.5rem;} .lis-6 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;font-size:.12rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:56%;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7{height:9.6rem;} .lis-7 ul{width:100%;margin-top:.3rem;} .lis-7 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display: inline-block;} .lis-8 .lis-8r{display:none;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-8 .animation-box{width:4.5rem;} .lis-8 .animation-box img{width:4.5rem;} .lis-9 ul{margin:.6rem 0;} .lis-9 li{display:inline-block;width:25%;} .lis-9 .pic-img{display:inline-block;width:33.333333% height:1.2rem;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:6rem;} .lis-10 h2{margin-top:1.8rem;padding:.15rem 0;font-size:.5rem;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:29%;} .listab-1 li .r-box{width:70%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;font-size:.14rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{width:32%;margin:.3rem 0 0 1%;} .listab-2c li .pic{/*height:2.25rem;*/} .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:32%;margin:.3rem 0 0 1%;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{ width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.2rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:32%;margin:.3rem 0 0 1%;} .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:32%;height:3.5rem; margin:.3rem 0 0 1%;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;font-size:.12rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:90%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .15rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:1.4rem;height:.4rem;margin-right:0;} .listab-5 .lis-select:first-child{margin-left:1.5rem;} .listab-5 .div-c li{width:50%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;font-size:.12rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:8rem; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;font-size:.14rem;} .listab-6{width:100%;padding:0;} .listab-6 .div-c{width:100%;} .listab-6 li{width:32%;margin:.3rem 0 0 1%;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:1.2rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:50%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:35%;} .listab-7 li .r-box{width:64%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:29%;} .listab-8 li .r-box{width:70%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:50%;margin:.3rem 0 0 0;padding:.02rem .1rem;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.24rem;font-size:.14rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{width:100%;padding:.5rem .15rem;} .listab-10 .img{width:auto;} .listab-11{padding:.5rem .2rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;font-size:.14rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;font-size:.14rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:48%;margin:0;} .listab-13 h2{padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;} .listab-13 .animat-r{display:none;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:48%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:5rem;height:5rem; margin-top:.5rem;background:url(../images/bg-lis-d2.png) no-repeat;background-position:top center;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:1.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:9.6rem;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} footer{height:2.5rem;} .footer-t{height:1rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:768px) and (max-width:959px) { .section-group h1{width:100%;padding:0 .5rem;line-height:.5rem;margin-top:.5rem;font-size:.32rem;} .section-group h1 .lis-icon{font-size:.5rem;} .container{width:100%;} .section-group .p-text{ font-size:.14rem;} .popup-signup{width:80%;top:10%;left:10%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.5rem 0;margin:0;} .sub-title h2{font-size:.3rem;line-height:.5rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{font-size:.3rem;line-height:.3rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{line-height:.5rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{height:.7rem;line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{padding:0 .1rem;height:.7rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2.6rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2.6rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1 h2 {font-size:.45rem;font-weight:400;padding:.25rem;line-height:.6rem;margin-top:.8rem;} .lis-1 h3{font-size:.2rem;font-weight:400;padding:.15rem 0;line-height:.3rem;} .lis-1 .animation-box{width:6.5rem;height:5.5rem;} .lis-2 h3{font-size:.18rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:50%;margin-top:.6rem;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display: inline-block;} .lis-2 h2{font-size:.22rem;line-height:.3rem;padding:.5rem 0;} .lis-2 time{font-size:.16rem;line-height:.3rem;padding:.5rem;} .lis-2 .animation-box{width:3.6rem;margin-top:1rem;} .lis-2 .animation-box img{width:3.6rem;} .lis-3 ul{width:100%;margin-top:0;} .lis-3 li{width:31.5%;margin:.3rem 0 0 1.3750%;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:96%;padding:0 .15rem;} .lis-3 li h2{font-size:.16rem;height:1.4rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.3rem .15rem;} .lis-4 li{width:100%;margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:28%;} .lis-4 li .r-box{width:70%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.24rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.14rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.24rem;} .lis-5 li p{padding:.1rem 0;line-height:.24rem;} .lis-5 li time{ line-height:.3rem;font-size:.14rem; } .lis-5 .img{display:none;} .lis-6{height:7.5rem;} .lis-6 ul{margin-top:.3rem;} .lis-6 li{width:31.5%;height:3.4rem;margin:.3rem 0 0 1.3750%;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.6rem;height:.6rem; margin:.2rem .1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:56%;padding:0 .15rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7{height:7rem;} .lis-7 ul{width:100%;margin-top:.3rem;} .lis-7 li{width:31.5%;height:3.4rem;margin:.3rem 0 0 1.3750%;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.16rem; line-height:.3rem;padding:.15rem 0;} .lis-8{height:7rem;} .lis-8 .l-box{width:46%;} .lis-8 .r-box{width:50%;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display: inline-block;} .lis-8 h2{font-size:.28rem;line-height:.4rem;padding:.15rem .6rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;padding:0 .6rem;} .lis-8 .animation-box{width:3.5rem;} .lis-8 .animation-box img{width:3.5rem;} .lis-9 ul{ margin:.6rem auto;} .lis-9 li{display:inline-block;width:25%;} .lis-9 .pic-img{display:inline-block;width:33.333333% height:1.2rem;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:5rem;} .lis-10 h2{margin-top:1rem;padding:.15rem 0;font-size:.45rem;} .lis-10 h3{padding:.15rem 0;font-size:.2rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:29%;} .listab-1 li .r-box{width:70%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;padding:0;} .listab-2c li{width:48%;margin:.3rem 1% 0 1%;overflow:hidden;} .listab-2c li .pic{/*height:2.25rem;*/} .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;padding:0;} .listab-2d li{width:48%;margin:.3rem 1% 0 1%;overflow:hidden;} .listab-2d li .pic{width:100%;} .listab-2d li .pic img{width:100%;overflow:hidden;} .listab-2d li .div-c{width:100%;height:.6rem;position:relative;left:0;top:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;padding: 0;font-size:.2rem;height:.6rem;line-height:.6rem;border:none;margin:0;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:48%;margin:.3rem 1% 0 1%; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:48%;height:3.5rem; margin:.3rem 1% 0 1%;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:90%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .0;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:24.6%;height:.4rem;} .listab-5 .lis-select:first-child{ } .listab-5 .div-c li{width:50%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:84%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 ;} .listab-6 .div-c{width:100%;} .listab-6 li{width:48%;margin:.3rem 1% 0 1%;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{height:1.2rem;line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:35%;} .listab-7 li .r-box{width:64%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%;height:1.25rem;margin:0;} .listab-7 li h2{height:.96rem;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.4rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:29%;} .listab-8 li .r-box{width:70%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:50%;margin:.3rem 0 0 0;padding:.02rem .1rem;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.3rem;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:.5rem;} .lis-listab-d1 .div-ta{padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{width:100%;line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.5rem;height:1rem;line-height:.8rem;} .footer-b{height:1.25rem;} .footer-b address{height:1rem;line-height:1rem;font-size:.14rem;} .footer-b address a{padding:0 .05rem;} } @media screen and (min-width:480px) and (max-width:767px) { .section-group h1{width:100%;padding:0 .15rem;line-height:.5rem;margin-top:.5rem;font-size:.35rem;} .section-group h1 .lis-icon{font-size:.45rem;} .section-group .p-text{ font-size:.14rem;} .container{width:100%;} .popup-signup{width:96%;top:10%;left:2%;margin:0;} .popup-cbox{padding:.2rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.16rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.15rem 0;margin:0;} .sub-title h2{float:left;font-size:.2rem;line-height:.4rem;padding:.15rem 0;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{width:100%;font-size:.24rem;line-height:.5rem;} .sub-title h3 .em-1{height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{float:left;line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{padding:0 .1rem;line-height:.7rem;font-size:.16rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{height:.5rem;line-height:.5rem;margin-right:.15rem;font-size:.16rem;padding:0 .25rem;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1{height:7.4rem;} .lis-1 h2 {font-size:.35rem;font-weight:400;padding:.25rem;line-height:.5rem;margin-top:.5rem;} .lis-1 h3{font-size:.18rem;font-weight:400;padding:.15rem;line-height:.3rem;} .lis-1 .animation-box{width:4.5rem;height:4.5rem;} .lis-2 h3{font-size:.16rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box,.lis-2 .r-box{width:100%;margin-top:0;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display: inline-block;} .lis-2 h2{font-size:.2rem;line-height:.4rem;padding:.3rem 0;} .lis-2 time{font-size:.18rem;line-height:.3rem;padding:.3rem;} .lis-2 .animation-box{width:4.5rem;} .lis-2 .animation-box img{width:4.5rem;} .lis-3 ul{width:100%;padding:0 .15rem;} .lis-3 li{width:100%;margin:.3rem 0;} .lis-3 li .pic{width:100%;} .lis-3 li .lis-3c{width:100%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.15rem;} .lis-4 li{width:100%; margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:100%;} .lis-4 li .r-box{width:100%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.12rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;margin-top:.3rem;padding:.15rem;} .lis-5 li{padding:.15rem 0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .3rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.2rem;} .lis-5 li p{padding:.1rem 0;line-height:.24rem;} .lis-5 li time{ line-height:.3rem;font-size:.12rem;} .lis-5 .img{display:none;} .lis-6 ul{margin-top:0;padding:0 .15rem;} .lis-6 li{width:100%;height:3.4rem; margin:.15rem 0;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.2rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{width:2.6rem;padding:0 .15rem;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7 ul{width:100%;margin-top:0;padding:0 .15rem;} .lis-7 li{width:100%;margin:.15rem 0;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box, .lis-8 .r-box{width:100%;padding:0 .15rem;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display: inline-block;} .lis-8 h2{font-size:.2rem;line-height:.4rem;} .lis-8 h3{font-size:.24rem;line-height:.5rem;} .lis-8 .animation-box{width:4.5rem;} .lis-8 .animation-box img{width:4.5rem;} .lis-9 ul{margin:.5rem 0;} .lis-9 li{display:inline-block;width:50%;margin-bottom:.15rem;} .lis-9 .pic-img{display:inline-block;width:100% ; overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:4rem;} .lis-10 h2{margin-top:.8rem;padding:.15rem;font-size:.35rem;} .lis-10 h3{padding:.15rem;font-size:.18rem;line-height:.35rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:100%;} .listab-1 li .r-box{width:100%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;padding:0;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem 0;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{float:left;width:100%;margin-top:.3rem;padding:0;} .listab-2c li .pic{/*height:2.25rem;*/ } .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:100%;margin-top:.3rem;padding:0;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{ width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.2rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:100%;margin:.3rem 0 0 0; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.5rem;line-height:.3rem;margin:0;font-size:.18rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.2rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:100%;height:3.5rem; margin:.3rem 0 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:85%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem 0;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:24.6%;height:.4rem;} .listab-5 .lis-select:first-child{ } .listab-5 .div-c li{width:100%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{/*height:4rem;*/line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.5rem 0;font-size:.24rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.35rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.26rem;} .lis-11 h3 span{width:84%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.18rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .15rem;} .listab-6 .div-c{width:100%;} .listab-6 li{width:100%;margin:.3rem 0 0 0;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{ line-height:.3rem;padding:.15rem 0;font-size:.18rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin:.3rem 0 0 0;} .listab-7 li .l-box{width:100%;} .listab-7 li .r-box{width:100%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%; margin:0;} .listab-7 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-7 li time{line-height:.3rem;font-size:.14rem;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:100%;} .listab-8 li .r-box{width:100%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:100%;margin:.3rem 0 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.3rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.5rem 0;line-height:.3rem;} .listab-13{padding:.5rem .2rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem .2rem;font-size:.3rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.5rem;font-size:.22rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:4rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.5rem;} .lis-listab-d1 .div-tcb .pic{width:2rem;height:2rem;margin-top:.5rem;} .lis-listab-d1 .div-ta{width:100%;padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.4rem;height:1rem;line-height:.8rem;} .footer-b{height:1.3rem;padding:0 .15rem;} .footer-b address{height:.6rem;line-height:.3rem;font-size:.12rem; } .footer-b address a{display:inline;padding:0 .05rem;} } @media screen and (max-width:479px) { .section-group h1{width:100%;padding:0 .15rem;line-height:.5rem;margin-top:.5rem;font-size:.3rem;} .section-group h1 .lis-icon{font-size:.4rem;} .section-group .p-text{font-size:.14rem;} .container{width:100%;} .popup-signup{width:96%;top:0;left:2%;margin-top:1rem;} .popup-cbox{padding:.1rem;} .popup-signup h1{height:.5rem;line-height:.5rem;padding:0 .15rem;font-size:.14rem;} .popup-signup .popup-close{width:.5rem;height:.5rem;line-height:.5rem;font-size:.2rem;} .sub-title {padding:.15rem 0;margin:0;} .sub-title h2{float:left;width:100%;font-size:.18rem;line-height:.3rem;} .sub-title h2 .em-1{display:inline;height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title h3{width:100%;font-size:.18rem;line-height:.3rem;} .sub-title h3 .em-1{ height:.3rem;margin-top:.075rem;margin-right:.15rem;border-left:.04rem solid #05c38e;} .sub-title span{float:left;line-height:.3rem;font-size:.14rem;} .page-box{margin-top:.2rem;display:none;} .sub-select{width:100%;} .sub-select ul{width:101%;} .tab-box .hd{width:100%;border-bottom:1px solid rgba(0, 0, 0, .08);} .tab-box .hd ul{width:100%;line-height:.7rem;} .tab-box .hd li a{width:100%;font-weight:400;} .tab-box .hd li{width:100%;padding:0 .1rem;line-height:.7rem;font-size:.18rem;} .tab-box .hd li .em{height:.01rem;} .lis-subteb ul{padding:.15rem 0;} .lis-subteb .tab-item{width:48%;height:.5rem;line-height:.5rem;margin:0 1%;font-size:.14rem; text-align:center;font-weight:400;} .header-right-nav{background-color:#071162;width:.45rem;height:.45rem;line-height:.45rem;position:fixed;right:.15rem;top:.15rem;z-index:9999;} .header-right-nav .iconfont{width:.45rem;height:.45rem;line-height:.45rem;font-size:.3rem;text-align:center;} .top-header{position:fixed;top:0;right:-80%;z-index:9990;width:80%;height:100%;padding:0 .15rem ;background-color:#071162;overflow-x:hidden;} .header-c{width:100%;padding:0 .15rem;} .header-c .l-box{width:100%;} .header-c .t-logo{width:2rem;margin-top:.8rem;margin-left:0;} .header-c .t-logo img{width:2rem;} .header-c .r-box{width:100%;} .header-c nav{float:left;width:100%;padding:.4rem 0;} .header-c nav a{float:left;width:100%;height:.5rem;text-align:left;line-height:.5rem; font-size:.16rem;font-weight:400;position:relative;} .header-c nav a .em{display:none;} .header-c nav a:hover, .header-c nav .current{color:#05c191;} .lang-box{width:100%;height:.5rem;line-height:.5rem;font-size:.16rem;border-top:1px solid #217aa9;} .lang-box a{width:100%;margin:0; height:.5rem;line-height:.5rem;text-align:center;} .lang-box a .pic{display:inline-block;width:.2rem;height:.2rem;margin-top:.15rem;margin-right:.08rem;} .lis-1{height:6rem;} .lis-1 h2 {font-size:.26rem;font-weight:400;padding:.15rem;line-height:.4rem;margin-top:.5rem;} .lis-1 h3{font-size:.16rem;font-weight:400;padding:.15rem;line-height:.3rem;} .lis-1 .animation-box{width:3.2rem;height:3.2rem;} .lis-2 h3{font-size:.14rem;line-height:.3rem;padding:0 .15rem;} .lis-2 .l-box, .lis-2 .r-box{width:100%;margin-top:0;padding:0 .15rem;} .lis-2 .lis-2l{display:none;} .lis-2 .lis-2r{display:inline-block;} .lis-2 h2{font-size:.18rem;line-height:.3rem;padding:.15rem 0;} .lis-2 time{font-size:.12rem;line-height:.3rem;padding:.15rem;} .lis-2 .animation-box{width:3rem;} .lis-2 .animation-box img{width:3rem;} .lis-3 ul{width:100%;padding:0 .15rem;} .lis-3 li{width:100%;margin:.3rem 0;} .lis-3 li .pic{width:100%; } .lis-3 li .lis-3c{width:100%;padding:0 .15rem;} .lis-3 li h2{font-size:.18rem;line-height:.3rem;padding:.15rem 0;} .lis-3 li time{line-height:.3rem;font-size:.12rem;padding:.1rem 0;} .lis-4 ul{width:100%;padding:.15rem;} .lis-4 li{width:100%; margin:0 0 .5rem 0;position:relative;} .lis-4 li .l-box{width:100%;} .lis-4 li .r-box{width:100%;margin:0;padding:0 .15rem;} .lis-4 li .pic{width:100%;} .lis-4 li h2{line-height:.3rem;font-size:.18rem;} .lis-4 li p{padding:.1rem 0;line-height:.24rem;} .lis-4 li time{width:100%;line-height:.4rem;font-size:.12rem;} .lis-4 li .em{position:absolute;left:0;bottom:0;} .lis-5 .l-box, .lis-5 .r-box{width:100%;padding:0 .15rem;} .lis-5 li{padding:0;} .lis-5 li a{padding:.15rem;} .lis-5 li{margin:0 .3rem .15rem 0;} .lis-5 li h2{line-height:.3rem;font-size:.18rem;} .lis-5 li p{padding:.1rem 0;line-height:.3rem;} .lis-5 li time{ line-height:.3rem;font-size:.12rem; } .lis-5 .img{display:none;} .lis-6 ul{margin-top:.15rem;padding:0 .15rem;} .lis-6 li{width:100%;height:3.4rem; margin:.15rem 0;} .lis-6 li .lis-6t{height:2.85rem;padding:.15rem;} .lis-6 li h3{height:.5rem;line-height:.5rem;font-size:.16rem;} .lis-6 li p{height:1.2rem;line-height:.3rem;} .lis-6 li .lis-6b{width:90%;height:1rem;margin:-.5rem 5%;} .lis-6 li .pic{width:.8rem;height:.8rem; margin:.1rem;} .lis-6 li .pic img{width:100%;} .lis-6 li .r-box{float:left;width:1.5rem;padding:0;} .lis-6 li h2{height:.5rem;line-height:.5rem;font-size:.18rem;} .lis-6 li span{line-height:.3rem;font-size:.12rem;} .lis-7 ul{width:100%;margin-top:0;padding:0 .15rem;} .lis-7 li{width:100%;margin:.3rem 0;} .lis-7 li .pic{width:100%;} .lis-7 li .lis-3c{width:100%;padding:0 .15rem;} .lis-7 li h2{font-size:.18rem; line-height:.3rem;padding:.15rem 0;} .lis-8 .l-box, .lis-8 .r-box{width:100%;padding:0 .15rem;} .lis-8 .lis-8l{display:none;} .lis-8 .lis-8r{display:inline-block;} .lis-8 h2{font-size:.18rem;line-height:.5rem;} .lis-8 h3{font-size:.16rem;line-height:.4rem;} .lis-8 .animation-box{width:3rem;} .lis-8 .animation-box img{width:3rem;} .lis-9 ul{margin:.5rem 0;} .lis-9 li{display:inline-block;width:50%;margin-bottom:.15rem;} .lis-9 .pic-img{display:inline-block;width:100% ;overflow:hidden;} .lis-9 .pic-img img{display:inline-block;width:100%;} .lis-10{height:4rem;} .lis-10 h2{margin-top:.8rem;padding:.15rem;font-size:.3rem;} .lis-10 h3{padding:.15rem;line-height:.3rem;font-size:.16rem;} .listab-1{width:100%;padding:0 .15rem;} .listab-1 .div-c{width:100%;} .listab-1 li{width:100%;margin-top:.3rem;padding:.15rem 0;} .listab-1 li .l-box{width:100%;} .listab-1 li .r-box{width:100%;} .listab-1 li .pic{width:100%;} .listab-1 li .pic .em{display:none;} .listab-1 li .pic img{width:100%;position:relative;} .listab-1 li h4{line-height:.4rem;font-size:.14rem;} .listab-1 li h2{line-height:.3rem;margin:0;font-size:.16rem;} .listab-1 li p{padding:.15rem 0;line-height:.3rem;} .listab-1 li time{line-height:.3rem;font-size:.14rem;} .listab-1 li address{line-height:.3rem;font-size:.14rem;} .listab-2{width:100%;padding:0 .15rem;} .listab-2a .l-box{width:100%;margin-top:.3rem;} .listab-2a .r-box{display:none;} .listab-2a img{width:100%;margin-top:.1rem;} .listab-2a p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b p{width:100%;padding:.1rem 0;line-height:.3rem;} .listab-2b .c-box{margin-top:.3rem;} .listab-2c ul{width:100%;} .listab-2c li{float:left;width:100%;margin-top:.3rem;padding:0;} .listab-2c li .pic{/*height:2.25rem;*/ } .listab-2c li .div-c{width:100%;padding:0 .15rem;} .listab-2c li h2{font-size:.16rem;height:.9rem;line-height:.3rem;padding:.15rem 0;} .listab-2c li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-2d ul{width:100%;} .listab-2d li{width:100%;margin-top:.3rem;padding:0;} .listab-2d li .pic{/*height:2.25rem;*/} .listab-2d li .pic img{width:100%;} .listab-2d li .div-c{position:relative;left:0;top:0;margin:0; height:.6rem;padding:0;background-color: rgba(36, 31, 115, .7);transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-2d li .div-c h2{width:100%;font-size:.18rem;height:.6rem;line-height:.6rem;padding: 0;border:none;} .listab-2d li:hover .div-c{transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);} .listab-3{width:100%;padding:0 .15rem;} .listab-3 .div-c{width:100%;} .listab-3 li{width:100%;margin:.3rem 0 0 0; } .listab-3 li img{width:.7rem;} .listab-3 li h2{height:1.2rem;line-height:.3rem;margin:0;font-size:.16rem;padding:.15rem;} .listab-3 li time{padding:.15rem 0;line-height:.3rem;font-size:.14rem;} .listab-3 li a{width:60%;margin:0 20%;line-height:.5rem;font-size:.18rem;} .listab-4{width:100%;padding:0 .1rem;} .listab-4 .div-c{width:100%;} .listab-4 li{width:100%;height:3.5rem; margin:.3rem 0 0 0;} .listab-4 li .div-t{height:3rem;padding:.15rem;} .listab-4 li h3{width:100%;height:.5rem;line-height:.5rem;font-size:.18rem;} .listab-4 li p{height:1.2rem;line-height:.3rem;} .listab-4 li .div-b{width:90%;height:1rem;margin:-.5rem 5%;} .listab-4 li .pic{width:.8rem;height:.8rem;margin:.1rem;} .listab-4 li .l-box{width:1.4rem;margin:.1rem;} .listab-4 li h2{height:.5rem;line-height:.5rem;font-size:.2rem;width:100%;} .listab-4 li span{line-height:.3rem;font-size:.14rem;width:100%;} .listab-5{width:100%;padding:0 .15rem;} .listab-5 .div-c{width:100%;} .listab-5 .div-t{padding:.5rem 0;} .listab-5 .div-t .info-search{width:80%;} .listab-5 .div-t .bnt-search{float:right;} .listab-5 .div-t .em-l{width:0;height:.3rem;line-height:.3rem;margin:.05rem .05rem;border-left:1px solid rgba(0, 0, 0, .08);} .listab-5 .lis-select{width:46%;height:.4rem;margin-bottom:.2rem;} .listab-5 .lis-select:first-child{} .listab-5 .div-c li{width:100%;margin:.1rem 0 0 0;padding:0 .15rem;} .listab-5 .div-c li h2{height:.5rem;line-height:.4rem;font-size:.2rem;} .listab-5 .div-c li .pic{width:1.2rem;height:1.2rem;margin:.1rem;} .listab-5 .div-c li .div{padding:.15rem 0;} .listab-5 .div-c li h3{line-height:.4rem;font-size:.16rem;} .listab-5 .div-c li h3 .iconfont{font-size:.24rem;padding:0 .1rem 0 0;} .listab-5 .div-c li p{height:4rem;line-height:.3rem;padding:.15rem 0;} .lis-11{width:100%;padding:0 .15rem;} .lis-11 h2{line-height:.3rem;margin:0;padding:.35rem 0;font-size:.2rem;} .lis-11 h3{height:.6rem;line-height:.6rem;margin-top:.1rem;padding:0 .15rem;font-size:.18rem;text-align:left;} .lis-11 h3 .i-l{height:.6rem;line-height:.6rem;font-size:.3rem;} .lis-11 h3 .i-r{height:.6rem;line-height:.6rem;font-size:.2rem;} .lis-11 h3 span{width:80%; padding:0 .15rem;height:.6rem;line-height:.6rem;font-size:.16rem;} .lis-11 ul li{margin:.05rem 0;} .lis-11 ul li p{padding:.15rem;line-height:.3rem;} .listab-6{width:100%;padding:0 .15rem;} .listab-6 .div-c{width:100%;} .listab-6 li{width:100%;margin-top:.3rem;} .listab-6 li .pic{/*height:2.25rem;*/} .listab-6 li .div-b{padding:0 .15rem;} .listab-6 li h2{ line-height:.3rem;padding:.15rem 0;font-size:.16rem;} .listab-7{width:100%;padding:0 .15rem;} .listab-7 .div-c{width:100%;} .listab-7 li{width:100%;margin-top:.3rem;} .listab-7 li .l-box{width:100%;} .listab-7 li .r-box{width:100%;margin:0;padding:0 .15rem;} .listab-7 li .pic{width:100%; margin:0;} .listab-7 li h2{padding:.15rem 0;line-height:.3rem;font-size:.16rem;} .listab-7 li time{line-height:.3rem;font-size:.14rem;padding:.1rem 0;} .listab-8{width:100%;padding:0 .15rem;} .listab-8 .div-c{width:100%;} .listab-8 li{width:100%;margin-top:.3rem;padding:0;} .listab-8 li .l-box{width:100%;} .listab-8 li .r-box{width:100%;margin:0;padding:0 .1rem;} .listab-8 li .pic{width:100%;margin:0;} .listab-8 li h2{line-height:.3rem;font-size:.18rem;} .listab-8 li p{padding:.15rem 0;line-height:.3rem;} .listab-8 li time{line-height:.4rem;font-size:.14rem;} .listab-9{width:100%;padding:0 .15rem;} .listab-9 .div-c{width:100%;} .listab-9 li{width:100%;margin:.3rem 0 0 0;padding:.02rem 0;} .listab-9 li .div-c{width:100%;padding:0 .15rem;} .listab-9 li h2{padding:.15rem 0;line-height:.3rem;font-size:.18rem;} .listab-9 li p{line-height:.24rem;} .listab-9 li time{line-height:.4rem;font-size:.14rem;} .listab-10{padding:.5rem .15rem;} .listab-11{padding:.5rem .15rem;} .listab-11 .l-box{display:none;} .listab-11 .r-box{width:100%;margin:0;} .listab-11 p{line-height:.3rem;} .listab-12{padding:.15rem .2rem;} .listab-12 .p-text{padding:.15rem 0;line-height:.3rem;} .listab-13{padding:.5rem .15rem;} .listab-13 .l-box, .listab-13 .r-box{width:100%;margin:0;} .listab-13 h2{width:100%;padding:.15rem 0;font-size:.24rem} .listab-13 h3{width:100%;padding:.15rem 0;line-height:.3rem;font-size:.2rem;} .listab-13 h5{line-height:.4rem;font-size:.16rem;} .listab-13 h4{padding:.15rem 0; line-height:.3rem;font-size:.14rem;} .listab-13 .animation-box{width:3rem;} .listab-13 .animation-box img{width:100%;} .listab-13 .listab-13b{margin-top:.8rem;} .listab-13 .animat-l{display:inline-block;padding:.5rem 0;} .listab-13 .animat-r{display:none;padding:.5rem 0;} .lis-listab-d1{width:100%;padding:0 .15rem;} .lis-listab-d1 .l-box, .lis-listab-d1 .r-box{width:100%;} .lis-listab-d1 .p-text{padding:.15rem 0;line-height:.3rem;} .lis-listab-d1 .div-tc{margin-top:.5rem;} .lis-listab-d1 .div-tc .em-t{width:.84rem;height:.1rem;margin-top:.12rem;} .lis-listab-d1 .div-tc strong{line-height:.3rem;padding:0 .15rem;font-size:.14rem;} .lis-listab-d1 .div-tcb{width:100%; margin-top:.15rem;} .lis-listab-d1 .div-tcb .pic{width:1.5rem;height:1.5rem;margin-top:.3rem;} .lis-listab-d1 .div-ta{width:100%;padding:.5rem 0 .3rem 0;} .lis-listab-d1 .div-ta h2{width:100%;text-align:left;line-height:.3rem;font-size:.2rem;} .lis-listab-d1 .div-ta .div-ta-1{margin-top:.15rem;} .lis-listab-d1 .div-ta h3{line-height:.3rem;font-size:.16rem;} .footer-t{height:1rem;} .footer-t a{font-size:.4rem;height:1rem;line-height:.8rem;} .footer-b{height:1.3rem;padding:0 .15rem;} .footer-b address{height:.6rem;line-height:.3rem;font-size:.12rem;} .footer-b address a{display:inline;padding:0 .05rem;} }
0.335569
0.041754
.container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto { position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .mb-5, .my-5 { margin-bottom: 3rem!important; } .mt-5, .my-5 { margin-top: 3rem!important; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; font-family: inherit; font-weight: 500; line-height: 1.2; color: inherit; }h1, .h1 { font-size: 2.5rem; }h2, .h2 { font-size: 2rem; }h3, .h3 { font-size: 1.75rem; }h4, .h4 { font-size: 1.5rem; }h5, .h5 { font-size: 1.25rem; }h6, .h6 { font-size: 1rem; } .form-group { margin-bottom: 1rem; } .form-control { display: block; width: 100%; height: calc(2.25rem + 2px); padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; color: #fff; background-color: #54A9DFAA;/*#49505722;*/ background-clip: padding-box; border: 1px solid transparent;/*#ced4da*/ border-radius: .25rem; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; } .btn-group, .btn-group-vertical { position: relative; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn-group-toggle>.btn input[type=checkbox], .btn-group-toggle>.btn input[type=radio], .btn-group-toggle>.btn-group>.btn input[type=checkbox], .btn-group-toggle>.btn-group>.btn input[type=radio] { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .btn { display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 1px solid transparent; padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; border-radius: .25rem; transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; } .btn-primary { color: #fff; background-color: #54A9DF; border-color: #54A9DF; background-color: #54A9DFAA; border-color: #54A9DFAA; } .btn-primary:hover { color: #fff; background-color: #59C6E6; border-color: #59C6E6; } .btn-secondary { color: #fff; background-color: #A25BDC; border-color: #A25BDC; background-color: #A25BDCAA; border-color: #A25BDCAA; } .btn-secondary:hover { color: #fff; background-color: #CD79FF; border-color: #CD79FF; } .btn:focus, .btn:hover { text-decoration: none; } .btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { color: #fff; background-color: #63E2FF; border-color: #63E2FF; } .btn-primary:not(:disabled):not(.disabled).active + .btn-primary { color: #e6e6e6; color: #fffd; } .btn-primary:not(:disabled):not(.disabled).active + .btn-primary:hover { color: #fff; } .btn-group>.btn:first-child { margin-left: 0; } .btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus { z-index: 1; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } .btn-group-toggle>.btn, .btn-group-toggle>.btn-group>.btn { margin-bottom: 0; } .btn-group-vertical>.btn, .btn-group>.btn { position: relative; -ms-flex: 0 1 auto; flex: 0 1 auto; } .form-group label { font-weight: 700; } .btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group { margin-left: -1px; } .btn-group-vertical>.btn:hover, .btn-group>.btn:hover { z-index: 1; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } @media (min-width: 576px) { .col-sm-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } }
src/bs-custom.css
.container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto { position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .mb-5, .my-5 { margin-bottom: 3rem!important; } .mt-5, .my-5 { margin-top: 3rem!important; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; font-family: inherit; font-weight: 500; line-height: 1.2; color: inherit; }h1, .h1 { font-size: 2.5rem; }h2, .h2 { font-size: 2rem; }h3, .h3 { font-size: 1.75rem; }h4, .h4 { font-size: 1.5rem; }h5, .h5 { font-size: 1.25rem; }h6, .h6 { font-size: 1rem; } .form-group { margin-bottom: 1rem; } .form-control { display: block; width: 100%; height: calc(2.25rem + 2px); padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; color: #fff; background-color: #54A9DFAA;/*#49505722;*/ background-clip: padding-box; border: 1px solid transparent;/*#ced4da*/ border-radius: .25rem; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; } .btn-group, .btn-group-vertical { position: relative; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn-group-toggle>.btn input[type=checkbox], .btn-group-toggle>.btn input[type=radio], .btn-group-toggle>.btn-group>.btn input[type=checkbox], .btn-group-toggle>.btn-group>.btn input[type=radio] { position: absolute; clip: rect(0,0,0,0); pointer-events: none; } .btn { display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 1px solid transparent; padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; border-radius: .25rem; transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; } .btn-primary { color: #fff; background-color: #54A9DF; border-color: #54A9DF; background-color: #54A9DFAA; border-color: #54A9DFAA; } .btn-primary:hover { color: #fff; background-color: #59C6E6; border-color: #59C6E6; } .btn-secondary { color: #fff; background-color: #A25BDC; border-color: #A25BDC; background-color: #A25BDCAA; border-color: #A25BDCAA; } .btn-secondary:hover { color: #fff; background-color: #CD79FF; border-color: #CD79FF; } .btn:focus, .btn:hover { text-decoration: none; } .btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { color: #fff; background-color: #63E2FF; border-color: #63E2FF; } .btn-primary:not(:disabled):not(.disabled).active + .btn-primary { color: #e6e6e6; color: #fffd; } .btn-primary:not(:disabled):not(.disabled).active + .btn-primary:hover { color: #fff; } .btn-group>.btn:first-child { margin-left: 0; } .btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus { z-index: 1; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } .btn-group-toggle>.btn, .btn-group-toggle>.btn-group>.btn { margin-bottom: 0; } .btn-group-vertical>.btn, .btn-group>.btn { position: relative; -ms-flex: 0 1 auto; flex: 0 1 auto; } .form-group label { font-weight: 700; } .btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group { margin-left: -1px; } .btn-group-vertical>.btn:hover, .btn-group>.btn:hover { z-index: 1; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } @media (min-width: 576px) { .col-sm-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } }
0.326057
0.040313
/*--------------card common style--------------*/ .card_style .single_card .img_area{ overflow: hidden; } .card_style .single_card .img_area img { width: 100%; } .card_style .single_card .card_content a { color: #333; } /*--------------card style-1--------------*/ .card_style1 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style1 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style1 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 55px 30px 40px; border-radius: 0 0 5px 5px; } .card_style1 .card_content .puls { -webkit-box-shadow: 0 6px 11px rgba(0, 0, 0, 0.17); box-shadow: 0 6px 11px rgba(0, 0, 0, 0.17); font-size: 50px; height: 70px; left: 50%; margin-left: -35px; margin-top: -35px; padding: 5px; position: absolute; top: 0; width: 70px; } .card_style1 .card_content .puls i { line-height: normal; } .card_style1 .card_content .puls:hover i { color: #027AEC; } .card_style1 .single_card .card_content a:hover { color: #027AEC; } /*--------------card style-2--------------*/ .card_style2 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style2 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style2 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 21px 30px 25px; } .card_style2 .single_card .card_content a:hover { color: #027AEC; } .card_style2 .single_card .update_time { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 10px 30px; border-top: none; } /*--------------card style-3--------------*/ .card_style3 .single_card .card_content { border: 1px solid #eee; padding: 34px 30px 45px; } .card_style3 .single_card:hover .card_content { background: #f6f6f6; } .card_style3 .single_card .card_content a:hover { color: #027AEC; } .card_style3 .single_card .update_time { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 10px 30px; border-top: none; } .card_style3 .single_card .card_content a.readmore { color: #fff; padding: 5px 20px; } .card_style3 .single_card .card_content a.readmore:hover { background: #027AEC; } /*--------------card style-4--------------*/ .card_style4 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style4 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style4 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 21px 30px 25px; } .card_style4 .single_card .card_content a:hover { color: #027AEC; } .card_style4 .single_card .post_author { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 15px 30px; border-top: none; } .card_style4 .post_author ul { text-align: center; width: 100%; } .card_style4 .post_author ul li{ padding: 0 15px; position: relative; } .card_style4 .post_author ul li:first-child{ padding-left: 0; } .card_style4 .post_author ul li:last-child{ padding-right: 0; } .card_style4 .post_author ul li.author:after { background: #888 none repeat scroll 0 0; content: ""; height: 15px; position: absolute; right: -2px; top: 11px; width: 1px; } .card_style4 .post_author ul li img{ width: 40px; height: 40px; border-radius: 100%; margin-right: 10px; } .card_style4 .post_author ul li a{ color: #888888; } .card_style4 .post_author ul li a:hover{ text-decoration: underline; } /*--------------card style-5--------------*/ .card_style5 .single_card { border: 1px solid #eee; padding: 20px; } .card_style5 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style5 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style5 .single_card .card_content { border-top: 0; padding-top: 21px; } .card_style5 .single_card .card_content a:hover { color: #027AEC; } .card_style5 .single_card .post_author { border-top: 1px solid #eee; padding-top: 20px; } .card_style5 .post_author ul { text-align: center; width: 100%; } .card_style5 .post_author ul li{ padding: 0 15px; color: #888888; } .card_style5 .post_author ul li:first-child{ padding-left: 0; } .card_style5 .post_author ul li:last-child{ padding-right: 0; } .card_style5 .post_author ul li i{ margin-right: 10px; font-size: 18px; } /*--------------card style-6--------------*/ .card_style6 .single_card .img_area { border-radius: 0px 0px 5px 5px; } .card_style6 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style6 .single_card .card_content { border: 1px solid #eee; padding: 21px 30px 25px; border-radius: 5px 5px 0px 0px; } .card_style6 .single_card .card_content a:hover { color: #027AEC; } .card_style6 .single_card .post_author { border: 1px solid #eee; padding: 15px 30px; border-top: none; border-bottom: none; } .card_style6 .post_author ul { text-align: center; width: 100%; } .card_style6 .post_author ul li{ padding: 0 15px; position: relative; } .card_style6 .post_author ul li:first-child{ padding-left: 0; } .card_style6 .post_author ul li:last-child{ padding-right: 0; } .card_style6 .post_author ul li.author:after { background: #888 none repeat scroll 0 0; content: ""; height: 15px; position: absolute; right: -2px; top: 11px; width: 1px; } .card_style6 .post_author ul li img{ width: 40px; height: 40px; border-radius: 100%; margin-right: 10px; } .card_style6 .post_author ul li a{ color: #888888; } .card_style6 .post_author ul li a:hover{ text-decoration: underline; } /*-------------------------------responsive style-----------------------------*/ @media (max-width: 1199px){ /*-----style-4------*/ .card_style4 .single_card .post_author { padding: 15px 10px; } /*-----style-6------*/ .card_style6 .single_card .post_author { padding: 15px 10px; } }/*---end 992-1199px media query----*/ @media (max-width: 991px){ /*-------style-1---------*/ .card_style1 .single_card .card_content { padding: 45px 17px 30px; } .card_style1 .card_content .puls { font-size: 40px; height: 60px; margin-left: -30px; margin-top: -30px; padding: 6px; width: 60px; } /*-----style-2------*/ .card_style2 .single_card .card_content { padding: 21px 15px 25px; } .card_style2 .single_card .update_time { font-size: 14px; padding: 10px 15px; } /*-----style-3------*/ .card_style3 .single_card .card_content { border: 1px solid #eee; padding: 24px 15px 35px; } /*-----style-4------*/ .card_style4 .single_card .card_content { padding: 21px 15px 25px; } .card_style4 .post_author ul li.author::after { display: none; } .card_style4 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } /*-----style-5------*/ .card_style5 .single_card { padding: 0 0 20px 0; } .card_style5 .single_card .card_content { border-top: 0 none; padding-left: 15px; padding-right: 15px; padding-top: 21px; } .card_style5 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } .card_style5 .post_author ul li { padding: 0 8px; } .card_style5 .post_author ul li i { margin-right: 7px; } /*-----style-4------*/ .card_style6 .single_card .card_content { padding: 21px 15px 25px; } .card_style6 .post_author ul li.author::after { display: none; } .card_style6 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } }/*---end 768-991px media query----*/ @media (max-width: 767px){ /*----common-------*/ .card_style .container { max-width: 450px; } .card_style .single_card { margin-bottom: 50px; } /*------style-3------*/ .card_style3 .single_card .card_content { padding: 34px 30px 45px; } /*------style-4------*/ .card_style4 .post_author ul li.author::after { display: block; } /*------style-5------*/ .card_style5 .post_author ul li { padding: 0 15px; } /*------style-6------*/ .card_style6 .post_author ul li.author::after { display: block; } }/*---end 480-767px media query----*/ @media (max-width: 479px){}/*---end 300-489 media query----*/ /*------------------------------Start accordion shortcode style-----------------------------*/
public/css/asset/card.css
/*--------------card common style--------------*/ .card_style .single_card .img_area{ overflow: hidden; } .card_style .single_card .img_area img { width: 100%; } .card_style .single_card .card_content a { color: #333; } /*--------------card style-1--------------*/ .card_style1 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style1 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style1 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 55px 30px 40px; border-radius: 0 0 5px 5px; } .card_style1 .card_content .puls { -webkit-box-shadow: 0 6px 11px rgba(0, 0, 0, 0.17); box-shadow: 0 6px 11px rgba(0, 0, 0, 0.17); font-size: 50px; height: 70px; left: 50%; margin-left: -35px; margin-top: -35px; padding: 5px; position: absolute; top: 0; width: 70px; } .card_style1 .card_content .puls i { line-height: normal; } .card_style1 .card_content .puls:hover i { color: #027AEC; } .card_style1 .single_card .card_content a:hover { color: #027AEC; } /*--------------card style-2--------------*/ .card_style2 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style2 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style2 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 21px 30px 25px; } .card_style2 .single_card .card_content a:hover { color: #027AEC; } .card_style2 .single_card .update_time { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 10px 30px; border-top: none; } /*--------------card style-3--------------*/ .card_style3 .single_card .card_content { border: 1px solid #eee; padding: 34px 30px 45px; } .card_style3 .single_card:hover .card_content { background: #f6f6f6; } .card_style3 .single_card .card_content a:hover { color: #027AEC; } .card_style3 .single_card .update_time { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 10px 30px; border-top: none; } .card_style3 .single_card .card_content a.readmore { color: #fff; padding: 5px 20px; } .card_style3 .single_card .card_content a.readmore:hover { background: #027AEC; } /*--------------card style-4--------------*/ .card_style4 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style4 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style4 .single_card .card_content { border: 1px solid #eee; border-top: 0; padding: 21px 30px 25px; } .card_style4 .single_card .card_content a:hover { color: #027AEC; } .card_style4 .single_card .post_author { border: 1px solid #eee; border-radius: 0 0 5px 5px; padding: 15px 30px; border-top: none; } .card_style4 .post_author ul { text-align: center; width: 100%; } .card_style4 .post_author ul li{ padding: 0 15px; position: relative; } .card_style4 .post_author ul li:first-child{ padding-left: 0; } .card_style4 .post_author ul li:last-child{ padding-right: 0; } .card_style4 .post_author ul li.author:after { background: #888 none repeat scroll 0 0; content: ""; height: 15px; position: absolute; right: -2px; top: 11px; width: 1px; } .card_style4 .post_author ul li img{ width: 40px; height: 40px; border-radius: 100%; margin-right: 10px; } .card_style4 .post_author ul li a{ color: #888888; } .card_style4 .post_author ul li a:hover{ text-decoration: underline; } /*--------------card style-5--------------*/ .card_style5 .single_card { border: 1px solid #eee; padding: 20px; } .card_style5 .single_card .img_area { border-radius: 5px 5px 0px 0px; } .card_style5 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style5 .single_card .card_content { border-top: 0; padding-top: 21px; } .card_style5 .single_card .card_content a:hover { color: #027AEC; } .card_style5 .single_card .post_author { border-top: 1px solid #eee; padding-top: 20px; } .card_style5 .post_author ul { text-align: center; width: 100%; } .card_style5 .post_author ul li{ padding: 0 15px; color: #888888; } .card_style5 .post_author ul li:first-child{ padding-left: 0; } .card_style5 .post_author ul li:last-child{ padding-right: 0; } .card_style5 .post_author ul li i{ margin-right: 10px; font-size: 18px; } /*--------------card style-6--------------*/ .card_style6 .single_card .img_area { border-radius: 0px 0px 5px 5px; } .card_style6 .single_card:hover .img_area img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); } .card_style6 .single_card .card_content { border: 1px solid #eee; padding: 21px 30px 25px; border-radius: 5px 5px 0px 0px; } .card_style6 .single_card .card_content a:hover { color: #027AEC; } .card_style6 .single_card .post_author { border: 1px solid #eee; padding: 15px 30px; border-top: none; border-bottom: none; } .card_style6 .post_author ul { text-align: center; width: 100%; } .card_style6 .post_author ul li{ padding: 0 15px; position: relative; } .card_style6 .post_author ul li:first-child{ padding-left: 0; } .card_style6 .post_author ul li:last-child{ padding-right: 0; } .card_style6 .post_author ul li.author:after { background: #888 none repeat scroll 0 0; content: ""; height: 15px; position: absolute; right: -2px; top: 11px; width: 1px; } .card_style6 .post_author ul li img{ width: 40px; height: 40px; border-radius: 100%; margin-right: 10px; } .card_style6 .post_author ul li a{ color: #888888; } .card_style6 .post_author ul li a:hover{ text-decoration: underline; } /*-------------------------------responsive style-----------------------------*/ @media (max-width: 1199px){ /*-----style-4------*/ .card_style4 .single_card .post_author { padding: 15px 10px; } /*-----style-6------*/ .card_style6 .single_card .post_author { padding: 15px 10px; } }/*---end 992-1199px media query----*/ @media (max-width: 991px){ /*-------style-1---------*/ .card_style1 .single_card .card_content { padding: 45px 17px 30px; } .card_style1 .card_content .puls { font-size: 40px; height: 60px; margin-left: -30px; margin-top: -30px; padding: 6px; width: 60px; } /*-----style-2------*/ .card_style2 .single_card .card_content { padding: 21px 15px 25px; } .card_style2 .single_card .update_time { font-size: 14px; padding: 10px 15px; } /*-----style-3------*/ .card_style3 .single_card .card_content { border: 1px solid #eee; padding: 24px 15px 35px; } /*-----style-4------*/ .card_style4 .single_card .card_content { padding: 21px 15px 25px; } .card_style4 .post_author ul li.author::after { display: none; } .card_style4 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } /*-----style-5------*/ .card_style5 .single_card { padding: 0 0 20px 0; } .card_style5 .single_card .card_content { border-top: 0 none; padding-left: 15px; padding-right: 15px; padding-top: 21px; } .card_style5 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } .card_style5 .post_author ul li { padding: 0 8px; } .card_style5 .post_author ul li i { margin-right: 7px; } /*-----style-4------*/ .card_style6 .single_card .card_content { padding: 21px 15px 25px; } .card_style6 .post_author ul li.author::after { display: none; } .card_style6 .single_card .card_content h4 { font-size: 21px; line-height: 30px; } }/*---end 768-991px media query----*/ @media (max-width: 767px){ /*----common-------*/ .card_style .container { max-width: 450px; } .card_style .single_card { margin-bottom: 50px; } /*------style-3------*/ .card_style3 .single_card .card_content { padding: 34px 30px 45px; } /*------style-4------*/ .card_style4 .post_author ul li.author::after { display: block; } /*------style-5------*/ .card_style5 .post_author ul li { padding: 0 15px; } /*------style-6------*/ .card_style6 .post_author ul li.author::after { display: block; } }/*---end 480-767px media query----*/ @media (max-width: 479px){}/*---end 300-489 media query----*/ /*------------------------------Start accordion shortcode style-----------------------------*/
0.207135
0.070176
html, body{} a{color: white; text-decoration: none;} #profile_head .hero_mask{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); transition: opacity 0.5s;} #profile_head:hover .hero_mask{opacity: 0; transition: opacity 0.5s;} .title_card{position: absolute; width: calc(100% - 60px); left: 30px; text-align: center; top: calc(50% - 100px); padding-top: 50px;} .title_card .icon{position: absolute; top: 0; left: calc(50% - 30px); width: 60px; height: 30px; background: url(../images/buttons/diamond-two-bars.svg) no-repeat; background-size: 100% 100%; background-position: center center;} .title_card h1{font-size: 60px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; display: inline-block; color: white; text-decoration: underline;} .title_card h2{font-size: 24px; text-transform: uppercase; font-weight: 400; letter-spacing: 0.1em; padding: 0; margin: 5px 0 5px 0; color: #ffad2d; text-decoration: underline; display: block; } .title_card .bar{width: 100px; display: inline-block; border-top: 2px solid #ffad2d; position: relative; top: -15px; display: none;} .top_deck{border-top: 1px solid #999;} .top_deck.personal_list .item{border-bottom: 0px none!important;;} .top_deck .deck_content{width: calc(100% + 50px);} .top_deck strong a{color: #FFFFFF; transition: color 0.25s; text-transform: initial;} .top_deck strong a:hover{color: #FFFFFF; transition: color 0.25s; } .personal_list .item.lead_message{background: url(../images/buttons/icon-message-grey.svg) no-repeat; background-size: 30px 30px; background-position: center left;} .personal_list .item.lead_subscribe .subscribe_icon{position: absolute; top: 3px; left: 0; background: url(../images/buttons/icon-plus-grey.svg) no-repeat; background-size: cover; background-position: center center; width: 30px; height: 30px; transition: all 0.25s;} .personal_list .item.lead_subscribe.following .subscribe_icon{transform: rotate(45deg); transition: all 0.25s;} .personal_list .item.lead_subscribe a:nth-child(1){display: block;} .personal_list .item.lead_subscribe a:nth-child(2){display: none;} .personal_list .item.lead_subscribe.following a:nth-child(1){display: none;} .personal_list .item.lead_subscribe.following a:nth-child(2){display: block;} #profile_menu{padding: 0; margin: 0 0 40px 0; text-indent: 0; } #profile_menu li{list-style: none; display: inline-block; margin-right: 30px; border-top: 5px solid rgba(255,255,255,0); transition: all 0.25s; font-family: din-condensed, sans-serif; font-weight: 200;} #profile_menu li.active, #profile_menu li:hover{border-top: 5px solid #FFFFFF; transition: all 0.25s;} #profile_menu li a{font-weight: 700; text-decoration: none; font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; padding: 10px 0; } #profile_head{width: 100%; height: 300px; background: #121212; margin: 0; position: relative;} #profile_head .background{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover!important; background-position: center center!important;} #profile_head .nav{position: absolute; bottom: 0px; right: 0px; opacity: 0.2; transition: opacity 0.25s;} #profile_head:hover .nav{opacity: 1; transition: opacity 0.25s;} #profile_head .nav2{position: absolute; bottom: -50px; left: calc(50% - 80px); opacity: 0; transition: opacity 0.25s;} #profile_head:hover .nav2{opacity: 1; transition: opacity 0.25s;} #profile_head #avatar_image{width: 100px; height: 100px; position: absolute; left: 30px; bottom: -100px; background: #999; box-shadow: #333 2px 2px 4px; background-size: cover !important; background-position: center center!important;} #profile_head #avatar_image.member{border-radius: 100px; } #profile_head #avatar_image.member .button{font-size: 14px; padding: 7px 10px;} #profile_head #avatar_image .nav{position: absolute; bottom: 0; left: calc(50% - 62px); width: 140px;} #profile_head #avatar_image .nav .button{opacity: 0; transition: opacity 0.25s;} #profile_head #avatar_image:hover .nav .button{opacity: 1; transition: opacity 0.25s;} #profile_head #avatar_image{width: 100px; height: 100px; left: calc(50% - 50px); bottom: -50px;} #profile_head #avatar_image.member{clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);} #main_profile_wrapper{width: calc(100% - 120px); padding: 60px 60px 200px 60px;} #main_profile_wrapper.pre_feed{padding-bottom: 10px;} #skills_deck{position: relative;} #main_profile_wrapper .deck{display: block; width: 100%; padding-bottom: 20px; position: relative; opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck.masked_deck{opacity: 0.1; transition: opacity 0.25s;} #main_profile_wrapper .deck.masked_deck .edit_console{display: none;} #main_profile_wrapper .deck .deck_head, .center_padding .deck_head{padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #999; position: relative;} #main_profile_wrapper .deck .deck_head.nobottompadding{margin-bottom: 0;} #main_profile_wrapper .deck .edit_console{position: absolute; top: 0; right: 0; opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck:hover .edit_console{opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck .deck_head h2, .center_padding .deck_head h2{font-size: 18px; color: #FFFFFF; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;} #main_profile_wrapper .deck .deck_content{color: #CCC; font-size: 14px; line-height: 1.5em; } #main_profile_wrapper .deck .deck_form{display: none; width: calc(100% + 20px);} #main_profile_wrapper .deck .deck_form label{} #main_profile_wrapper .deck .deck_form textarea{height: 300px;} .text_wrapper{column-count: 3; column-gap: 4em;} .gallery_nav{margin-bottom: 20px;} .gallery_bar{border-top: 2px solid #FFF;} #gallery_grid{ padding: 10px 0 30px 0; width: calc(100% + 10px);} #gallery_grid .tile{ background: #121212; width: 300px; height: 300px; margin: 0 10px 10px 0; float: left; position: relative; opacity: 1; transition: opacity 0.25s; } #gallery_grid .tile.opaque{opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile .img_bg{background-size: cover!important; background-position: center center!important; position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile:hover .img_bg{opacity: 0.5; transition: opacity 0.25s;} #gallery_grid .tile .textwrapper{width: calc(100% - 10px); position: absolute; top: calc(50% - 37px); left: 5px; color: white; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .textwrapper{opacity: 1; transition: opacity 0.25s; text-align: center;} #gallery_grid .tile .textwrapper h3{font-size: 24px;} #gallery_grid .tile .textwrapper .author{font-size: 12px; margin: 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,0);} #gallery_grid .tile .textwrapper .author a:hover{border-bottom: 1px solid rgba(255,255,255,1);} #gallery_grid .tile .textwrapper .shortbar{padding: 0; margin: 10px 0; width: 20px; border-top: 2px solid #ffad2d; display: inline-block;} #gallery_grid .tile .nav{position: absolute; bottom: 0; right: 0; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .nav{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .top_nav{position: absolute; width: 100%; top: 0; right: 0; opacity: 0; transition: opacity 0.25s; text-align: right;} #gallery_grid .tile:hover .top_nav{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .handle{position: absolute; top: 0; left: 0; width: 30px; height: 30px; background: #151515 url(../images/buttons/icon-move-white.svg) no-repeat; background-size: 15px 15px; background-position: center center; cursor: move; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .handle{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .top_nav .delete_image{width: 30px; height: 30px; display: inline-block; background: #151515 url(../images/buttons/close-button-white.svg) no-repeat; background-size: 15px 15px; background-position: center center;} #gallery_grid .tile .tile_form{position: absolute; bottom: 0; left: 0; width: calc(100% - 20px); height: calc(100% - 40px); padding: 20px 0 20px 20px; background: white; color: #151515; display: none;} .list .list_items{border-bottom: 1px solid #666; padding: 10px 0;} .list .list_items > .form{width: calc(100% + 20px);} .warrior_icon{background: url(../images/buttons/icon-warrior-rank-grey.svg) no-repeat; background-size: 24px 24px; background-position: center left;} @media(max-width: 540px){ .list .list_items .nav .button{margin-bottom: 5px; letter-spacing: 0;} } @media(max-width: 400px){ .list .list_items .nav .button{padding: 5px;} } @media(max-width: 1400px){ .text_wrapper{column-count: 2;} } @media(max-width: 640px){ .text_wrapper{column-count: 1;} } .small{font-size: 0.5em;} .select_bar{width: calc(100% - 20px); border-top: 1px solid #121212;} .select_bar .bar_unit{width: 10%; float: left; } .select_bar .bar_unit .box{width: calc(100% - 1px); height: 20px; background: white; border-right: 1px solid #121212; border-bottom: 1px solid #121212; margin-bottom: 5px;} .select_bar .bar_unit:first-child .box{width: calc(100% - 2px); border-left: 1px solid #121212; } .select_bar .bar_unit:hover .box, .select_bar .bar_unit .box.on{background: #666;} .select_bar .bar_unit:hover .box, .select_bar .bar_unit:hover .box.on{background: #121212;} .select_bar .bar_unit p{margin: 3px 0; padding: 3px; width: calc(100% - 6px); text-align: right;} .edit_content{padding: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #FFFFFF; text-decoration: none; line-height: 1em; display: inline-block; margin: 0;} .charts{width: 100%; position: relative; margin: 20px 0; min-height: 93px;} .charts .chart{height: 150px; width: 150px; display: inline-block; position: relative; margin-right: 20px; float: left; margin-bottom: 40px;} .charts .chart .chart_title{margin: 10px 10px 0 10px; width: calc(100%-20px); text-align: center; text-transform: capitalize;} .charts .chart .delete_chart{position: absolute; top: 0; right: 0; width: 25px; height: 25px; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .charts .chart:hover .delete_chart{opacity: 1; transition: opacity 0.25s;} .charts .chart .edit_chart{position: absolute; top: 30px; right: 30px; width: 25px; height: 25px; background: url(../images/buttons/icon-gear-grey.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .charts .chart:hover .edit_chart{opacity: 1; transition: opacity 0.35s;} .charts .chart .percent{ position: absolute; color: #FFFFFF; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; text-align: center; font-size: 30px; line-height: 1em; margin: 0; padding: 0; font-weight: 700; width: 100%; top: calc(50% - 15px); } .fixed300{height: 300px;} .timeline_wrapper ul.list_timeline{width: calc(100% - 40px); padding: 20px 0; margin: 0 20px; text-indent: none;} .timeline_wrapper ul.list_timeline li{width: calc(100% - 282px); margin-left: 220px; padding: 0 10px 30px 58px; border-left: 2px solid #CCC; position: relative; list-style:none; text-indent: 0; color: #999; font-size: 14px; line-height: 1.5em;} .timeline_wrapper ul.list_timeline li .dot{position: absolute; top: 0; left: -11px; width: 20px; height: 20px; border-radius: 20px; background: #FFFFFF; } .timeline_wrapper ul.list_timeline li .year_marker{position: absolute; top: -15px; left: -242px; width: 200px; height: 50px; background: url(../images/buttons/year-marker-gold.svg) no-repeat; background-position: center right;} .timeline_wrapper ul.list_timeline li .year_marker span{position: absolute; color: #151515; font-size: 14px; width: calc(100% - 20px); left: 10px; top: 15px; text-align: center; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;} .timeline_wrapper ul.list_timeline li h3{font-size: 16px; color: #FFFFFF; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 2px;} .timeline_wrapper ul.list_timeline li h3 a{font-size: 0.8em; font-weight: 400; letter-spacing: initial;} .timeline_wrapper ul.list_timeline li h4{padding-bottom: 7px;} #main_profile_wrapper .deck .deck_form.tech{display: none;} .profile_preview{display: block; position: relative; display: none;} .profile_preview .textwrapper .thumb{left: 0;} #tech_skills{width: calc(100% + 50px); display: block; position: relative; padding-bottom: 40px;} #tech_skills .tech_skill{width: calc(50% - 50px); float: left; margin: 0 50px 10px 0; position: relative;} #tech_skills .tech_skill .nav{position: absolute; top: 0; right: 0; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a{display: inline-block; width: 25px; height: 25px; opacity: 0.8; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a:hover{opacity: 1; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a.delete{background: url(../images/buttons/close-button.svg) no-repeat; background-size: 70% 70%; background-position: center center;} #tech_skills .tech_skill .nav a.edit{background:url(../images/buttons/icon-gear-grey.svg) no-repeat; background-size: 70% 70%; background-position: center center;} #tech_skills .tech_skill p{color: #FFFFFF; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; padding: 0; margin: 2px 0; text-indent: 0; font-weight: 700;} #tech_skills .tech_skill .bar_wrapper{width: 100%; position: relative; height: 10px; background: #333333;} #tech_skills .tech_skill .bar_wrapper .dark_bar{position: absolute; left: 0; height: 100%; width: 25%; background: #FFFFFF;} .deck_content .personal_list{width: calc(100% + 50px);} .personal_list .item{width: calc(50% - 50px); margin: 0 50px 0 0; padding: 8px 0; float: left; border-bottom: 1px solid #CCC; position: relative;} .personal_list .item strong{color: #FFFFFF; display: inline-block; width: 150px; vertical-align: top;} .personal_list .item strong.social{width: calc(100% - 40px)!important; padding-left: 40px; text-transform: capitalize;} .personal_list .item span{display: inline-block; width: calc(100% - 160px);} .personal_list .item.facebook{background: url(../images/buttons/icon-link-facebook-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.linkedin{background: url(../images/buttons/icon-link-linkedin-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.instagram{background: url(../images/buttons/icon-link-instagram-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.twitter{background: url(../images/buttons/icon-link-twitter-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.link{background: url(../images/buttons/icon-link-web-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item a.delete{position: absolute; top: 7px; right: 0; display: inline-block; width: 25px; height: 25px; opacity: 0.8; transition: opacity 0.25s; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 70% 70%; background-position: center center; cursor: pointer;} .personal_list .item a.delete:hover{opacity: 1; transition: opacity 0.25s;} .center_padding{display: block; width: calc(100% - 40px); margin: 0 20px; } .center_padding .deck_head h2{} #team_deck .team_grid{display: block; width: calc(100% + 20px); margin: 20px 0 20px 0;} #team_deck .team_grid .item{width: calc(16% - 20px); margin: 0 20px 20px 0; float: left;} #team_deck .team_grid .item .thumb{width: 100px; height: 100px; margin: 0 auto 20px auto; border-radius: 100px; background: #CCC url(../images/buttons/icon-user-grey.svg) no-repeat; background-size: cover!important; background-position: center center!important; display: block;} #team_deck .team_grid .item .textwrapper{width: calc(100% - 40px); text-align: center; display: block; margin: 0 auto;} #team_deck .team_grid .item .textwrapper h3{text-transform: uppercase; font-size: 14px; letter-spacing: 0.1em; color: #FFFFFF; margin: 0 auto; display: block; text-align: center;} #team_deck .team_grid .item .textwrapper h3 a{text-decoration: none; color: #FFFFFF;} #team_deck .team_grid .item .textwrapper .title{font-size: 12px; padding: 0; margin: 0; line-height: 0.9em; } .grid{width: calc(100% + 50px); display: block;} .grid .item{width: calc(50% - 50px); margin: 0 50px 0 0; padding: 20px 0; border-bottom: 1px solid #CCC; position: relative;} .grid .item h3{font-size: 14px; font-weight: 700; display: block; color: #FFFFFF; line-height: 1em; padding: 0; margin: 0; text-transform: uppercase; } .grid .item p{font-size: 12px; display: block; color: #999; line-height: 1em; font-size: 14px; line-height: 1.5em; max-height: 74px; text-overflow: ellipsis; } .grid .item .delete{position: absolute; top: 15px; right: 0; width: 30px; height: 30px; width: 25px; height: 25px; display: block; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .grid .item:hover .delete{opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck#services_deck .deck_form textarea{height: 50px;} @media(max-width: 1200px){ #tech_skills .tech_skill{width: calc(100% - 50px); } .form .formfield.half{width: 100%; } #profile_menu li{margin-right: 15px;} #profile_menu li a{font-size: 14px;} } @media(max-width: 1080px){ .timeline_wrapper ul.list_timeline li{width: calc(100% - 192px); margin-left: 170px; padding-left: 28px;} .timeline_wrapper ul.list_timeline li .year_marker{width: 150px; left: -192px;} .deck_content .personal_list{width: calc(100% + 20px);} .personal_list .item{ width: calc(100% - 20px); margin-right: 20px; } #team_deck .team_grid .item{width: calc(20% - 20px); } } @media(max-width: 1023px){ } .timeline_wrapper .form{display: none;} .timeline_wrapper .form textarea{height: 300px;} .magic_margin{margin-top: 0; opacity: 1; transition: all 0.25s;} .magic_margin.off{margin-top: 100px; opacity: 0; transition: all 1s;} #team_deck .team_grid .item{width: calc(25% - 20px); } @media(min-width: 1940px){ #main_profile_wrapper{width: 1200px; margin: 0 auto; overflow-x: hidden;} } @media(max-width: 960px){ #profile_menu{width: 300px;} #profile_menu li{display: block; border-top: 0px none!important ; padding: 8px 0; margin: 0; border-bottom: 1px solid #999; line-height: 1em; } #profile_menu li a{padding: 0 0 0 20px; border-left: 5px solid rgba(255,255,255,0); display: block;} #profile_menu li.active a, #profile_menu li:hover a{border-left: 5px solid #FFFFFF; border-top: 0px none;} #profile_head #avatar_image{left: 20px; bottom: -30px;} #profile_head:hover .nav2{left: 10px;} } @media(max-width: 840px){ #main_profile_wrapper{width: calc(100% - 40px); padding: 20px;} .center_wrapper{overflow-x: hidden;} .personal_list .item strong{width: 100px;} .personal_list .item span{width: calc(100% - 110px);} #profile_head #avatar_image{left: 20px; bottom: -10px; width: 70px; height: 70px;} #team_deck .team_grid .item{width: calc(33.33% - 20px); } } @media(max-width: 540px){ .charts .chart{margin-right: 5px;} .timeline_wrapper ul.list_timeline li{width: calc(100% - 22px); margin-left: 0; padding-left: 18px;} .timeline_wrapper ul.list_timeline li .year_marker{background: black; position: relative; top: initial; left: initial; height: initial; padding: 7px 0; margin: 0 0 10px 0;} .timeline_wrapper ul.list_timeline li .year_marker span{position: relative; text-align: center; top: initial; left: initial; display: block; } .title_card{top: calc(50% - 60px);} .title_card h1{font-size: 30px; padding: 0px; letter-spacing: 2px;} #team_deck .team_grid .item{width: calc(50% - 20px); } } /*------------------------------ PROFILE GRID ------------------------------*/ .profile_grid{margin: 10px 0 20px 0; text-align: center; } .profile_grid{transition: background 0.25s;} .profile_grid .tile{float: left; width: calc(16.66% - 10px); height: 280px; margin: 0 10px 10px 0; background: #121212; position: relative; transition: background 0.25s;} .profile_grid .tile:hover{background: white; color: #151515; transition: all 0.25s; } .profile_grid .tile .text{position: absolute; top: calc(60%); left: 10px; width: calc(100% - 20px); text-align: center;} .profile_grid .tile .mini_hero{position: absolute; top: 0; left: 0; width: 100%; height: calc(35% + 25px); background: #333; background-size: cover!important; background-position: center center!important;} .profile_grid .tile .thumb{width: 50px; height: 50px; position: absolute; left: calc(50% - 25px); top: calc(35%); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); background: #666; background-size: cover!important; background-position: center center!important;} .profile_grid .tile .text p.title{font-family: din-condensed, sans-serif; font-weight: 200; font-size: 18px; text-transform: uppercase; padding: 0; margin: 0; line-height: 1em;} .profile_grid .tile:hover .text p.title a{color: #151515; transition: color 0.25s;} .profile_grid .tile .text p.staff{font-size: 13px; color: #999; padding: 0; margin: 0;} .profile_grid .tile .tile_nav{position: absolute; bottom: 10px; left: 0; width: 100%; text-align: center;} .w1200 .profile_grid {width: calc(100% + 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} .profile_grid .admin_nav{position: absolute; top: 0; right: 0; text-align: right;} @media(max-width: 1800px){ .profile_grid .tile{width: calc(14.28571429% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 1500px){ .profile_grid .tile{width: calc(20% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 1200px){ .profile_grid .tile{width: calc(25% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 900px){ .profile_grid .tile{width: calc(33.33% - 10px);} .w1200 .profile_grid .tile{width: calc(33.33% - 10px);} } @media(max-width: 600px){ .profile_grid .tile{width: calc(50% - 10px);} .w1200 .profile_grid .tile{width: calc(50% - 10px);} } @media(max-width: 400px){ .profile_grid{width: 100%;} .profile_grid .tile{width: calc(100%);} .w1200 .profile_grid .tile{width: calc(100%);} }
assets/bg/css/member/profile.css
html, body{} a{color: white; text-decoration: none;} #profile_head .hero_mask{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); transition: opacity 0.5s;} #profile_head:hover .hero_mask{opacity: 0; transition: opacity 0.5s;} .title_card{position: absolute; width: calc(100% - 60px); left: 30px; text-align: center; top: calc(50% - 100px); padding-top: 50px;} .title_card .icon{position: absolute; top: 0; left: calc(50% - 30px); width: 60px; height: 30px; background: url(../images/buttons/diamond-two-bars.svg) no-repeat; background-size: 100% 100%; background-position: center center;} .title_card h1{font-size: 60px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; display: inline-block; color: white; text-decoration: underline;} .title_card h2{font-size: 24px; text-transform: uppercase; font-weight: 400; letter-spacing: 0.1em; padding: 0; margin: 5px 0 5px 0; color: #ffad2d; text-decoration: underline; display: block; } .title_card .bar{width: 100px; display: inline-block; border-top: 2px solid #ffad2d; position: relative; top: -15px; display: none;} .top_deck{border-top: 1px solid #999;} .top_deck.personal_list .item{border-bottom: 0px none!important;;} .top_deck .deck_content{width: calc(100% + 50px);} .top_deck strong a{color: #FFFFFF; transition: color 0.25s; text-transform: initial;} .top_deck strong a:hover{color: #FFFFFF; transition: color 0.25s; } .personal_list .item.lead_message{background: url(../images/buttons/icon-message-grey.svg) no-repeat; background-size: 30px 30px; background-position: center left;} .personal_list .item.lead_subscribe .subscribe_icon{position: absolute; top: 3px; left: 0; background: url(../images/buttons/icon-plus-grey.svg) no-repeat; background-size: cover; background-position: center center; width: 30px; height: 30px; transition: all 0.25s;} .personal_list .item.lead_subscribe.following .subscribe_icon{transform: rotate(45deg); transition: all 0.25s;} .personal_list .item.lead_subscribe a:nth-child(1){display: block;} .personal_list .item.lead_subscribe a:nth-child(2){display: none;} .personal_list .item.lead_subscribe.following a:nth-child(1){display: none;} .personal_list .item.lead_subscribe.following a:nth-child(2){display: block;} #profile_menu{padding: 0; margin: 0 0 40px 0; text-indent: 0; } #profile_menu li{list-style: none; display: inline-block; margin-right: 30px; border-top: 5px solid rgba(255,255,255,0); transition: all 0.25s; font-family: din-condensed, sans-serif; font-weight: 200;} #profile_menu li.active, #profile_menu li:hover{border-top: 5px solid #FFFFFF; transition: all 0.25s;} #profile_menu li a{font-weight: 700; text-decoration: none; font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; padding: 10px 0; } #profile_head{width: 100%; height: 300px; background: #121212; margin: 0; position: relative;} #profile_head .background{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover!important; background-position: center center!important;} #profile_head .nav{position: absolute; bottom: 0px; right: 0px; opacity: 0.2; transition: opacity 0.25s;} #profile_head:hover .nav{opacity: 1; transition: opacity 0.25s;} #profile_head .nav2{position: absolute; bottom: -50px; left: calc(50% - 80px); opacity: 0; transition: opacity 0.25s;} #profile_head:hover .nav2{opacity: 1; transition: opacity 0.25s;} #profile_head #avatar_image{width: 100px; height: 100px; position: absolute; left: 30px; bottom: -100px; background: #999; box-shadow: #333 2px 2px 4px; background-size: cover !important; background-position: center center!important;} #profile_head #avatar_image.member{border-radius: 100px; } #profile_head #avatar_image.member .button{font-size: 14px; padding: 7px 10px;} #profile_head #avatar_image .nav{position: absolute; bottom: 0; left: calc(50% - 62px); width: 140px;} #profile_head #avatar_image .nav .button{opacity: 0; transition: opacity 0.25s;} #profile_head #avatar_image:hover .nav .button{opacity: 1; transition: opacity 0.25s;} #profile_head #avatar_image{width: 100px; height: 100px; left: calc(50% - 50px); bottom: -50px;} #profile_head #avatar_image.member{clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);} #main_profile_wrapper{width: calc(100% - 120px); padding: 60px 60px 200px 60px;} #main_profile_wrapper.pre_feed{padding-bottom: 10px;} #skills_deck{position: relative;} #main_profile_wrapper .deck{display: block; width: 100%; padding-bottom: 20px; position: relative; opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck.masked_deck{opacity: 0.1; transition: opacity 0.25s;} #main_profile_wrapper .deck.masked_deck .edit_console{display: none;} #main_profile_wrapper .deck .deck_head, .center_padding .deck_head{padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #999; position: relative;} #main_profile_wrapper .deck .deck_head.nobottompadding{margin-bottom: 0;} #main_profile_wrapper .deck .edit_console{position: absolute; top: 0; right: 0; opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck:hover .edit_console{opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck .deck_head h2, .center_padding .deck_head h2{font-size: 18px; color: #FFFFFF; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;} #main_profile_wrapper .deck .deck_content{color: #CCC; font-size: 14px; line-height: 1.5em; } #main_profile_wrapper .deck .deck_form{display: none; width: calc(100% + 20px);} #main_profile_wrapper .deck .deck_form label{} #main_profile_wrapper .deck .deck_form textarea{height: 300px;} .text_wrapper{column-count: 3; column-gap: 4em;} .gallery_nav{margin-bottom: 20px;} .gallery_bar{border-top: 2px solid #FFF;} #gallery_grid{ padding: 10px 0 30px 0; width: calc(100% + 10px);} #gallery_grid .tile{ background: #121212; width: 300px; height: 300px; margin: 0 10px 10px 0; float: left; position: relative; opacity: 1; transition: opacity 0.25s; } #gallery_grid .tile.opaque{opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile .img_bg{background-size: cover!important; background-position: center center!important; position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile:hover .img_bg{opacity: 0.5; transition: opacity 0.25s;} #gallery_grid .tile .textwrapper{width: calc(100% - 10px); position: absolute; top: calc(50% - 37px); left: 5px; color: white; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .textwrapper{opacity: 1; transition: opacity 0.25s; text-align: center;} #gallery_grid .tile .textwrapper h3{font-size: 24px;} #gallery_grid .tile .textwrapper .author{font-size: 12px; margin: 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,0);} #gallery_grid .tile .textwrapper .author a:hover{border-bottom: 1px solid rgba(255,255,255,1);} #gallery_grid .tile .textwrapper .shortbar{padding: 0; margin: 10px 0; width: 20px; border-top: 2px solid #ffad2d; display: inline-block;} #gallery_grid .tile .nav{position: absolute; bottom: 0; right: 0; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .nav{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .top_nav{position: absolute; width: 100%; top: 0; right: 0; opacity: 0; transition: opacity 0.25s; text-align: right;} #gallery_grid .tile:hover .top_nav{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .handle{position: absolute; top: 0; left: 0; width: 30px; height: 30px; background: #151515 url(../images/buttons/icon-move-white.svg) no-repeat; background-size: 15px 15px; background-position: center center; cursor: move; opacity: 0; transition: opacity 0.25s;} #gallery_grid .tile:hover .handle{opacity: 1; transition: opacity 0.25s;} #gallery_grid .tile .top_nav .delete_image{width: 30px; height: 30px; display: inline-block; background: #151515 url(../images/buttons/close-button-white.svg) no-repeat; background-size: 15px 15px; background-position: center center;} #gallery_grid .tile .tile_form{position: absolute; bottom: 0; left: 0; width: calc(100% - 20px); height: calc(100% - 40px); padding: 20px 0 20px 20px; background: white; color: #151515; display: none;} .list .list_items{border-bottom: 1px solid #666; padding: 10px 0;} .list .list_items > .form{width: calc(100% + 20px);} .warrior_icon{background: url(../images/buttons/icon-warrior-rank-grey.svg) no-repeat; background-size: 24px 24px; background-position: center left;} @media(max-width: 540px){ .list .list_items .nav .button{margin-bottom: 5px; letter-spacing: 0;} } @media(max-width: 400px){ .list .list_items .nav .button{padding: 5px;} } @media(max-width: 1400px){ .text_wrapper{column-count: 2;} } @media(max-width: 640px){ .text_wrapper{column-count: 1;} } .small{font-size: 0.5em;} .select_bar{width: calc(100% - 20px); border-top: 1px solid #121212;} .select_bar .bar_unit{width: 10%; float: left; } .select_bar .bar_unit .box{width: calc(100% - 1px); height: 20px; background: white; border-right: 1px solid #121212; border-bottom: 1px solid #121212; margin-bottom: 5px;} .select_bar .bar_unit:first-child .box{width: calc(100% - 2px); border-left: 1px solid #121212; } .select_bar .bar_unit:hover .box, .select_bar .bar_unit .box.on{background: #666;} .select_bar .bar_unit:hover .box, .select_bar .bar_unit:hover .box.on{background: #121212;} .select_bar .bar_unit p{margin: 3px 0; padding: 3px; width: calc(100% - 6px); text-align: right;} .edit_content{padding: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #FFFFFF; text-decoration: none; line-height: 1em; display: inline-block; margin: 0;} .charts{width: 100%; position: relative; margin: 20px 0; min-height: 93px;} .charts .chart{height: 150px; width: 150px; display: inline-block; position: relative; margin-right: 20px; float: left; margin-bottom: 40px;} .charts .chart .chart_title{margin: 10px 10px 0 10px; width: calc(100%-20px); text-align: center; text-transform: capitalize;} .charts .chart .delete_chart{position: absolute; top: 0; right: 0; width: 25px; height: 25px; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .charts .chart:hover .delete_chart{opacity: 1; transition: opacity 0.25s;} .charts .chart .edit_chart{position: absolute; top: 30px; right: 30px; width: 25px; height: 25px; background: url(../images/buttons/icon-gear-grey.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .charts .chart:hover .edit_chart{opacity: 1; transition: opacity 0.35s;} .charts .chart .percent{ position: absolute; color: #FFFFFF; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; text-align: center; font-size: 30px; line-height: 1em; margin: 0; padding: 0; font-weight: 700; width: 100%; top: calc(50% - 15px); } .fixed300{height: 300px;} .timeline_wrapper ul.list_timeline{width: calc(100% - 40px); padding: 20px 0; margin: 0 20px; text-indent: none;} .timeline_wrapper ul.list_timeline li{width: calc(100% - 282px); margin-left: 220px; padding: 0 10px 30px 58px; border-left: 2px solid #CCC; position: relative; list-style:none; text-indent: 0; color: #999; font-size: 14px; line-height: 1.5em;} .timeline_wrapper ul.list_timeline li .dot{position: absolute; top: 0; left: -11px; width: 20px; height: 20px; border-radius: 20px; background: #FFFFFF; } .timeline_wrapper ul.list_timeline li .year_marker{position: absolute; top: -15px; left: -242px; width: 200px; height: 50px; background: url(../images/buttons/year-marker-gold.svg) no-repeat; background-position: center right;} .timeline_wrapper ul.list_timeline li .year_marker span{position: absolute; color: #151515; font-size: 14px; width: calc(100% - 20px); left: 10px; top: 15px; text-align: center; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;} .timeline_wrapper ul.list_timeline li h3{font-size: 16px; color: #FFFFFF; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 2px;} .timeline_wrapper ul.list_timeline li h3 a{font-size: 0.8em; font-weight: 400; letter-spacing: initial;} .timeline_wrapper ul.list_timeline li h4{padding-bottom: 7px;} #main_profile_wrapper .deck .deck_form.tech{display: none;} .profile_preview{display: block; position: relative; display: none;} .profile_preview .textwrapper .thumb{left: 0;} #tech_skills{width: calc(100% + 50px); display: block; position: relative; padding-bottom: 40px;} #tech_skills .tech_skill{width: calc(50% - 50px); float: left; margin: 0 50px 10px 0; position: relative;} #tech_skills .tech_skill .nav{position: absolute; top: 0; right: 0; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a{display: inline-block; width: 25px; height: 25px; opacity: 0.8; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a:hover{opacity: 1; transition: opacity 0.25s;} #tech_skills .tech_skill .nav a.delete{background: url(../images/buttons/close-button.svg) no-repeat; background-size: 70% 70%; background-position: center center;} #tech_skills .tech_skill .nav a.edit{background:url(../images/buttons/icon-gear-grey.svg) no-repeat; background-size: 70% 70%; background-position: center center;} #tech_skills .tech_skill p{color: #FFFFFF; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; padding: 0; margin: 2px 0; text-indent: 0; font-weight: 700;} #tech_skills .tech_skill .bar_wrapper{width: 100%; position: relative; height: 10px; background: #333333;} #tech_skills .tech_skill .bar_wrapper .dark_bar{position: absolute; left: 0; height: 100%; width: 25%; background: #FFFFFF;} .deck_content .personal_list{width: calc(100% + 50px);} .personal_list .item{width: calc(50% - 50px); margin: 0 50px 0 0; padding: 8px 0; float: left; border-bottom: 1px solid #CCC; position: relative;} .personal_list .item strong{color: #FFFFFF; display: inline-block; width: 150px; vertical-align: top;} .personal_list .item strong.social{width: calc(100% - 40px)!important; padding-left: 40px; text-transform: capitalize;} .personal_list .item span{display: inline-block; width: calc(100% - 160px);} .personal_list .item.facebook{background: url(../images/buttons/icon-link-facebook-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.linkedin{background: url(../images/buttons/icon-link-linkedin-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.instagram{background: url(../images/buttons/icon-link-instagram-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.twitter{background: url(../images/buttons/icon-link-twitter-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item.link{background: url(../images/buttons/icon-link-web-grey.svg) no-repeat; background-size: 25px 25px; background-position: center left;} .personal_list .item a.delete{position: absolute; top: 7px; right: 0; display: inline-block; width: 25px; height: 25px; opacity: 0.8; transition: opacity 0.25s; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 70% 70%; background-position: center center; cursor: pointer;} .personal_list .item a.delete:hover{opacity: 1; transition: opacity 0.25s;} .center_padding{display: block; width: calc(100% - 40px); margin: 0 20px; } .center_padding .deck_head h2{} #team_deck .team_grid{display: block; width: calc(100% + 20px); margin: 20px 0 20px 0;} #team_deck .team_grid .item{width: calc(16% - 20px); margin: 0 20px 20px 0; float: left;} #team_deck .team_grid .item .thumb{width: 100px; height: 100px; margin: 0 auto 20px auto; border-radius: 100px; background: #CCC url(../images/buttons/icon-user-grey.svg) no-repeat; background-size: cover!important; background-position: center center!important; display: block;} #team_deck .team_grid .item .textwrapper{width: calc(100% - 40px); text-align: center; display: block; margin: 0 auto;} #team_deck .team_grid .item .textwrapper h3{text-transform: uppercase; font-size: 14px; letter-spacing: 0.1em; color: #FFFFFF; margin: 0 auto; display: block; text-align: center;} #team_deck .team_grid .item .textwrapper h3 a{text-decoration: none; color: #FFFFFF;} #team_deck .team_grid .item .textwrapper .title{font-size: 12px; padding: 0; margin: 0; line-height: 0.9em; } .grid{width: calc(100% + 50px); display: block;} .grid .item{width: calc(50% - 50px); margin: 0 50px 0 0; padding: 20px 0; border-bottom: 1px solid #CCC; position: relative;} .grid .item h3{font-size: 14px; font-weight: 700; display: block; color: #FFFFFF; line-height: 1em; padding: 0; margin: 0; text-transform: uppercase; } .grid .item p{font-size: 12px; display: block; color: #999; line-height: 1em; font-size: 14px; line-height: 1.5em; max-height: 74px; text-overflow: ellipsis; } .grid .item .delete{position: absolute; top: 15px; right: 0; width: 30px; height: 30px; width: 25px; height: 25px; display: block; background: url(../images/buttons/close-button.svg) no-repeat; background-size: 20px 20px; background-position: center center; cursor: pointer; opacity: 0; transition: opacity 0.25s;} .grid .item:hover .delete{opacity: 1; transition: opacity 0.25s;} #main_profile_wrapper .deck#services_deck .deck_form textarea{height: 50px;} @media(max-width: 1200px){ #tech_skills .tech_skill{width: calc(100% - 50px); } .form .formfield.half{width: 100%; } #profile_menu li{margin-right: 15px;} #profile_menu li a{font-size: 14px;} } @media(max-width: 1080px){ .timeline_wrapper ul.list_timeline li{width: calc(100% - 192px); margin-left: 170px; padding-left: 28px;} .timeline_wrapper ul.list_timeline li .year_marker{width: 150px; left: -192px;} .deck_content .personal_list{width: calc(100% + 20px);} .personal_list .item{ width: calc(100% - 20px); margin-right: 20px; } #team_deck .team_grid .item{width: calc(20% - 20px); } } @media(max-width: 1023px){ } .timeline_wrapper .form{display: none;} .timeline_wrapper .form textarea{height: 300px;} .magic_margin{margin-top: 0; opacity: 1; transition: all 0.25s;} .magic_margin.off{margin-top: 100px; opacity: 0; transition: all 1s;} #team_deck .team_grid .item{width: calc(25% - 20px); } @media(min-width: 1940px){ #main_profile_wrapper{width: 1200px; margin: 0 auto; overflow-x: hidden;} } @media(max-width: 960px){ #profile_menu{width: 300px;} #profile_menu li{display: block; border-top: 0px none!important ; padding: 8px 0; margin: 0; border-bottom: 1px solid #999; line-height: 1em; } #profile_menu li a{padding: 0 0 0 20px; border-left: 5px solid rgba(255,255,255,0); display: block;} #profile_menu li.active a, #profile_menu li:hover a{border-left: 5px solid #FFFFFF; border-top: 0px none;} #profile_head #avatar_image{left: 20px; bottom: -30px;} #profile_head:hover .nav2{left: 10px;} } @media(max-width: 840px){ #main_profile_wrapper{width: calc(100% - 40px); padding: 20px;} .center_wrapper{overflow-x: hidden;} .personal_list .item strong{width: 100px;} .personal_list .item span{width: calc(100% - 110px);} #profile_head #avatar_image{left: 20px; bottom: -10px; width: 70px; height: 70px;} #team_deck .team_grid .item{width: calc(33.33% - 20px); } } @media(max-width: 540px){ .charts .chart{margin-right: 5px;} .timeline_wrapper ul.list_timeline li{width: calc(100% - 22px); margin-left: 0; padding-left: 18px;} .timeline_wrapper ul.list_timeline li .year_marker{background: black; position: relative; top: initial; left: initial; height: initial; padding: 7px 0; margin: 0 0 10px 0;} .timeline_wrapper ul.list_timeline li .year_marker span{position: relative; text-align: center; top: initial; left: initial; display: block; } .title_card{top: calc(50% - 60px);} .title_card h1{font-size: 30px; padding: 0px; letter-spacing: 2px;} #team_deck .team_grid .item{width: calc(50% - 20px); } } /*------------------------------ PROFILE GRID ------------------------------*/ .profile_grid{margin: 10px 0 20px 0; text-align: center; } .profile_grid{transition: background 0.25s;} .profile_grid .tile{float: left; width: calc(16.66% - 10px); height: 280px; margin: 0 10px 10px 0; background: #121212; position: relative; transition: background 0.25s;} .profile_grid .tile:hover{background: white; color: #151515; transition: all 0.25s; } .profile_grid .tile .text{position: absolute; top: calc(60%); left: 10px; width: calc(100% - 20px); text-align: center;} .profile_grid .tile .mini_hero{position: absolute; top: 0; left: 0; width: 100%; height: calc(35% + 25px); background: #333; background-size: cover!important; background-position: center center!important;} .profile_grid .tile .thumb{width: 50px; height: 50px; position: absolute; left: calc(50% - 25px); top: calc(35%); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); background: #666; background-size: cover!important; background-position: center center!important;} .profile_grid .tile .text p.title{font-family: din-condensed, sans-serif; font-weight: 200; font-size: 18px; text-transform: uppercase; padding: 0; margin: 0; line-height: 1em;} .profile_grid .tile:hover .text p.title a{color: #151515; transition: color 0.25s;} .profile_grid .tile .text p.staff{font-size: 13px; color: #999; padding: 0; margin: 0;} .profile_grid .tile .tile_nav{position: absolute; bottom: 10px; left: 0; width: 100%; text-align: center;} .w1200 .profile_grid {width: calc(100% + 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} .profile_grid .admin_nav{position: absolute; top: 0; right: 0; text-align: right;} @media(max-width: 1800px){ .profile_grid .tile{width: calc(14.28571429% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 1500px){ .profile_grid .tile{width: calc(20% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 1200px){ .profile_grid .tile{width: calc(25% - 10px);} .w1200 .profile_grid .tile{width: calc(25% - 10px);} } @media(max-width: 900px){ .profile_grid .tile{width: calc(33.33% - 10px);} .w1200 .profile_grid .tile{width: calc(33.33% - 10px);} } @media(max-width: 600px){ .profile_grid .tile{width: calc(50% - 10px);} .w1200 .profile_grid .tile{width: calc(50% - 10px);} } @media(max-width: 400px){ .profile_grid{width: 100%;} .profile_grid .tile{width: calc(100%);} .w1200 .profile_grid .tile{width: calc(100%);} }
0.320183
0.076511
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; } html { line-height: 1; } ol, ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; } caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } q, blockquote { quotes: none; } q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } a img { border: none; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } em { font-style: italic; } strong { font-weight: bold; } sup { vertical-align: super; } sub { vertical-align: sub; } p { widows: 3; orphans: 3; margin-bottom: 0.8rem; } p:last-child { margin-bottom: 0; } p + p { text-indent: 1rem; } h3 { font-size: 1.3rem; margin-top: 1rem; } .kaushan, .huge { font-family: "Kaushan Script"; } .center { text-align: center; } .right { text-align: right; } .huge { font-size: 5rem; } @media only screen and (max-width: 40rem) { .huge { font-size: 3.6rem; } } .large { font-size: 3rem; } .big { font-size: 1.7rem; } .regular { font-size: 1rem; } .small { font-size: 0.6rem; } .tiny { font-size: 0.36rem; } .rules, .s4e { background: #c5e894; } .news, .news .parent_bg, .about, .about .parent_bg, .s1e { background: #ffb8ca; } .news .parent_color, .about .parent_text { color: #356fad; } .forum, .dice, .s2e { background: #84add9; } .archive { background: #bca695; } .s3e { background: #ffd9a8; } html, body { min-height: 100%; line-height: 1.4; } body { background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 120, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.4))) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background-size: cover; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } body.bg-twitter { background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 120, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.4))) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background-size: auto auto; } #container { max-width: 60rem; margin: 0 auto 2rem; padding: 0 1rem; } .logo img { max-width: 100%; display: block; margin: 3rem auto; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } .block { margin: 1rem 2rem 2rem 0; padding: 1.3rem 1rem 1rem; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); border-radius: 1rem; } .block[onclick] { cursor: pointer; } @media only screen and (max-width: 40rem) { .block { margin-right: 0; } } .block + .block { margin-top: 3.6rem; } .block > div { padding: 0.7rem 0.8rem 0.7rem 0.8rem; border-radius: 0.6rem; background: white; } .block > .title { float: left; margin-left: -2rem; } @media only screen and (min-width: 40rem) { .block > .title { margin-top: -6.3rem; } } @media only screen and (max-width: 40rem) { .block > .title { margin-top: -5rem; height: 5rem; } } .block > .icon { float: right; margin: -6rem -4rem 0 0; } @media only screen and (max-width: 40rem) { .block > .icon { display: none; } } .block a { cursor: pointer; text-decoration: none; color: rgba(88, 24, 184, 0.85); font-style: italic; } .block a:hover { color: rgba(60, 16, 125, 0.85); } #footer { font-size: 0.75rem; color: rgba(240, 240, 240, 0.85); font-family: Tahoma, Verdana, Segoe, sans-serif; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); line-height: 1.7; } @media only screen and (max-width: 40rem) { #footer { text-align: center; } } #footer a { cursor: pointer; text-decoration: none; color: rgba(88, 24, 184, 0.85); font-style: italic; } #footer a:hover { color: rgba(60, 16, 125, 0.85); } .signature { font-style: italic; color: rgba(60, 16, 125, 0.85); } h2 { font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, sans-serif; margin-top: 1rem; margin-bottom: 0.2rem; font-size: 2rem; } @media only screen and (max-width: 40rem) { h2 { font-size: 1.8rem; } } h2:first-child { margin-top: 0; } h2 .author { display: inline-block; margin-left: 0.45rem; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 0.9rem; font-weight: bold; position: relative; bottom: -0.08rem; } h2 .date { font-size: 1rem; margin-left: 1rem; } .fullpage { max-width: 100%; border-radius: 0.5rem; } .dice-holder, .die-adder, .die-history { text-align: center; min-height: 5rem; } .die-sep { margin: 1rem auto; height: 0.3rem; max-width: 10rem; background: #d2e1f1; border-radius: 0.6rem; } .die { cursor: pointer; } .die, .display-die { display: inline-block; font-size: 2rem; background: #dddddd; margin: 1rem 0.6rem; } .die.die-d-6, .display-die.die-d-6 { border: 3px lightgrey solid; } .die.die-d-20, .display-die.die-d-20 { margin-top: 1rem; width: 4rem; text-align: center; position: relative; } .die.die-d-20:before, .display-die.die-d-20:before { content: " "; width: 0; height: 0; border-bottom: 1rem solid #dddddd; border-left: 2rem solid transparent; border-right: 2rem solid transparent; position: absolute; top: -1rem; left: 0rem; } .die.die-d-20:after, .display-die.die-d-20:after { content: " "; width: 0; height: 0; border-top: 1rem solid #dddddd; border-left: 2rem solid transparent; border-right: 2rem solid transparent; position: absolute; bottom: -1rem; left: 0rem; } .die-d-6 { padding: 0.4rem 1.2rem; border-radius: 0.6rem; } .die-add, .die-remove { cursor: pointer; display: inline-block; font-size: 2rem; margin: 0.6rem; padding: 0.4rem 1.2rem; } .seperate { display: block; width: 5rem; height: 0.4rem; margin: 2.5rem auto; border-radius: 0.2rem; } .block-color-green { background: #c5e894; } .block-color-blue { background: #84add9; } .block-color-darkblue { background: #0b0b57; } .block-color-pink { background: #ffb8ca; } .block-color-purple { background: #c399db; } .block-color-orange { background: #ffd9a8; } @media only screen and (min-width: 40rem) { .s4e-rules #header { display: flex; } } .s4e-logo { margin: 3rem 1rem 0; vertical-align: middle; } .s4e-logo img { height: 7rem; max-height: 100%; max-width: 100%; display: block; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } @media only screen and (max-width: 40rem) { .s4e-logo img { margin: 0 auto; } } .s4e-edition-logo { margin: 2rem 1rem 1rem; vertical-align: middle; } @media only screen and (max-width: 40rem) { .s4e-edition-logo { margin-top: 1rem; } } .s4e-edition-logo img { width: 35rem; max-width: 100%; display: block; margin: 3rem 1rem 2rem auto; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } @media only screen and (max-width: 40rem) { .s4e-edition-logo img { margin: 0 auto; } } body.s4e-rules { background: url("../img/backgrounds/standard.svg") no-repeat fixed center; background-size: cover; } body.s4e-rules #bg-wrapper { position: fixed; z-index: -9999; height: 100%; width: 100%; top: 0; left: 0; background: url("../img/backgrounds/gradient.png") repeat-y center; } body.s4e-rules .block { margin-right: 0; } body.s4e-rules .toc-popup { display: none; } body.s4e-rules .toc-popup.show { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(20, 20, 20, 0.7); z-index: 9999; } body.s4e-rules .toc-popup.show > div { text-align: center; position: relative; overflow-y: scroll; margin: 2rem auto; width: 70%; max-height: 80%; padding: 1.5rem; background: white; border-radius: 0.2rem; border: 1px rgba(10, 10, 10, 0.9) solid; } body.s4e-rules .toc-popup.show > div h1 { font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 2rem; } body.s4e-rules .toc-popup.show > div a { margin-top: 1rem; display: block; cursor: pointer; text-decoration: none; font-style: italic; color: rgba(64, 18, 134, 0.85); } body.s4e-rules .toc-popup.show > div a:hover { color: rgba(60, 16, 125, 0.85); } body.s4e-rules .toc-popup.show > div a.toc_part { font-weight: bold; color: rgba(88, 24, 184, 0.85); } body.s4e-rules .toc-popup.show > div a.toc_part:hover { color: rgba(60, 16, 125, 0.85); } body.s4e-rules .toc-popup.show > div .toc_part { font-size: 1.6rem; } body.s4e-rules .toc-popup.show > div .toc_section { font-size: 1.3rem; } body.s4e-rules .toc-popup.show > div .toc_subsection { font-size: 1rem; } body.s4e-rules ul { margin: 0.7rem 0 1.3rem 1.3rem; padding: 0; } body.s4e-rules ul + ul { margin-top: 1.3rem; } body.s4e-rules ul > li { margin-top: 0.3rem; padding-left: 0.5rem; border-left: 2px solid #bbbbbb; } body.s4e-rules ul.with_header > li:first-child { border-left: none; margin-left: -1.3rem; margin-bottom: 0.8rem; } body.s4e-rules ol { list-style-type: none; margin: 1.8rem 0 1.8rem 3rem; padding: 0; counter-reset: li-counter; } body.s4e-rules ol > li { position: relative; margin-bottom: 1.25rem; padding-left: 0.5rem; min-height: 1.75rem; border-left: 2px solid #bbbbbb; } body.s4e-rules ol > li:before { position: absolute; top: 0.13rem; left: -2.2rem; width: 0.8rem; font-size: 1.5rem; line-height: 1; font-weight: bold; text-align: right; color: #464646; content: counter(li-counter); counter-increment: li-counter; } .nav-container { display: inline-block; } .navlinks { width: 100%; text-align: center; } .navlinks + .navlinks { margin-top: 1rem; } .navlinks:first-of-type .toc a { color: #335588; } .navlinks:first-of-type .toc a:hover { color: #222233; } .navlinks:last-of-type { margin-bottom: 2rem; } .navlinks:last-of-type .toc a { color: #203554; } .navlinks:last-of-type .toc a:hover { color: #222233; } .navlinks a { text-decoration: none; } @media only screen and (min-width: 40rem) { .navlinks .toc { display: inline-block; } } @media only screen and (max-width: 40rem) { .navlinks .toc { display: block; } } .navlinks .toc a { display: block; font-style: italic; transition: color 60ms ease-in; } .navlinks .toc:first-of-type { padding-right: 2rem; } @media only screen and (max-width: 40rem) { .navlinks .toc:first-of-type { padding: 0 1.5rem 1rem; } } .navlinks .toc:last-of-type { padding-left: 2rem; } @media only screen and (max-width: 40rem) { .navlinks .toc:last-of-type { padding: 1rem 1.5rem 0; } } .navlinks a.nav { margin: 0; padding: 0.5rem 1rem; background-color: #e8e8f2; } .navlinks a.nav.disabled { color: #0b0b0e; opacity: 0.6; } .navlinks a.nav.enabled { color: #0b0b57; transition: background-color 60ms ease-in; } .navlinks a.nav.enabled:hover { background-color: #dedeec; } .navlinks a.nav:first-of-type { border-top-left-radius: 0.4rem; border-bottom-left-radius: 0.4rem; padding-left: 1.5rem; } .navlinks a.nav:last-of-type { border-top-right-radius: 0.4rem; border-bottom-right-radius: 0.4rem; padding-right: 1.5rem; } .navlinks a.nav + a.nav { margin-left: 1px; } .part-header { display: block; margin: 0 auto 0.5rem; border-radius: 0.4rem; max-width: 100%; } .sidebar { background-color: #ffd7e1; -webkit-box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; -moz-box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; border-radius: 0.3rem; padding: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .sidebar h3 { margin-top: 0; margin-bottom: 0; }
cl/css/screen.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; } html { line-height: 1; } ol, ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; } caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } q, blockquote { quotes: none; } q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } a img { border: none; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } em { font-style: italic; } strong { font-weight: bold; } sup { vertical-align: super; } sub { vertical-align: sub; } p { widows: 3; orphans: 3; margin-bottom: 0.8rem; } p:last-child { margin-bottom: 0; } p + p { text-indent: 1rem; } h3 { font-size: 1.3rem; margin-top: 1rem; } .kaushan, .huge { font-family: "Kaushan Script"; } .center { text-align: center; } .right { text-align: right; } .huge { font-size: 5rem; } @media only screen and (max-width: 40rem) { .huge { font-size: 3.6rem; } } .large { font-size: 3rem; } .big { font-size: 1.7rem; } .regular { font-size: 1rem; } .small { font-size: 0.6rem; } .tiny { font-size: 0.36rem; } .rules, .s4e { background: #c5e894; } .news, .news .parent_bg, .about, .about .parent_bg, .s1e { background: #ffb8ca; } .news .parent_color, .about .parent_text { color: #356fad; } .forum, .dice, .s2e { background: #84add9; } .archive { background: #bca695; } .s3e { background: #ffd9a8; } html, body { min-height: 100%; line-height: 1.4; } body { background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 120, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.4))) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/standard.svg") no-repeat fixed center; background-size: cover; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } body.bg-twitter { background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 120, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(0, 0, 0, 0.4))) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 120%) no-repeat fixed center, url("../img/backgrounds/twitter.png") repeat fixed center; background-size: auto auto; } #container { max-width: 60rem; margin: 0 auto 2rem; padding: 0 1rem; } .logo img { max-width: 100%; display: block; margin: 3rem auto; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } .block { margin: 1rem 2rem 2rem 0; padding: 1.3rem 1rem 1rem; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); border-radius: 1rem; } .block[onclick] { cursor: pointer; } @media only screen and (max-width: 40rem) { .block { margin-right: 0; } } .block + .block { margin-top: 3.6rem; } .block > div { padding: 0.7rem 0.8rem 0.7rem 0.8rem; border-radius: 0.6rem; background: white; } .block > .title { float: left; margin-left: -2rem; } @media only screen and (min-width: 40rem) { .block > .title { margin-top: -6.3rem; } } @media only screen and (max-width: 40rem) { .block > .title { margin-top: -5rem; height: 5rem; } } .block > .icon { float: right; margin: -6rem -4rem 0 0; } @media only screen and (max-width: 40rem) { .block > .icon { display: none; } } .block a { cursor: pointer; text-decoration: none; color: rgba(88, 24, 184, 0.85); font-style: italic; } .block a:hover { color: rgba(60, 16, 125, 0.85); } #footer { font-size: 0.75rem; color: rgba(240, 240, 240, 0.85); font-family: Tahoma, Verdana, Segoe, sans-serif; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); line-height: 1.7; } @media only screen and (max-width: 40rem) { #footer { text-align: center; } } #footer a { cursor: pointer; text-decoration: none; color: rgba(88, 24, 184, 0.85); font-style: italic; } #footer a:hover { color: rgba(60, 16, 125, 0.85); } .signature { font-style: italic; color: rgba(60, 16, 125, 0.85); } h2 { font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, sans-serif; margin-top: 1rem; margin-bottom: 0.2rem; font-size: 2rem; } @media only screen and (max-width: 40rem) { h2 { font-size: 1.8rem; } } h2:first-child { margin-top: 0; } h2 .author { display: inline-block; margin-left: 0.45rem; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 0.9rem; font-weight: bold; position: relative; bottom: -0.08rem; } h2 .date { font-size: 1rem; margin-left: 1rem; } .fullpage { max-width: 100%; border-radius: 0.5rem; } .dice-holder, .die-adder, .die-history { text-align: center; min-height: 5rem; } .die-sep { margin: 1rem auto; height: 0.3rem; max-width: 10rem; background: #d2e1f1; border-radius: 0.6rem; } .die { cursor: pointer; } .die, .display-die { display: inline-block; font-size: 2rem; background: #dddddd; margin: 1rem 0.6rem; } .die.die-d-6, .display-die.die-d-6 { border: 3px lightgrey solid; } .die.die-d-20, .display-die.die-d-20 { margin-top: 1rem; width: 4rem; text-align: center; position: relative; } .die.die-d-20:before, .display-die.die-d-20:before { content: " "; width: 0; height: 0; border-bottom: 1rem solid #dddddd; border-left: 2rem solid transparent; border-right: 2rem solid transparent; position: absolute; top: -1rem; left: 0rem; } .die.die-d-20:after, .display-die.die-d-20:after { content: " "; width: 0; height: 0; border-top: 1rem solid #dddddd; border-left: 2rem solid transparent; border-right: 2rem solid transparent; position: absolute; bottom: -1rem; left: 0rem; } .die-d-6 { padding: 0.4rem 1.2rem; border-radius: 0.6rem; } .die-add, .die-remove { cursor: pointer; display: inline-block; font-size: 2rem; margin: 0.6rem; padding: 0.4rem 1.2rem; } .seperate { display: block; width: 5rem; height: 0.4rem; margin: 2.5rem auto; border-radius: 0.2rem; } .block-color-green { background: #c5e894; } .block-color-blue { background: #84add9; } .block-color-darkblue { background: #0b0b57; } .block-color-pink { background: #ffb8ca; } .block-color-purple { background: #c399db; } .block-color-orange { background: #ffd9a8; } @media only screen and (min-width: 40rem) { .s4e-rules #header { display: flex; } } .s4e-logo { margin: 3rem 1rem 0; vertical-align: middle; } .s4e-logo img { height: 7rem; max-height: 100%; max-width: 100%; display: block; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } @media only screen and (max-width: 40rem) { .s4e-logo img { margin: 0 auto; } } .s4e-edition-logo { margin: 2rem 1rem 1rem; vertical-align: middle; } @media only screen and (max-width: 40rem) { .s4e-edition-logo { margin-top: 1rem; } } .s4e-edition-logo img { width: 35rem; max-width: 100%; display: block; margin: 3rem 1rem 2rem auto; -webkit-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); -moz-filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); filter: drop-shadow(0.8rem 0.8rem 0.7rem rgba(0, 0, 0, 0.25)); } @media only screen and (max-width: 40rem) { .s4e-edition-logo img { margin: 0 auto; } } body.s4e-rules { background: url("../img/backgrounds/standard.svg") no-repeat fixed center; background-size: cover; } body.s4e-rules #bg-wrapper { position: fixed; z-index: -9999; height: 100%; width: 100%; top: 0; left: 0; background: url("../img/backgrounds/gradient.png") repeat-y center; } body.s4e-rules .block { margin-right: 0; } body.s4e-rules .toc-popup { display: none; } body.s4e-rules .toc-popup.show { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(20, 20, 20, 0.7); z-index: 9999; } body.s4e-rules .toc-popup.show > div { text-align: center; position: relative; overflow-y: scroll; margin: 2rem auto; width: 70%; max-height: 80%; padding: 1.5rem; background: white; border-radius: 0.2rem; border: 1px rgba(10, 10, 10, 0.9) solid; } body.s4e-rules .toc-popup.show > div h1 { font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 2rem; } body.s4e-rules .toc-popup.show > div a { margin-top: 1rem; display: block; cursor: pointer; text-decoration: none; font-style: italic; color: rgba(64, 18, 134, 0.85); } body.s4e-rules .toc-popup.show > div a:hover { color: rgba(60, 16, 125, 0.85); } body.s4e-rules .toc-popup.show > div a.toc_part { font-weight: bold; color: rgba(88, 24, 184, 0.85); } body.s4e-rules .toc-popup.show > div a.toc_part:hover { color: rgba(60, 16, 125, 0.85); } body.s4e-rules .toc-popup.show > div .toc_part { font-size: 1.6rem; } body.s4e-rules .toc-popup.show > div .toc_section { font-size: 1.3rem; } body.s4e-rules .toc-popup.show > div .toc_subsection { font-size: 1rem; } body.s4e-rules ul { margin: 0.7rem 0 1.3rem 1.3rem; padding: 0; } body.s4e-rules ul + ul { margin-top: 1.3rem; } body.s4e-rules ul > li { margin-top: 0.3rem; padding-left: 0.5rem; border-left: 2px solid #bbbbbb; } body.s4e-rules ul.with_header > li:first-child { border-left: none; margin-left: -1.3rem; margin-bottom: 0.8rem; } body.s4e-rules ol { list-style-type: none; margin: 1.8rem 0 1.8rem 3rem; padding: 0; counter-reset: li-counter; } body.s4e-rules ol > li { position: relative; margin-bottom: 1.25rem; padding-left: 0.5rem; min-height: 1.75rem; border-left: 2px solid #bbbbbb; } body.s4e-rules ol > li:before { position: absolute; top: 0.13rem; left: -2.2rem; width: 0.8rem; font-size: 1.5rem; line-height: 1; font-weight: bold; text-align: right; color: #464646; content: counter(li-counter); counter-increment: li-counter; } .nav-container { display: inline-block; } .navlinks { width: 100%; text-align: center; } .navlinks + .navlinks { margin-top: 1rem; } .navlinks:first-of-type .toc a { color: #335588; } .navlinks:first-of-type .toc a:hover { color: #222233; } .navlinks:last-of-type { margin-bottom: 2rem; } .navlinks:last-of-type .toc a { color: #203554; } .navlinks:last-of-type .toc a:hover { color: #222233; } .navlinks a { text-decoration: none; } @media only screen and (min-width: 40rem) { .navlinks .toc { display: inline-block; } } @media only screen and (max-width: 40rem) { .navlinks .toc { display: block; } } .navlinks .toc a { display: block; font-style: italic; transition: color 60ms ease-in; } .navlinks .toc:first-of-type { padding-right: 2rem; } @media only screen and (max-width: 40rem) { .navlinks .toc:first-of-type { padding: 0 1.5rem 1rem; } } .navlinks .toc:last-of-type { padding-left: 2rem; } @media only screen and (max-width: 40rem) { .navlinks .toc:last-of-type { padding: 1rem 1.5rem 0; } } .navlinks a.nav { margin: 0; padding: 0.5rem 1rem; background-color: #e8e8f2; } .navlinks a.nav.disabled { color: #0b0b0e; opacity: 0.6; } .navlinks a.nav.enabled { color: #0b0b57; transition: background-color 60ms ease-in; } .navlinks a.nav.enabled:hover { background-color: #dedeec; } .navlinks a.nav:first-of-type { border-top-left-radius: 0.4rem; border-bottom-left-radius: 0.4rem; padding-left: 1.5rem; } .navlinks a.nav:last-of-type { border-top-right-radius: 0.4rem; border-bottom-right-radius: 0.4rem; padding-right: 1.5rem; } .navlinks a.nav + a.nav { margin-left: 1px; } .part-header { display: block; margin: 0 auto 0.5rem; border-radius: 0.4rem; max-width: 100%; } .sidebar { background-color: #ffd7e1; -webkit-box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; -moz-box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; box-shadow: 0 0 0 1px #d0b0e3, inset 0 0 0 1px white, inset 0 0 10rem 0 #ffc2d2; border-radius: 0.3rem; padding: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .sidebar h3 { margin-top: 0; margin-bottom: 0; }
0.481941
0.160167
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Open+Sans&display=swap"); body { font-family: 'Cairo', 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; } .heading_container h2 span { color: #10c695; } .heading_container.heading_center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-align: center; } p { font-family: 'Open Sans', sans-serif; } 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; } .hero_bg_box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } .hero_bg_box img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; } .hero_bg_box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(125deg, rgba(31, 65, 114, 0.85), rgba(31, 65, 114, 0.75), rgba(31, 65, 114, 0.05)); } .sub_page .hero_area { min-height: auto; } .header_section .header_top { background: #ffffff; } .header_section .header_top .header_top_container { display: block; } .header_section .header_top .contact_nav { display: flex; float: right; } .header_section .header_top .contact_nav a { color: #000000; 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; margin-right: 40px; } .full { float: left; width: 100%; } .header_section .header_top .contact_nav a i { margin-right: 5px; 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: #10c695; border-radius: 100%; } .header_section .header_top .contact_nav a.call-link { background: #10c695; margin-right: -15px; padding: 15px 25px; color: #ffffff; } .header_section .header_top .contact_nav a.call-link i { color: #ffffff; } .header_section .header_top .social_box { display: block; min-width: 145px; float: left; padding: 18px 0 0; } .header_section .header_top .social_box > a { float: left; font-size: 18px; } .header_section .header_top .social_box a { margin-right: 10px; } .header_section .header_top .social_box a i { margin-right: 5px; 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: #10c695; border-radius: 100%; } .header_section .header_bottom { padding: 15px 0; } .navbar-brand { color: #ffffff; font-weight: bold; font-size: 35px; } .navbar-brand:hover { color: #ffffff; } .custom_nav-container { padding: 0; } .custom_nav-container .navbar-nav { margin-left: auto; } .custom_nav-container .navbar-nav .nav-item .nav-link { padding: 5px 25px; color: #ffffff; text-align: center; border-radius: 5px; font-size: 18px; -webkit-transition: all .3s; transition: all .3s; } .custom_nav-container .navbar-nav .nav-item .nav-link i { margin-right: 5px; } .custom_nav-container .navbar-nav .nav-item:hover .nav-link { color: #10c695; } .custom_nav-container .nav_search-btn { width: 35px; height: 35px; padding: 0; border: none; color: #ffffff; } .custom_nav-container .nav_search-btn:hover { color: #10c695; } .custom_nav-container .navbar-toggler { outline: none; } .custom_nav-container .navbar-toggler { padding: 0; width: 37px; height: 42px; -webkit-transition: all .3s; transition: all .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; -webkit-transition: all .3s; transition: all .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 .3s; transition: all .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; padding: 45px 0 75px 0; } .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: #ffffff; } .slider_section .detail-box h1 { font-weight: 600; margin-bottom: 15px; color: #ffffff; font-size: 3.5rem; } .slider_section .detail-box .btn-box { display: -webkit-box; display: -ms-flexbox; display: flex; margin-top: 20px; -ms-flex-wrap: wrap; flex-wrap: wrap; } .slider_section .detail-box .btn-box a { text-align: center; width: 165px; } .slider_section .detail-box .btn-box .btn1 { display: inline-block; padding: 10px 15px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .slider_section .detail-box .btn-box .btn1:hover { background-color: transparent; color: #10c695; } .slider_section .carousel_btn-box { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .slider_section .carousel_btn-box a { top: 50%; width: 45px; height: 45px; color: #ffffff; font-size: 24px; -webkit-transition: all .2s; transition: all .2s; border-radius: 5px; background-color: #10c695; opacity: .6; } .slider_section .carousel_btn-box a:hover { color: #ffffff; opacity: 1; } .slider_section .carousel_btn-box .carousel-control-prev { left: 25px; } .slider_section .carousel_btn-box .carousel-control-next { right: 25px; } .about_section .row { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .about_section .img-box { position: relative; } .about_section .img-box img { width: 100%; } .about_section .detail-box p { color: #7a7a7a; margin-top: 15px; } .about_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; margin-top: 15px; } .about_section .detail-box a:hover { background-color: transparent; color: #10c695; } .service_section { position: relative; } .service_section .heading_container p { color: #7a7a7a; } .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; background-color: #1f4172; padding: 65px 0 45px 0; } .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: 120px; min-width: 120px; height: 120px; padding: 10px; margin-bottom: 45px; position: relative; } .service_section .box .img-box img { max-width: 65px; max-height: 65px; 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: #ffffff; border-radius: 5px; 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 { padding: 0 20px; text-align: center; color: #ffffff; } .service_section .box .detail-box h5 { font-weight: bold; text-transform: uppercase; } .service_section .box .detail-box a { color: #10c695; font-weight: 600; } .service_section .box .detail-box a i { margin-left: 5px; } .service_section .box .detail-box a:hover { color: #1f4172; } .service_section .box:hover .img-box::before { -webkit-transform: rotate(90deg); transform: rotate(90deg); } .service_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; } .service_section .btn-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .service_section .btn-box a:hover { background-color: transparent; color: #10c695; } .call_section { background: #1f4172; color: #ffffff; padding: 65px 0; } .call_section .row { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .call_section .img-box { position: relative; } .call_section .img-box img { width: 100%; border-radius: 100%; position: relative; border: 10px solid #27518e; } .call_section .detail-box h3 { color: #10c695; font-weight: bold; font-size: 3rem; } .call_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #1f4172; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #1f4172; margin-top: 15px; } .call_section .detail-box a:hover { background-color: transparent; color: #1f4172; } .faq_section { position: relative; } .faq_section .detail-box p { margin-top: 5px; margin-bottom: 20px; color: #7a7a7a; } .faq_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .faq_section .detail-box a:hover { background-color: transparent; color: #10c695; } .faq_section #faqAccordion .card { margin-bottom: 10px; border: none; border-radius: 5px; } .faq_section #faqAccordion .card-header { background-color: #1f4172; border: none; } .faq_section #faqAccordion h5 { 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; position: relative; } .faq_section #faqAccordion h5 button { border: none; background-color: transparent; text-align: left; font-size: 17px; font-weight: 400; outline: none; position: relative; padding-right: 25px; color: #ffffff; width: 100%; } .faq_section #faqAccordion h5 button::before { content: "\f107"; font-family: FontAwesome; position: absolute; top: 50%; right: 0; color: #ffffff; -webkit-transform: translateY(-50%); transform: translateY(-50%); } .faq_section #faqAccordion h5 button[aria-expanded="true"]::before { content: "\f106"; } .faq_section #faqAccordion .card-body { background-color: #f8f9f9; } .faq_section #faqAccordion .card-body p { color: #000000; } .news_section .heading_container { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .news_section .heading_container h2::before { left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } .news_section .box { margin-top: 55px; display: -webkit-box; display: -ms-flexbox; display: flex; color: #000000; border: 1px solid #ececec; } .news_section .box .img-box { position: relative; width: 200px; min-width: 200px; } .news_section .box .img-box img { width: 100%; } .news_section .box .detail-box { padding: 15px; } .news_section .box .detail-box h5 { font-weight: 600; } .news_section .box .detail-box p { font-size: 15px; } .news_section .box .detail-box a { display: inline-block; padding: 7px 30px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .news_section .box .detail-box a:hover { background-color: transparent; color: #10c695; } .contact_section .heading_container { margin-bottom: 45px; } .contact_section .heading_container h2 { margin-bottom: 0; } .contact_section .map_form_container .map_container { display: none; } .contact_section .map_form_container.map_show form { display: none; } .contact_section .map_form_container.map_show .map_container { display: block; } .contact_section .form-group { margin-bottom: 25px; } .contact_section input { width: 100%; border: none; height: 50px; padding-left: 25px; background-color: #f7f8f9; border: 1px solid #ebebeb; outline: none; color: #000000; border-radius: 0; outline: none; -webkit-box-shadow: none; box-shadow: none; } .contact_section textarea { width: 100%; border: none; height: 150px; padding-left: 25px; background-color: #f7f8f9; border: 1px solid #ebebeb; outline: none; color: #000000; border-radius: 0; outline: none; padding: 15px 25px; } .contact_section textarea::-webkit-input-placeholder, .contact_section textarea::-ms-input-placeholder, .contact_section textarea::placeholder { color: #222222; } .contact_section input:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ebebeb; background: #ffffff; } .contact_section input::-webkit-input-placeholder { color: #222222; } .contact_section input:-ms-input-placeholder { color: #222222; } .contact_section input::-ms-input-placeholder { color: #222222; } .contact_section input::placeholder { color: #222222; } .contact_section input.message-box { height: 120px; border-radius: 0; } .contact_section input.message-box:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ebebeb; background: #ffffff; } .contact_section .btn-box { margin-top: 40px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .contact_section .btn-box button { margin: 5px; width: 185px; font-weight: bold; text-transform: uppercase; } .contact_section .btn-box .submit_btn { display: inline-block; padding: 10px 0; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .contact_section .btn-box .submit_btn:hover { background-color: transparent; color: #10c695; } .contact_section .btn-box .map_btn { display: inline-block; padding: 10px 0; background-color: #1f4172; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #1f4172; } .contact_section .btn-box .map_btn:hover { background-color: transparent; color: #1f4172; } .contact_section .map_container .map { height: 285px; } .contact_section .map_container .map #googleMap { height: 100%; } /* footer section*/ .footer_section { background-color: #1f4172; padding-top: 75px; text-align: center; color: #fff; } .footer_section .footer-brand { font-size: 2rem; color: #ffffff; display: inline-block; margin-bottom: 20px; font-weight: bold; } .footer_section h4 { text-transform: uppercase; font-weight: bold; margin-bottom: 25px; } .footer_items a { position: relative; } .footer_items .item { 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-top: 25px; } .footer_items .item .img-box { width: 60px; height: 60px; border-radius: 100%; text-align: center; line-height: 65px; color: #1f4172; -webkit-transition: all .3s; transition: all .3s; position: relative; } .footer_items .item .img-box i { font-size: 24px; position: relative; z-index: 3; } .footer_items .item .img-box::before, .footer_items .item .img-box::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ffffff; border-radius: 5px; z-index: 2; -webkit-transition: all 0.3s; transition: all 0.3s; } .footer_items .item .img-box::before { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .footer_items .item .img-box::after { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .footer_items .item p { margin-top: 20px; color: #fff; margin-bottom: 0; } .footer_items .item:hover .img-box::before { -webkit-transform: rotate(90deg); transform: rotate(90deg); } .social-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: 45px 0; } .social-box .box { display: -webkit-box; display: -ms-flexbox; display: flex; } .social-box a { margin: 0 5px; color: #10c695; width: 45px; height: 45px; background: #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; } .social-box a i { font-size: 20px; } .social-box a:hover { color: #10c695; } .footer_form input { width: 100%; border: none; height: 45px; margin-bottom: 15px; padding: 0 25px; background-color: #fefefe; outline: none; color: #101010; text-align: center; } .footer_form button { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .footer_form button:hover { background-color: transparent; color: #10c695; } .footer-info { text-align: center; margin-top: 45px; } .footer-info p { color: #ffffff; margin: 0; padding-bottom: 25px; } .footer-info p a { color: inherit; } /*# sourceMappingURL=style.css.map */
css/style.css
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Open+Sans&display=swap"); body { font-family: 'Cairo', 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; } .heading_container h2 span { color: #10c695; } .heading_container.heading_center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-align: center; } p { font-family: 'Open Sans', sans-serif; } 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; } .hero_bg_box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } .hero_bg_box img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; } .hero_bg_box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(125deg, rgba(31, 65, 114, 0.85), rgba(31, 65, 114, 0.75), rgba(31, 65, 114, 0.05)); } .sub_page .hero_area { min-height: auto; } .header_section .header_top { background: #ffffff; } .header_section .header_top .header_top_container { display: block; } .header_section .header_top .contact_nav { display: flex; float: right; } .header_section .header_top .contact_nav a { color: #000000; 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; margin-right: 40px; } .full { float: left; width: 100%; } .header_section .header_top .contact_nav a i { margin-right: 5px; 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: #10c695; border-radius: 100%; } .header_section .header_top .contact_nav a.call-link { background: #10c695; margin-right: -15px; padding: 15px 25px; color: #ffffff; } .header_section .header_top .contact_nav a.call-link i { color: #ffffff; } .header_section .header_top .social_box { display: block; min-width: 145px; float: left; padding: 18px 0 0; } .header_section .header_top .social_box > a { float: left; font-size: 18px; } .header_section .header_top .social_box a { margin-right: 10px; } .header_section .header_top .social_box a i { margin-right: 5px; 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: #10c695; border-radius: 100%; } .header_section .header_bottom { padding: 15px 0; } .navbar-brand { color: #ffffff; font-weight: bold; font-size: 35px; } .navbar-brand:hover { color: #ffffff; } .custom_nav-container { padding: 0; } .custom_nav-container .navbar-nav { margin-left: auto; } .custom_nav-container .navbar-nav .nav-item .nav-link { padding: 5px 25px; color: #ffffff; text-align: center; border-radius: 5px; font-size: 18px; -webkit-transition: all .3s; transition: all .3s; } .custom_nav-container .navbar-nav .nav-item .nav-link i { margin-right: 5px; } .custom_nav-container .navbar-nav .nav-item:hover .nav-link { color: #10c695; } .custom_nav-container .nav_search-btn { width: 35px; height: 35px; padding: 0; border: none; color: #ffffff; } .custom_nav-container .nav_search-btn:hover { color: #10c695; } .custom_nav-container .navbar-toggler { outline: none; } .custom_nav-container .navbar-toggler { padding: 0; width: 37px; height: 42px; -webkit-transition: all .3s; transition: all .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; -webkit-transition: all .3s; transition: all .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 .3s; transition: all .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; padding: 45px 0 75px 0; } .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: #ffffff; } .slider_section .detail-box h1 { font-weight: 600; margin-bottom: 15px; color: #ffffff; font-size: 3.5rem; } .slider_section .detail-box .btn-box { display: -webkit-box; display: -ms-flexbox; display: flex; margin-top: 20px; -ms-flex-wrap: wrap; flex-wrap: wrap; } .slider_section .detail-box .btn-box a { text-align: center; width: 165px; } .slider_section .detail-box .btn-box .btn1 { display: inline-block; padding: 10px 15px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .slider_section .detail-box .btn-box .btn1:hover { background-color: transparent; color: #10c695; } .slider_section .carousel_btn-box { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .slider_section .carousel_btn-box a { top: 50%; width: 45px; height: 45px; color: #ffffff; font-size: 24px; -webkit-transition: all .2s; transition: all .2s; border-radius: 5px; background-color: #10c695; opacity: .6; } .slider_section .carousel_btn-box a:hover { color: #ffffff; opacity: 1; } .slider_section .carousel_btn-box .carousel-control-prev { left: 25px; } .slider_section .carousel_btn-box .carousel-control-next { right: 25px; } .about_section .row { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .about_section .img-box { position: relative; } .about_section .img-box img { width: 100%; } .about_section .detail-box p { color: #7a7a7a; margin-top: 15px; } .about_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; margin-top: 15px; } .about_section .detail-box a:hover { background-color: transparent; color: #10c695; } .service_section { position: relative; } .service_section .heading_container p { color: #7a7a7a; } .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; background-color: #1f4172; padding: 65px 0 45px 0; } .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: 120px; min-width: 120px; height: 120px; padding: 10px; margin-bottom: 45px; position: relative; } .service_section .box .img-box img { max-width: 65px; max-height: 65px; 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: #ffffff; border-radius: 5px; 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 { padding: 0 20px; text-align: center; color: #ffffff; } .service_section .box .detail-box h5 { font-weight: bold; text-transform: uppercase; } .service_section .box .detail-box a { color: #10c695; font-weight: 600; } .service_section .box .detail-box a i { margin-left: 5px; } .service_section .box .detail-box a:hover { color: #1f4172; } .service_section .box:hover .img-box::before { -webkit-transform: rotate(90deg); transform: rotate(90deg); } .service_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; } .service_section .btn-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .service_section .btn-box a:hover { background-color: transparent; color: #10c695; } .call_section { background: #1f4172; color: #ffffff; padding: 65px 0; } .call_section .row { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .call_section .img-box { position: relative; } .call_section .img-box img { width: 100%; border-radius: 100%; position: relative; border: 10px solid #27518e; } .call_section .detail-box h3 { color: #10c695; font-weight: bold; font-size: 3rem; } .call_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #1f4172; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #1f4172; margin-top: 15px; } .call_section .detail-box a:hover { background-color: transparent; color: #1f4172; } .faq_section { position: relative; } .faq_section .detail-box p { margin-top: 5px; margin-bottom: 20px; color: #7a7a7a; } .faq_section .detail-box a { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0px; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .faq_section .detail-box a:hover { background-color: transparent; color: #10c695; } .faq_section #faqAccordion .card { margin-bottom: 10px; border: none; border-radius: 5px; } .faq_section #faqAccordion .card-header { background-color: #1f4172; border: none; } .faq_section #faqAccordion h5 { 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; position: relative; } .faq_section #faqAccordion h5 button { border: none; background-color: transparent; text-align: left; font-size: 17px; font-weight: 400; outline: none; position: relative; padding-right: 25px; color: #ffffff; width: 100%; } .faq_section #faqAccordion h5 button::before { content: "\f107"; font-family: FontAwesome; position: absolute; top: 50%; right: 0; color: #ffffff; -webkit-transform: translateY(-50%); transform: translateY(-50%); } .faq_section #faqAccordion h5 button[aria-expanded="true"]::before { content: "\f106"; } .faq_section #faqAccordion .card-body { background-color: #f8f9f9; } .faq_section #faqAccordion .card-body p { color: #000000; } .news_section .heading_container { -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .news_section .heading_container h2::before { left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } .news_section .box { margin-top: 55px; display: -webkit-box; display: -ms-flexbox; display: flex; color: #000000; border: 1px solid #ececec; } .news_section .box .img-box { position: relative; width: 200px; min-width: 200px; } .news_section .box .img-box img { width: 100%; } .news_section .box .detail-box { padding: 15px; } .news_section .box .detail-box h5 { font-weight: 600; } .news_section .box .detail-box p { font-size: 15px; } .news_section .box .detail-box a { display: inline-block; padding: 7px 30px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .news_section .box .detail-box a:hover { background-color: transparent; color: #10c695; } .contact_section .heading_container { margin-bottom: 45px; } .contact_section .heading_container h2 { margin-bottom: 0; } .contact_section .map_form_container .map_container { display: none; } .contact_section .map_form_container.map_show form { display: none; } .contact_section .map_form_container.map_show .map_container { display: block; } .contact_section .form-group { margin-bottom: 25px; } .contact_section input { width: 100%; border: none; height: 50px; padding-left: 25px; background-color: #f7f8f9; border: 1px solid #ebebeb; outline: none; color: #000000; border-radius: 0; outline: none; -webkit-box-shadow: none; box-shadow: none; } .contact_section textarea { width: 100%; border: none; height: 150px; padding-left: 25px; background-color: #f7f8f9; border: 1px solid #ebebeb; outline: none; color: #000000; border-radius: 0; outline: none; padding: 15px 25px; } .contact_section textarea::-webkit-input-placeholder, .contact_section textarea::-ms-input-placeholder, .contact_section textarea::placeholder { color: #222222; } .contact_section input:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ebebeb; background: #ffffff; } .contact_section input::-webkit-input-placeholder { color: #222222; } .contact_section input:-ms-input-placeholder { color: #222222; } .contact_section input::-ms-input-placeholder { color: #222222; } .contact_section input::placeholder { color: #222222; } .contact_section input.message-box { height: 120px; border-radius: 0; } .contact_section input.message-box:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ebebeb; background: #ffffff; } .contact_section .btn-box { margin-top: 40px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .contact_section .btn-box button { margin: 5px; width: 185px; font-weight: bold; text-transform: uppercase; } .contact_section .btn-box .submit_btn { display: inline-block; padding: 10px 0; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .contact_section .btn-box .submit_btn:hover { background-color: transparent; color: #10c695; } .contact_section .btn-box .map_btn { display: inline-block; padding: 10px 0; background-color: #1f4172; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #1f4172; } .contact_section .btn-box .map_btn:hover { background-color: transparent; color: #1f4172; } .contact_section .map_container .map { height: 285px; } .contact_section .map_container .map #googleMap { height: 100%; } /* footer section*/ .footer_section { background-color: #1f4172; padding-top: 75px; text-align: center; color: #fff; } .footer_section .footer-brand { font-size: 2rem; color: #ffffff; display: inline-block; margin-bottom: 20px; font-weight: bold; } .footer_section h4 { text-transform: uppercase; font-weight: bold; margin-bottom: 25px; } .footer_items a { position: relative; } .footer_items .item { 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-top: 25px; } .footer_items .item .img-box { width: 60px; height: 60px; border-radius: 100%; text-align: center; line-height: 65px; color: #1f4172; -webkit-transition: all .3s; transition: all .3s; position: relative; } .footer_items .item .img-box i { font-size: 24px; position: relative; z-index: 3; } .footer_items .item .img-box::before, .footer_items .item .img-box::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ffffff; border-radius: 5px; z-index: 2; -webkit-transition: all 0.3s; transition: all 0.3s; } .footer_items .item .img-box::before { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .footer_items .item .img-box::after { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .footer_items .item p { margin-top: 20px; color: #fff; margin-bottom: 0; } .footer_items .item:hover .img-box::before { -webkit-transform: rotate(90deg); transform: rotate(90deg); } .social-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: 45px 0; } .social-box .box { display: -webkit-box; display: -ms-flexbox; display: flex; } .social-box a { margin: 0 5px; color: #10c695; width: 45px; height: 45px; background: #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; } .social-box a i { font-size: 20px; } .social-box a:hover { color: #10c695; } .footer_form input { width: 100%; border: none; height: 45px; margin-bottom: 15px; padding: 0 25px; background-color: #fefefe; outline: none; color: #101010; text-align: center; } .footer_form button { display: inline-block; padding: 10px 45px; background-color: #10c695; color: #ffffff; border-radius: 0; -webkit-transition: all .3s; transition: all .3s; border: 1px solid #10c695; } .footer_form button:hover { background-color: transparent; color: #10c695; } .footer-info { text-align: center; margin-top: 45px; } .footer-info p { color: #ffffff; margin: 0; padding-bottom: 25px; } .footer-info p a { color: inherit; } /*# sourceMappingURL=style.css.map */
0.331228
0.048767
:root { --fundo_da_pagina: rgba(7, 7, 7, 0.7); --texto: rgb(255, 255, 255); --link: rgb(0, 255, 255); --link_visitado: rgb(0, 140, 140); --link_pressionado: rgb(255, 0, 0); --preto: rgb(0, 0, 0); } *[id] { scroll-margin-top: 4em; } body { background-color: var(--fundo_da_pagina); color: var(--texto); display: block; font-family: sans-serif; font-size: 0.8em; margin: 0px; min-height: 100vh; } p { display: block; font-size: 0.8em; font-weight: 500; margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } h1 { display: block; font-size: 2em; font-weight: bold; margin-block-end: 0.67em; margin-block-start: 0.67em; margin-inline-end: 0px; margin-inline-start: 0px; } h2 { font-size: 1.8em; } h3 { display: block; font-size: 1.6em; font-weight: bold; margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } h4 { font-size: 1.4em; } h5 { font-size: 1.2em; } h6 { font-size: 1em; } div { display: block; } ul { list-style-type: none; } li { list-style-type: unset; margin: 0.625em 0px; } a { color: var(--link); font-weight: 600; } a:visited { color: var(--link_visitado); cursor: pointer; } a:active { color: var(--link_pressionado); } img, iframe { display: block; height: auto !important; width: 100% !important; } table { border: 1px solid var(--texto); border-collapse: collapse; margin: 0.8em 0 0.8em 0; text-align: center; table-layout: fixed; width: 100%; /* Se quiser bordas separadas passe para border-collapse: separate; e defina o tamanho com border-spacing: ; */ /* Se quiser colocar o título da tabela no topo ou no fim da tabela ou na posição que foi informada use caption-side: top|bottom|initial|inherit; */ /* Se quiser que as células vazias não contabilizem, use empty-cells: hide; caso contrário deixe o padrão que é empty-cells: show; lembre-se que este atributo só funciona se o border-collapse for separate*/ /* table-layout: fixed; pega o tamanho da tabela e recorta igualmente o espaço para cada coluna, se trocar o valor para auto o tamanho das colunas agirá de acordo com o conteúdo armazenado */ } th, td { border: 1px solid var(--texto); overflow: auto; padding: 0.4em 0.8em 0.4em 0.8em; } thead, tfoot { border: 2.1px solid var(--texto); box-shadow: 1px 1px 6px var(--preto); } thead tr, thead th, tfoot tr, tfoot th { border: 2.1px solid var(--texto); } caption { font-size: 1.4em; font-weight: 900; } details { margin: 1em 0em 1em 0em; } button { cursor: pointer; display: block; margin: 1em 0px 1em 0px; } label[for] { cursor: pointer; } input[type="submit"] { cursor: pointer; } input[type="checkbox"] { cursor: pointer; } .margem_p { margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } .conteudo { overflow: auto; padding: 0px 20px; } .w_auto { width: auto !important; } .row { display: flex; flex-wrap: wrap; } .col_6 { flex: 0 0 50%; overflow: auto; width: 50%; } .col_12 { flex: 0 0 100%; overflow: auto; width: 100%; } .overflow_auto { overflow: auto !important; } .tag_em_linha::before { content: "< "; } .tag_em_linha::after { content: " />"; } .tag_aberta::before { content: "< "; } .tag_aberta::after { content: " >"; } /* Impede de selecionar o texto, logo não é possível marcar o texto em azul */ .nao_grifavel { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Small - Pequeno - sm */ @media (min-width: 576px) { body { font-size: 1em; } p { font-size: 1em; } h1 { font-size: 3em; } h2 { font-size: 2em; } h3 { font-size: 1.8em; } h4 { font-size: 1.6em; } h5 { font-size: 1.4em; } h6 { font-size: 1.2em; } .w_sm_50 { width: 50% !important; } } /* Medium - Médio - md */ @media (min-width: 768px) { .w_md_50 { width: 50% !important; } .col_md_6 { flex: 0 0 50%; overflow: auto; width: 50%; } .col_md_12 { flex: 0 0 100%; overflow: auto; width: 100%; } } /* Large - Largo - lg */ @media (min-width: 992px) { .w_lg_50 { width: 50% !important; } } /* Extra large - Extra largo - xl */ @media (min-width: 1200px) { .w_xl_50 { width: 50% !important; } }
style.css
:root { --fundo_da_pagina: rgba(7, 7, 7, 0.7); --texto: rgb(255, 255, 255); --link: rgb(0, 255, 255); --link_visitado: rgb(0, 140, 140); --link_pressionado: rgb(255, 0, 0); --preto: rgb(0, 0, 0); } *[id] { scroll-margin-top: 4em; } body { background-color: var(--fundo_da_pagina); color: var(--texto); display: block; font-family: sans-serif; font-size: 0.8em; margin: 0px; min-height: 100vh; } p { display: block; font-size: 0.8em; font-weight: 500; margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } h1 { display: block; font-size: 2em; font-weight: bold; margin-block-end: 0.67em; margin-block-start: 0.67em; margin-inline-end: 0px; margin-inline-start: 0px; } h2 { font-size: 1.8em; } h3 { display: block; font-size: 1.6em; font-weight: bold; margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } h4 { font-size: 1.4em; } h5 { font-size: 1.2em; } h6 { font-size: 1em; } div { display: block; } ul { list-style-type: none; } li { list-style-type: unset; margin: 0.625em 0px; } a { color: var(--link); font-weight: 600; } a:visited { color: var(--link_visitado); cursor: pointer; } a:active { color: var(--link_pressionado); } img, iframe { display: block; height: auto !important; width: 100% !important; } table { border: 1px solid var(--texto); border-collapse: collapse; margin: 0.8em 0 0.8em 0; text-align: center; table-layout: fixed; width: 100%; /* Se quiser bordas separadas passe para border-collapse: separate; e defina o tamanho com border-spacing: ; */ /* Se quiser colocar o título da tabela no topo ou no fim da tabela ou na posição que foi informada use caption-side: top|bottom|initial|inherit; */ /* Se quiser que as células vazias não contabilizem, use empty-cells: hide; caso contrário deixe o padrão que é empty-cells: show; lembre-se que este atributo só funciona se o border-collapse for separate*/ /* table-layout: fixed; pega o tamanho da tabela e recorta igualmente o espaço para cada coluna, se trocar o valor para auto o tamanho das colunas agirá de acordo com o conteúdo armazenado */ } th, td { border: 1px solid var(--texto); overflow: auto; padding: 0.4em 0.8em 0.4em 0.8em; } thead, tfoot { border: 2.1px solid var(--texto); box-shadow: 1px 1px 6px var(--preto); } thead tr, thead th, tfoot tr, tfoot th { border: 2.1px solid var(--texto); } caption { font-size: 1.4em; font-weight: 900; } details { margin: 1em 0em 1em 0em; } button { cursor: pointer; display: block; margin: 1em 0px 1em 0px; } label[for] { cursor: pointer; } input[type="submit"] { cursor: pointer; } input[type="checkbox"] { cursor: pointer; } .margem_p { margin-block-end: 1em; margin-block-start: 1em; margin-inline-end: 0px; margin-inline-start: 0px; } .conteudo { overflow: auto; padding: 0px 20px; } .w_auto { width: auto !important; } .row { display: flex; flex-wrap: wrap; } .col_6 { flex: 0 0 50%; overflow: auto; width: 50%; } .col_12 { flex: 0 0 100%; overflow: auto; width: 100%; } .overflow_auto { overflow: auto !important; } .tag_em_linha::before { content: "< "; } .tag_em_linha::after { content: " />"; } .tag_aberta::before { content: "< "; } .tag_aberta::after { content: " >"; } /* Impede de selecionar o texto, logo não é possível marcar o texto em azul */ .nao_grifavel { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Small - Pequeno - sm */ @media (min-width: 576px) { body { font-size: 1em; } p { font-size: 1em; } h1 { font-size: 3em; } h2 { font-size: 2em; } h3 { font-size: 1.8em; } h4 { font-size: 1.6em; } h5 { font-size: 1.4em; } h6 { font-size: 1.2em; } .w_sm_50 { width: 50% !important; } } /* Medium - Médio - md */ @media (min-width: 768px) { .w_md_50 { width: 50% !important; } .col_md_6 { flex: 0 0 50%; overflow: auto; width: 50%; } .col_md_12 { flex: 0 0 100%; overflow: auto; width: 100%; } } /* Large - Largo - lg */ @media (min-width: 992px) { .w_lg_50 { width: 50% !important; } } /* Extra large - Extra largo - xl */ @media (min-width: 1200px) { .w_xl_50 { width: 50% !important; } }
0.332094
0.186225
* Fixed size panel used to contain * most content on the site. Margin * is set to auto to center most * elements on the site. */ div.panel { margin: auto; color: #212b2e; text-align: center; font-family: Verdana, sans-serif; font-size: 12px; max-width: 875px; min-width: 875px; min-height: 550px; background-color: #7aa08d; border-radius: 5px; } /** * Smaller panel used for post-login screen. */ div.home { margin: auto; padding: 2px; color: #212b2e; text-align: center; font-family: Verdana, sans-serif; font-size: 12px; background-color: #7aa08d; border-radius: 5px; width: 50%; height: 200px; } /** * Styles links to be large rectangular * dark buttons with with an inset box * shadow to give a 3D effect. Font colour * is light yellow. */ a.button { margin: auto; display: block; width: 280px; padding: 15px 15px; text-decoration: none; font-size: 14px; background-color: #212b2e; border-radius: 3px; box-shadow: 0 -22px 0 rgba(0, 0, 0, 0.15) inset; color: #f0f8b2; text-align: center; } /** * When the cursor hovers over the links * they are highlighted in light green/grey. */ a:hover { background-color: #28475b; } p.tree { text-align: start; padding: 2px; } a.tree { text-decoration: none; color: #212b2e; } label.justify { display: flex; justify-content: flex-end; align-items: center; margin-right: 40%; } div.addButton { margin:auto; max-width: 150px; } div.deleteButton { margin:auto; max-width: 230px; } div.listboxAmendDelete { margin:auto; max-width: 195px; } div.amendButton { margin:auto; max-width: 400px; } div.hireButton { margin:auto; max-width: 200px; } div.hireButton2 { display: inline-flex; } div.daysToRentClass { display: block; padding: 4px; } p { margin: initial; } p.error { margin: auto; max-width: 40%; color: #c00000; } h1, h4 { text-align: center; } p.price { font-size: 20px; display: inline; } /** * Table background colour is set to * a plain sand-like colour. */ div.hireEquipTable > table { margin: auto; background-color: #d3d3ab; color: #212b2e; border: 2px solid #212b2e; padding: 5px; text-align: center; border-collapse: collapse; } div.hireEquipTable th, div.hireEquipTable tr, div.hireEquipTable td { border: 2px solid #212b2e; padding: 5px; } div.reportsTable { max-height: 350px; text-align: center; overflow-y: auto; } div.reportsTable > table { width: 60%; display: inline-table; background-color: #d3d3ab; color: #212b2e; border: 2px solid #212b2e; padding: 5px; text-align: center; border-collapse: collapse; } div.reportsTable th, div.reportsTable tr, div.reportsTable td { border: 2px solid #212b2e; padding: 5px; } /** * Styles buttons similarly to the link but more rounded * and with a border. */ input.btn, button { margin: auto; display: inline-block; padding: 10px; font-size: 14px; background-color: #212b2e; border-radius: 30px; box-shadow: 0 -17px 0 rgba(0, 0, 0, 0.15) inset; color: #f0f8b2; text-align: center; } /** * Greys out the buttons when disabled. */ input.btn:disabled, button:disabled { color: grey; } /** * Same hover highlighting as the links but * for the buttons. */ input.btn:hover:enabled, button:hover:enabled { background-color: #28475b; }
files/stylesheet.css
* Fixed size panel used to contain * most content on the site. Margin * is set to auto to center most * elements on the site. */ div.panel { margin: auto; color: #212b2e; text-align: center; font-family: Verdana, sans-serif; font-size: 12px; max-width: 875px; min-width: 875px; min-height: 550px; background-color: #7aa08d; border-radius: 5px; } /** * Smaller panel used for post-login screen. */ div.home { margin: auto; padding: 2px; color: #212b2e; text-align: center; font-family: Verdana, sans-serif; font-size: 12px; background-color: #7aa08d; border-radius: 5px; width: 50%; height: 200px; } /** * Styles links to be large rectangular * dark buttons with with an inset box * shadow to give a 3D effect. Font colour * is light yellow. */ a.button { margin: auto; display: block; width: 280px; padding: 15px 15px; text-decoration: none; font-size: 14px; background-color: #212b2e; border-radius: 3px; box-shadow: 0 -22px 0 rgba(0, 0, 0, 0.15) inset; color: #f0f8b2; text-align: center; } /** * When the cursor hovers over the links * they are highlighted in light green/grey. */ a:hover { background-color: #28475b; } p.tree { text-align: start; padding: 2px; } a.tree { text-decoration: none; color: #212b2e; } label.justify { display: flex; justify-content: flex-end; align-items: center; margin-right: 40%; } div.addButton { margin:auto; max-width: 150px; } div.deleteButton { margin:auto; max-width: 230px; } div.listboxAmendDelete { margin:auto; max-width: 195px; } div.amendButton { margin:auto; max-width: 400px; } div.hireButton { margin:auto; max-width: 200px; } div.hireButton2 { display: inline-flex; } div.daysToRentClass { display: block; padding: 4px; } p { margin: initial; } p.error { margin: auto; max-width: 40%; color: #c00000; } h1, h4 { text-align: center; } p.price { font-size: 20px; display: inline; } /** * Table background colour is set to * a plain sand-like colour. */ div.hireEquipTable > table { margin: auto; background-color: #d3d3ab; color: #212b2e; border: 2px solid #212b2e; padding: 5px; text-align: center; border-collapse: collapse; } div.hireEquipTable th, div.hireEquipTable tr, div.hireEquipTable td { border: 2px solid #212b2e; padding: 5px; } div.reportsTable { max-height: 350px; text-align: center; overflow-y: auto; } div.reportsTable > table { width: 60%; display: inline-table; background-color: #d3d3ab; color: #212b2e; border: 2px solid #212b2e; padding: 5px; text-align: center; border-collapse: collapse; } div.reportsTable th, div.reportsTable tr, div.reportsTable td { border: 2px solid #212b2e; padding: 5px; } /** * Styles buttons similarly to the link but more rounded * and with a border. */ input.btn, button { margin: auto; display: inline-block; padding: 10px; font-size: 14px; background-color: #212b2e; border-radius: 30px; box-shadow: 0 -17px 0 rgba(0, 0, 0, 0.15) inset; color: #f0f8b2; text-align: center; } /** * Greys out the buttons when disabled. */ input.btn:disabled, button:disabled { color: grey; } /** * Same hover highlighting as the links but * for the buttons. */ input.btn:hover:enabled, button:hover:enabled { background-color: #28475b; }
0.521471
0.190498
.wrapper { margin: 25px 25px; } hr { border: 1px solid black; } /* Row Styling */ #opponentRow, #opponentDefRow, #opponentAttRow, #userAttRow, #userDefRow { display: flex; flex-direction: row; } #userRow { display: flex; flex-direction: row-reverse; } #opponentDefRow, #opponentAttRow, #userAttRow, #userDefRow { justify-content: center; } #opponentDefRow { margin: 45px 0 50px 0; } #userDefRow { margin: 0 0 45px 0; } /* Width Settings */ #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3, #opponentDef1, #opponentDef2, #userDef1, #userDef2, #opponentDeck, #userDeck, #userGrave, #opponentGrave { width: 12%; } #opponentAtt1 .card, #opponentAtt2 .card, #opponentAtt3 .card, #userAtt1 .card, #userAtt2 .card, #userAtt3 .card, #opponentDef1 .card, #opponentDef2 .card, #userDef1 .card, #userDef2 .card { background-image: url(./playAreaImages/Rain/Rain_part_05.png); background-size: contain; background-repeat: repeat-x; border: 2px solid rgb(27, 27, 27); box-shadow: 2px 4px 5px -3px black; margin-right: 5px; } #opponentDeck .card, #userDeck .card, #userGrave .card, #opponentGrave .card #userInfo .card { background-image: url(./cardbackground.jpg); } #userPlayArea .card, #opponentPlayArea #playAreaRow { background-image: url(./playAreaImages/Night/Night_part_03.png); background-repeat: repeat-x; background-size: contain; border: 2px solid rgb(32, 32, 32); box-shadow: 2px 4px 5px -3px black; } #opponentPlayArea #playAreaRow { background-image: url(./playAreaImages/Boss-Time/Final-Boss_part_03.png); } #opponentPlayArea .card { border: none; } #opponentCard .card-body { padding: 0; } /* Attack Styling */ #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3 { margin-bottom: 50px; } #opponentDeck, #userDeck, #userGrave { margin-left: 2%; } /* Play Area Styling */ #opponentPlayArea { width: 60%; margin-left: 2%; } #userPlayArea { width: 60%; } #playAreaRow { min-height: 65px; } #cardRow { display: flex; flex-direction: row; justify-content: space-around; } .opponentCard { max-height: 281px; max-width: 187px; width: 100%; } #opponentCard { border: none; } /* resources styling */ .userResourceRow, .endTurnRow { display: flex; flex-direction: row; justify-content: center; margin:10px; } .woodEndButton { background-image: url(./playAreaImages/woodsign.png) !important; width: 200px; height: 100px; background-size: contain; background-repeat: no-repeat; background-color:transparent ; justify-content: center; border: none; font-size: 35px; font-weight: bold; font-family: 'Trade Winds', cursive; color: rgb(255, 246, 217); } .woodEndButton:hover { transition: ease-in-out 0.2s !important; transform: scale(1.05) !important; text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 2px #fff, 0 0 4px rgb(0, 153, 255), 0 0 8px rgb(0, 153, 255), 0 0 80px rgb(0, 153, 255), 0 0 100px rgb(0, 153, 255); } .resourceCircle { height: 40px; width: 40px; background-color: rgb(34, 34, 34); border-radius: 50%; border-style: solid; border-width: 1.5px; display: inline-block; margin: 5px; border-width: 2px; border-color: rgb(0, 110, 161); } .activeResource { background-color: rgb(54, 0, 202); box-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 2px rgb(20, 130, 220), 0 0 4px rgb(20, 130, 220), 0 0 40px rgb(20, 130, 220), 0 0 50px rgb(20, 130, 220), 0 0 60px rgb(20, 130, 220); } @media (max-width: 1500px) { #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3, #opponentDef1, #opponentDef2, #userDef1, #userDef2, #opponentDeck, #userDeck, #userGrave, #opponentGrave { width: 16%; } }
client/src/components/GameBoard/gameboard.css
.wrapper { margin: 25px 25px; } hr { border: 1px solid black; } /* Row Styling */ #opponentRow, #opponentDefRow, #opponentAttRow, #userAttRow, #userDefRow { display: flex; flex-direction: row; } #userRow { display: flex; flex-direction: row-reverse; } #opponentDefRow, #opponentAttRow, #userAttRow, #userDefRow { justify-content: center; } #opponentDefRow { margin: 45px 0 50px 0; } #userDefRow { margin: 0 0 45px 0; } /* Width Settings */ #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3, #opponentDef1, #opponentDef2, #userDef1, #userDef2, #opponentDeck, #userDeck, #userGrave, #opponentGrave { width: 12%; } #opponentAtt1 .card, #opponentAtt2 .card, #opponentAtt3 .card, #userAtt1 .card, #userAtt2 .card, #userAtt3 .card, #opponentDef1 .card, #opponentDef2 .card, #userDef1 .card, #userDef2 .card { background-image: url(./playAreaImages/Rain/Rain_part_05.png); background-size: contain; background-repeat: repeat-x; border: 2px solid rgb(27, 27, 27); box-shadow: 2px 4px 5px -3px black; margin-right: 5px; } #opponentDeck .card, #userDeck .card, #userGrave .card, #opponentGrave .card #userInfo .card { background-image: url(./cardbackground.jpg); } #userPlayArea .card, #opponentPlayArea #playAreaRow { background-image: url(./playAreaImages/Night/Night_part_03.png); background-repeat: repeat-x; background-size: contain; border: 2px solid rgb(32, 32, 32); box-shadow: 2px 4px 5px -3px black; } #opponentPlayArea #playAreaRow { background-image: url(./playAreaImages/Boss-Time/Final-Boss_part_03.png); } #opponentPlayArea .card { border: none; } #opponentCard .card-body { padding: 0; } /* Attack Styling */ #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3 { margin-bottom: 50px; } #opponentDeck, #userDeck, #userGrave { margin-left: 2%; } /* Play Area Styling */ #opponentPlayArea { width: 60%; margin-left: 2%; } #userPlayArea { width: 60%; } #playAreaRow { min-height: 65px; } #cardRow { display: flex; flex-direction: row; justify-content: space-around; } .opponentCard { max-height: 281px; max-width: 187px; width: 100%; } #opponentCard { border: none; } /* resources styling */ .userResourceRow, .endTurnRow { display: flex; flex-direction: row; justify-content: center; margin:10px; } .woodEndButton { background-image: url(./playAreaImages/woodsign.png) !important; width: 200px; height: 100px; background-size: contain; background-repeat: no-repeat; background-color:transparent ; justify-content: center; border: none; font-size: 35px; font-weight: bold; font-family: 'Trade Winds', cursive; color: rgb(255, 246, 217); } .woodEndButton:hover { transition: ease-in-out 0.2s !important; transform: scale(1.05) !important; text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 2px #fff, 0 0 4px rgb(0, 153, 255), 0 0 8px rgb(0, 153, 255), 0 0 80px rgb(0, 153, 255), 0 0 100px rgb(0, 153, 255); } .resourceCircle { height: 40px; width: 40px; background-color: rgb(34, 34, 34); border-radius: 50%; border-style: solid; border-width: 1.5px; display: inline-block; margin: 5px; border-width: 2px; border-color: rgb(0, 110, 161); } .activeResource { background-color: rgb(54, 0, 202); box-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 2px rgb(20, 130, 220), 0 0 4px rgb(20, 130, 220), 0 0 40px rgb(20, 130, 220), 0 0 50px rgb(20, 130, 220), 0 0 60px rgb(20, 130, 220); } @media (max-width: 1500px) { #opponentAtt1, #opponentAtt2, #opponentAtt3, #userAtt1, #userAtt2, #userAtt3, #opponentDef1, #opponentDef2, #userDef1, #userDef2, #opponentDeck, #userDeck, #userGrave, #opponentGrave { width: 16%; } }
0.326057
0.080105
html, body { overflow: none; width: 100%; margin: 0px; padding: 0px; font-family: 'Arvo', serif; } h2 { font-size: 120%; margin-bottom: 0; text-align: center; } a { text-decoration: none; border: 0; color: #fff; } ul { list-style-type: none; padding: 0; line-height: 150%; } li { vertical-align: top; margin: 0 0 6px; display: block; } hr { border: none; background-color: #ccc; color: #ccc; height: 1px; } .fixed-container { position: fixed; height: 1.8em; width: 100%; display: block; } #header-container { top: 0; left: 0; background-color: #13549a; color: #fff; box-shadow: 0 0 7px #a8a8a8; text-shadow: #000 0 0 0.2em; } #footer-container { bottom: 0; left: 0; background-color: #13549a; color: #fff; box-shadow: 0 0 7px #a8a8a8; text-shadow: #000 0 0 0.2em; } #header-container li a { text-decoration: none; } a i { text-decoration: none; color: #fff; } .event-link { border-radius: 7px; background-color: #2981e4; padding: 2px 5px 2px 5px; display: block; box-shadow: 0 0 5px #a8a8a8; font-size: 80%; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); } .enrollment-link { border-radius: 7px; background-color: #3fab47; padding: 2px 5px 2px 5px; display: block; box-shadow: 0 0 5px #a8a8a8; font-size: 80%; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); } #home { display: inline-block; padding: 3px; padding-left: 8px; top: 0; left: 0; float: left; } #dd { top: 0; right: 0; display: inline-block; padding: 3px; float: right; margin-right: 5px; } #dd p { display: inline; } .footer-item { margin: 0; display: inline-block; bottom: 0; } .footer-item p { display: inline; } #back { left: 0; float: left; padding: 4px; } #show-map, #upload { right: 0; float: right; padding: 4px; cursor: pointer; } #contents-container { padding: 20px; } #mapArea { height: 100%; width: 100%; } .centered { text-align: center; } #gamified-logo { background: url("../images/gamified_logo_175x40.png") no-repeat center center; width: 110px; height: 1.2em; display: inline-block; background-size: contain; margin: 3px; float: left; } #message-bottom { float: none; } #enroll-button { background-color: #3fab47; border-radius: 5px; color: #fff; padding: 6px 20px; text-decoration: none; outline: none; border-width: 0px; font-size: 120%; font-family: 'Arvo', serif; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); cursor: pointer; } #enroll-button p { display: inline; } #unenroll-button { background-color: #b22222; border-radius: 5px; color: #fff; padding: 6px 20px; text-decoration: none; outline: none; border-width: 0px; font-size: 120%; font-family: 'Arvo', serif; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); cursor: pointer; } .hidden { position: absolute; left: -9999px; } #startTime, #endTime { font-size: 80%; } .wrapper-dropdown-5 { /* Size & position */ position: relative; /* Styles */ outline: none; cursor: pointer; } .wrapper-dropdown-5 .dropdown { /* Size & position */ position: absolute; top: 100%; left: 0; right: 0; margin-top: 0; /* Styles */ background: #fff; list-style: none; /* Hiding */ max-height: 0; overflow: hidden; line-height: 50%; } .wrapper-dropdown-5 .dropdown li { background-color: #fff; border: 1px solid #13549a; padding: 5px; margin-bottom: 0; } .wrapper-dropdown-5 .dropdown li a { display: block; text-decoration: none; color: #13549a; text-shadow: none; } .wrapper-dropdown-5 .dropdown li i { margin-right: 5px; color: inherit; } .wrapper-dropdown-5.active .dropdown { max-height: 400px; } #hiddenLink { text-decoration: none; display: none; } #hiddenUploader { display: none; } #hiddenUploader p { display: none; } #hiddenUploader img { display: none; width: 66px; height: 66px; }
public/stylesheets/participant.css
html, body { overflow: none; width: 100%; margin: 0px; padding: 0px; font-family: 'Arvo', serif; } h2 { font-size: 120%; margin-bottom: 0; text-align: center; } a { text-decoration: none; border: 0; color: #fff; } ul { list-style-type: none; padding: 0; line-height: 150%; } li { vertical-align: top; margin: 0 0 6px; display: block; } hr { border: none; background-color: #ccc; color: #ccc; height: 1px; } .fixed-container { position: fixed; height: 1.8em; width: 100%; display: block; } #header-container { top: 0; left: 0; background-color: #13549a; color: #fff; box-shadow: 0 0 7px #a8a8a8; text-shadow: #000 0 0 0.2em; } #footer-container { bottom: 0; left: 0; background-color: #13549a; color: #fff; box-shadow: 0 0 7px #a8a8a8; text-shadow: #000 0 0 0.2em; } #header-container li a { text-decoration: none; } a i { text-decoration: none; color: #fff; } .event-link { border-radius: 7px; background-color: #2981e4; padding: 2px 5px 2px 5px; display: block; box-shadow: 0 0 5px #a8a8a8; font-size: 80%; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); } .enrollment-link { border-radius: 7px; background-color: #3fab47; padding: 2px 5px 2px 5px; display: block; box-shadow: 0 0 5px #a8a8a8; font-size: 80%; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); } #home { display: inline-block; padding: 3px; padding-left: 8px; top: 0; left: 0; float: left; } #dd { top: 0; right: 0; display: inline-block; padding: 3px; float: right; margin-right: 5px; } #dd p { display: inline; } .footer-item { margin: 0; display: inline-block; bottom: 0; } .footer-item p { display: inline; } #back { left: 0; float: left; padding: 4px; } #show-map, #upload { right: 0; float: right; padding: 4px; cursor: pointer; } #contents-container { padding: 20px; } #mapArea { height: 100%; width: 100%; } .centered { text-align: center; } #gamified-logo { background: url("../images/gamified_logo_175x40.png") no-repeat center center; width: 110px; height: 1.2em; display: inline-block; background-size: contain; margin: 3px; float: left; } #message-bottom { float: none; } #enroll-button { background-color: #3fab47; border-radius: 5px; color: #fff; padding: 6px 20px; text-decoration: none; outline: none; border-width: 0px; font-size: 120%; font-family: 'Arvo', serif; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); cursor: pointer; } #enroll-button p { display: inline; } #unenroll-button { background-color: #b22222; border-radius: 5px; color: #fff; padding: 6px 20px; text-decoration: none; outline: none; border-width: 0px; font-size: 120%; font-family: 'Arvo', serif; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); cursor: pointer; } .hidden { position: absolute; left: -9999px; } #startTime, #endTime { font-size: 80%; } .wrapper-dropdown-5 { /* Size & position */ position: relative; /* Styles */ outline: none; cursor: pointer; } .wrapper-dropdown-5 .dropdown { /* Size & position */ position: absolute; top: 100%; left: 0; right: 0; margin-top: 0; /* Styles */ background: #fff; list-style: none; /* Hiding */ max-height: 0; overflow: hidden; line-height: 50%; } .wrapper-dropdown-5 .dropdown li { background-color: #fff; border: 1px solid #13549a; padding: 5px; margin-bottom: 0; } .wrapper-dropdown-5 .dropdown li a { display: block; text-decoration: none; color: #13549a; text-shadow: none; } .wrapper-dropdown-5 .dropdown li i { margin-right: 5px; color: inherit; } .wrapper-dropdown-5.active .dropdown { max-height: 400px; } #hiddenLink { text-decoration: none; display: none; } #hiddenUploader { display: none; } #hiddenUploader p { display: none; } #hiddenUploader img { display: none; width: 66px; height: 66px; }
0.311322
0.065605
.highlight,pre.highlight{color:#437ae1 !important} .highlight .hll{background:#282c34 !important} .highlight .c{color:#5c6370 !important;font-style:italic !important} .highlight .err{color:#ff4ead !important;background-color:#210012 !important} .highlight .k{color:#ca15ff !important}.highlight .l{color:#60d70a !important} .highlight .n{color:#437ae1 !important}.highlight .o{color:#437ae1 !important} .highlight .p{color:#437ae1 !important}.highlight .cm{color:#5c6370 !important;font-style:italic !important} .highlight .cp{color:#5c6370 !important;font-style:italic !important}.highlight .c1{color:#5c6370 !important;font-style:italic !important} .highlight .cs{color:#5c6370 !important;font-style:italic !important}.highlight .ge{font-style:italic !important} .highlight .gs{font-weight:700 !important}.highlight .kc{color:#ca15ff !important} .highlight .kd{color:#ca15ff !important}.highlight .kn{color:#ca15ff !important} .highlight .kp{color:#ca15ff !important}.highlight .kr{color:#ca15ff !important} .highlight .kt{color:#ca15ff !important}.highlight .ld{color:#60d70a !important} .highlight .m{color:#d19a66 !important}.highlight .s{color:#60d70a !important} .highlight .na{color:#d19a66 !important}.highlight .nb{color:#ff7c00 !important} .highlight .nc{color:#ff7c00 !important}.highlight .no{color:#ff7c00 !important} .highlight .nd{color:#ff7c00 !important}.highlight .ni{color:#ff7c00 !important} .highlight .ne{color:#ff7c00 !important}.highlight .nf{color:#437ae1 !important} .highlight .nl{color:#ff7c00 !important}.highlight .nn{color:#437ae1 !important} .highlight .nx{color:#437ae1 !important}.highlight .py{color:#ff7c00 !important} .highlight .nt{color:#e06c75 !important}.highlight .nv{color:#ff7c00 !important} .highlight .ow{font-weight:700 !important}.highlight .w{color:#72723a !important} .highlight .mf{color:#d19a66 !important}.highlight .mh{color:#d19a66 !important} .highlight .mi{color:#d19a66 !important}.highlight .mo{color:#d19a66 !important} .highlight .sb{color:#60d70a !important}.highlight .sc{color:#60d70a !important} .highlight .sd{color:#60d70a !important}.highlight .s2{color:#60d70a !important} .highlight .se{color:#60d70a !important}.highlight .sh{color:#60d70a !important} .highlight .si{color:#60d70a !important}.highlight .sx{color:#60d70a !important} .highlight .sr{color:#56b6c2 !important}.highlight .s1{color:#60d70a !important} .highlight .ss{color:#56b6c2 !important}.highlight .bp{color:#ff7c00 !important} .highlight .vc{color:#ff7c00 !important}.highlight .vg{color:#ff7c00 !important} .highlight .vi{color:#e06c75 !important}.highlight .il{color:#d19a66 !important} .highlight .gu{color:#75715e !important}.highlight .gd{color:#f92672 !important} .highlight .gi{color:#a6e22e !important}pre{border:0 solid #000 !important;color:#437ae1 !important}
assets/css/syntax.css
.highlight,pre.highlight{color:#437ae1 !important} .highlight .hll{background:#282c34 !important} .highlight .c{color:#5c6370 !important;font-style:italic !important} .highlight .err{color:#ff4ead !important;background-color:#210012 !important} .highlight .k{color:#ca15ff !important}.highlight .l{color:#60d70a !important} .highlight .n{color:#437ae1 !important}.highlight .o{color:#437ae1 !important} .highlight .p{color:#437ae1 !important}.highlight .cm{color:#5c6370 !important;font-style:italic !important} .highlight .cp{color:#5c6370 !important;font-style:italic !important}.highlight .c1{color:#5c6370 !important;font-style:italic !important} .highlight .cs{color:#5c6370 !important;font-style:italic !important}.highlight .ge{font-style:italic !important} .highlight .gs{font-weight:700 !important}.highlight .kc{color:#ca15ff !important} .highlight .kd{color:#ca15ff !important}.highlight .kn{color:#ca15ff !important} .highlight .kp{color:#ca15ff !important}.highlight .kr{color:#ca15ff !important} .highlight .kt{color:#ca15ff !important}.highlight .ld{color:#60d70a !important} .highlight .m{color:#d19a66 !important}.highlight .s{color:#60d70a !important} .highlight .na{color:#d19a66 !important}.highlight .nb{color:#ff7c00 !important} .highlight .nc{color:#ff7c00 !important}.highlight .no{color:#ff7c00 !important} .highlight .nd{color:#ff7c00 !important}.highlight .ni{color:#ff7c00 !important} .highlight .ne{color:#ff7c00 !important}.highlight .nf{color:#437ae1 !important} .highlight .nl{color:#ff7c00 !important}.highlight .nn{color:#437ae1 !important} .highlight .nx{color:#437ae1 !important}.highlight .py{color:#ff7c00 !important} .highlight .nt{color:#e06c75 !important}.highlight .nv{color:#ff7c00 !important} .highlight .ow{font-weight:700 !important}.highlight .w{color:#72723a !important} .highlight .mf{color:#d19a66 !important}.highlight .mh{color:#d19a66 !important} .highlight .mi{color:#d19a66 !important}.highlight .mo{color:#d19a66 !important} .highlight .sb{color:#60d70a !important}.highlight .sc{color:#60d70a !important} .highlight .sd{color:#60d70a !important}.highlight .s2{color:#60d70a !important} .highlight .se{color:#60d70a !important}.highlight .sh{color:#60d70a !important} .highlight .si{color:#60d70a !important}.highlight .sx{color:#60d70a !important} .highlight .sr{color:#56b6c2 !important}.highlight .s1{color:#60d70a !important} .highlight .ss{color:#56b6c2 !important}.highlight .bp{color:#ff7c00 !important} .highlight .vc{color:#ff7c00 !important}.highlight .vg{color:#ff7c00 !important} .highlight .vi{color:#e06c75 !important}.highlight .il{color:#d19a66 !important} .highlight .gu{color:#75715e !important}.highlight .gd{color:#f92672 !important} .highlight .gi{color:#a6e22e !important}pre{border:0 solid #000 !important;color:#437ae1 !important}
0.154599
0.09628
.container { height: 770px; } .map { width: 100%; height: 100%; } .list { float: right; width: 600px; } .row { width: 100%; margin-bottom: 1px; border-bottom: solid 1px #eee; } .row-inner { margin: auto; display: table; } .row .row-item { display: table-cell; vertical-align: middle; height: 100px; } .row .name-area { width: 240px; padding: 0 10px; } .name-area .name { margin-bottom: 4px; padding: 0; font-size: 18px; line-height: 20px; cursor: pointer; } .name-area .address { margin: 0; padding: 0; font-size: 12px; line-height: 16px; } .row .wait-time { width: 180px; padding: 0 10px; } .wait-time p { padding: 0; margin: 0; font-size: 14px; } .row .icon { padding: 0 5px; } @media screen and (max-width: 1024px) { .list { width: 500px; } .name-area { width: 180px; padding: 0 5px; } .name-area .name { font-size: 14px; } .name-area .address { font-size: 10px; } .wait-time { width: 150px; padding: 0 5px; } .wait-time p { font-size: 12px; } .icon { padding: 0 3px; } } @media screen and (max-width: 768px) { .container { height: auto; } .list { clear: both; width: 100%; } .row .name-area { width: 240px; padding: 0 10px; } .name-area .name { font-size: 18px; } .name-area .address { font-size: 12px; } .row .wait-time { width: 180px; padding: 0 10px; } .wait-time p { font-size: 14px; } .row .icon { padding: 0 5px; } .map { clear: both; height: 500px; } } @media screen and (max-width: 600px) { .list-container { top: 60px; } .row .name-area { width: 180px; padding: 0 5px; } .name-area .name { font-size: 14px; } .name-area .address { font-size: 10px; } .row .wait-time { width: 120px; } .wait-time p { font-size: 11px; } } @media screen and (max-width: 480px) { .row .icon { display: none; width: 0; } }
ClinicFrontend/src/app/app-clinic/clinic-list/clinic-list.component.css
.container { height: 770px; } .map { width: 100%; height: 100%; } .list { float: right; width: 600px; } .row { width: 100%; margin-bottom: 1px; border-bottom: solid 1px #eee; } .row-inner { margin: auto; display: table; } .row .row-item { display: table-cell; vertical-align: middle; height: 100px; } .row .name-area { width: 240px; padding: 0 10px; } .name-area .name { margin-bottom: 4px; padding: 0; font-size: 18px; line-height: 20px; cursor: pointer; } .name-area .address { margin: 0; padding: 0; font-size: 12px; line-height: 16px; } .row .wait-time { width: 180px; padding: 0 10px; } .wait-time p { padding: 0; margin: 0; font-size: 14px; } .row .icon { padding: 0 5px; } @media screen and (max-width: 1024px) { .list { width: 500px; } .name-area { width: 180px; padding: 0 5px; } .name-area .name { font-size: 14px; } .name-area .address { font-size: 10px; } .wait-time { width: 150px; padding: 0 5px; } .wait-time p { font-size: 12px; } .icon { padding: 0 3px; } } @media screen and (max-width: 768px) { .container { height: auto; } .list { clear: both; width: 100%; } .row .name-area { width: 240px; padding: 0 10px; } .name-area .name { font-size: 18px; } .name-area .address { font-size: 12px; } .row .wait-time { width: 180px; padding: 0 10px; } .wait-time p { font-size: 14px; } .row .icon { padding: 0 5px; } .map { clear: both; height: 500px; } } @media screen and (max-width: 600px) { .list-container { top: 60px; } .row .name-area { width: 180px; padding: 0 5px; } .name-area .name { font-size: 14px; } .name-area .address { font-size: 10px; } .row .wait-time { width: 120px; } .wait-time p { font-size: 11px; } } @media screen and (max-width: 480px) { .row .icon { display: none; width: 0; } }
0.317532
0.151718
::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } html { padding: 30px 10px; line-height: 1.4; color: #646f76; background: #f0f0f0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } html, input { font-family: sans-serif; } body { max-width: 50%; _width: 500px; padding: 30px 20px 50px; border: 1px solid #b3b3b3; border-radius: 4px; margin: 0 auto; box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; background: #fcfcfc; } h1, h2, h3, h4 { color: #3a4145; } h1 { margin: 0 10px; font-size: 50px; text-align: center; } h1 span { color: rgb(255, 204, 0); } h3 { margin: 1.5em 0 0.5em; } p { margin: 1em 0; } ul { padding: 0 0 0 40px; margin: 1em 0; } .container { max-width: 95%; _width: 380px; margin: 0 auto; } /* google search */ #goog-fixurl ul { list-style: none; padding: 0; margin: 0; } #goog-fixurl form { margin: 0; } #goog-wm-qt, #goog-wm-sb { border: 1px solid #bbb; font-size: 16px; line-height: normal; vertical-align: top; color: #444; border-radius: 2px; } #goog-wm-qt { width: 220px; height: 20px; padding: 5px; margin: 5px 10px 0 0; box-shadow: inset 0 1px 1px #ccc; } #goog-wm-sb { display: inline-block; height: 32px; padding: 0 10px; margin: 5px 0 0; white-space: nowrap; cursor: pointer; background-color: #f5f5f5; background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); -webkit-appearance: none; -moz-appearance: none; appearance: none; *overflow: visible; *display: inline; *zoom: 1; } #goog-wm-sb:hover, #goog-wm-sb:focus { border-color: #aaa; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); background-color: #f8f8f8; } #goog-wm-qt:hover, #goog-wm-qt:focus { border-color: rgb(255, 204, 0); outline: 0; color: #222; } input::-moz-focus-inner { padding: 0; border: 0; } /* desktop 980px layout */ @media screen and (max-width: 980px) and (min-width: 769px) { body { max-width: 90%; } } /* tablet 768px layout */ @media screen and (max-width: 768px) and (min-width: 481px) { body { max-width: 90%; } h1 { font-size: 30px; } } /* smartphone 480px layout */ @media screen and (max-width: 480px) { body { max-width: 95%; } h1 { font-size: 19px; } .container { font-size: .9em; } }
static/css/notfound.css
::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } html { padding: 30px 10px; line-height: 1.4; color: #646f76; background: #f0f0f0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } html, input { font-family: sans-serif; } body { max-width: 50%; _width: 500px; padding: 30px 20px 50px; border: 1px solid #b3b3b3; border-radius: 4px; margin: 0 auto; box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; background: #fcfcfc; } h1, h2, h3, h4 { color: #3a4145; } h1 { margin: 0 10px; font-size: 50px; text-align: center; } h1 span { color: rgb(255, 204, 0); } h3 { margin: 1.5em 0 0.5em; } p { margin: 1em 0; } ul { padding: 0 0 0 40px; margin: 1em 0; } .container { max-width: 95%; _width: 380px; margin: 0 auto; } /* google search */ #goog-fixurl ul { list-style: none; padding: 0; margin: 0; } #goog-fixurl form { margin: 0; } #goog-wm-qt, #goog-wm-sb { border: 1px solid #bbb; font-size: 16px; line-height: normal; vertical-align: top; color: #444; border-radius: 2px; } #goog-wm-qt { width: 220px; height: 20px; padding: 5px; margin: 5px 10px 0 0; box-shadow: inset 0 1px 1px #ccc; } #goog-wm-sb { display: inline-block; height: 32px; padding: 0 10px; margin: 5px 0 0; white-space: nowrap; cursor: pointer; background-color: #f5f5f5; background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); -webkit-appearance: none; -moz-appearance: none; appearance: none; *overflow: visible; *display: inline; *zoom: 1; } #goog-wm-sb:hover, #goog-wm-sb:focus { border-color: #aaa; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); background-color: #f8f8f8; } #goog-wm-qt:hover, #goog-wm-qt:focus { border-color: rgb(255, 204, 0); outline: 0; color: #222; } input::-moz-focus-inner { padding: 0; border: 0; } /* desktop 980px layout */ @media screen and (max-width: 980px) and (min-width: 769px) { body { max-width: 90%; } } /* tablet 768px layout */ @media screen and (max-width: 768px) and (min-width: 481px) { body { max-width: 90%; } h1 { font-size: 30px; } } /* smartphone 480px layout */ @media screen and (max-width: 480px) { body { max-width: 95%; } h1 { font-size: 19px; } .container { font-size: .9em; } }
0.374219
0.082586
.container { margin-left: auto; margin-right: auto; } .container.show-grid { position: relative; } .container.show-grid::before { content: ''; position: absolute; z-index: 10000; top: 0; left: 0; right: 0; height: 200vh; background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 50% 1px; } .container.show-grid::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200vh; background: linear-gradient(transparent 9px, #3b1519 9px); background-size: 1px 10px; } .row::after, .grid::after { content: ''; display: block; clear: both; } .column, .cell { box-sizing: border-box; float: left; } [dir="rtl"] .column, [dir="rtl"] .cell { float: right; } .m1 { width: 25%; } .m2 { width: 50%; } .m3 { width: 75%; } .m-full { width: 100%; } /** * -------------------------------- * 태블릿: 8 컬럼 레이아웃 모듈 * 768px ~ 1024px * ----------------------------- */ @media only screen and (min-width: 768px) { .container.show-grid::before { background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 25% 1px; } .t1 { width: 12.5%; } .t2 { width: 25%; } .t3 { width: 37.5%; } .t4 { width: 50%; } .t5 { width: 62.5%; } .t6 { width: 75%; } .t7 { width: 87.5%; } .t-full { width: 100%; } } /** * -------------------------------- * 태블릿: 8 컬럼 레이아웃 모듈 * 1025px ~ * ----------------------------- */ @media only screen and (min-width: 1025px) { .container.show-grid::before { background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 16.6666% 1px; } .d1 { width: 8.3333%; } .d2 { width: 16.6666%; } .d3 { width: 25%; } .d4 { width: 33.3333%; } .d5 { width: 41.6666%; } .d6 { width: 50%; } .d7 { width: 58.3333%; } .d8 { width: 66.6666%; } .d9 { width: 75%; } .d10 { width: 83.3333%; } .d11 { width: 91.6666%; } .d-full { width: 100%; } }
FDS-class/Modules/CSS/grid-system-mobile-first-fix-count.css
.container { margin-left: auto; margin-right: auto; } .container.show-grid { position: relative; } .container.show-grid::before { content: ''; position: absolute; z-index: 10000; top: 0; left: 0; right: 0; height: 200vh; background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 50% 1px; } .container.show-grid::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200vh; background: linear-gradient(transparent 9px, #3b1519 9px); background-size: 1px 10px; } .row::after, .grid::after { content: ''; display: block; clear: both; } .column, .cell { box-sizing: border-box; float: left; } [dir="rtl"] .column, [dir="rtl"] .cell { float: right; } .m1 { width: 25%; } .m2 { width: 50%; } .m3 { width: 75%; } .m-full { width: 100%; } /** * -------------------------------- * 태블릿: 8 컬럼 레이아웃 모듈 * 768px ~ 1024px * ----------------------------- */ @media only screen and (min-width: 768px) { .container.show-grid::before { background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 25% 1px; } .t1 { width: 12.5%; } .t2 { width: 25%; } .t3 { width: 37.5%; } .t4 { width: 50%; } .t5 { width: 62.5%; } .t6 { width: 75%; } .t7 { width: 87.5%; } .t-full { width: 100%; } } /** * -------------------------------- * 태블릿: 8 컬럼 레이아웃 모듈 * 1025px ~ * ----------------------------- */ @media only screen and (min-width: 1025px) { .container.show-grid::before { background: linear-gradient(90deg, hsla(357, 97%, 86%, 0.45) 50%, hsla(356, 95%, 68%, 0.45) 50%); background-size: 16.6666% 1px; } .d1 { width: 8.3333%; } .d2 { width: 16.6666%; } .d3 { width: 25%; } .d4 { width: 33.3333%; } .d5 { width: 41.6666%; } .d6 { width: 50%; } .d7 { width: 58.3333%; } .d8 { width: 66.6666%; } .d9 { width: 75%; } .d10 { width: 83.3333%; } .d11 { width: 91.6666%; } .d-full { width: 100%; } }
0.620622
0.154026
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, em, p, font, img, small, strong, center, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tr, th, td {margin:0;padding:0;border:0;outline:0;font-size:12px;vertical-align:baseline} ol, ul {list-style:none} :focus {outline:none; } li{list-style: none;} table {border-collapse:collapse;border-spacing: 0} caption, th, td { text-align: left; font-weight: normal} strong {font-weight:600} a{font:12px Arial;text-decoration:none;color:#404040;cursor:pointer;} a:hover{text-decoration:underline;color:#FF3300} h1{font-size:16px;font-weight:600;color:#666} .left{float:left} .right{float:right} .clear{clear:both} i{font-style: normal;} #g_head{ height: 56px; width: 100%; background: pink; } .g_head{ width: 1200px; height: 100%; background: yellow; margin: 0 auto; } .n_conmment{ height: 100%; float: left; } .nav_l{ width: 90px; background: yellowgreen; } .nav_l img{ height: 36px; width: 90px; margin-top: 12px; } .g_con{ float: left; margin-left: 164px; } .g_con li{ float: left; margin-right: 40px; } .li_l{ height: 56px; width: 15px; background: saddlebrown; float: left; } .li_l img{ height: 15px; width: 15px; margin-top: 20px; } .li_r{ height: 56px; line-height: 56px; float: left; font-size: 16px; color: #211E1E; background: red; margin-left: 10px; } .login{ float: left; background: yellowgreen; margin-left: 18px; } .log{ height: 56px; line-height: 56px; color: #F85959; font-size: 16px; } #g_xqc{ height: 210px; width: 1200px; background: pink; margin: 0 auto; margin-top: 30px; border-radius: 4px; background: url(../img/xmtxy/toutiaohao-bg.png) no-repeat; } .g_xqc{ height: 90px; width: 400px; background: yellow; float: left; margin-left: 400px; margin-top: 30px; } .g_xqcl{ height: 90px; width: 90px; border-radius: 4px; background: pink; float: left; } .g_xqcl img{ height: 90px; width: 90px; border-radius: 4px; } .g_xqcr{ width: 295px; height: 90px; background: yellowgreen; float: left; padding-left: 15px; } .top{ font-size: 20px; color: #FFFFFF; float: left; background: red; margin-top: 15px; font-family: "microsoft yahei-bold"; } .bottom{ font-size: 16px; color: #FFFFFF; width: 100%; background: seagreen; float: left; margin-top: 5px; } .heng{ float: left; height: 1px; width: 1200px; background: rgba(255,255,255,0.3); margin-top: 30px; } .g_xqb{ height: 59px; width: 1200px; background: silver; float: left; } .fenlei li{ float: left; margin-left: 30px; } .pic2{ height: 19px; width: 19px; float: left; background: yellow; margin-top: 20px; } .fensil{ height: 19px; float: left; line-height: 19px; background: red; font-size: 16px; color: #FFFFFF; margin-left: 10px; margin-top: 20px; } .num{ font-size: 19px; color: #F85959; line-height: 19px; background: yellow; float: left; font-family: "microsoft yahei-bold"; margin-top: 20px; padding-right: 30px; border-right: 1px solid #CCCCCC; margin-left: 5px; } .num1{ font-size: 19px; color: #F85959; line-height: 19px; background: yellow; float: left; font-family: "microsoft yahei-bold"; margin-top: 20px; margin-left: 5px; } .fenlei{ height: 59px; width: 740px; background: red; margin: 0 auto; } #g_xqb{ width: 100%; background: pink; float: left; margin-top: 14px; } .g_xqb1{ width: 1200px; background: darkblue; margin: 0 auto; } .xq_head{ height: 58px; width: 1200px; background: saddlebrown; margin: 0 auto; } .xq_headl{ width: 100%; height: 58px; background: red; float: left; } .xq_headr{ width: 830px; height: 58px; background: yellowgreen; float: right; } .xq_shu{ font-size: 18px; color: #F85959; font-weight: bloder; float: left; line-height: 58px; } .cy{ font-size: 18px; color: #211E1E; float: left; line-height: 58px; margin-left: 10px; } .xqb_l{ height: 649px; width: 330px; background: seagreen; float: left; } .xqb_r{ height: 649px; width: 830px; margin-left: 40px; background: silver; float: left; } .xq_cen{ height: 240px; width: 100%; background: yellow; float: left; margin-bottom: 10px; } .xq_cen img{ height: 240px; width: 100%; } .tuijian{ height: 273px; width: 300px; background: #F0F0F0; float: left; padding: 10px 15px 0 15px; } .tuijian li{ height: 40px; width: 300px; background: yellow; padding-bottom: 11px; border-bottom: 1px solid #CCCCCC; padding-top: 12px; } .tu2{ height: 40px; width: 40px; border-radius: 4px; background: pink; float: left; } .tu2 img{ height: 40px; width: 40px; border-radius: 4px; } .name2{ float: left; margin-left: 20px; font-size: 14px; color: #211E1E; line-height: 40px; } .band li{ width: 137px; height: 15px; font-size: 15px; line-height: 15px; text-align: center; margin-top: 21px; border-right: 1px solid #CCCCCC; float: left; } .band li:last-of-type{ border-right: 0; } .band li:hover{ color: #F85959; } .active{ color: #F85959; } .xqb_ban{ height: 145px; width: 100%; background: salmon; float: left; } .xqbb_c{ width: 630px; height: 86px; background: yellowgreen; margin: 0 auto; margin-top: 30px; } .bang_k{ border: 1px solid #ffb316; height: 84px; width: 298px; float: left; } .k2{ margin-left: 30px; border: 1px solid #F85959; } .tu3{ height: 44px; width: 100%; float: left; background: yellow; text-align: center; } .tu3 img{ margin-top: 14px; } .tu3_b{ height: 40px; width: 100%; background: seagreen; float: left; line-height: 40px; text-align: center; font-size: 15px; color: #FFFFFF; } .left{ width: 190px; height: 100%; background: #FFB316; } .right{ width: 108px; height: 84px; line-height: 84px; text-align: center; font-size: 30px; color: #FFB316; float: left; background: pink; } .sjzq{ height: 50px; width: 830px; background: #F0F0F0; float: left; } .sjzq_l{ font-size: 15px; font-family: "microsoft yahei-bold"; line-height: 50px; float: left; background: yellowgreen; margin-left: 18px; } .ayue{ height: 24px; width: 60px; border-radius: 4px; font-size: 14px; float: left; text-align: center; line-height: 24px; margin-top: 13px; margin-left: 14px; } .ctive{ background: #F85959; color: #FFFFFF; } .quxian{ height: 295px; width: 778px; background: yellow; float: left; padding: 50px 26px; }
application/index/view/toutiao/css/ttxq.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, em, p, font, img, small, strong, center, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tr, th, td {margin:0;padding:0;border:0;outline:0;font-size:12px;vertical-align:baseline} ol, ul {list-style:none} :focus {outline:none; } li{list-style: none;} table {border-collapse:collapse;border-spacing: 0} caption, th, td { text-align: left; font-weight: normal} strong {font-weight:600} a{font:12px Arial;text-decoration:none;color:#404040;cursor:pointer;} a:hover{text-decoration:underline;color:#FF3300} h1{font-size:16px;font-weight:600;color:#666} .left{float:left} .right{float:right} .clear{clear:both} i{font-style: normal;} #g_head{ height: 56px; width: 100%; background: pink; } .g_head{ width: 1200px; height: 100%; background: yellow; margin: 0 auto; } .n_conmment{ height: 100%; float: left; } .nav_l{ width: 90px; background: yellowgreen; } .nav_l img{ height: 36px; width: 90px; margin-top: 12px; } .g_con{ float: left; margin-left: 164px; } .g_con li{ float: left; margin-right: 40px; } .li_l{ height: 56px; width: 15px; background: saddlebrown; float: left; } .li_l img{ height: 15px; width: 15px; margin-top: 20px; } .li_r{ height: 56px; line-height: 56px; float: left; font-size: 16px; color: #211E1E; background: red; margin-left: 10px; } .login{ float: left; background: yellowgreen; margin-left: 18px; } .log{ height: 56px; line-height: 56px; color: #F85959; font-size: 16px; } #g_xqc{ height: 210px; width: 1200px; background: pink; margin: 0 auto; margin-top: 30px; border-radius: 4px; background: url(../img/xmtxy/toutiaohao-bg.png) no-repeat; } .g_xqc{ height: 90px; width: 400px; background: yellow; float: left; margin-left: 400px; margin-top: 30px; } .g_xqcl{ height: 90px; width: 90px; border-radius: 4px; background: pink; float: left; } .g_xqcl img{ height: 90px; width: 90px; border-radius: 4px; } .g_xqcr{ width: 295px; height: 90px; background: yellowgreen; float: left; padding-left: 15px; } .top{ font-size: 20px; color: #FFFFFF; float: left; background: red; margin-top: 15px; font-family: "microsoft yahei-bold"; } .bottom{ font-size: 16px; color: #FFFFFF; width: 100%; background: seagreen; float: left; margin-top: 5px; } .heng{ float: left; height: 1px; width: 1200px; background: rgba(255,255,255,0.3); margin-top: 30px; } .g_xqb{ height: 59px; width: 1200px; background: silver; float: left; } .fenlei li{ float: left; margin-left: 30px; } .pic2{ height: 19px; width: 19px; float: left; background: yellow; margin-top: 20px; } .fensil{ height: 19px; float: left; line-height: 19px; background: red; font-size: 16px; color: #FFFFFF; margin-left: 10px; margin-top: 20px; } .num{ font-size: 19px; color: #F85959; line-height: 19px; background: yellow; float: left; font-family: "microsoft yahei-bold"; margin-top: 20px; padding-right: 30px; border-right: 1px solid #CCCCCC; margin-left: 5px; } .num1{ font-size: 19px; color: #F85959; line-height: 19px; background: yellow; float: left; font-family: "microsoft yahei-bold"; margin-top: 20px; margin-left: 5px; } .fenlei{ height: 59px; width: 740px; background: red; margin: 0 auto; } #g_xqb{ width: 100%; background: pink; float: left; margin-top: 14px; } .g_xqb1{ width: 1200px; background: darkblue; margin: 0 auto; } .xq_head{ height: 58px; width: 1200px; background: saddlebrown; margin: 0 auto; } .xq_headl{ width: 100%; height: 58px; background: red; float: left; } .xq_headr{ width: 830px; height: 58px; background: yellowgreen; float: right; } .xq_shu{ font-size: 18px; color: #F85959; font-weight: bloder; float: left; line-height: 58px; } .cy{ font-size: 18px; color: #211E1E; float: left; line-height: 58px; margin-left: 10px; } .xqb_l{ height: 649px; width: 330px; background: seagreen; float: left; } .xqb_r{ height: 649px; width: 830px; margin-left: 40px; background: silver; float: left; } .xq_cen{ height: 240px; width: 100%; background: yellow; float: left; margin-bottom: 10px; } .xq_cen img{ height: 240px; width: 100%; } .tuijian{ height: 273px; width: 300px; background: #F0F0F0; float: left; padding: 10px 15px 0 15px; } .tuijian li{ height: 40px; width: 300px; background: yellow; padding-bottom: 11px; border-bottom: 1px solid #CCCCCC; padding-top: 12px; } .tu2{ height: 40px; width: 40px; border-radius: 4px; background: pink; float: left; } .tu2 img{ height: 40px; width: 40px; border-radius: 4px; } .name2{ float: left; margin-left: 20px; font-size: 14px; color: #211E1E; line-height: 40px; } .band li{ width: 137px; height: 15px; font-size: 15px; line-height: 15px; text-align: center; margin-top: 21px; border-right: 1px solid #CCCCCC; float: left; } .band li:last-of-type{ border-right: 0; } .band li:hover{ color: #F85959; } .active{ color: #F85959; } .xqb_ban{ height: 145px; width: 100%; background: salmon; float: left; } .xqbb_c{ width: 630px; height: 86px; background: yellowgreen; margin: 0 auto; margin-top: 30px; } .bang_k{ border: 1px solid #ffb316; height: 84px; width: 298px; float: left; } .k2{ margin-left: 30px; border: 1px solid #F85959; } .tu3{ height: 44px; width: 100%; float: left; background: yellow; text-align: center; } .tu3 img{ margin-top: 14px; } .tu3_b{ height: 40px; width: 100%; background: seagreen; float: left; line-height: 40px; text-align: center; font-size: 15px; color: #FFFFFF; } .left{ width: 190px; height: 100%; background: #FFB316; } .right{ width: 108px; height: 84px; line-height: 84px; text-align: center; font-size: 30px; color: #FFB316; float: left; background: pink; } .sjzq{ height: 50px; width: 830px; background: #F0F0F0; float: left; } .sjzq_l{ font-size: 15px; font-family: "microsoft yahei-bold"; line-height: 50px; float: left; background: yellowgreen; margin-left: 18px; } .ayue{ height: 24px; width: 60px; border-radius: 4px; font-size: 14px; float: left; text-align: center; line-height: 24px; margin-top: 13px; margin-left: 14px; } .ctive{ background: #F85959; color: #FFFFFF; } .quxian{ height: 295px; width: 778px; background: yellow; float: left; padding: 50px 26px; }
0.296756
0.0643
@font-face { font-family: 'anyoldicon'; src:url('./fonts/anyoldicon/anyoldicon.eot'); src:url('./fonts/anyoldicon/anyoldicon.eot?#iefix') format('embedded-opentype'), url('./fonts/anyoldicon/anyoldicon.woff') format('woff'), url('./fonts/anyoldicon/anyoldicon.ttf') format('truetype'), url('./fonts/anyoldicon/anyoldicon.svg#anyoldicon') format('svg'); font-weight: normal; font-style: normal; } /* General grid styles */ .cbp-ig-grid { list-style: none; margin: 8% 5% auto; } /* Clear floats */ .cbp-ig-grid:before, .cbp-ig-grid:after { content: " "; display: table; } .cbp-ig-grid:after { clear: both; } /* grid item */ .cbp-ig-grid li { width: 32%; float: left; height: 250px; text-align: center; border-top: 0px solid #ddd; margin:3px; } /* we are using a combination of borders and box shadows to control the grid lines */ .cbp-ig-grid li:nth-child(-n+3){ border-top: none; } /* .cbp-ig-grid li:nth-child(3n-1), .cbp-ig-grid li:nth-child(3n-2) { box-shadow: 1px 0 0 #ddd; } */ /* anchor style */ .cbp-ig-grid li > a { display: block; height: 100%; /* color: #343A40; */ color: #777; font-weight: normal; -webkit-transition: background 0.2s; -moz-transition: background 0.2s; transition: background 0.2s; /* background-color: rgba(255, 255, 255, 0.9); */ /* border: 1px solid #ccc; */ border-radius: 4px; } /* the icon with pseudo class for icon font */ .cbp-ig-icon { padding: 30px 0 0 0; display: block; -webkit-transition: -webkit-transform 0.2s; transition: -moz-transform 0.2s; transition: transform 0.2s; } .cbp-ig-icon:before { font-family: 'anyoldicon'; font-size: 8em; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; } .cbp-ig-icon-dispeo:before { content: "\e901"; } .cbp-ig-icon-rel_digitais:before { content: "\e903"; } .cbp-ig-icon-sala_situacao:before { content: "\e905"; } .cbp-ig-icon-rpfo:before { content: "\e904"; } .cbp-ig-icon-configuracoes:before { content: "\e900"; } .cbp-ig-icon-gerenciamento:before { content: "\e902"; } .cbp-ig-icon-suporte:before { content: "\e906"; } /* title element */ .cbp-ig-grid .cbp-ig-title { margin: 20px 0 10px 0; padding: 20px 0 0 0; font-size: 1.5em; position: relative; font-weight: normal; -webkit-transition: -webkit-transform 0.2s; -moz-transition: -moz-transform 0.2s; transition: transform 0.2s; } .cbp-ig-grid .cbp-ig-title:before { content: ''; position: absolute; /*background: #232D61;*/ width: 160px; height: 6px; top: 0px; left: 50%; margin: -10px 0 0 -80px; -webkit-transition: margin-top 0.2s; /* top or translate does not seem to work in Firefox */ -moz-transition: margin-top 0.2s; transition: margin-top 0.2s; } .cbp-ig-grid .cbp-ig-category { text-transform: uppercase; display: inline-block; font-size: 1em; letter-spacing: 1px; color: #fff; -webkit-transform: translateY(10px); -moz-transform: -moz-translateY(10px); -ms-transform: -ms-translateY(10px); transform: translateY(10px); opacity: 0; -webkit-transition: -webkit-transform 0.3s, opacity 0.2s; -moz-transition: -moz-transform 0.3s, opacity 0.2s; -webkit-transition: transform 0.3s, opacity 0.2s; } .cbp-ig-grid li:hover .cbp-ig-category, .touch .cbp-ig-grid li .cbp-ig-category { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /* Hover styles */ .cbp-ig-grid li > a:hover { /* background: #232D61;*/ /*background: -moz-linear-gradient(top, rgba(30,87,153,0.8) 0%, rgba(125,185,232,0) 100%); background: -webkit-linear-gradient(top, rgba(30,87,153,0.8) 0%,rgba(125,185,232,0) 100%); background: linear-gradient(to bottom, rgba(30,87,153,0.8) 0%,rgba(125,185,232,0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc1e5799', endColorstr='#007db9e8',GradientType=0 );*/ background: rgba(255, 255,255, .1); /* box-shadow: 0px 0px 10px 1px rgba(0,0,0,.25); */ /* -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); */ /* border: 1px solid #fff; */ color: #fff !important; } .cbp-ig-grid li > a:hover .cbp-ig-icon:before, .cbp-ig-grid li > a:hover .cbp-ig-title { color: #fff !important; } .cbp-ig-grid li > a:hover .cbp-ig-icon { -webkit-transform: translateY(10px); -moz-transform: translateY(10px); -ms-transform: translateY(10px); transform: translateY(10px); } .cbp-ig-grid li > a:hover .cbp-ig-icon:before, .cbp-ig-grid li > a:hover .cbp-ig-title { color: #fff; } .cbp-ig-grid li > a:hover .cbp-ig-title { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); transform: translateY(-30px); } .cbp-ig-grid li > a:hover .cbp-ig-title:before { /*background: #fff;*/ margin-top: 80px; } @media screen and (max-width: 62.75em) { .cbp-ig-grid li { width: 49%; } /* reset the grid lines */ .cbp-ig-grid li:nth-child(-n+3){ border-top: 1px solid #ddd; } .cbp-ig-grid li:nth-child(3n-1), .cbp-ig-grid li:nth-child(3n-2) { box-shadow: none; } .cbp-ig-grid li:nth-child(-n+2){ border-top: none; } .cbp-ig-grid li:nth-child(2n-1) { box-shadow: 1px 0 0 #ddd; } } @media screen and (max-width: 41.6em) { .cbp-ig-grid li { width: 100%; } .cbp-ig-grid li:nth-child(-n+2){ border-top: 1px solid #ddd; } .cbp-ig-grid li:nth-child(2n-1) { box-shadow: none } .cbp-ig-grid li:first-child { border-top: none; } } @media screen and (max-width: 25em) { .cbp-ig-grid { font-size: 80%; } .cbp-ig-grid .cbp-ig-category { margin-top: 20px; } } @media (max-width: 767px){ .cbp-ig-grid { margin: 0px !important; padding: 0px !important; margin-top: 150px !important; } }
assets/css/component.css
@font-face { font-family: 'anyoldicon'; src:url('./fonts/anyoldicon/anyoldicon.eot'); src:url('./fonts/anyoldicon/anyoldicon.eot?#iefix') format('embedded-opentype'), url('./fonts/anyoldicon/anyoldicon.woff') format('woff'), url('./fonts/anyoldicon/anyoldicon.ttf') format('truetype'), url('./fonts/anyoldicon/anyoldicon.svg#anyoldicon') format('svg'); font-weight: normal; font-style: normal; } /* General grid styles */ .cbp-ig-grid { list-style: none; margin: 8% 5% auto; } /* Clear floats */ .cbp-ig-grid:before, .cbp-ig-grid:after { content: " "; display: table; } .cbp-ig-grid:after { clear: both; } /* grid item */ .cbp-ig-grid li { width: 32%; float: left; height: 250px; text-align: center; border-top: 0px solid #ddd; margin:3px; } /* we are using a combination of borders and box shadows to control the grid lines */ .cbp-ig-grid li:nth-child(-n+3){ border-top: none; } /* .cbp-ig-grid li:nth-child(3n-1), .cbp-ig-grid li:nth-child(3n-2) { box-shadow: 1px 0 0 #ddd; } */ /* anchor style */ .cbp-ig-grid li > a { display: block; height: 100%; /* color: #343A40; */ color: #777; font-weight: normal; -webkit-transition: background 0.2s; -moz-transition: background 0.2s; transition: background 0.2s; /* background-color: rgba(255, 255, 255, 0.9); */ /* border: 1px solid #ccc; */ border-radius: 4px; } /* the icon with pseudo class for icon font */ .cbp-ig-icon { padding: 30px 0 0 0; display: block; -webkit-transition: -webkit-transform 0.2s; transition: -moz-transform 0.2s; transition: transform 0.2s; } .cbp-ig-icon:before { font-family: 'anyoldicon'; font-size: 8em; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; } .cbp-ig-icon-dispeo:before { content: "\e901"; } .cbp-ig-icon-rel_digitais:before { content: "\e903"; } .cbp-ig-icon-sala_situacao:before { content: "\e905"; } .cbp-ig-icon-rpfo:before { content: "\e904"; } .cbp-ig-icon-configuracoes:before { content: "\e900"; } .cbp-ig-icon-gerenciamento:before { content: "\e902"; } .cbp-ig-icon-suporte:before { content: "\e906"; } /* title element */ .cbp-ig-grid .cbp-ig-title { margin: 20px 0 10px 0; padding: 20px 0 0 0; font-size: 1.5em; position: relative; font-weight: normal; -webkit-transition: -webkit-transform 0.2s; -moz-transition: -moz-transform 0.2s; transition: transform 0.2s; } .cbp-ig-grid .cbp-ig-title:before { content: ''; position: absolute; /*background: #232D61;*/ width: 160px; height: 6px; top: 0px; left: 50%; margin: -10px 0 0 -80px; -webkit-transition: margin-top 0.2s; /* top or translate does not seem to work in Firefox */ -moz-transition: margin-top 0.2s; transition: margin-top 0.2s; } .cbp-ig-grid .cbp-ig-category { text-transform: uppercase; display: inline-block; font-size: 1em; letter-spacing: 1px; color: #fff; -webkit-transform: translateY(10px); -moz-transform: -moz-translateY(10px); -ms-transform: -ms-translateY(10px); transform: translateY(10px); opacity: 0; -webkit-transition: -webkit-transform 0.3s, opacity 0.2s; -moz-transition: -moz-transform 0.3s, opacity 0.2s; -webkit-transition: transform 0.3s, opacity 0.2s; } .cbp-ig-grid li:hover .cbp-ig-category, .touch .cbp-ig-grid li .cbp-ig-category { opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /* Hover styles */ .cbp-ig-grid li > a:hover { /* background: #232D61;*/ /*background: -moz-linear-gradient(top, rgba(30,87,153,0.8) 0%, rgba(125,185,232,0) 100%); background: -webkit-linear-gradient(top, rgba(30,87,153,0.8) 0%,rgba(125,185,232,0) 100%); background: linear-gradient(to bottom, rgba(30,87,153,0.8) 0%,rgba(125,185,232,0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc1e5799', endColorstr='#007db9e8',GradientType=0 );*/ background: rgba(255, 255,255, .1); /* box-shadow: 0px 0px 10px 1px rgba(0,0,0,.25); */ /* -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); */ /* border: 1px solid #fff; */ color: #fff !important; } .cbp-ig-grid li > a:hover .cbp-ig-icon:before, .cbp-ig-grid li > a:hover .cbp-ig-title { color: #fff !important; } .cbp-ig-grid li > a:hover .cbp-ig-icon { -webkit-transform: translateY(10px); -moz-transform: translateY(10px); -ms-transform: translateY(10px); transform: translateY(10px); } .cbp-ig-grid li > a:hover .cbp-ig-icon:before, .cbp-ig-grid li > a:hover .cbp-ig-title { color: #fff; } .cbp-ig-grid li > a:hover .cbp-ig-title { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); transform: translateY(-30px); } .cbp-ig-grid li > a:hover .cbp-ig-title:before { /*background: #fff;*/ margin-top: 80px; } @media screen and (max-width: 62.75em) { .cbp-ig-grid li { width: 49%; } /* reset the grid lines */ .cbp-ig-grid li:nth-child(-n+3){ border-top: 1px solid #ddd; } .cbp-ig-grid li:nth-child(3n-1), .cbp-ig-grid li:nth-child(3n-2) { box-shadow: none; } .cbp-ig-grid li:nth-child(-n+2){ border-top: none; } .cbp-ig-grid li:nth-child(2n-1) { box-shadow: 1px 0 0 #ddd; } } @media screen and (max-width: 41.6em) { .cbp-ig-grid li { width: 100%; } .cbp-ig-grid li:nth-child(-n+2){ border-top: 1px solid #ddd; } .cbp-ig-grid li:nth-child(2n-1) { box-shadow: none } .cbp-ig-grid li:first-child { border-top: none; } } @media screen and (max-width: 25em) { .cbp-ig-grid { font-size: 80%; } .cbp-ig-grid .cbp-ig-category { margin-top: 20px; } } @media (max-width: 767px){ .cbp-ig-grid { margin: 0px !important; padding: 0px !important; margin-top: 150px !important; } }
0.207696
0.046725
body { padding-top: 64px; font-size: 18px; line-height: 1.5; } section { padding-bottom: 60px; } footer { margin: 2em 0; } footer p { font-size: 14px; } footer li { float: right; margin-right: 1.5em; margin-bottom: 1.5em; } .lead { font-size: 24px; } #navbar { font-size: 14px; } .vertical-align { display: flex; align-items: center; } .cushion-top { padding-top: 45px; } .cushion-bottom { padding-bottom: 50px; } .horizontal-icons li { display: inline; margin-right: 10px; } /* Home page cover */ .bg-img { width: 100%; height: 100%; background: url('/images/tower-bridge.jpg') center center no-repeat; background-size: cover; } .jumbotron-wrapper { position: relative; margin: 0 auto; color: white; text-align: center; overflow: hidden; max-width: 2560px; z-index: 0; } .jumbotron h1, .jumbotron .h1 { color: #fff; font-weight: bold; } .drop-shadow { text-shadow: 2px 2px 2px #000; } .image-shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } /* CodeAcross landing page */ .banner { width: 100%; padding-bottom: 30px; } .codeacross p, .codeacross .p { font-size: 22px; } .heart { color: red; } .cushion { padding: 15px; } .lower { margin-top: 20px; } /* Projects */ .contributors img { width: 50px; } .contributor-owner img { border: 1px solid darkgray; } .project-info { word-break: break-all; } .issues { list-style-type: none; padding: 0 10px; } .issues li a { text-decoration: none; } .issue { text-align: center; border: 1px solid #e5e5e5; border-radius: .33em; margin-bottom: 10px; box-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .issue:hover { border: 1px solid #9c9c9c; } .issue-label { display: inline-block; color: #444444; text-align: center; border-radius: .33em; margin: 5px; padding: 0 10px; font-size: 0.85em; } .form-control { color: #fff; text-shadow: 2px 2px 2px #000; } label.error { text-align: left; } #main-description, #io-cupid { background-color: #fafafa; padding-top: 45px; } .jumbotron { margin-bottom: 0px; } /* job section styles */ section#job { padding-bottom: 5px } .donate-btn { margin-top: -7px; } .bigdog-img { width: 100%; height: 600px; background: url('/images/bigdog-2017-fb.jpg') center center no-repeat; background-size: cover; }
css/style.css
body { padding-top: 64px; font-size: 18px; line-height: 1.5; } section { padding-bottom: 60px; } footer { margin: 2em 0; } footer p { font-size: 14px; } footer li { float: right; margin-right: 1.5em; margin-bottom: 1.5em; } .lead { font-size: 24px; } #navbar { font-size: 14px; } .vertical-align { display: flex; align-items: center; } .cushion-top { padding-top: 45px; } .cushion-bottom { padding-bottom: 50px; } .horizontal-icons li { display: inline; margin-right: 10px; } /* Home page cover */ .bg-img { width: 100%; height: 100%; background: url('/images/tower-bridge.jpg') center center no-repeat; background-size: cover; } .jumbotron-wrapper { position: relative; margin: 0 auto; color: white; text-align: center; overflow: hidden; max-width: 2560px; z-index: 0; } .jumbotron h1, .jumbotron .h1 { color: #fff; font-weight: bold; } .drop-shadow { text-shadow: 2px 2px 2px #000; } .image-shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } /* CodeAcross landing page */ .banner { width: 100%; padding-bottom: 30px; } .codeacross p, .codeacross .p { font-size: 22px; } .heart { color: red; } .cushion { padding: 15px; } .lower { margin-top: 20px; } /* Projects */ .contributors img { width: 50px; } .contributor-owner img { border: 1px solid darkgray; } .project-info { word-break: break-all; } .issues { list-style-type: none; padding: 0 10px; } .issues li a { text-decoration: none; } .issue { text-align: center; border: 1px solid #e5e5e5; border-radius: .33em; margin-bottom: 10px; box-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .issue:hover { border: 1px solid #9c9c9c; } .issue-label { display: inline-block; color: #444444; text-align: center; border-radius: .33em; margin: 5px; padding: 0 10px; font-size: 0.85em; } .form-control { color: #fff; text-shadow: 2px 2px 2px #000; } label.error { text-align: left; } #main-description, #io-cupid { background-color: #fafafa; padding-top: 45px; } .jumbotron { margin-bottom: 0px; } /* job section styles */ section#job { padding-bottom: 5px } .donate-btn { margin-top: -7px; } .bigdog-img { width: 100%; height: 600px; background: url('/images/bigdog-2017-fb.jpg') center center no-repeat; background-size: cover; }
0.397471
0.109563
*, *::before, *::after { padding: 0; margin: 0; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 100%; -webkit-tap-highlight-color: transparent; letter-spacing: 0.03125rem; -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; user-select: none !important; } /* Customer Properties */ :root { /* text colors */ --black-color: black; --white-color: white; --light-black-1: #a6a0a0; --light-black-2: #797272; --light-black-3: #c9c9c9; --light-black-4: #f2f2f2; /* item colors */ --primary-color: black; --error-color: #ff3333; --go-color: #00ad68; } html { scroll-behavior: smooth; } html, body { block-size: 100%; inline-size: 100%; } button, input, textarea { font-family: "Poppins", sans-serif !important; font: inherit; border: 0; font-size: 0.8125rem; } a { text-decoration: none; } b { color: var(--black-color); } a, p { font-size: 0.8125rem; } button, a { font-family: "Poppins", sans-serif; cursor: pointer; } button:hover { background-color: var(--light-black-4); } button:active { background-color: var(--light-black-3); } img { inline-size: 100%; } :is(h1, h2, h3, h4, h5, h6) { letter-spacing: 1px; font-family: "Poppins", sans-serif; } p { color: var(--light-black-2); font-family: "Poppins", sans-serif; } h4 { font-size: 0.9375rem; } body { background-color: var(--white-color); overflow-y: hidden; } .go { -webkit-transition: 400ms background-color ease-in-out; transition: 400ms background-color ease-in-out; background-color: var(--go-color); } .go #timer { 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; inline-size: 100%; gap: 0.625rem; } .go #timer span :first-child { inline-size: auto; } .go #timer span:last-child { inline-size: 5rem; } @media screen and (min-width: 790px) { .go #timer span:last-child { inline-size: 11.875rem; } } .go .timer h1 { -webkit-transition: 200ms all ease-in-out; transition: 200ms all ease-in-out; color: white; font-family: "Rajdhani", sans-serif; font-size: 5rem; } @media screen and (min-width: 790px) { .go .timer h1 { font-size: 12.5rem; } } .go .timer p { color: white; } .go--hide { background-color: var(--white-color); } .go--hide .timer h1 { color: var(--black-color); font-size: 5rem; } @media screen and (min-width: 790px) { .go--hide .timer h1 { font-size: 10rem; } } .go--hide .timer p { color: var(--light-black-2); } .navbar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; inline-size: 100%; block-size: 3.75rem; padding: 0 1rem; background-color: inherit; -webkit-transition: -webkit-transform 500ms ease-in-out; transition: -webkit-transform 500ms ease-in-out; transition: transform 500ms ease-in-out; transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; } @media screen and (min-width: 790px) { .navbar { block-size: 5rem; padding: 0 2rem; } } .navbar__logo { margin-right: auto; } .navbar__logo img { -webkit-transition: 250ms inline-size linear; transition: 250ms inline-size linear; inline-size: 8.75rem; block-size: auto; } @media screen and (min-width: 790px) { .navbar__logo img { inline-size: 12.5rem; block-size: auto; } } .navbar__menu--button { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border: 1px solid var(--light-black-4); border-radius: 0.3125rem; background-color: inherit; -webkit-transition: background-color 200ms linear; transition: background-color 200ms linear; block-size: 2.1875rem; inline-size: 2.1875rem; } @media screen and (min-width: 790px) { .navbar__menu--button { block-size: 2.75rem; inline-size: 2.75rem; } } .navbar__menu--button:hover { background-color: var(--light-black-4); } .navbar__menu--button:active { background-color: var(--light-black-3); } .navbar__menu--button > span { display: block; border-radius: 0.625rem; background-color: var(--black-color); block-size: 0.125rem; inline-size: 60%; } .navbar__menu--button > span:nth-child(2) { margin-left: -0.3125rem; inline-size: 40%; } @media screen and (min-width: 790px) { .navbar__menu--button > span:nth-child(2) { margin-left: -0.5625rem; inline-size: 40%; } } .navbar__menu--button > span:not(:last-child) { margin-bottom: 0.3125rem; } .navbar--timerRunning { -webkit-transform: translateY(-100%); transform: translateY(-100%); } .sidebar { overflow: hidden; display: block; background-color: var(--white-color); -webkit-transition: 300ms all ease-in-out; transition: 300ms all ease-in-out; -webkit-transition-delay: 100ms; transition-delay: 100ms; -webkit-transition-property: opacity, visibility, inline-size; transition-property: opacity, visibility, inline-size; /* default close */ visibility: hidden; opacity: 0; inline-size: 0%; block-size: 100vh; pointer-events: none; position: absolute; top: 0; right: 0; z-index: 2; padding: 1rem; } @supports not (inline-size: 0%) { .sidebar { width: 0%; } } @media screen and (min-width: 790px) { .sidebar { padding: 1rem 2rem; } } .sidebar--open { opacity: 1; overflow: auto; visibility: visible; inline-size: 100%; pointer-events: all; } @supports not (inline-size: 100%) { .sidebar--open { width: 100%; } } @media screen and (min-width: 790px) { .sidebar--open { inline-size: 31.25rem; } } .sidebar--overlay { -webkit-transition: 300ms all ease-in-out; transition: 300ms all ease-in-out; -webkit-transition-property: opacity, visibility, background-color; transition-property: opacity, visibility, background-color; z-index: 1; display: block; position: fixed; top: 0; left: 0; inline-size: 100%; block-size: 100vh; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(0, 0, 0, 0.8); visibility: visible; opacity: 1; } .sidebar--overlay--close { visibility: hidden; opacity: 0; pointer-events: none; } .sidebar__navigation { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; inline-size: 100%; } .sidebar__close--button { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border: 1px solid var(--light-black-4); border-radius: 0.3125rem; background-color: inherit; -webkit-transition: background-color 200ms linear; transition: background-color 200ms linear; block-size: 2.1875rem; inline-size: 2.1875rem; } @media screen and (min-width: 790px) { .sidebar__close--button { block-size: 2.75rem; inline-size: 2.75rem; } } .sidebar__close--button img { inline-size: 1.5rem; } .sidebar__timelist { inline-size: 100%; margin: 1.875rem 0; } @media screen and (min-width: 790px) { .sidebar__timelist { margin: 1.5rem 0; } } .sidebar__heading { font-size: 1rem; color: var(--black-color); border-radius: 0.3125rem; padding: 0.5rem 0; } .sidebar__heading span { font-weight: 500; color: var(--light-black-2); } .sidebar__timeGroup { border-radius: 0.625rem; padding: 0 0.625rem; border: 1px solid var(--light-black-4); margin: 0.625rem 0; } .sidebar__timeGroup .view-more { min-width: 6.875rem; display: block; color: var(--white-color); background-color: var(--black-color); border: 1px solid var(--light-black-4); font-size: 0.6875rem; padding: 0.5rem; border-radius: 0.3125rem; margin-bottom: 0.625rem; } .sidebar__timeInfo { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; padding: 0.5rem 0; } .sidebar__timeInfo p { font-size: 0.8125rem; font-weight: 500; } .sidebar__timeInfo p span { color: var(--light-black-2); font-weight: normal; } .sidebar__timeInfo > .solved-time { font-weight: 600; color: var(--black-color); margin-right: auto; } .sidebar__reset { display: block; border-top: 1px solid var(--light-black-4); padding: 1rem 0; } .sidebar__reset h2, .sidebar__reset p { margin-bottom: 0.625rem; } .sidebar__reset input, .sidebar__reset button { margin-bottom: 0.625rem; inline-size: 100%; } .sidebar__reset .reset-input { padding: 0.625rem 1rem; color: var(--black-color); border: 1px solid var(--light-black-3); border-radius: 0.3125rem; } .sidebar__reset .reset-button { text-transform: uppercase; font-weight: 500; color: var(--white-color); background-color: var(--error-color); padding: 0.625rem; border-radius: 0.3125rem; } .sidebar__reset .reset-button:hover { background-color: red; } .sidebar__reset .reset-button:disabled { cursor: not-allowed !important; background-color: #ff6666; } .sidebar__footer a { font-weight: 500; color: var(--black-color); } .sidebar__footer p, .sidebar__footer a { font-size: 0.625rem; } .timer { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; } .timer__trigger { display: -ms-grid; display: grid; place-content: center; inline-size: 100%; block-size: 70%; background-color: inherit; } .timer__trigger .timer { text-align: center; display: block; } .timer__trigger .timer-guide { padding: 0 1.875rem; } .timer__trigger .timer-guide p { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; font-size: 0.75rem; } @media screen and (min-width: 790px) { .timer__trigger .timer-guide p { font-size: 0.875rem; } } .timer__newest { position: fixed; bottom: 0; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); display: block; -webkit-transition: 300ms bottom ease-in-out; transition: 300ms bottom ease-in-out; inline-size: 90%; } @media screen and (min-width: 790px) { .timer__newest { inline-size: auto; } } .timer__newest--timerRunning { bottom: -100%; } .timer__newest .social-media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 0; } .timer__newest .social-media p { font-size: 0.6875rem; margin-right: 0.3125rem; } .timer__newest .social-media a:hover img { opacity: 1; } .timer__newest .social-media img { opacity: 0.5; width: 1.125rem; } .timer__group { background-color: var(--white-color); border-radius: 0.625rem; padding: 0 0.625rem; border: 1px solid var(--light-black-4); margin: 0.625rem 0; } @media screen and (min-width: 790px) { .timer__group { inline-size: 21.875rem; } } .modal--hide { display: none; } .modal__container { position: fixed; z-index: 999; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); background-color: var(--white-color); inline-size: 90%; padding: 1.5rem 1.875rem; border-radius: 0.3125rem; } @media screen and (min-width: 790px) { .modal__container { max-inline-size: 31.25rem; } } .modal__heading h2 { letter-spacing: unset; font-size: 1.25rem; font-weight: 700; } @media screen and (min-width: 790px) { .modal__heading h2 { font-size: 1.5625rem; } } .modal__message { margin: 1rem 0; } .modal__message .highlight { font-size: 0.75rem; color: #002B52; background-color: #D8F2FF; padding: 1rem; border-radius: 0.3125rem; } .modal__message .highlight b { color: #002B52; } .modal__cta { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } .modal__cta button { border-radius: 0.3125rem; padding: 0.625rem 1rem; color: white; min-inline-size: 6.25rem; background-color: black; } /* Hey, future Chrono, try to make it better soon. 2021 */ /*# sourceMappingURL=main.css.map */
design/app/dist/css/main.css
*, *::before, *::after { padding: 0; margin: 0; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 100%; -webkit-tap-highlight-color: transparent; letter-spacing: 0.03125rem; -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; user-select: none !important; } /* Customer Properties */ :root { /* text colors */ --black-color: black; --white-color: white; --light-black-1: #a6a0a0; --light-black-2: #797272; --light-black-3: #c9c9c9; --light-black-4: #f2f2f2; /* item colors */ --primary-color: black; --error-color: #ff3333; --go-color: #00ad68; } html { scroll-behavior: smooth; } html, body { block-size: 100%; inline-size: 100%; } button, input, textarea { font-family: "Poppins", sans-serif !important; font: inherit; border: 0; font-size: 0.8125rem; } a { text-decoration: none; } b { color: var(--black-color); } a, p { font-size: 0.8125rem; } button, a { font-family: "Poppins", sans-serif; cursor: pointer; } button:hover { background-color: var(--light-black-4); } button:active { background-color: var(--light-black-3); } img { inline-size: 100%; } :is(h1, h2, h3, h4, h5, h6) { letter-spacing: 1px; font-family: "Poppins", sans-serif; } p { color: var(--light-black-2); font-family: "Poppins", sans-serif; } h4 { font-size: 0.9375rem; } body { background-color: var(--white-color); overflow-y: hidden; } .go { -webkit-transition: 400ms background-color ease-in-out; transition: 400ms background-color ease-in-out; background-color: var(--go-color); } .go #timer { 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; inline-size: 100%; gap: 0.625rem; } .go #timer span :first-child { inline-size: auto; } .go #timer span:last-child { inline-size: 5rem; } @media screen and (min-width: 790px) { .go #timer span:last-child { inline-size: 11.875rem; } } .go .timer h1 { -webkit-transition: 200ms all ease-in-out; transition: 200ms all ease-in-out; color: white; font-family: "Rajdhani", sans-serif; font-size: 5rem; } @media screen and (min-width: 790px) { .go .timer h1 { font-size: 12.5rem; } } .go .timer p { color: white; } .go--hide { background-color: var(--white-color); } .go--hide .timer h1 { color: var(--black-color); font-size: 5rem; } @media screen and (min-width: 790px) { .go--hide .timer h1 { font-size: 10rem; } } .go--hide .timer p { color: var(--light-black-2); } .navbar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; inline-size: 100%; block-size: 3.75rem; padding: 0 1rem; background-color: inherit; -webkit-transition: -webkit-transform 500ms ease-in-out; transition: -webkit-transform 500ms ease-in-out; transition: transform 500ms ease-in-out; transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; } @media screen and (min-width: 790px) { .navbar { block-size: 5rem; padding: 0 2rem; } } .navbar__logo { margin-right: auto; } .navbar__logo img { -webkit-transition: 250ms inline-size linear; transition: 250ms inline-size linear; inline-size: 8.75rem; block-size: auto; } @media screen and (min-width: 790px) { .navbar__logo img { inline-size: 12.5rem; block-size: auto; } } .navbar__menu--button { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border: 1px solid var(--light-black-4); border-radius: 0.3125rem; background-color: inherit; -webkit-transition: background-color 200ms linear; transition: background-color 200ms linear; block-size: 2.1875rem; inline-size: 2.1875rem; } @media screen and (min-width: 790px) { .navbar__menu--button { block-size: 2.75rem; inline-size: 2.75rem; } } .navbar__menu--button:hover { background-color: var(--light-black-4); } .navbar__menu--button:active { background-color: var(--light-black-3); } .navbar__menu--button > span { display: block; border-radius: 0.625rem; background-color: var(--black-color); block-size: 0.125rem; inline-size: 60%; } .navbar__menu--button > span:nth-child(2) { margin-left: -0.3125rem; inline-size: 40%; } @media screen and (min-width: 790px) { .navbar__menu--button > span:nth-child(2) { margin-left: -0.5625rem; inline-size: 40%; } } .navbar__menu--button > span:not(:last-child) { margin-bottom: 0.3125rem; } .navbar--timerRunning { -webkit-transform: translateY(-100%); transform: translateY(-100%); } .sidebar { overflow: hidden; display: block; background-color: var(--white-color); -webkit-transition: 300ms all ease-in-out; transition: 300ms all ease-in-out; -webkit-transition-delay: 100ms; transition-delay: 100ms; -webkit-transition-property: opacity, visibility, inline-size; transition-property: opacity, visibility, inline-size; /* default close */ visibility: hidden; opacity: 0; inline-size: 0%; block-size: 100vh; pointer-events: none; position: absolute; top: 0; right: 0; z-index: 2; padding: 1rem; } @supports not (inline-size: 0%) { .sidebar { width: 0%; } } @media screen and (min-width: 790px) { .sidebar { padding: 1rem 2rem; } } .sidebar--open { opacity: 1; overflow: auto; visibility: visible; inline-size: 100%; pointer-events: all; } @supports not (inline-size: 100%) { .sidebar--open { width: 100%; } } @media screen and (min-width: 790px) { .sidebar--open { inline-size: 31.25rem; } } .sidebar--overlay { -webkit-transition: 300ms all ease-in-out; transition: 300ms all ease-in-out; -webkit-transition-property: opacity, visibility, background-color; transition-property: opacity, visibility, background-color; z-index: 1; display: block; position: fixed; top: 0; left: 0; inline-size: 100%; block-size: 100vh; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(0, 0, 0, 0.8); visibility: visible; opacity: 1; } .sidebar--overlay--close { visibility: hidden; opacity: 0; pointer-events: none; } .sidebar__navigation { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; inline-size: 100%; } .sidebar__close--button { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border: 1px solid var(--light-black-4); border-radius: 0.3125rem; background-color: inherit; -webkit-transition: background-color 200ms linear; transition: background-color 200ms linear; block-size: 2.1875rem; inline-size: 2.1875rem; } @media screen and (min-width: 790px) { .sidebar__close--button { block-size: 2.75rem; inline-size: 2.75rem; } } .sidebar__close--button img { inline-size: 1.5rem; } .sidebar__timelist { inline-size: 100%; margin: 1.875rem 0; } @media screen and (min-width: 790px) { .sidebar__timelist { margin: 1.5rem 0; } } .sidebar__heading { font-size: 1rem; color: var(--black-color); border-radius: 0.3125rem; padding: 0.5rem 0; } .sidebar__heading span { font-weight: 500; color: var(--light-black-2); } .sidebar__timeGroup { border-radius: 0.625rem; padding: 0 0.625rem; border: 1px solid var(--light-black-4); margin: 0.625rem 0; } .sidebar__timeGroup .view-more { min-width: 6.875rem; display: block; color: var(--white-color); background-color: var(--black-color); border: 1px solid var(--light-black-4); font-size: 0.6875rem; padding: 0.5rem; border-radius: 0.3125rem; margin-bottom: 0.625rem; } .sidebar__timeInfo { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; padding: 0.5rem 0; } .sidebar__timeInfo p { font-size: 0.8125rem; font-weight: 500; } .sidebar__timeInfo p span { color: var(--light-black-2); font-weight: normal; } .sidebar__timeInfo > .solved-time { font-weight: 600; color: var(--black-color); margin-right: auto; } .sidebar__reset { display: block; border-top: 1px solid var(--light-black-4); padding: 1rem 0; } .sidebar__reset h2, .sidebar__reset p { margin-bottom: 0.625rem; } .sidebar__reset input, .sidebar__reset button { margin-bottom: 0.625rem; inline-size: 100%; } .sidebar__reset .reset-input { padding: 0.625rem 1rem; color: var(--black-color); border: 1px solid var(--light-black-3); border-radius: 0.3125rem; } .sidebar__reset .reset-button { text-transform: uppercase; font-weight: 500; color: var(--white-color); background-color: var(--error-color); padding: 0.625rem; border-radius: 0.3125rem; } .sidebar__reset .reset-button:hover { background-color: red; } .sidebar__reset .reset-button:disabled { cursor: not-allowed !important; background-color: #ff6666; } .sidebar__footer a { font-weight: 500; color: var(--black-color); } .sidebar__footer p, .sidebar__footer a { font-size: 0.625rem; } .timer { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; } .timer__trigger { display: -ms-grid; display: grid; place-content: center; inline-size: 100%; block-size: 70%; background-color: inherit; } .timer__trigger .timer { text-align: center; display: block; } .timer__trigger .timer-guide { padding: 0 1.875rem; } .timer__trigger .timer-guide p { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; font-size: 0.75rem; } @media screen and (min-width: 790px) { .timer__trigger .timer-guide p { font-size: 0.875rem; } } .timer__newest { position: fixed; bottom: 0; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); display: block; -webkit-transition: 300ms bottom ease-in-out; transition: 300ms bottom ease-in-out; inline-size: 90%; } @media screen and (min-width: 790px) { .timer__newest { inline-size: auto; } } .timer__newest--timerRunning { bottom: -100%; } .timer__newest .social-media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 0; } .timer__newest .social-media p { font-size: 0.6875rem; margin-right: 0.3125rem; } .timer__newest .social-media a:hover img { opacity: 1; } .timer__newest .social-media img { opacity: 0.5; width: 1.125rem; } .timer__group { background-color: var(--white-color); border-radius: 0.625rem; padding: 0 0.625rem; border: 1px solid var(--light-black-4); margin: 0.625rem 0; } @media screen and (min-width: 790px) { .timer__group { inline-size: 21.875rem; } } .modal--hide { display: none; } .modal__container { position: fixed; z-index: 999; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); background-color: var(--white-color); inline-size: 90%; padding: 1.5rem 1.875rem; border-radius: 0.3125rem; } @media screen and (min-width: 790px) { .modal__container { max-inline-size: 31.25rem; } } .modal__heading h2 { letter-spacing: unset; font-size: 1.25rem; font-weight: 700; } @media screen and (min-width: 790px) { .modal__heading h2 { font-size: 1.5625rem; } } .modal__message { margin: 1rem 0; } .modal__message .highlight { font-size: 0.75rem; color: #002B52; background-color: #D8F2FF; padding: 1rem; border-radius: 0.3125rem; } .modal__message .highlight b { color: #002B52; } .modal__cta { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } .modal__cta button { border-radius: 0.3125rem; padding: 0.625rem 1rem; color: white; min-inline-size: 6.25rem; background-color: black; } /* Hey, future Chrono, try to make it better soon. 2021 */ /*# sourceMappingURL=main.css.map */
0.402275
0.046681
@media (hover: hover) { body { overflow-x: hidden; } nav { display: flex; background-color: var(--background-color); border-bottom: var(--border-width) solid var(--border-color); } body > nav { position: relative; left: calc(-50vw + 50%); width: 100vw; } nav ul { padding-left: 0; } body > nav > ul { width: calc(var(--max-body-width) + 2rem); padding-right: 0.5rem; padding-left: 0.5rem; margin: 0.5rem auto; } nav ul li { position: relative; display: inline-block; } nav > ul > li { padding: 0.5rem; margin: 0; } nav ul li a { text-decoration: none; white-space: nowrap; } nav ul li ul { position: absolute; left: -9999px; z-index: 1; min-width: calc(100% + var(--border-width) * 2); padding: 0.25rem 0.5rem; margin-top: 0.5rem; margin-left: calc(-0.5rem - var(--border-width)); background-color: var(--background-color); border: var(--border-width) solid var(--border-color); border-radius: var(--border-radius); } nav ul li ul li { width: 100%; } /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */ nav ul li ul li ul { min-width: calc(100% + 1rem + var(--border-width) * 2); margin-top: 0.75rem; } nav :focus ~ ul, nav :focus ~ ul ul, nav ul ul:focus-within, nav ul li:hover ul { left: initial; } /* stylelint-disable-next-line selector-max-universal */ nav li > *:not(ul):not(a):not(:only-child) { cursor: default; } /* stylelint-disable-next-line selector-max-universal */ nav li > *:not(ul):not(:only-child)::after { content: " ▾"; } } @media not all and (hover: hover) { nav { position: relative; left: calc(-50vw + 50%); width: 100vw; padding-top: 2rem; background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23363636" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>'); background-repeat: no-repeat; background-position: top; border-bottom: var(--border-width) solid var(--border-color); } /* stylelint-disable-next-line selector-max-universal */ nav > * { display: none; } nav:hover > ul { display: inherit; } /* stylelint-disable-next-line selector-max-universal */ nav:hover > *:not(ul) { display: unset; } @media (prefers-color-scheme: dark) { nav { background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23fff" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>'); } } }
src/css/nav.css
@media (hover: hover) { body { overflow-x: hidden; } nav { display: flex; background-color: var(--background-color); border-bottom: var(--border-width) solid var(--border-color); } body > nav { position: relative; left: calc(-50vw + 50%); width: 100vw; } nav ul { padding-left: 0; } body > nav > ul { width: calc(var(--max-body-width) + 2rem); padding-right: 0.5rem; padding-left: 0.5rem; margin: 0.5rem auto; } nav ul li { position: relative; display: inline-block; } nav > ul > li { padding: 0.5rem; margin: 0; } nav ul li a { text-decoration: none; white-space: nowrap; } nav ul li ul { position: absolute; left: -9999px; z-index: 1; min-width: calc(100% + var(--border-width) * 2); padding: 0.25rem 0.5rem; margin-top: 0.5rem; margin-left: calc(-0.5rem - var(--border-width)); background-color: var(--background-color); border: var(--border-width) solid var(--border-color); border-radius: var(--border-radius); } nav ul li ul li { width: 100%; } /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */ nav ul li ul li ul { min-width: calc(100% + 1rem + var(--border-width) * 2); margin-top: 0.75rem; } nav :focus ~ ul, nav :focus ~ ul ul, nav ul ul:focus-within, nav ul li:hover ul { left: initial; } /* stylelint-disable-next-line selector-max-universal */ nav li > *:not(ul):not(a):not(:only-child) { cursor: default; } /* stylelint-disable-next-line selector-max-universal */ nav li > *:not(ul):not(:only-child)::after { content: " ▾"; } } @media not all and (hover: hover) { nav { position: relative; left: calc(-50vw + 50%); width: 100vw; padding-top: 2rem; background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23363636" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>'); background-repeat: no-repeat; background-position: top; border-bottom: var(--border-width) solid var(--border-color); } /* stylelint-disable-next-line selector-max-universal */ nav > * { display: none; } nav:hover > ul { display: inherit; } /* stylelint-disable-next-line selector-max-universal */ nav:hover > *:not(ul) { display: unset; } @media (prefers-color-scheme: dark) { nav { background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="%23fff" d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"/></svg>'); } } }
0.602412
0.096323
@charset "utf-8"; .tContent{background:#f7f7f7;padding-bottom:30px;width:100%;display:inline-block;margin-bottom:-10px;} .tMain{width:980px;margin:0 auto;background:#fff;}.tHead{width:980px;display:inline-block;background:#f7f7f7;padding-top:15px;padding-bottom:13px;} .tHead li.tLogo{float:left;height:63px;margin-right:10px;margin-left:10px;} .tLogo a{float:left;display:block;} .tHead li img.line{float:left;margin:30px 9px 0;} .tHead li.tLogo a.txt{color:#bbb;font-size:24px;font-family:"微软雅黑";margin-top:30px;} .tHead li.tNav{float:right;margin-top:40px;margin-right:10px;display:inline;} .tNav a{display:block;float:left;color:#666;font-size:14px;height:25px;line-height:25px;margin:0 5px;width:100px;text-align:center;} .tNav a.tReturn{margin-right:22px;display:inline;} .tNav a.current{display:inline-block;background:url(../images/btnBg.gif) no-repeat;width:100px;text-align:center;height:25px;font-weight:bold;} .tNav a.current:hover{color:#666;} .tNav a:hover{color:#333;} .mPic{width:980px;margin:0 auto;} .mPic li.pic1{background:url(../../../uploads/weixin/pic_20.jpg) center no-repeat;height:112px;} .mPic li.pic2{background:url(../../../uploads/weixin/pic_21.jpg) center no-repeat;height:118px;} .mPic li.pic3{background:url(../../../uploads/weixin/pic_22.jpg) center no-repeat;height:100px;color:#aab391;padding-left:150px;} .mPic li.pic3 a{color:#aab391;text-decoration:underline;} .mPic li.pic3 a:hover{color:#9D1875;} .mMode{width:941px;margin:0 auto;padding-bottom:35px;position:relative;top:30px;} .mMode li{width:941px;border-bottom:#eee 1px solid;display:inline-block;padding:50px 0 0;} .mMode li dd{float:left;margin-left:60px;display:inline-block;display:inline;} .mMode li dd img{display:block;margin:0;padding:0;} .mMode li dd.mt60{margin-top:60px;} .tTitle{border-bottom:#eee 1px solid;padding-bottom:10px;font-size:24px;color:#333;font-family:"微软雅黑";} .anBanner{background:#54b1ff;height:415px;} .anMain{width:980px;margin:0 auto;} .anMain img{float:left;} .anDown{clear:both;background:url(../../../uploads/app/app_02.jpg) center no-repeat;height:180px;padding-left:443px;} .anDown a{display:block;background:url(../../../uploads/app/download3.gif) no-repeat;width:270px;height:89px;} .anDown p{color:#fff;margin-top:8px;padding-left:3px;} .anDown a:hover{display:block;background:url(../../../uploads/app/download4.gif) no-repeat;}
templates/yungou/pc/css/app.css
@charset "utf-8"; .tContent{background:#f7f7f7;padding-bottom:30px;width:100%;display:inline-block;margin-bottom:-10px;} .tMain{width:980px;margin:0 auto;background:#fff;}.tHead{width:980px;display:inline-block;background:#f7f7f7;padding-top:15px;padding-bottom:13px;} .tHead li.tLogo{float:left;height:63px;margin-right:10px;margin-left:10px;} .tLogo a{float:left;display:block;} .tHead li img.line{float:left;margin:30px 9px 0;} .tHead li.tLogo a.txt{color:#bbb;font-size:24px;font-family:"微软雅黑";margin-top:30px;} .tHead li.tNav{float:right;margin-top:40px;margin-right:10px;display:inline;} .tNav a{display:block;float:left;color:#666;font-size:14px;height:25px;line-height:25px;margin:0 5px;width:100px;text-align:center;} .tNav a.tReturn{margin-right:22px;display:inline;} .tNav a.current{display:inline-block;background:url(../images/btnBg.gif) no-repeat;width:100px;text-align:center;height:25px;font-weight:bold;} .tNav a.current:hover{color:#666;} .tNav a:hover{color:#333;} .mPic{width:980px;margin:0 auto;} .mPic li.pic1{background:url(../../../uploads/weixin/pic_20.jpg) center no-repeat;height:112px;} .mPic li.pic2{background:url(../../../uploads/weixin/pic_21.jpg) center no-repeat;height:118px;} .mPic li.pic3{background:url(../../../uploads/weixin/pic_22.jpg) center no-repeat;height:100px;color:#aab391;padding-left:150px;} .mPic li.pic3 a{color:#aab391;text-decoration:underline;} .mPic li.pic3 a:hover{color:#9D1875;} .mMode{width:941px;margin:0 auto;padding-bottom:35px;position:relative;top:30px;} .mMode li{width:941px;border-bottom:#eee 1px solid;display:inline-block;padding:50px 0 0;} .mMode li dd{float:left;margin-left:60px;display:inline-block;display:inline;} .mMode li dd img{display:block;margin:0;padding:0;} .mMode li dd.mt60{margin-top:60px;} .tTitle{border-bottom:#eee 1px solid;padding-bottom:10px;font-size:24px;color:#333;font-family:"微软雅黑";} .anBanner{background:#54b1ff;height:415px;} .anMain{width:980px;margin:0 auto;} .anMain img{float:left;} .anDown{clear:both;background:url(../../../uploads/app/app_02.jpg) center no-repeat;height:180px;padding-left:443px;} .anDown a{display:block;background:url(../../../uploads/app/download3.gif) no-repeat;width:270px;height:89px;} .anDown p{color:#fff;margin-top:8px;padding-left:3px;} .anDown a:hover{display:block;background:url(../../../uploads/app/download4.gif) no-repeat;}
0.162679
0.055695
* { margin: 0; padding: 0; } .bg-image { background-image: url("../assets/backgrounds/h_img.jpg"); width: 100%; height: 100vh; } /* .words { /* margin-top:80px ; */ /* } */ */ .logo { padding: 30px; } .word h1 { font-weight: 500; } .p1 { font-size: 15px; font-weight: 500; } .clicks { display: flex; position: absolute; bottom: 50px; width: 20px; height: auto; } .about { padding: 30px; } .about h2 { font-size: 18px; font-weight: 600; } .about p { font-size: 15px; } .service { background-image: url("../assets/backgrounds/s_image.jpg"); width: 100%; background-size: cover; background-repeat: no-repeat; padding: 40px; } .icons { display: flex; justify-content: space-around; padding: 40px; } .what-we-do { padding: 30px; } .what-we-do h2 { font-size: 18px; font-weight: 600; } .portfolio{ width: 100%; height: auto; } .form-outline{ border: 1px solid white; } .contact{ background-image: url("../assets/backgrounds/c_image.jpg"); width: 100%; height: auto; background-size: cover; padding: 30px; } .validate{ display: flex; justify-content: center; align-items: center; text-align: center; } .contact input[type=text]{ color: white; } .form-outline .form-control .form-label{ color: white !important; } .item-wrap{ position: relative; } .image-title{ position: absolute; top: 0; margin: 0; padding: 15px; height: 100%; width: 100%; display: none; background-color: #333333d3; } .border{ height: 100%; text-transform: uppercase; font-size: 28px; font-weight: 500; color: white; padding: 10px; line-height: 1.2; } .social-icons{ display: flex; justify-content:center; flex-direction: row; width: 60%; text-align: center; margin-left: 250px; margin-top: 15px; } .social-icons img{ width: 30px; } .ftr { color: black; } #mc_embed_signup{ background: transparent; } #mc_embed_signup label, #mc_embed_signup h2{ color: white; } #mc_embed_signup input, #mc_embed_signup textarea{ background: transparent; }
css/style.css
* { margin: 0; padding: 0; } .bg-image { background-image: url("../assets/backgrounds/h_img.jpg"); width: 100%; height: 100vh; } /* .words { /* margin-top:80px ; */ /* } */ */ .logo { padding: 30px; } .word h1 { font-weight: 500; } .p1 { font-size: 15px; font-weight: 500; } .clicks { display: flex; position: absolute; bottom: 50px; width: 20px; height: auto; } .about { padding: 30px; } .about h2 { font-size: 18px; font-weight: 600; } .about p { font-size: 15px; } .service { background-image: url("../assets/backgrounds/s_image.jpg"); width: 100%; background-size: cover; background-repeat: no-repeat; padding: 40px; } .icons { display: flex; justify-content: space-around; padding: 40px; } .what-we-do { padding: 30px; } .what-we-do h2 { font-size: 18px; font-weight: 600; } .portfolio{ width: 100%; height: auto; } .form-outline{ border: 1px solid white; } .contact{ background-image: url("../assets/backgrounds/c_image.jpg"); width: 100%; height: auto; background-size: cover; padding: 30px; } .validate{ display: flex; justify-content: center; align-items: center; text-align: center; } .contact input[type=text]{ color: white; } .form-outline .form-control .form-label{ color: white !important; } .item-wrap{ position: relative; } .image-title{ position: absolute; top: 0; margin: 0; padding: 15px; height: 100%; width: 100%; display: none; background-color: #333333d3; } .border{ height: 100%; text-transform: uppercase; font-size: 28px; font-weight: 500; color: white; padding: 10px; line-height: 1.2; } .social-icons{ display: flex; justify-content:center; flex-direction: row; width: 60%; text-align: center; margin-left: 250px; margin-top: 15px; } .social-icons img{ width: 30px; } .ftr { color: black; } #mc_embed_signup{ background: transparent; } #mc_embed_signup label, #mc_embed_signup h2{ color: white; } #mc_embed_signup input, #mc_embed_signup textarea{ background: transparent; }
0.378
0.097476
.path-grade-report-grader .flexible th { white-space:normal; } .gradestable { margin-bottom:0; } .gradestable th.user img { width:20px; height:20px; } .gradestable th img { vertical-align: text-bottom; padding-bottom: 0; } .gradestable th .grade_icons { margin-top: .3em; } .gradestable th img.sorticon { margin-left: .3em; } .dir-rtl .gradestable th img.sorticon { margin-left: 0; margin-right: .3em; } table#user-grades .catlevel2 { background-color:#f9f9f9; } table#user-grades tr.avg td.cell { background-color:#efefff; font-weight:700; color:#00008B; } table#user-grades tr.odd td.cell { background-color:#efefef; white-space:nowrap; } table#user-grades tr td.overridden {background-color:#F3E4C0;} table#user-grades tr.odd td.overridden {background-color:#EFD9A4;} table#user-grades tr td.ajaxoverridden {background-color:#FFE3A0;} table#user-grades tr.odd td.ajaxoverridden {background-color:#FFDA83;} table#user-grades tr.even td.excluded { background-color:#EABFFF; } table#user-grades tr.odd td.excluded { background-color:#E5AFFF; } table#user-grades tr.odd th.header { background-color:#efefef; background-image:none; } table#user-grades tr.groupavg td.cell { background-color:#efffef; font-weight:700; color:#006400; } table#user-grades td.cat, table#user-grades td.course { font-weight:700; } table#user-grades { font-size:10px; width:auto; background-color:transparent; border-style:solid; border-width:1px; margin:20px 0 0; } .path-grade-report-grader #overDiv table { margin:0; } .path-grade-report-grader #overDiv table td.feedback { border:0; } .path-grade-report-grader #overDiv .feedback { font-size:70%; background-color:#ABF; color:#000; font-family:Verdana; font-weight:400; } .path-grade-report-grader #overDiv .caption { font-size:70%; background-color:#56C; color:#CCF; font-family:Arial; font-weight:700; } .path-grade-report-grader #overDiv .intersection { font-size:70%; background-color:#ABF; color:#000; font-family:Verdana; font-weight:400; } .path-grade-report-grader #overDiv .intersectioncaption { background-color:#56C; color:#CCF; font-family:Arial; font-weight:700; } .path-grade-report-grader div.submit { margin-top:20px; text-align:center; } table#user-grades td { text-align:right; border-style:solid; border-width:0 1px 1px 0; } table#user-grades th.category { vertical-align:top; border-style:solid; border-width:1px 1px 0; } table#user-grades th.user { text-align:left; border-style:solid; border-width:0 0 1px; } table#user-grades th.userfield { border-style:solid; border-width:0 0 1px 1px; } table#user-grades th.categoryitem, table#user-grades td.topleft { vertical-align: bottom; border-style:solid; border-width:0 1px; } .path-grade-report-grader td,.path-grade-report-grader th { border-color:#CECECE; } .path-grade-report-grader table#participants th { vertical-align:top; width:auto; } table#user-grades td.fillerfirst { border-style:solid; border-width:0 0 0 1px; } table#user-grades td.fillerlast { border-style:solid; border-width:0 1px 0 0; } table#user-grades th.item , table#user-grades th.categoryitem, table#user-grades th.courseitem { border-bottom-color:#000; vertical-align:bottom; border-style:solid; border-width:1px; } div.gradertoggle { display:inline; margin-left:20px; } table#user-grades th.range { text-align:right; border-style:solid; border-width:1px; } table#user-grades .userpic { display:inline; margin-right:10px; } table#user-grades .quickfeedback { border:1px dashed #000; margin-left: 10px; } .dir-rtl table#user-grades .quickfeedback { margin-left: 0; margin-right: 10px;} .path-grade-report-grader #siteconfiglink { text-align:right; } table#user-grades .hidden, table#user-grades .hidden a { color:#aaa; } table#user-grades .datesubmitted { font-size:.7em; } table#user-grades td.cell { padding-left:5px; padding-right:5px; vertical-align:middle; } .path-grade-report-grader table { border-collapse:collapse; background-color:#fff; border-color:#cecece; } .path-grade-report-grader th { padding:1px 10px; } .path-grade-report-grader span.inclusion-links { margin:0 5px 0 10px; } table#user-grades .item { background-color:#e9e9e9; } .path-grade-report-grader table tr.odd th.header { background-color:#efefef; background-image:none; border-width:0 0 1px; } .path-grade-report-grader table tr.heading th.header { border-top:1px solid #cecece; } table#user-grades tr.heading th.categoryitem, table#user-grades tr.heading th.courseitem { border-width:0 0 0 1px; } table#user-grades th.category.header.catlevel1 { vertical-align:top; border-style:solid; border-width:1px 1px 0 0; } .path-grade-report-grader div.left_scroller th.user a { vertical-align:middle; margin:0; padding:0; } table#user-grades th.categoryitem, table#user-grades th.courseitem, .path-grade-report-grader table td.topleft { vertical-align:bottom; border-color:#cecece #cecece #000; border-style:solid; border-width:0 1px 1px; } .path-grade-report-grader table td.topleft { border-bottom:0; } table#user-grades td.topleft { background-color:#fff; } .path-grade-report-grader th.user img.userpicture { border:3px double #cecece; vertical-align:top; width:2.7em; height:2.7em; margin-right:10px; } .path-grade-report-grader a.quickedit { line-height:1em; display:block; float:right; clear:none; font-size:9px; background-color:transparent; margin:.1em 0 0; } .path-grade-report-grader a.quickedit2 { display:block; float:right; clear:none; background-color:transparent; margin:1.3em 0 0; } .path-grade-report-grader table#quick_edit { border:1px solid #cecece; margin:0 auto; } .path-grade-report-grader table#quick_edit td { vertical-align:middle; border:1px solid #cecece; text-align:left; margin:0; padding:5px; } .path-grade-report-grader table#quick_edit td img { border:3px double #cecece; vertical-align:middle; padding:0; } .path-grade-report-grader td input.text { border:1px solid #666; } .path-grade-report-grader td input.submit { margin: 10px 10px 0px 10px; } .path-grade-report-grader table#quick_edit td.fullname { border-left:0; padding-left:5px; } .path-grade-report-grader table#quick_edit td.picture { border-right:0; } .path-grade-report-grader table#quick_edit td.finalgrade input { width:5em; } .path-grade-report-grader h1 { text-align:center; clear:both; } .path-grade-report-grader input.center { margin:10px auto 0; } .path-grade-report-grader .lefttbody { width:auto; vertical-align:middle; } table#user-grades th.fixedcolumn { border:1px solid #cecece; vertical-align:middle; } .path-grade-report-grader table#fixed_column th { border:1px solid #cecece; vertical-align:middle; border-right-color:#000; } .path-grade-report-grader table#fixed_column th.user{ border-right-color:#cecece; } .path-grade-report-grader table#fixed_column { padding-top:20px; border-top:1px solid #cecece; background-color:#fff; } .path-grade-report-grader .left_scroller { float:left; clear:none; padding-top:20px; } .path-grade-report-grader.dir-rtl .left_scroller {float:right;} .path-grade-report-grader .right_scroller { width:auto; clear:none; overflow-x:scroll; } .path-grade-report-grader table tr.avg, .path-grade-report-grader table tr.groupavg td, .path-grade-report-grader table tr.avg td, .path-grade-report-grader table tr.groupavg th, .path-grade-report-grader table tr.avg th, .path-grade-report-grader table tr.controls_row, .path-grade-report-grader table tr.controls_row th, .path-grade-report-grader table tr.range_row, .path-grade-report-grader table tr.range_row th, div.right_scroller tr { height:2em; } table#user-grades tr.groupavg td.cell, tr.groupavg th.header { background-color:#efffef; } .path-grade-report-grader form td.excluded { color:red; } .path-grade-report-grader .excludedfloater { font-weight:700; color:red; font-size:9px; float:left; } .path-grade-report-grader span.gradepass { color:#298721; } .path-grade-report-grader span.gradefail { color:#890d0d; } .path-grade-report-grader .gradeweight { color:#461d7c; font-weight:700; } .path-grade-report-grader td select { font-size:100%; padding:0; } .path-grade-report-grader .right_scroller td select { font-size:86%; padding:0; } .path-grade-report-grader tr.avg, .path-grade-report-grader tr.controls, .path-grade-report-grader td.controls, .path-grade-report-grader th.controls, .path-grade-report-grader tr.groupavg, .path-grade-report-grader tr.range, .path-grade-report-grader th.range, .path-grade-report-grader td.range, .path-grade-report-grader tr.heading th.range { height:2em!important; white-space:nowrap; } .path-grade-report-grader .heading_name_row th { white-space:nowrap; width:2000px; } /*MDL-21088 - IE 7 ignores nowraps on tds or ths so we put a span within it with a nowrap on it*/ .path-grade-report-grader heading_name_row th span { white-space:nowrap; } .path-grade-report-grader .grade_icons img.ajax { float:right; } .path-grade-report-grader .gradestable th.user, .path-grade-report-grader .gradestable th.range, .path-grade-report-grader .flexible th, .path-grade-report-grader .flexible td, .path-grade-report-grader .flexible th a, .path-grade-report-grader .flexible td a, .path-grade-report-grader .gradestable th.range, .path-grade-report-grader td { white-space:nowrap; } table#user-grades .catlevel1, table#user-grades .r1, .path-grade-report-grader table tr.even td.cell, .path-grade-report-grader table tr.even th { background-color:#fff; } table#user-grades .catlevel3, .path-grade-report-grader table tr.odd td.cell { background-color:#efefef; } table#fixed_column tr.odd th , table#user-grades tr.odd th { background-color:#efefef; } table#user-grades td.vmarked, table#user-grades tr.odd td.vmarked, table#user-grades td.vmarked, table#user-grades tr.odd td.vmarked, table#user-grades tr.even td.vmarked { background-color:#fc3; } table#user-grades td.hmarked, table#user-grades tr.odd td.hmarked, table#user-grades td.hmarked, table#user-grades tr.odd td.hmarked, table#user-grades tr.even td.hmarked { background-color:#ff9; } table#user-grades td.hmarked.vmarked, table#user-grades tr.odd td.hmarked.vmarked, table#user-grades td.hmarked.vmarked, table#user-grades tr.even td.hmarked.vmarked, table#user-grades tr.odd td.hmarked.vmarked { background-color:#fc9; } table#user-grades tr.heading, table#user-grades .heading td { border-style:solid; border-width:0; } table#user-grades td.userfield, table#user-grades th, .path-grade-report-grader div.gradeparent, .path-grade-report-grader .ie6 form, table#user-grades td.ajax { text-align:left; } .dir-rtl table#user-grades td.userfield, .dir-rtl table#user-grades th, .path-grade-report-grader.dir-rtl div.gradeparent, .path-grade-report-grader.dir-rtl .ie6 form, .dir-rtl table#user-grades td.ajax { text-align:right; } .path-grade-report-grader .gradeparent { overflow:auto; } .path-grade-report-grader table tr.avg td.cell, table#user-grades td.controls, .path-grade-report-grader table tr.avg, .path-grade-report-grader table tr.avg td, .path-grade-report-grader table tr.avg th { background-color:#f3ead8; } .path-grade-report-grader div.left_scroller tr, .path-grade-report-grader div.right_scroller tr, .path-grade-report-grader div.left_scroller td, .path-grade-report-grader div.right_scroller td, .path-grade-report-grader div.left_scroller th, .path-grade-report-grader div.right_scroller th { height:4.5em; font-size:10px; } .path-grade-report-grader table th.user, .path-grade-report-grader table td.userfield { text-align:left; vertical-align:middle; } .path-grade-report-grader .usersuspended a:link, .path-grade-report-grader .usersuspended a:visited { color: #666; } .path-grade-report-grader table th.usersuspended img.usersuspendedicon { vertical-align: text-bottom; margin-left: .45em; } .path-grade-report-grader .grade_icons { margin-bottom: .3em;} .path-grade-report-grader .yui3-overlay { background-color: #FFEE69; border-color: #D4C237 #A6982B #A6982B; border-style: solid; border-width: 1px; left: 0; padding: 2px 5px; font-size: 0.7em; } .path-grade-report-grader .yui3-overlay .fullname { color: #5F3E00; font-weight: bold; } .path-grade-report-grader .yui3-overlay .itemname { color: #194F3E; font-weight: bold; } .path-grade-report-grader .yui3-overlay .feedback { color: #5F595E; } /* table#user-grades td */ /* .grader-report-grader table#user-grades td .yui-panel div.hd { */ .path-grade-report-grader #tooltipPanel { text-align: left; } .path-grade-report-grader .yui3-overlay a.container-close { margin-top: -3px; } .path-grade-report-grader #hiddentooltiproot, .tooltipDiv { display: none; } .path-grade-report-grader.ie .right_scroller { overflow-y:hidden; } .path-grade-report-grader.ie table#fixed_column th { height:4.5em; } .path-grade-report-grader.ie table#fixed_column tr.avg th { height:2.1em; } .path-grade-report-grader.ie div.left_scroller td { height:4.5em; } .path-grade-report-grader.ie6 div.right_scroller { margin-top:4em; width:auto; position:absolute; } .path-grade-report-grader.ie6 .excludedfloater { font-size:7px; }
moodle/grade/report/grader/styles.css
.path-grade-report-grader .flexible th { white-space:normal; } .gradestable { margin-bottom:0; } .gradestable th.user img { width:20px; height:20px; } .gradestable th img { vertical-align: text-bottom; padding-bottom: 0; } .gradestable th .grade_icons { margin-top: .3em; } .gradestable th img.sorticon { margin-left: .3em; } .dir-rtl .gradestable th img.sorticon { margin-left: 0; margin-right: .3em; } table#user-grades .catlevel2 { background-color:#f9f9f9; } table#user-grades tr.avg td.cell { background-color:#efefff; font-weight:700; color:#00008B; } table#user-grades tr.odd td.cell { background-color:#efefef; white-space:nowrap; } table#user-grades tr td.overridden {background-color:#F3E4C0;} table#user-grades tr.odd td.overridden {background-color:#EFD9A4;} table#user-grades tr td.ajaxoverridden {background-color:#FFE3A0;} table#user-grades tr.odd td.ajaxoverridden {background-color:#FFDA83;} table#user-grades tr.even td.excluded { background-color:#EABFFF; } table#user-grades tr.odd td.excluded { background-color:#E5AFFF; } table#user-grades tr.odd th.header { background-color:#efefef; background-image:none; } table#user-grades tr.groupavg td.cell { background-color:#efffef; font-weight:700; color:#006400; } table#user-grades td.cat, table#user-grades td.course { font-weight:700; } table#user-grades { font-size:10px; width:auto; background-color:transparent; border-style:solid; border-width:1px; margin:20px 0 0; } .path-grade-report-grader #overDiv table { margin:0; } .path-grade-report-grader #overDiv table td.feedback { border:0; } .path-grade-report-grader #overDiv .feedback { font-size:70%; background-color:#ABF; color:#000; font-family:Verdana; font-weight:400; } .path-grade-report-grader #overDiv .caption { font-size:70%; background-color:#56C; color:#CCF; font-family:Arial; font-weight:700; } .path-grade-report-grader #overDiv .intersection { font-size:70%; background-color:#ABF; color:#000; font-family:Verdana; font-weight:400; } .path-grade-report-grader #overDiv .intersectioncaption { background-color:#56C; color:#CCF; font-family:Arial; font-weight:700; } .path-grade-report-grader div.submit { margin-top:20px; text-align:center; } table#user-grades td { text-align:right; border-style:solid; border-width:0 1px 1px 0; } table#user-grades th.category { vertical-align:top; border-style:solid; border-width:1px 1px 0; } table#user-grades th.user { text-align:left; border-style:solid; border-width:0 0 1px; } table#user-grades th.userfield { border-style:solid; border-width:0 0 1px 1px; } table#user-grades th.categoryitem, table#user-grades td.topleft { vertical-align: bottom; border-style:solid; border-width:0 1px; } .path-grade-report-grader td,.path-grade-report-grader th { border-color:#CECECE; } .path-grade-report-grader table#participants th { vertical-align:top; width:auto; } table#user-grades td.fillerfirst { border-style:solid; border-width:0 0 0 1px; } table#user-grades td.fillerlast { border-style:solid; border-width:0 1px 0 0; } table#user-grades th.item , table#user-grades th.categoryitem, table#user-grades th.courseitem { border-bottom-color:#000; vertical-align:bottom; border-style:solid; border-width:1px; } div.gradertoggle { display:inline; margin-left:20px; } table#user-grades th.range { text-align:right; border-style:solid; border-width:1px; } table#user-grades .userpic { display:inline; margin-right:10px; } table#user-grades .quickfeedback { border:1px dashed #000; margin-left: 10px; } .dir-rtl table#user-grades .quickfeedback { margin-left: 0; margin-right: 10px;} .path-grade-report-grader #siteconfiglink { text-align:right; } table#user-grades .hidden, table#user-grades .hidden a { color:#aaa; } table#user-grades .datesubmitted { font-size:.7em; } table#user-grades td.cell { padding-left:5px; padding-right:5px; vertical-align:middle; } .path-grade-report-grader table { border-collapse:collapse; background-color:#fff; border-color:#cecece; } .path-grade-report-grader th { padding:1px 10px; } .path-grade-report-grader span.inclusion-links { margin:0 5px 0 10px; } table#user-grades .item { background-color:#e9e9e9; } .path-grade-report-grader table tr.odd th.header { background-color:#efefef; background-image:none; border-width:0 0 1px; } .path-grade-report-grader table tr.heading th.header { border-top:1px solid #cecece; } table#user-grades tr.heading th.categoryitem, table#user-grades tr.heading th.courseitem { border-width:0 0 0 1px; } table#user-grades th.category.header.catlevel1 { vertical-align:top; border-style:solid; border-width:1px 1px 0 0; } .path-grade-report-grader div.left_scroller th.user a { vertical-align:middle; margin:0; padding:0; } table#user-grades th.categoryitem, table#user-grades th.courseitem, .path-grade-report-grader table td.topleft { vertical-align:bottom; border-color:#cecece #cecece #000; border-style:solid; border-width:0 1px 1px; } .path-grade-report-grader table td.topleft { border-bottom:0; } table#user-grades td.topleft { background-color:#fff; } .path-grade-report-grader th.user img.userpicture { border:3px double #cecece; vertical-align:top; width:2.7em; height:2.7em; margin-right:10px; } .path-grade-report-grader a.quickedit { line-height:1em; display:block; float:right; clear:none; font-size:9px; background-color:transparent; margin:.1em 0 0; } .path-grade-report-grader a.quickedit2 { display:block; float:right; clear:none; background-color:transparent; margin:1.3em 0 0; } .path-grade-report-grader table#quick_edit { border:1px solid #cecece; margin:0 auto; } .path-grade-report-grader table#quick_edit td { vertical-align:middle; border:1px solid #cecece; text-align:left; margin:0; padding:5px; } .path-grade-report-grader table#quick_edit td img { border:3px double #cecece; vertical-align:middle; padding:0; } .path-grade-report-grader td input.text { border:1px solid #666; } .path-grade-report-grader td input.submit { margin: 10px 10px 0px 10px; } .path-grade-report-grader table#quick_edit td.fullname { border-left:0; padding-left:5px; } .path-grade-report-grader table#quick_edit td.picture { border-right:0; } .path-grade-report-grader table#quick_edit td.finalgrade input { width:5em; } .path-grade-report-grader h1 { text-align:center; clear:both; } .path-grade-report-grader input.center { margin:10px auto 0; } .path-grade-report-grader .lefttbody { width:auto; vertical-align:middle; } table#user-grades th.fixedcolumn { border:1px solid #cecece; vertical-align:middle; } .path-grade-report-grader table#fixed_column th { border:1px solid #cecece; vertical-align:middle; border-right-color:#000; } .path-grade-report-grader table#fixed_column th.user{ border-right-color:#cecece; } .path-grade-report-grader table#fixed_column { padding-top:20px; border-top:1px solid #cecece; background-color:#fff; } .path-grade-report-grader .left_scroller { float:left; clear:none; padding-top:20px; } .path-grade-report-grader.dir-rtl .left_scroller {float:right;} .path-grade-report-grader .right_scroller { width:auto; clear:none; overflow-x:scroll; } .path-grade-report-grader table tr.avg, .path-grade-report-grader table tr.groupavg td, .path-grade-report-grader table tr.avg td, .path-grade-report-grader table tr.groupavg th, .path-grade-report-grader table tr.avg th, .path-grade-report-grader table tr.controls_row, .path-grade-report-grader table tr.controls_row th, .path-grade-report-grader table tr.range_row, .path-grade-report-grader table tr.range_row th, div.right_scroller tr { height:2em; } table#user-grades tr.groupavg td.cell, tr.groupavg th.header { background-color:#efffef; } .path-grade-report-grader form td.excluded { color:red; } .path-grade-report-grader .excludedfloater { font-weight:700; color:red; font-size:9px; float:left; } .path-grade-report-grader span.gradepass { color:#298721; } .path-grade-report-grader span.gradefail { color:#890d0d; } .path-grade-report-grader .gradeweight { color:#461d7c; font-weight:700; } .path-grade-report-grader td select { font-size:100%; padding:0; } .path-grade-report-grader .right_scroller td select { font-size:86%; padding:0; } .path-grade-report-grader tr.avg, .path-grade-report-grader tr.controls, .path-grade-report-grader td.controls, .path-grade-report-grader th.controls, .path-grade-report-grader tr.groupavg, .path-grade-report-grader tr.range, .path-grade-report-grader th.range, .path-grade-report-grader td.range, .path-grade-report-grader tr.heading th.range { height:2em!important; white-space:nowrap; } .path-grade-report-grader .heading_name_row th { white-space:nowrap; width:2000px; } /*MDL-21088 - IE 7 ignores nowraps on tds or ths so we put a span within it with a nowrap on it*/ .path-grade-report-grader heading_name_row th span { white-space:nowrap; } .path-grade-report-grader .grade_icons img.ajax { float:right; } .path-grade-report-grader .gradestable th.user, .path-grade-report-grader .gradestable th.range, .path-grade-report-grader .flexible th, .path-grade-report-grader .flexible td, .path-grade-report-grader .flexible th a, .path-grade-report-grader .flexible td a, .path-grade-report-grader .gradestable th.range, .path-grade-report-grader td { white-space:nowrap; } table#user-grades .catlevel1, table#user-grades .r1, .path-grade-report-grader table tr.even td.cell, .path-grade-report-grader table tr.even th { background-color:#fff; } table#user-grades .catlevel3, .path-grade-report-grader table tr.odd td.cell { background-color:#efefef; } table#fixed_column tr.odd th , table#user-grades tr.odd th { background-color:#efefef; } table#user-grades td.vmarked, table#user-grades tr.odd td.vmarked, table#user-grades td.vmarked, table#user-grades tr.odd td.vmarked, table#user-grades tr.even td.vmarked { background-color:#fc3; } table#user-grades td.hmarked, table#user-grades tr.odd td.hmarked, table#user-grades td.hmarked, table#user-grades tr.odd td.hmarked, table#user-grades tr.even td.hmarked { background-color:#ff9; } table#user-grades td.hmarked.vmarked, table#user-grades tr.odd td.hmarked.vmarked, table#user-grades td.hmarked.vmarked, table#user-grades tr.even td.hmarked.vmarked, table#user-grades tr.odd td.hmarked.vmarked { background-color:#fc9; } table#user-grades tr.heading, table#user-grades .heading td { border-style:solid; border-width:0; } table#user-grades td.userfield, table#user-grades th, .path-grade-report-grader div.gradeparent, .path-grade-report-grader .ie6 form, table#user-grades td.ajax { text-align:left; } .dir-rtl table#user-grades td.userfield, .dir-rtl table#user-grades th, .path-grade-report-grader.dir-rtl div.gradeparent, .path-grade-report-grader.dir-rtl .ie6 form, .dir-rtl table#user-grades td.ajax { text-align:right; } .path-grade-report-grader .gradeparent { overflow:auto; } .path-grade-report-grader table tr.avg td.cell, table#user-grades td.controls, .path-grade-report-grader table tr.avg, .path-grade-report-grader table tr.avg td, .path-grade-report-grader table tr.avg th { background-color:#f3ead8; } .path-grade-report-grader div.left_scroller tr, .path-grade-report-grader div.right_scroller tr, .path-grade-report-grader div.left_scroller td, .path-grade-report-grader div.right_scroller td, .path-grade-report-grader div.left_scroller th, .path-grade-report-grader div.right_scroller th { height:4.5em; font-size:10px; } .path-grade-report-grader table th.user, .path-grade-report-grader table td.userfield { text-align:left; vertical-align:middle; } .path-grade-report-grader .usersuspended a:link, .path-grade-report-grader .usersuspended a:visited { color: #666; } .path-grade-report-grader table th.usersuspended img.usersuspendedicon { vertical-align: text-bottom; margin-left: .45em; } .path-grade-report-grader .grade_icons { margin-bottom: .3em;} .path-grade-report-grader .yui3-overlay { background-color: #FFEE69; border-color: #D4C237 #A6982B #A6982B; border-style: solid; border-width: 1px; left: 0; padding: 2px 5px; font-size: 0.7em; } .path-grade-report-grader .yui3-overlay .fullname { color: #5F3E00; font-weight: bold; } .path-grade-report-grader .yui3-overlay .itemname { color: #194F3E; font-weight: bold; } .path-grade-report-grader .yui3-overlay .feedback { color: #5F595E; } /* table#user-grades td */ /* .grader-report-grader table#user-grades td .yui-panel div.hd { */ .path-grade-report-grader #tooltipPanel { text-align: left; } .path-grade-report-grader .yui3-overlay a.container-close { margin-top: -3px; } .path-grade-report-grader #hiddentooltiproot, .tooltipDiv { display: none; } .path-grade-report-grader.ie .right_scroller { overflow-y:hidden; } .path-grade-report-grader.ie table#fixed_column th { height:4.5em; } .path-grade-report-grader.ie table#fixed_column tr.avg th { height:2.1em; } .path-grade-report-grader.ie div.left_scroller td { height:4.5em; } .path-grade-report-grader.ie6 div.right_scroller { margin-top:4em; width:auto; position:absolute; } .path-grade-report-grader.ie6 .excludedfloater { font-size:7px; }
0.430626
0.11427
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; } /*!*************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/styles.scss ***! \*************************************************************************************************************************************************************************************/ @charset "UTF-8"; /* Базовые цвета от которых выстраивается вся политра */ /* Цвета фона */ /* Цвет дефотный */ /* Цвет акцентный */ /* Цвет границ */ /* Цвета текста */ /* Цвет основного текста */ /* Цвет второстепенного текста */ /* Цвет дополнительного текста */ /* Цвет основной ссылки */ /* Цвет ховера ссылки */ .theme_color_project-default { /* Цвета блоков */ --color-bg-default: #FFFFFF; /* Цвет дефолта */ --color-bg-accent: #edbe39; /* Цвет акцентный */ --color-bg-border: rgba(163, 163, 163, 0.6); /* Цвет границ */ --color-bg-brand: #4b77b9; --color-bg-accent-hover: #faecc5; --color-bg-secondary: #7093c7; /* Цвета текста */ --color-typo-primary: #000000; /* Цвет основного текста */ --color-typo-secondary: rgba(0, 0, 0, 0.6); /* Цвет второстепенного текста */ --color-typo-additional: white; /* Цвет брендового текста */ --color-link: #0077ff; /* Цвет основной ссылки */ --color-link-hover: color(#0077ff l(-7%)); --color-typo-ghost: color(#000000 a(30%)); } .theme { background-color: var(--color-bg-default); } .characters__list { display: flex; flex-flow: row wrap; justify-content: flex-start; height: 800px; margin: 0 0 0 -10px; } .characters__item { width: 250px; margin: 10px 0 0 10px; display: flex; flex-flow: column; } .characters__item-description { display: flex; flex-flow: column; padding: 10px; font-size: 13px; border: 1px solid var(--color-bg-border); } .characters__item-title { padding: 10px; border: 1px solid var(--color-bg-border); font-weight: 600; } .characters__item-avatar { height: 330px; background-repeat: no-repeat; background-position: inherit; background-size: cover; } .description { width: 100%; display: flex; flex-flow: row nowrap; } .description-name { min-width: 100px; display: inline-block; font-weight: 600; } @media screen and (max-width: 500px) { .characters__item { width: 100%; } } .chart { display: flex; flex-flow: row wrap; background-color: var(--color-bg-brand); } .chart_space { padding: 20px; } .chart__menu-action { padding: 10px; } @media screen and (max-width: 800px) { .chart__menu { order: -1; } } .main { max-width: 1366px; margin: 0 auto; padding: 36px; font-family: "Open Sans", sans-serif; } .buttons { display: flex; flex-flow: row wrap; } .buttons > button, .buttons select { margin: 5px 0 0 5px; } .button { padding: 5px 20px; border-radius: 5px; background-color: var(--color-bg-secondary); color: #000; transition: background-color 0.1s; cursor: pointer; display: inline-block; border: none; margin: 0; text-decoration: none; font-family: sans-serif; font-size: 1rem; text-align: center; -webkit-appearance: none; -moz-appearance: none; } .button_accent { background-color: var(--color-bg-accent); } .button_accent:hover { background-color: var(--color-bg-accent-hover); } .button_selected { background-color: var(--color-bg-default); } .button:hover { background-color: var(--color-bg-accent-hover); } .button:active { background-color: var(--color-bg-default); } .title { padding-bottom: 10px; } .text-white { color: var(--color-typo-additional); } .select { border-radius: 5px; background-color: var(--color-bg-default); padding: 5px 20px; } select::-ms-expand { display: none; }
dist/bundle.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; } /*!*************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/styles.scss ***! \*************************************************************************************************************************************************************************************/ @charset "UTF-8"; /* Базовые цвета от которых выстраивается вся политра */ /* Цвета фона */ /* Цвет дефотный */ /* Цвет акцентный */ /* Цвет границ */ /* Цвета текста */ /* Цвет основного текста */ /* Цвет второстепенного текста */ /* Цвет дополнительного текста */ /* Цвет основной ссылки */ /* Цвет ховера ссылки */ .theme_color_project-default { /* Цвета блоков */ --color-bg-default: #FFFFFF; /* Цвет дефолта */ --color-bg-accent: #edbe39; /* Цвет акцентный */ --color-bg-border: rgba(163, 163, 163, 0.6); /* Цвет границ */ --color-bg-brand: #4b77b9; --color-bg-accent-hover: #faecc5; --color-bg-secondary: #7093c7; /* Цвета текста */ --color-typo-primary: #000000; /* Цвет основного текста */ --color-typo-secondary: rgba(0, 0, 0, 0.6); /* Цвет второстепенного текста */ --color-typo-additional: white; /* Цвет брендового текста */ --color-link: #0077ff; /* Цвет основной ссылки */ --color-link-hover: color(#0077ff l(-7%)); --color-typo-ghost: color(#000000 a(30%)); } .theme { background-color: var(--color-bg-default); } .characters__list { display: flex; flex-flow: row wrap; justify-content: flex-start; height: 800px; margin: 0 0 0 -10px; } .characters__item { width: 250px; margin: 10px 0 0 10px; display: flex; flex-flow: column; } .characters__item-description { display: flex; flex-flow: column; padding: 10px; font-size: 13px; border: 1px solid var(--color-bg-border); } .characters__item-title { padding: 10px; border: 1px solid var(--color-bg-border); font-weight: 600; } .characters__item-avatar { height: 330px; background-repeat: no-repeat; background-position: inherit; background-size: cover; } .description { width: 100%; display: flex; flex-flow: row nowrap; } .description-name { min-width: 100px; display: inline-block; font-weight: 600; } @media screen and (max-width: 500px) { .characters__item { width: 100%; } } .chart { display: flex; flex-flow: row wrap; background-color: var(--color-bg-brand); } .chart_space { padding: 20px; } .chart__menu-action { padding: 10px; } @media screen and (max-width: 800px) { .chart__menu { order: -1; } } .main { max-width: 1366px; margin: 0 auto; padding: 36px; font-family: "Open Sans", sans-serif; } .buttons { display: flex; flex-flow: row wrap; } .buttons > button, .buttons select { margin: 5px 0 0 5px; } .button { padding: 5px 20px; border-radius: 5px; background-color: var(--color-bg-secondary); color: #000; transition: background-color 0.1s; cursor: pointer; display: inline-block; border: none; margin: 0; text-decoration: none; font-family: sans-serif; font-size: 1rem; text-align: center; -webkit-appearance: none; -moz-appearance: none; } .button_accent { background-color: var(--color-bg-accent); } .button_accent:hover { background-color: var(--color-bg-accent-hover); } .button_selected { background-color: var(--color-bg-default); } .button:hover { background-color: var(--color-bg-accent-hover); } .button:active { background-color: var(--color-bg-default); } .title { padding-bottom: 10px; } .text-white { color: var(--color-typo-additional); } .select { border-radius: 5px; background-color: var(--color-bg-default); padding: 5px 20px; } select::-ms-expand { display: none; }
0.293404
0.079175
position:inherit; }*/ .default-editor-hide { display: none; } .fusion-page-builder-hide { display: none !important } .fusion-builder-pagecontent { display: none !important; } img[src=""] { display: none; } #fusion_light_box .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_light_box .img_frame_section img { width: 100%; float: left; border: 1px solid #e4e4e4; margin-top: 10px; height: 100%; margin-bottom: 2px; } .video_type { font-size: 12px; border: 1px solid #e4e4e4; margin: 25px 0 0 0; } #nav { border: 1px solid #ccc; border-width: 1px 0; list-style: none; margin: 0; padding: 0; text-align: center; } #nav li { display: inline; } #nav a { display: inline-block; padding: 10px; } #tabs { float: left; background: #fff !important; width: 100%; } .pre_element_block { height: 53px; width: 63px; border: 1px solid #e1e1e1; padding: 0px 6px 10px 0px; background: #fff; text-align: center; text-decoration: none; float: left; margin: 0px 3px 3px 0; } .element_block { height: 50px; width: 66px; border: 1px solid #e1e1e1; padding: 4px 2px 10px 2px; background: #fff; text-align: center; text-decoration: none; font-size: 11px; display: block; overflow: hidden; outline: none; line-height: 13px; float: left; position: relative; color: #777; } .element_block span { position: absolute; width: 88%; left: 6%; bottom: 4px; background: rgba(255, 255, 255, 0.7); padding-top: 1px; } .element_block:hover { border: 1px solid #aaa; } .element_block:active { outline: none; border: 1px solid #D54E21; } .element_block:hover img, .element_block:active img { opacity: 1.0; } .element_block img { display: block; margin: 6px auto 5px auto; position: relative; opacity: 0.8; } #paletteContainer { background: white; padding: 0 0 2px 0 !important; border: 1px solid #E1E1E1; float: left; position: relative; width: 99.3% !important; left: 0; top: 9px; } #editor { width: 98.3% !important; min-height: 200px; background: white; padding: 20px 0 20px 1%; border: 1px solid #E1E1E1; float: left; position: relative; margin-bottom: 10px; top: 9px; } #controls { background: white; padding: 15px 11px; border-bottom: 10px solid #E1E1E1; float: left; position: relative; width: 100%; left: -11px; top: 10px; } .menu-item-handle { cursor: move; width: auto; position: relative; z-index: 10; opacity: 1; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; background: #f1f1f1; } .item-wrapper { position: relative; color: #555; background-color: #fff; } .drag-handle { position: absolute; border: 3px solid transparent; left: 0; right: 0; top: 0; bottom: 0; display: none; } .item-container { position: relative; } .drop-container .item-container { cursor: default; } .item-wrapper.mx-state-moving { background-color: #fcefa1; color: #000; margin: 0; } .drag-container .item-wrapper.mx-content-hover { background-color: #cce0ff; color: #000; } .drop-container.mx-content-hover { background-color: #ccff99; } .sort-container .drag-handle.mx-content-hover { border-color: #cce0ff; } .sort-container .item-wrapper.mx-content-hover { color: #000; } .fusion_layout_column:hover a, .sortable-element:hover a { opacity: 1; } .fusion_layout_column:hover, .sortable-element:hover { z-index: 20; } .sortable-element { width: 97.2%; margin: 1%; position: relative; color: #666; display: inline-block; } .sortable-element .fusion-columns-options { width: 109px !important; } @media all and (max-width: 3000px) and (min-width: 2000px) { .sortable-element .fusion-columns-options { width: 111px !important; } } .fusion-first-col { clear: left; } .innerElement .sortable-element, .innerElement { border: none !important; } .sortable-element .handler { float: left; background: rgba(0, 0, 0, 0.3); border: none; box-shadow: none; } .sortable-element:hover .handler { opacity: 1; z-index: 10; } .fusion_layout_column:hover, .sortable-element:hover { z-index: 20; } /*textblock*/ .sortable-element .textblock_element { padding: 7px 10px; background: none; border: none !important; } .textblock_element { border: 1px solid red !important; } .fusion_element_box { border: 1px solid #e4e4e4 !important; margin: 0 !important; } .innerElement .sortable-element, .innerElement { margin: 0 0 15px 0.4% !important; } .fusion_element_box .innerElement { margin: 0 !important; } .sortable-element .handler { margin-bottom: 0 !important; border-top: none !important; } .sortable-element .textblock_element:hover { border: 1px solid #e1e1e1; cursor: pointer; } .fusion_layout_column .sortable-element .textblock_element { padding: 7px 10px; background: #fff; } .menu-item-handle .edit-element { height: 24px; width: 24px; background: #f1f1f1 !important; overflow: hidden; text-align: center; text-decoration: none; opacity: 0; float: left; } .menu-item-handle .edit-element:hover { background: transparent url(../images/icons/icon-edit.png) top center no-repeat; } .menu-item-handle .clone-element { height: 24px; width: 24px; background: #F1F1F1; color: #7b7b7b; text-align: center; font-size: 16px; text-decoration: none; line-height: 31px; overflow: hidden; opacity: 0; } .menu-item-handle .clone-element:hover { background: #fff; background-size: 18px; color: #9A9A9A; border-bottom: 1px solid #e4e4e4 !important !important; } .fusion_layout_column:hover > .menu-item-handle .clone-element { opacity: 0.6; } .editable-element { cursor: pointer; } .delete-element { height: 24px; width: 24px; background: #F1F1F1; font-size: 16px; text-align: center; line-height: 31px; text-decoration: none; color: #7b7b7b; overflow: hidden; opacity: 0; } .delete-element:hover { background: #fff; color: #9A9A9A; } .fusion_layout_column a:active { outline: none; opacity: 0.3; } .fusion_layout_column { margin: 1%; /* float: left;*/ position: relative; } .fusion_layout_column > .innerElement { background: #FFF !important; min-height: 33px; margin-bottom: 0 !important; border: 1px dashed #E1E1E1; /*padding:28px 10px 1px 15px;*/ padding: 19px 8px 10px 16px; position: relative; } .fusion_layout_column > .fusion-hover-active { border: 1px dashed #1075a0; background: #f3f8fa !important; opacity: 0.5; } .handler { width: auto; position: relative; z-index: 10; opacity: 1; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } .grid_one { width: 97.2% !important; } .grid_five_sixth { width: 80.6%; } .grid_three_fourth { width: 72.5%; } .grid_two_third { width: 64.4%; } .grid_seven { width: 56.5%; } .grid_two { width: 47.7%; } .grid_five { width: 18.02%; } .grid_three { width: 31.2%; } .grid_four { width: 22.97%; } .grid_six { width: 14.72%; } .grid_two_fifth { width: 37.8%; } .grid_three_fifth { width: 57.5%; } .grid_four_fifth { width: 77.4%; } @-moz-document url-prefix() { .grid_two { width: 47.75%; } .grid_three { width: 31.2%; } .grid_four { width: 23%; } .grid_five { width: 18.05%; } .grid_six { width: 14.75%; } } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { width: 126px; } .name-description > strong { font-size: 16px; margin-bottom: 9px; } .clearfix:after { content: '.'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; clear: both; } .form-element-container { padding: 32px 0px 32px 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border-bottom: 1px dashed #e1e1e1; position: relative; background: #fff; clear: both; } .element-type .checkbox-field, .element-type .textarea-field, .element-type .select-field, .element-type .radio-field, .element-type .text-field { font-size: small; border-radius: 0px !important; } .form-element-container-html_editor .name-description { margin-bottom: 20px; } .form-element-container-html_editor .name-description, .form-element-container-html_editor .element-type { width: 100%; float: none; } body.noscroll { overflow: hidden; } .name-description > strong { display: block; font-size: small; } .name-description > span { display: block; color: #939292; font-size: 14px; font-style: italic; line-height: 21px; } .fusion_iconbox { overflow: hidden; } .fusion_iconbox .fusion_iconbox_content_wrap { overflow: hidden; } .fusion_iconbox .fusion_iconbox_content_wrap p { margin: 1em 0 0 0; } .fusion_iconbox .fusion-position-top { padding-top: 50px; } .fusion_iconbox .fusion-position-top .fusion_iconbox_icon { position: absolute; left: 50%; margin-left: -1em; top: 10px; } .fusion_iconbox .fusion_iconbox_title { margin: 2px 0 -8px 0; font-size: 20px; font-weight: normal; position: relative; line-height: 1.1em; } .fusion_iconbox .fusion-position-top { text-align: center; } .fusion_iconbox .fusion_iconbox_content_wrap li { text-align: left; } /*Icon Selector*/ .icon_select_container { height: 263px; overflow: auto; width: 100%; border: 1px solid #AAA; overflow-x: hidden; } .icon_preview { position: relative; font-size: 14px; line-height: 32px; width: 32px; color: #494949; background: #fff; display: block; text-align: center; float: left; border: 1px solid #e1e1e1; margin-left: -1px; margin-top: -1px; transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; /* Firefox 4 */ -webkit-transition: all 0.1s ease-out; /* Safari and Chrome */ -o-transition: all 0.1s ease-out; /* Opera */ cursor: pointer; } .icon_preview:hover { color: #278AB7; z-index: 3; -webkit-transform: scale(1.3); -moz-transform: scale(1.3); -o-transform: scale(1.3); transform: scale(1.3); } .icon_select_container .selected-element:hover, .icon_select_container .selected-element { color: #D54E21; } /*drag and drop system*/ body .fusion-dragging-element { width: 240px; background: #fff !important; } body .fusion-dragging-element .innerElement { background-color: #fff; border: 1px solid #e1e1e1; overflow: hidden; } body .fusion-dragging-element .innerElement > div, body .fusion-dragging-element .innerElement img { visibility: hidden; } .fusion-dragging-element > .menu-item-handle { opacity: 1; z-index: 10; } /*---new code to fix design---*/ #ddbuilder .fusion-hover-active { border: 1px dashed #1075a0; background: #f3f8fa; } .fusion_iconbox_icon .icon-expand-alt { font-size: 32px !important; } /*drag drop highlight of single elements*/ .select-target-1 .drag-element[data-drop_level="0"], .select-target-2 .drag-element[data-drop_level="1"], .select-target-3 .drag-element[data-drop_level="2"], .select-target-3 .drag-element[data-drop_level="1"], .select-target-4 .drag-element[data-drop_level="3"], .select-target-4 .drag-element[data-drop_level="2"], .select-target-4 .drag-element[data-drop_level="1"] { border: 1px dashed #4D9EDD; } /*--wwww--*/ /*---new code to fix design end---*/ .menu-item-handle .decrease-width { background: transparent url(../images/icons/icon-shrink.png) top left no-repeat; opacity: 1 !important; } .menu-item-handle .increase-width { background: transparent url(../images/icons/icon-grow.png) top left no-repeat; opacity: 1 !important; } .menu-item-handle .clone-element { opacity: 1 !important; } .delete-element { opacity: 1 !important; } .menu-item-handle .edit-element { opacity: 1 !important; } .menu-item-handle .change-width { height: 24px; width: 24px; float: left; display: block; overflow: hidden; position: relative; left: 20px; opacity: 0; text-align: center; line-height: 26px; text-decoration: none; color: #fff; } .menu-item-handle .change-width i { -webkit-font-smoothing: subpixel-antialiased; } .menu-item-handle .change-width:hover { background-position-y: bottom; } #ddbuilder .ui-tabs-nav { background: #f1f1f1 !important; padding: 15px !important; border-bottom: 1px solid #e4e4e4 !important; border-radius: 0 !important; } #ddbuilder .tabs_name { border: 1px solid #c6c4c4 !important; border-radius: 0; padding-bottom: 0 !important; margin: 0 15px 0 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav { border-bottom: 1px solid #dfdede !important; } #delete_section { width: 110px; float: right; margin: 25px 0 0 0; } #del_icon { width: 11px; height: 13px; float: left; font-size: 16px; margin: 13px 0 0 0; color: #7B7B7B !important; text-decoration: none; } #save_icon { width: 11px; height: 13px; float: left; font-size: 16px; margin: 13px 7px 0 0; color: #009933 !important; } #del_icon:hover { opacity: 0.7; } #both_icon { width: 57px; height: 32px; float: left; padding: 0 0 0 10px; margin: 5px 0 0 10px; border-left: 1px solid #c6c4c4; } .b_left { width: 16px; height: 14px; float: left; font-size: 16px; margin: 9px 8px 0 0; border: none; color: #7B7B7B !important; text-decoration: none; } .b_left:hover { opacity: 0.7; } .b_right { width: 16px; height: 14px; float: left; border: none; font-size: 16px; color: #7B7B7B !important; margin: 9px 0 0 0; text-decoration: none; } .b_right:hover { opacity: 0.7; } .element_block { border-radius: 0; border: 1px solid #e7e7e7 !important; } .element_block:hover { background: #f7f7f7 !important; opacity: 1.0; border: 1px solid #e7e7e7 !important; } .pre_element_block { border: none !important; opacity: 0.8 !important; margin: 4.8px !important; } .pre_element_block:hover { opacity: 1 !important; } .menu-item-handle .decrease-width { width: 29px; height: 26px; margin-left: -20px; background: #d3d1d1; } .menu-item-handle .decrease-width:hover { background: #dbdada; } .menu-item-handle .increase-width:hover { background: #cccbcb; } .menu-item-handle .increase-width { width: 29px; height: 26px; background: #bcbcbc; } .sortable-element .handler { border-bottom: 1px solid #ddddde; float: left; background: #f1f1f1 !important; } .delete-element { width: 35px !important; height: 26px !important; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; margin: 0; float: right; } .menu-item-handle .clone-element { width: 36px; height: 26px !important; position: absolute !important; margin: 0 auto !important; left: 0; right: 0; top: 0; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; background-position: top center !important; } /*.grid_three .menu-item-handle .clone-element{ width:38px; }*/ .menu-item-handle .clone-element:hover { background-color: #fff; background-position: top center !important; } .menu-item-handle .edit-element { width: 38px !important; height: 26px !important; right: 78px !important; left: auto !important; line-height: 31px; color: #7b7b7b; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; } .menu-item-handle .edit-element:hover { background: #fff !important; color: #9A9A9A; } .fusion_layout_column > .innerElement { clear: both; background: none; } .fusion_layout_column { background: none !important; } .innerElement .sortable-element, .innerElement { background: none; display: block; } .sortable-element { background: none !important; display: inline-block; margin-left: 0; margin: 0.7% !important; } .tab_image { float: left; margin: 2px 10px 0 0; } .pop-up-element { /*width:116px !important;*/ border-right: none !important; float: right !important; background: none !important; } .droppable-area .pop-up-element { margin-top: 1px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { float: left; cursor: pointer; background: url(../images/icons/list_button.png) no-repeat top center !important; color: #fff !important; border-radius: 0; margin-right: 0px; height: 63px; width: 100%; padding-bottom: 45px; margin-bottom: 0px !important; -webkit-transition: color .15s linear .1s; transition: color .15s linear .1s; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover { color: #fff !important; height: 63px; border-bottom: 1px solid #ffffff !important; background: url(../images/icons/list_button.png) no-repeat top center !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a:hover { background: #f7f7f7 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { float: left; height: 34px !important; width: 159px; margin-left: 0 !important; margin-right: 10px !important; border-bottom: 1px solid #c2c0c0 !important; margin-bottom: 12px !important; text-align: center !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-disabled a, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-processing a { border: 1px solid #278FC1 !important; } .sortable-element .handler { width: 100%; } .sortable-element { margin: 0.8% !important; border: 1px solid #e4e4e4; vertical-align: text-top; } .element_block span { background: none !important; } .grid_width { color: #797979; font-size: 12px; float: left; height: 21px; margin: 5px 0 0 30px; } .toggle_section { display: none; } .fusion_countdown_timer { margin-top: 10px; } .fusion_countdown_timer > span { display: inline-block; margin-right: 10px; padding: 8px; background-color: #333; color: #fff; } .fusion_countdown_timer > span > span { padding-right: 5px; } .fusion-login-box, .fusion_widget_name { margin-top: 10px; font-size: 12px; } /*! * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ #poststuff h2.section_heading, .wrap .section_heading { width: 97.1%; float: left; font-family: Arial, Helvetica, sans-serif; margin: 20px 0 0 0; font-weight: normal; padding: 9px 1.1%; border: 1px solid #e5e5e5; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; cursor: pointer; } .fusion-toggler-wrapper { display: inline; position: absolute; right: 20px; } .fusion-toggler { height: 13px !important; color: #AAAAAA; font-size: 14px; margin: 0; vertical-align: bottom; } .fa-sort-desc { vertical-align: top; } .hading_potion:focus { outline: 0 !important; } #post-body-content { position: relative; } .fusion-icon { text-align: center; width: 40px; height: 40px; float: left; margin-left: 13px; } .fusion-icon-grid-1 { background: url(../images/icons/sc-one.png) no-repeat top center; } .fusion-icon-grid-2 { background: url(../images/icons/sc-two.png) no-repeat top center; } .fusion-icon-grid-5 { background: url(../images/icons/sc-five.png) no-repeat top center; } .fusion-icon-grid-4 { background: url(../images/icons/sc-four.png) no-repeat top center; } .fusion-icon-grid-3 { background: url(../images/icons/sc-three.png) no-repeat top center; } .fusion-icon-grid-5 { background: url(../images/icons/sc-five.png) no-repeat top center; } .fusion-icon-grid-6 { background: url(../images/icons/sc-six.png) no-repeat top center; } .fusion-icon-grid-5-6 { background: url(../images/icons/five-sixth.png) no-repeat top center; } .fusion-icon-grid-3-4 { background: url(../images/icons/sc-three-forth.png) no-repeat top center; } .fusion-icon-grid-2-3 { background: url(../images/icons/sc-two-third.png) no-repeat top center; } .fusion-icon-grid-1 { background: url(../images/icons/sc-one.png) no-repeat top center; } .fusion-icon-grid-2-5 { background: url(../images/icons/two-fifth.png) no-repeat top center; } .fusion-icon-grid-3-5 { background: url(../images/icons/three-fifth.png) no-repeat top center; } .fusion-icon-grid-4-5 { background: url(../images/icons/four-fifth.png) no-repeat top center; } .builder-options-icon { font-size: 18px; margin-top: 10px; } .builder-options-icon:hover { font-size: 18px; } .builder-options-icon.dashicons, .builder-options-icon.dashicons:hover { font-size: 21px; } .fusion_iconbox_icon { width: 100%; float: left; font-size: 14px; padding: 8px 0 8px 0; text-align: center !important; } .sub { font-size: 14px !important; vertical-align: bottom; line-height: 19px; } .fusion_iconbox_icon i { font-size: 20px; margin-right: 7px; vertical-align: middle; } .fusion_iconbox_icon .icon-ellipsis-horizontal { vertical-align: -webkit-baseline-middle !important; } #ddbuilder .ui-corner-all, #ddbuilder .ui-corner-bottom, #ddbuilder .ui-corner-right, #ddbuilder .ui-corner-br { border: none; border-radius: 0 !important; } #ui-id-1, .ui-dialog-title { color: #3D3D3D !important; font: 18px "Open Sans", sans-serif !important; font-weight: normal !important; padding: 5px 0; margin-left: 20px !important; } #ddbuilder #tabs ul { width: auto; padding-top: 25px !important; margin-left: 0 !important; margin-top: 0 !important; font: 18px "Open Sans", sans-serif !important; background: #f1f1f1 !important; } #ddbuilder .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; border-collapse: collapse } #ddbuilder .ui-helper-clearfix:after { clear: both } #ddbuilder .ui-helper-clearfix { min-height: 0 } #ddbuilder .ui-widget-header, .fusionb-dialog-form .ui-widget-header { background-image: none !important; width: 96.5%; margin-top: -2px; margin-left: -2px; border-radius: 0 !important; background: #fcfcfc !important; border-bottom: 1px solid #dfdfdf; } .fusionb-dialog-form { padding: 0; border: 1px solid #fff; z-index: 1002 !important; } .fusionb-dialog-form .TF_ContentBoxes > div:first-child { background-color: #eaf6f9; } .fusionb-dialog-form .ui-widget-header { width: 98.5% !important; padding: 0 0.85%; margin: 0; height: auto; min-height: 40px; line-height: normal; } .ui-widget-overlay { background: #000 !important; opacity: 0.7 !important; position: fixed !important; z-index: 1001 !important; } .fusionb-dialog-form .ui-dialog-titlebar-close { background: none !important; } .form-element-container { border-bottom: none !important; border-bottom: 1px solid #ddd !important; } .name-description { float: left !important; width: 40% !important; } .name-description strong { font-weight: normal !important; margin: 0 !important; font-size: 15px; line-height: 20px; color: #3D3D3D !important; } .child-clone-row .name-description strong { font-size: 14px; padding-bottom: 7px; line-height: normal; } .element-type { width: 57%; float: right !important; } .element-type input[type=text] { padding: 6px 15px; width: 100% !important; font: 12px/20px Arial, Helvetica, sans-serif; } .jqte { border: none !important; margin: 0 !important; border-radius: 0 !important; } .fusionb-dialog-form .ui-dialog-buttonpane { border-top: 1px solid #E7E6E6 !important; } .fusionb-dialog-form .ui-dialog-buttonpane button { background: #2790C2 !important; color: #fff !important; } .fusionb-dialog-form .ui-dialog-buttonpane button:hover { background: #333333 !important; } /* image upload */ .fusion-upload-container { position: relative; min-height: 36px; } .fusionb-upload-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; width: 95px; text-align: center; text-decoration: none; position: absolute; bottom: 0; right: 0; } .fusionb-edit-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; width: 95px; text-align: center; text-decoration: none; position: absolute; bottom: 39px; right: 0; } .fusionb-upload-button:hover { background: #fbf9f9; } .uploaded-image { max-width: 311px; margin-right: 10px; } .fusion-upload-container img[src=""] { display: none; } /* button */ .fusion-shortcodes-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #565656 !important; background: #fff; border: 1px solid #c7c5c5; text-align: center; text-decoration: none; } .fusion-shortcodes-button:hover { background: #fbf9f9; } .fusion-shortcodes-button { width: 175px; margin-top: 10px; display: block; } .fusion-gallery-button { padding-left: 10px; padding-right: 10px; } #fusion-child-add { display: block; width: 779px; padding: 0; height: 49px; line-height: 49px; font-size: 21px; text-align: center; padding: 0 !important; border: 1px solid #dadada; text-decoration: none; width: 101%; margin-top: 20px; } .funsion-element-d { background: #F8F6F6 !important; } .child-clone-row { background: #f8f6f6 !important; padding: 2%; float: left; width: 97%; margin-top: 20px; border: solid 1px #d6d6d6; } .has-children { width: 99% !important; padding-left: 26px; padding-right: 26px; } .child-clone-row td { width: 100%; float: left; } .child-clone-row-remove { float: left; padding: 0 0; width: 100% !important; } table.has-children tr > td { padding-top: 10px; } .line_top { width: 100%; float: left; margin: 20px 0 10px 0; border-bottom: 1px solid #D6D6D6; } #fusion-child-add { margin-bottom: 10px; color: #535353; } #fusion-child-add:hover { color: #000; } .funsion-element-child { background: none !important; padding-left: 0 !important; padding-right: 0 !important; } #fusion_loading_section { background: none repeat scroll 0 0 #fafafa; display: block; height: 44.8%; opacity: 0.8; padding: 30% 0 0; position: absolute; text-align: center; top: 77px; width: 99.6%; z-index: 1002; } .loading_img { width: 69px; height: 31px; margin: 0 auto; background: url(../images/icons/ajax-loader.gif) no-repeat top center !important; } .loading_img p { margin: 30px 0 0 0; float: left; } #ddbuilder .ui-tabs .ui-tabs-panel { width: 98%; float: left; padding: 1%; background: #fff !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { background: #fff !important; color: #7B7B7B !important; border-radius: 0; outline: none !important; } #ddbuilder .ui-tabs .ui-tabs-nav li:hover { background: #f7f7f7 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { color: #7B7B7B !important; width: 100%; text-align: center; height: 47%; background: none !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a:hover { background: #F7F7F7 !important; } #dialog_form .wp-picker-container { display: block; position: relative; } #dialog_form .wp-picker-container .button { width: 111px !important; margin-top: 5px !important; height: auto !important; padding: 3px 0 !important; margin-left: 0px !important; } #dialog_form .iris-picker .iris-slider-offset { background: none !important; } #post-body #normal-sortables { width: 99.5%; } .fusionb-dialog-form { top: 60px !important; clear: both; left: 0 !important; right: 0; margin: 0 auto; position: fixed !important; height: 90% !important; width: 62% !important; } .fusionb-dialog-form .ui-dialog-titlebar-close .ui-icon { display: inline-block; font-family: FontAwesome; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-indent: 0; margin-top: -15px; } .fusionb-dialog-form .ui-dialog-titlebar-close .ui-icon:before { content: "\f00d"; } #dialog_form { background: #fff; max-height: inherit !important; min-height: inherit !important; height: calc(100% - 110px) !important; overflow-y: scroll; font: 12px/20px Arial, Helvetica, sans-serif; width: 100% !important; } #dialog_form { padding: 0px; } #dialog_form .wp-picker-holder { clear: both; margin: 0; padding-top: 4px; } #dialog_form .ui-dialog-buttonpane { padding-top: .5em; padding-bottom: .5em; } #dialog_form .note { margin-top: 10px; color: #939292; } .fusion-tabs-menu { height: 30px; margin: 6px 0 0 20px; float: left; clear: both; } .fusion-tabs-menu li { curson: pointer !important; height: 30px; border: 1px solid transparent; line-height: 30px; float: left; margin-right: 10px; margin-top: -1px; } .fusion-tabs-menu li.current { position: relative; background-color: #fff; border-top: 1px solid #d4d4d1; border-right: 1px solid #d4d4d1; border-left: 1px solid #d4d4d1; border-bottom: 1px solid #fff; z-index: 5; } .fusion-tabs-menu li a { padding: 10px; font-size: 13px; text-decoration: none; font-weight: normal; } .fusion-tabs-menu .current a { color: #333; } .fusion-tabs { background-color: #fff; float: left; width: 100%; } .fusion-tabs .form-element-container:first-child { border-top: none !important; } .fusion-tab-content { margin-top: 10px; margin-bottom: 26px; width: 100%; display: none; } .fusion-columns-options { width: 80px !important; height: 26px; float: right; position: relative; background: #F1F1F1; } .grid_five .delete-element { width: 47% !important; } .grid_five .edit-element { width: 100% !important; border-bottom: 1px solid #e4e4e4; } .grid_five .menu-item-handle .clone-element { width: 51% !important; } .grid_five .fusion-builder-element { border-right: none !important; } .grid_five .fusion-builder-element .edit-element { width: 32.7% !important; border-bottom: none !important; } .grid_five .fusion-builder-element .clone-element { width: 33.7% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.7% !important; } .grid_six .fusion-builder-element .edit-element { width: 32.6% !important; border-bottom: none !important; border-right: 1px solid #ddddde; margin-left: -1px; } .grid_six .fusion-builder-element .clone-element { width: 32.6% !important; } .grid_six .fusion-builder-element .delete-element { width: 32.6% !important; } .grid_four .fusion-columns-options { width: 110px !important; } @media only screen and (max-width: 8000px) and (min-width: 1500px) { .grid_five .sortable-element .handler { width: 96%; background: none !important; border-left: none; } .grid_five .fusion-builder-element .edit-element { width: 32.4% !important; border-bottom: none !important; } .grid_five .fusion-builder-element .clone-element { width: 32.4% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.4% !important; } } @media only screen and (max-width: 8000px) and (min-width: 1900px) { .grid_five .fusion-builder-element .edit-element { width: 32.2% !important; } .grid_five .fusion-builder-element .clone-element { width: 32.2% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.2% !important; } .grid_four .fusion-columns-options { width: 110px !important; } } @media only screen and (max-width: 8000px) and (min-width: 2400px) { .menu-item-handle .edit-element { width: 37px !important; } } .fusion-columns-options .grid_five { width: 100% !important; } .grid_one .sortable-element { width: 99.3% !important; } .grid_five_sixth .sortable-element { width: 99% !important; } .grid_two .sortable-element { width: 99% !important; } .grid_two_third .sortable-element { width: 99% !important; } .grid_three_fourth .sortable-element { width: 98.8% !important; } .grid_two_fifth .sortable-element { width: 99% !important; } .grid_three_fifth .sortable-element { width: 99% !important; } .grid_four_fifth .sortable-element { width: 99% !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-disabled a, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-processing a { border: 1px solid #278FC1 !important; } .fusion_element_box .handler { width: 112px !important; background: #fff !important; border-bottom: none !important; } .editable-element .fusion_element_box .handler { width: 112px !important; margin-top: 2px !important; margin-right: 3px !important; background: #fff !important; border-bottom: 1px solid #ddddde !important; } .grid_one .editable-element .fusion_element_box .handler { margin-top: 12px !important; } .fusion_full_width .editable-element .fusion_element_box .handler { border-bottom: none !important; } .droppable-area .handler { margin-right: 1px !important; } .grid_six .fusion-builder-element { border-right: none !important; } .fusion_element_box { width: 97.2%; } @media only screen and (max-width: 8000px) and (min-width: 3000px) { .postbox { width: 99.3% !important; } } @media all and (max-width: 1306px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 154px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 114px; } } @media all and (max-width: 1290px) { #ddbuilder .ui-tabs .ui-tabs-nav li { margin-right: 5px !important; } } @media all and (max-width: 769px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 147px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 107px; } #wp-content-editor-tools { padding-top: 0; } #wp-content-media-buttons a { height: auto; line-height: 27px; } #wp-content-media-buttons a span { margin-top: 0 !important; } } /*@media alla nd (mx-awidth: 320px) {*/ /*#wp-content-editor-tools {*/ /*overflow: inherit;*/ /*}*/ /*}*/ .fusionb-dialog-form .ui-dialog-buttonset .ui-button:nth-child(2) { text-shadow: none !important; } .default { height: auto !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:focus { outline: none !important; } .fusionb-dialog-form .ui-dialog-buttonpane { -webkit-box-sizing: border-box; box-sizing: border-box; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; text-align: right; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button { background: #008FC5 !important; color: #fff !important; border: none !important; text-transform: uppercase; font-size: 14px !important; font-family: Arial, Helvetica, sans-serif !important; font-weight: bold !important; padding: 7px 15px !important; height: auto !important; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button:hover { background: #333333 !important; border: none !important; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button:last-child { margin-right: 10px; } #ddbuilder .ui-corner-right { border: 1px solid #cccccc; } .fusionb-dialog-form .ui-buttonset .ui-state-active { background-color: #0074A2 !important; background-image: -moz-linear-gradient(center top, #008EC6, #0074A2) !important; box-shadow: none !important; padding-bottom: 1px !important; } .fusionb-dialog-form .buttonset label span { color: #333333 !important; } .fusionb-dialog-form .buttonset .ui-state-active span { color: #fff !important; margin-top: -1px !important; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { background: none !important; background-image: none !important; border: none !important; height: 20px !important; padding: 1px !important; top: 20px !important; color: #000 !important; right: 10px !important; outline: none; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-button-text { display: none; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close span { position: absolute; top: 0; } .fusionb-dialog-form .ui-dialog-titlebar-close:before { display: none; } @media all and (max-width: 1410px) { #Column_options_div { width: 95% !important; } } @media all and (max-width: 1295px) { #Column_options_div { width: 94% !important; } } @media all and (max-width: 1180px) { #Column_options_div { width: 93% !important; } } @media all and (max-width: 1079px) { #Column_options_div { width: 92% !important; } } @media all and (max-width: 1010px) { #Column_options_div { width: 91% !important; } } #poststuff h2, .metabox-holder h2, #poststuff h3, .metabox-holder h3 { font-weight: normal !important; padding: 9px 1.1% !important; } .switch-options .cb-enable { height: 32px; margin-top: 4px !important; } .fusionb-dialog-form.ui-dialog-buttons .ui-dialog-buttonpane { margin: 0px 0 0 0 !important; border-top: 1px solid #d4d4d1 !important; background: #fcfcfc !important; padding-top: 7px !important; padding-bottom: 7px !important; z-index: 999999; } #ddbuilder a.element_block { color: #9a9a9a; } #ddbuilder a.element_block:hover { color: #7d7d7d; } #element-edit-form .form-element-container { padding-left: 26px; padding-right: 26px; } @media all and (max-width: 1330px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 150px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 151px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; padding: 8px 0 !important; } } @media all and (max-width: 1270px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 130px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 130px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; font-size: 10px; padding: 8px 0 !important; } } @media all and (max-width: 1190px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 40%; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; height: 18px !important; padding: 0; background: #278FC1 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover { background: #278FC1 !important; height: 19px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; font-size: 10px; padding: 8px 0 !important; } } @media all and (max-width: 1190px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 35%; } } @media all and (max-width: 600px) { #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; } } @media all and (max-width: 450px) { #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { width: 100%; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { font-size: 12px; } } .element-type textarea { width: 100%; } #dialog_form .ui-widget { font-family: Arial, Helvetica, sans-serif !important; background: #F1F1F1 !important; } .fusionb-dialog-form .ui-dialog-buttonpane { position: absolute; bottom: 0; left: 0; height: 70px; width: 100%; padding-left: 0; padding-right: 0; } .wp-admin select { line-height: normal !important; } .wp-admin select:focus { outline: o !important; outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important; } select:focus { outline: 0 !important; !important; outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important } select option:focus { outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important } /*Custom and Pre-built template CSS*/ .element-type select option { background: #ffffff !important; } input[type="file"]:focus, input[type="checkbox"]:focus, select:focus { outline: none !important; } .pop-up-element .clone-element { height: 28px !important; } .pop-up-element .delete-element { height: 28px !important; } #titlediv #title { width: 99.5% !important; } #postbox-container-1 .hndle { padding-left: 10px !important; } .custom_pre_built { width: 100% !important; float: left !important; } #pre_built_templates_wrapper { width: 97.7%; padding: 1%; float: left; } #custom_templates_wrapper { width: 97.7%; padding: 1%; float: left; } #custom_templates_left { width: 21%; float: left; } #custom_templates_right { width: 74%; float: right; } .templates_heading { font: 14px "Open Sans", sans-serif !important; color: #333333; width: 100%; margin: 0 0 20px 0; font-weight: normal; padding: 0 0 10px 0; float: left; border-bottom: 1px solid #e4e4e4; } .save_templates_here { width: 100%; float: left; padding: 0 0; transition: all 0.5s ease 0s; border: 1px solid #c2c0c0; } .save_templates_here:hover { background: #f7f7f7; transition: all 0.5s ease 0s; } .templates_selection { text-align: center; float: left; line-height: 40px; width: 100%; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #797979 !important; text-decoration: none; } .template_selection_wrapper { width: 100%; float: left; text-align: left; padding: 0 0; transition: all 0.5s ease 0s; border-bottom: 1px solid #ddddde; } .template_selection_wrapper:hover { background: #f7f7f7; transition: all 0.5s ease 0s; } .template_selection_wrapper a { font-size: 12px; line-height: 40px; } .wrap .templates_heading { margin-bottom: 15px; } .templates_123 { width: 100%; } .templates_456 { width: 202px; } .templates_789 { width: 208px; } .templates_10_11_12 { width: 216px; border-right: 1px solid #e9e9e9 !important; } .custom_pre_built_1 { width: 161px; } .custom_pre_built_2 { width: 175px; } .custom_pre_built_3 { width: 175px; } .custom_pre_built_4 { width: 175px; } .custom_pre_built_5 { width: 175px; } .custom_pre_built_6 { width: 167px; border-right: 1px solid #e9e9e9 !important; } .custom_templates_sections { border: 1px solid #e9e9e9; border-bottom: none; float: left; margin: 0 0 0 -1px; width: 18%; } .pre_built_templates_section { border: 1px solid #e9e9e9; border-bottom: none; float: left; margin: 0 0 0 -1px; width: 16.5%; } /*Custom and Pre-built template CSS*/ .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close span { top: 18px !important; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { width: 18px !important; } #dialog_form .wp-color-result { display: block; float: left; margin-left: 0; margin-right: 0; padding-left: 0; height: 34px !important; width: 78%; border-radius: 0 !important; } #dialog_form .wp-color-result:after { position: absolute; line-height: 34px !important; } #dialog_form .wp-picker-input-wrap { display: block; float: right; width: 20%; } #dialog_form .wp-picker-input-wrap input { width: 100%; text-align: center !important; padding: 11px 0 !important; } #dialog_form .wp-picker-input-wrap .fusion-color-field { display: block !important; } #dialog_form .wp-picker-clear { display: none !important; } #dialog_form .wp-color-result:after { font-size: 13px !important; padding: 0 20px !important; background: #fff !important; } .grid_six .fusion_layout_column .sortable-element .textblock_element { min-height: 100px !important; } .hidden_overlay { width: 100%; height: 100%; position: absolute; background: #ddddde; z-index: 9; display: none; } .hidden_overlay a { float: right; color: #797979 !important; text-align: center; width: 50%; background: #fff; font-size: 12px; font-family: Arial, Helvetica, sans-serif; text-decoration: none; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .hidden_overlay a:hover { color: #222 !important; background: #F7F7F7; } .template_selection_wrapper:hover .hidden_overlay { display: block; } .fusion_delete_template { float: left !important; } .fuiosn_load_template { border-left: 1px solid #ddddde; } .fusion_full_width .innerElement { } .fusion_full_width .handler { width: 100% !important; } .fusion_full_width .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .ui-droppable .handler { width: 99% !important; background: none !important; margin-top: 1px !important; margin-right: 1px !important; } .fusion_full_width > .menu-item-handle .change-width { display: none !important; } #dialog_form .wp-picker-container input[type=text].wp-color-picker { height: 37px; line-height: normal; } .element-type select { width: 100% !important; padding: 6px 15px; height: 34px !important; border-left: 1px solid #d9d9d9 !important; box-shadow: none !important; border-top: none !important; border-bottom: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; border-right: none !important; background: url(../images/icons/select_bg3.jpg) no-repeat right, url(../images/icons/select_bg4.jpg) repeat-x; font: 12px/20px Arial, Helvetica, sans-serif; } .element-type select:focus { outline: none; } .fusion_layout_column .menu-item-handle .edit-element { border-bottom: none !important; height: 26px !important; } .fusion_layout_column .pop-up-element .clone-element { border-bottom: none !important; height: 26px !important; } .fusion_layout_column .pop-up-element .delete-element { border-bottom: none !important; height: 26px !important; } .fusion_full_width .menu-item-handle .edit-element { height: 26px !important; } .fusion_full_width .pop-up-element .clone-element { height: 26px !important; } .fusion_full_width .pop-up-element .delete-element { height: 26px !important; } .wp-core-ui .button-secondary:focus, .wp-core-ui .button.focus, .wp-core-ui .button:focus { outline: 0 !important; border: 0 !important; } #del_icon:focus { outline: 0 !important; } #del_icon:active { outline: 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus { outline: 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:active { outline: 0 !important; } .ui-widget-content a:focus { outline: 0 !important; } .ui-widget-content a:active { outline: 0 !important; } select:focus { outline: 0 !important; } select:active { outline: 0 !important; } #fusion-pb-switch-button { position: relative; bottom: -10px; z-index: 1001; } #fusion-pb-switch-button:focus { outline: 0 !important; } #fusion-pb-switch-button:active { outline: 0 !important; } .form-element-container #wp-fullscreen-buttons .mce-btn, .mce-toolbar .mce-btn-group .mce-btn, .qt-fullscreen { margin: 2px 1px !important; } .form-element-container .mce-toolbar .mce-btn button, .qt-fullscreen { padding: 4px 2px !important; } .form-element-container .mce-listbox button { width: 100px !important; } select option:focus { outline: none !important; } select option:active { outline: none !important; } .form-element-container .element-type .mce-tinymce { border: 1px solid #ddd; } /*.ui-state-default .ui-icon:focus{ background:red !important; } .ui-state-active .ui-icon { background-image: url(jquery/images/ui-icons_6da8d5_256x240.png) !important; }*/ a:focus { outline: none !important; } a:active { outline: none !important; } a:active, a:focus { outline: none !important; } .fusion_full_width .grid_five_sixth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_five_sixth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_one { border: 1px solid #ddddde !important; } .fusion_full_width .grid_one .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_one .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_four_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_four_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three_fourth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three_fourth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two_third { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two_third .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_four { border: 1px solid #ddddde !important; } .fusion_full_width .grid_four .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_four .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_five { border: 1px solid #ddddde !important; } .fusion_full_width .grid_five .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_five .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_six { border: 1px solid #ddddde !important; } .fusion_full_width .grid_six .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_six .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_five_sixth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_four_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three_fourth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two_third .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_four .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_one .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_five_sixth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_four .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_one .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_one { width: 97.2% !important; } .fusion_full_width .grid_five_sixth { width: 80.6% !important; } .fusion_full_width .grid_three_fourth { width: 72.5% !important; } .fusion_full_width .grid_two_third { width: 64.4% !important; } .fusion_full_width .grid_seven { width: 56.5% !important; } .fusion_full_width .grid_two { width: 47.7% !important; } .fusion_full_width .grid_five { width: 18.02% !important; } .fusion_full_width .grid_three { width: 31.2% !important; } .fusion_full_width .grid_four { width: 22.97% !important; } .fusion_full_width .grid_six { width: 14.72% !important; } .fusion_full_width .grid_two_fifth { width: 37.8% !important; } .fusion_full_width .grid_three_fifth { width: 57.5% !important; } .fusion_full_width .grid_four_fifth { width: 77.4% !important; } @-moz-document url-prefix() { .fusion_full_width .grid_two { width: 47.75% !important; } .fusion_full_width .grid_three { width: 31.2% !important; } .fusion_full_width .grid_four { width: 23% !important; } .fusion_full_width .grid_five { width: 18.05% !important; } .fusion_full_width .grid_six { width: 14.75% !important; } } .fusion_full_width .fusion_layout_column { display: inline-block !important; margin: 0.8% !important; } .mce-container-body .wp-media-buttons { z-index: 2 !important; position: absolute !important; top: 0; } .fusion_full_width .grid_one .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_one .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_one .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_one .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two_third .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_four .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options { margin-top: 0px !important; position: relative !important; } .fusion_full_width .grid_five .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options { margin-top: 0px !important; position: relative !important; } .fusion_full_width .grid_six .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .ui-droppable .handler .fusion-builder-element { margin-top: 11px; position: absolute; right: 0; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .edit-element { background: #fff; border: none; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .clone-element { background: #fff; border: none; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .delete-element { background: #fff; border-left: 1px solid #fff; } .fusion_layout_column .sortable-element .textblock_element { border: 1px solid #e4e4e4 !important; /*min-height:75px !important;*/ } .fusion_element_box .handler { border: none !important; position: absolute; right: 0; margin-top: 0px; } .grid_one .fusion_element_box .handler { border: none !important; position: absolute; right: 0; margin-top: 11px; } .fusion_element_box .handler .edit-element { background: #fff !important; border: none !important; border-bottom: 1px solid #fff !important; } .fusion_element_box .handler .clone-element { background: #fff !important; border: none !important; border-bottom: 1px solid #fff !important; } .fusion_element_box .handler .delete-element { background: #fff !important; border-left: 1px solid #fff !important; border-bottom: 1px solid #fff !important; } .bilder_icon_container { width: 100%; text-align: center; clear: both; float: left; /*margin:-20px 0 0 0;*/ margin: 0 0 0 0; } .grid_two .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three_fourth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_two_third .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three_fifth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_two_fifth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_four .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_five .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_six .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_four_fifth .fusion_element_box .handler { position: absolute; right: 0; display: none; margin-top: 11px !important; } .fusion_element_box:hover .handler { display: block; } .fusion_element_box .handler { display: none; } .grid_four_fifth .fusion_iconbox_icon { padding: 10px 0 12px 0 !important; } .fusion_full_width .editable-element .fusion_element_box .handler { margin-top: 2px !important; } .grid_five_sixth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_five_sixth .fusion_iconbox_icon { padding: 10px 0 12px 0 !important; } @media only screen and (max-width: 8000px) and (min-width: 1500px) { .grid_five .fusion_iconbox { min-height: 55px !important; } } @media only screen and (max-width: 8000px) and (min-width: 1800px) { .grid_three .fusion_iconbox { min-height: 38px !important; } .grid_three .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_six .fusion_element_box .handler .edit-element { margin-left: 0 !important; } .grid_six .fusion_iconbox { min-height: 43px !important; } } @media only screen and (max-width: 8000px) and (min-width: 2000px) { .grid_four .fusion_iconbox { min-height: 38px !important; } .grid_four .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } } @media only screen and (max-width: 8000px) and (min-width: 2200px) { .grid_five .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_five .fusion_iconbox { min-height: 44px !important; } } .fusion_element_box .handler, .fusion_layout_column .fusion_element_box .handler { margin-top: 0px !important; margin-right: 0px !important; width: auto !important; top: 1px !important; right: 1px !important; border-bottom: none !important; } .fusion_element_box .fusion-columns-options { width: auto !important; height: auto !important; border-top: 0px !important; } .fusion_element_box .menu-item-handle .edit-element, .fusion_element_box .menu-item-handle .clone-element, .fusion_element_box .menu-item-handle .delete-element { font-size: 11px !important; line-height: 20px !important; width: 20px !important; height: 20px !important; position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; float: left; border-left: 1px solid #ddddde !important; border-bottom: 0 !important; } .fusion_element_box .menu-item-handle .edit-element i, .fusion_element_box .menu-item-handle .clone-element i, .fusion_element_box .menu-item-handle .delete-element i { line-height: 20px; } .fusion_element_box .handler, .fusion_layout_column .fusion_element_box .handler, .fusion_full_width .ui-droppable .fusion_element_box .handler { margin-top: 0px !important; margin-right: 0px !important; width: auto !important; top: 0px !important; right: 0px !important; border-bottom: 1px solid #ddddde !important; } .fusion_layout_column .fusion_element_box .handler, .fusion_full_width .ui-droppable .fusion_element_box .handler { top: 1px !important; right: 1px !important; } .fusion_element_box .fusion-columns-options { width: auto !important; height: auto !important; } .fusion_element_box .menu-item-handle .edit-element, .fusion_element_box .menu-item-handle .clone-element, .fusion_element_box .menu-item-handle .delete-element { font-size: 11px !important; line-height: 20px !important; width: 20px !important; height: 20px !important; position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; float: left; } .fusion_layout_column .menu-item-handle .edit-element, .fusion_layout_column .menu-item-handle .clone-element, .fusion_layout_column .menu-item-handle .delete-element { font-size: 14px; line-height: 26px; } .fusion_full_width .ui-droppable .handler .fusion-builder-element { margin-top: 0 !important; position: relative !important; } .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .edit-element, .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .clone-element, .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .delete-element { background: #fff !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion_element_box .handler { background: none !important; } .fusion_full_width .grid_five .fusion_element_box .fusion-builder-element { background: none !important; } .fusion_full_width .grid_six .fusion_element_box .handler { background: none !important; } .fusion_full_width .grid_six .fusion_element_box .fusion-builder-element { background: none !important; width: 70px !important; } .fusion_full_width .fusion_element_box { width: 97.9% !important; } .fusion_full_width .grid_three_fourth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_two .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_two_fifth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_three .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_four .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_five_sixth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_four_fifth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion-expand-child { color: #008FC5 !important; text-decoration: none !important; font-size: 15px !important; outline: none !important; display: block; } .fusion-expand-child:hover, .fusion-expand-child:active, .fusion-expand-child:focus { outline: none !important; } #dialog_form .child-clone-row { padding-top: 1%; padding-bottom: 1%; } #dialog_form .child-clone-row td { padding-top: 0; } .fusionb-add-shortcode { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; text-align: center; text-decoration: none; } .fusionb-add-shortcode:hover { background: #fbf9f9; } .fusionb-add-shortcode { width: 175px; margin-top: 10px; display: block; } .fusion_iconbox_icon small img { max-width: 220px !important; width: auto !important; height: auto !important; display: block; margin-left: auto; margin-right: auto; } #ddbuilder #tabs .ui-tabs-anchor { text-shadow: none; font-size: 12px; text-decoration: none; /*width: 159px;*/ text-align: center; padding: 9px 0 !important; } #ddbuilder #tabs .ui-tabs-anchor .fusion-tab { margin-right: 5px; } /*CSS for preview elements*/ #fusion_seprator .icon { width: 25px; height: 25px; position: absolute; left: 50%; text-align: center; right: 0; float: none; margin: -13px 0 0 -13px; border-radius: 100%; background: #fff; border: 1px solid #E0DEDE; color: #E0DEDE; font-size: 14px; line-height: 25px; } #fusion_seprator .separator { position: relative; } #fusion_seprator .single { width: 90%; height: 1px; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; background: #E0DEDE; } #fusion_seprator .double { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px solid #E0DEDE; border-bottom: 1px solid #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double .icon { margin-top: -12px; } #fusion_seprator .single_dashed { width: 90%; height: 0; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; border-top: 1px dashed #E0DEDE; } #fusion_seprator .double_dashed { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px dashed #E0DEDE; border-bottom: 1px dashed #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double_dashed .icon { margin-top: -12px; } #fusion_seprator .single_dotted { width: 90%; height: 0; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; border-top: 1px dotted #E0DEDE; } #fusion_seprator .double_dotted { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px dotted #E0DEDE; border-bottom: 1px dotted #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double_dotted .icon { margin-top: -12px; } #fusion_seprator .shadow { width: 90%; height: 2px; text-align: center; margin: 0 auto; /*margin-top:25px;*/ background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.5) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba(0, 0, 0, 0); } #fusion_seprator .shadow.icon { margin-top: -15px; } #fusion_button .button { border: none; text-transform: uppercase; color: #fff; line-height: normal; height: auto; font-weight: bold; font-size: 14px; box-shadow: none; padding: 8px 20px; border-radius: 0; } .fusion_iconbox_icon p { margin: 4px 0 0 0; font-size: 12px; float: left; width: 100%; } #fusion_client_slider ul, #fusion_image_carousel ul, #fusion_slider ul { list-style: none; padding: 0; margin: -18px 0 0 0; float: left; width: 100%; } #fusion_client_slider ul li, #fusion_image_carousel ul li, #fusion_slider ul li { display: inline-block; width: 60px; vertical-align: text-bottom; line-height: 40px; margin: 0 2px 0 2px; } #fusion_client_slider ul li img, #fusion_image_carousel ul li img, #fusion_slider ul li img { width: 100%; float: left; height: 40px; margin-top: 25px; border: 1px solid #e4e4e4; } #fusion_image_frame .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_image_frame .img_frame_section img { width: 100%; float: left; height: auto; margin-top: 10px; margin-bottom: 2px; border: 1px solid #e4e4e4; } #fusion_image_frame .img_frame_gallery { clear: both; padding-top: 5px; font-size: 12px; } #fusion_person .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_person .img_frame_section img { float: left; height: 100%; width: 100%; margin-top: 10px; margin-bottom: 2px; border: 1px solid #e4e4e4; } #fusion_tabs ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } #fusion_ckecklist ul { margin: 10px 0 0 0; padding: 0; font-size: 12px; } #fusion_ckecklist ul li i { font-size: 14px; vertical-align: sub; } #fusion_ckecklist ul li { margin: 0; line-height: 25px; } .select_arrow { width: 36px; height: 94.5%; position: absolute; right: 0; margin-top: 1px; margin-right: -1px; pointer-events: none; border-right: 1px solid #d9d9d9; background: url(../images/icons/select_bg3.jpg) no-repeat; } #fusion_font_awesome h3 { width: 40px; height: 40px; background: #666; border-radius: 100%; margin: 0 auto; margin-top: 10px; padding: 0px !important; color: #fff; text-align: center; } #fusion_font_awesome h3 i { margin: 0; line-height: 40px; } .element-type { position: relative; } #fusion_button .default { background: #96C346; } #fusion_button .default:hover { opacity: 0.8; } #fusion_button .custom { background: #008EC5; } #fusion_button .custom:hover { opacity: 0.8; } #fusion_button .blue { background: #b1dff7; /* Old browsers */ background: -moz-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b1dff7), color-stop(100%, #7bc9f3)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* IE10+ */ background: linear-gradient(to bottom, #b1dff7 0%, #7bc9f3 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b1dff7', endColorstr='#7bc9f3', GradientType=0); /* IE6-9 */ border: 1px solid #1172c1; color: #1172c1; text-shadow: 0 1px 0 #fff; } #fusion_button .blue:hover { background: #7bc9f3; /* Old browsers */ background: -moz-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7bc9f3), color-stop(100%, #b1dff7)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* IE10+ */ background: linear-gradient(to bottom, #7bc9f3 0%, #b1dff7 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7bc9f3', endColorstr='#b1dff7', GradientType=0); /* IE6-9 */ } #fusion_button .green { background: #cfe88d; /* Old browsers */ background: -moz-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfe88d), color-stop(100%, #aed961)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* IE10+ */ background: linear-gradient(to bottom, #cfe88d 0%, #aed961 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfe88d', endColorstr='#aed961', GradientType=0); /* IE6-9 */ border: 1px solid #9dba60; color: #54770f; text-shadow: 0 1px 0 #fff; } #fusion_button .green:hover { background: #aed961; /* Old browsers */ background: -moz-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #aed961), color-stop(100%, #cfe88d)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* IE10+ */ background: linear-gradient(to bottom, #aed961 0%, #cfe88d 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aed961', endColorstr='#cfe88d', GradientType=0); /* IE6-9 */ } #fusion_button .red { background: #fd9999; /* Old browsers */ background: -moz-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd9999), color-stop(100%, #fd8282)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd9999 0%, #fd8282 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9999', endColorstr='#fd8282', GradientType=0); /* IE6-9 */ border: 1px solid #9d1111; color: #9d1111; text-shadow: 0 1px 0 #fff; } #fusion_button .red:hover { background: #fd8282; /* Old browsers */ background: -moz-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd8282), color-stop(100%, #fd9999)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd8282 0%, #fd9999 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd8282', endColorstr='#fd9999', GradientType=0); /* IE6-9 */ } #fusion_button .pink { background: #fd9fd5; /* Old browsers */ background: -moz-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd9fd5), color-stop(100%, #fc86ca)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd9fd5 0%, #fc86ca 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9fd5', endColorstr='#fc86ca', GradientType=0); /* IE6-9 */ border: 1px solid #a31366; color: #a31366; text-shadow: 0 1px 0 #fff; } #fusion_button .pink:hover { background: #fc86ca; /* Old browsers */ background: -moz-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc86ca), color-stop(100%, #fd9fd5)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* IE10+ */ background: linear-gradient(to bottom, #fc86ca 0%, #fd9fd5 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc86ca', endColorstr='#fd9fd5', GradientType=0); /* IE6-9 */ } #fusion_button .darkgray { background: #bbbbbb; /* Old browsers */ background: -moz-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbbbbb), color-stop(100%, #a3a3a3)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* IE10+ */ background: linear-gradient(to bottom, #bbbbbb 0%, #a3a3a3 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#a3a3a3', GradientType=0); /* IE6-9 */ border: 1px solid #434c50; color: #434c50; text-shadow: 0 1px 0 #fff; } #fusion_button .darkgray:hover { background: #a3a3a3; /* Old browsers */ background: -moz-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a3a3a3), color-stop(100%, #bbbbbb)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* IE10+ */ background: linear-gradient(to bottom, #a3a3a3 0%, #bbbbbb 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a3a3a3', endColorstr='#bbbbbb', GradientType=0); /* IE6-9 */ } #fusion_button .lightgray { background: #fbfbfb; /* Old browsers */ background: -moz-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbfbfb), color-stop(100%, #f2f2f2)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* IE10+ */ background: linear-gradient(to bottom, #fbfbfb 0%, #f2f2f2 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#f2f2f2', GradientType=0); /* IE6-9 */ border: 1px solid #ababab; color: #ababab; text-shadow: 0 1px 0 #fff; } #fusion_button .lightgray:hover { background: #f2f2f2; /* Old browsers */ background: -moz-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #fbfbfb)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* IE10+ */ background: linear-gradient(to bottom, #f2f2f2 0%, #fbfbfb 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fbfbfb', GradientType=0); /* IE6-9 */ } #fusion_button .darkgreen { background: #cfe0a4; /* Old browsers */ background: -moz-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfe0a4), color-stop(100%, #9dba60)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* IE10+ */ background: linear-gradient(to bottom, #cfe0a4 0%, #9dba60 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfe0a4', endColorstr='#9dba60', GradientType=0); /* IE6-9 */ border: 1px solid #9dba60; color: #54770f; text-shadow: 0 1px 0 #fff; } #fusion_button .darkgreen:hover { background: #9dba60; /* Old browsers */ background: -moz-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dba60), color-stop(100%, #cfe0a4)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* IE10+ */ background: linear-gradient(to bottom, #9dba60 0%, #cfe0a4 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dba60', endColorstr='#cfe0a4', GradientType=0); /* IE6-9 */ } #fusion_button .orange { background: #fbda82; /* Old browsers */ background: -moz-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbda82), color-stop(100%, #f8c057)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* IE10+ */ background: linear-gradient(to bottom, #fbda82 0%, #f8c057 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbda82', endColorstr='#f8c057', GradientType=0); /* IE6-9 */ border: 1px solid #c0830b; color: #c0830b; text-shadow: 0 1px 0 #fff; } #fusion_button .orange:hover { background: #f8c057; /* Old browsers */ background: -moz-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8c057), color-stop(100%, #fbda82)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* IE10+ */ background: linear-gradient(to bottom, #f8c057 0%, #fbda82 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8c057', endColorstr='#fbda82', GradientType=0); /* IE6-9 */ } #fusion_toggles ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } #fusion_toggles ul li i { font-size: 14px; vertical-align: sub; } #fusion_table ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } sub.title_text { font-size: 15px !important; } .wp-picker-container input.iris-error[type="text"] { background-color: #fff; border: 1px solid #ddd; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset; color: #333; transition: border-color 0.05s ease-in-out 0s; } .none i { margin: 0; } .single_dashed i { margin-bottom: 20px; } #fusian_title section > div { position: absolute; left: 10%; margin-top: 15px !important; } #fusian_title .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .align_center { position: relative; float: none !important; background: #fff; padding: 0 10px !important; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .none { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; } #fusian_title .single { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-top: 1px solid #e4e4e4; } #fusian_title .single_solid { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-top: 1px solid #e4e4e4; } #fusian_title .single_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; } #fusian_title .single_dashed { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-bottom: 1px dashed #e4e4e4; } #fusian_title .single_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -13px 0 0 0; } #fusian_title .single_dotted { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-bottom: 1px dotted #e4e4e4; } #fusian_title .single_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -13px 0 0 0; } #fusian_title .double { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; } #fusian_title .double sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_solid { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; } #fusian_title .double_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_dashed { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px dashed #e4e4e4; border-bottom: 1px dashed #e4e4e4; } #fusian_title .double_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_dotted { width: 80%; margin: 0 auto; margin-top: 6px; height: 5px; border-top: 1px dotted #e4e4e4; border-bottom: 1px dotted #e4e4e4; } #fusian_title .double_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline { width: 80%; margin: 0 auto; margin-top: 6px; height: 11px; border-bottom: 1px solid #e4e4e4; } #fusian_title .underline sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_solid { width: 80%; margin: 0 auto; margin-top: 6px; height: 11px; border-bottom: 1px solid #e4e4e4; } #fusian_title .underline_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_dashed { width: 80%; margin: 0 auto; height: 11px; margin-top: 6px; border-bottom: 1px dashed #e4e4e4; } #fusian_title .underline_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_dotted { width: 80%; margin: 0 auto; height: 11px; margin-top: 6px; border-bottom: 1px dotted #e4e4e4; } #fusian_title .underline_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .single .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } .text-block-icon { display: block; width: 100%; margin-bottom: 5px; } #fusion_seprator.fusion_iconbox .fusion_iconbox_icon section { margin-top: 6px; margin-bottom: 6px; } .ui-front .mce-edit-area { overflow-y: auto; } /* .ui-front .wp-editor-area { height: 300px !important; } */ a:focus { box-shadow: none !important; } .remove-image { float: left; margin-right: 5px; position: static; } .fusionb-edit-button { float: left; position: static; } #post-body #normal-sortables { min-height: 0; } /* Post System Status */ .avada-importer-issue, .avada-importer-current-value, .avada-importer-recommended-value, .avada-importer-fix { width: 25%; display: inline-block; } /* RTL */ .rtl .ui-dialog .ui-dialog-title { float: right; } .rtl #ui-id-1, .rtl .ui-dialog-title { margin-left: 0 !important; margin-right: 20px !important; } .rtl .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { left: 10px !important; right: auto !important; } .rtl .name-description { float: right !important; } .rtl .element-type { float: left !important; } .rtl .element-type select { background: url("../images/icons/select_bg3.jpg") no-repeat scroll left center, url("../images/icons/select_bg4.jpg") repeat-x scroll 0 0 rgba(0, 0, 0, 0); border-right: 1px solid #d9d9d9 !important } .rtl .select_arrow { left: 0; right: auto; margin-left: -1px; margin-right: 0; } /*.rtl .chosen-container .chosen-drop { left: auto; right: -9999px; }*/ .rtl .chosen-container-multi .chosen-choices li { float: right; margin-left: 0; margin-right: 5px; } .rtl #dialog_form .wp-color-result { float: right; padding: 0 !important; } .rtl #dialog_form .wp-picker-input-wrap { float: left; } .rtl .icon_preview { float: right; } .rtl .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset { text-align: left; }
web/app/plugins/fusion-core/admin/page-builder/assets/css/application.css
position:inherit; }*/ .default-editor-hide { display: none; } .fusion-page-builder-hide { display: none !important } .fusion-builder-pagecontent { display: none !important; } img[src=""] { display: none; } #fusion_light_box .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_light_box .img_frame_section img { width: 100%; float: left; border: 1px solid #e4e4e4; margin-top: 10px; height: 100%; margin-bottom: 2px; } .video_type { font-size: 12px; border: 1px solid #e4e4e4; margin: 25px 0 0 0; } #nav { border: 1px solid #ccc; border-width: 1px 0; list-style: none; margin: 0; padding: 0; text-align: center; } #nav li { display: inline; } #nav a { display: inline-block; padding: 10px; } #tabs { float: left; background: #fff !important; width: 100%; } .pre_element_block { height: 53px; width: 63px; border: 1px solid #e1e1e1; padding: 0px 6px 10px 0px; background: #fff; text-align: center; text-decoration: none; float: left; margin: 0px 3px 3px 0; } .element_block { height: 50px; width: 66px; border: 1px solid #e1e1e1; padding: 4px 2px 10px 2px; background: #fff; text-align: center; text-decoration: none; font-size: 11px; display: block; overflow: hidden; outline: none; line-height: 13px; float: left; position: relative; color: #777; } .element_block span { position: absolute; width: 88%; left: 6%; bottom: 4px; background: rgba(255, 255, 255, 0.7); padding-top: 1px; } .element_block:hover { border: 1px solid #aaa; } .element_block:active { outline: none; border: 1px solid #D54E21; } .element_block:hover img, .element_block:active img { opacity: 1.0; } .element_block img { display: block; margin: 6px auto 5px auto; position: relative; opacity: 0.8; } #paletteContainer { background: white; padding: 0 0 2px 0 !important; border: 1px solid #E1E1E1; float: left; position: relative; width: 99.3% !important; left: 0; top: 9px; } #editor { width: 98.3% !important; min-height: 200px; background: white; padding: 20px 0 20px 1%; border: 1px solid #E1E1E1; float: left; position: relative; margin-bottom: 10px; top: 9px; } #controls { background: white; padding: 15px 11px; border-bottom: 10px solid #E1E1E1; float: left; position: relative; width: 100%; left: -11px; top: 10px; } .menu-item-handle { cursor: move; width: auto; position: relative; z-index: 10; opacity: 1; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; background: #f1f1f1; } .item-wrapper { position: relative; color: #555; background-color: #fff; } .drag-handle { position: absolute; border: 3px solid transparent; left: 0; right: 0; top: 0; bottom: 0; display: none; } .item-container { position: relative; } .drop-container .item-container { cursor: default; } .item-wrapper.mx-state-moving { background-color: #fcefa1; color: #000; margin: 0; } .drag-container .item-wrapper.mx-content-hover { background-color: #cce0ff; color: #000; } .drop-container.mx-content-hover { background-color: #ccff99; } .sort-container .drag-handle.mx-content-hover { border-color: #cce0ff; } .sort-container .item-wrapper.mx-content-hover { color: #000; } .fusion_layout_column:hover a, .sortable-element:hover a { opacity: 1; } .fusion_layout_column:hover, .sortable-element:hover { z-index: 20; } .sortable-element { width: 97.2%; margin: 1%; position: relative; color: #666; display: inline-block; } .sortable-element .fusion-columns-options { width: 109px !important; } @media all and (max-width: 3000px) and (min-width: 2000px) { .sortable-element .fusion-columns-options { width: 111px !important; } } .fusion-first-col { clear: left; } .innerElement .sortable-element, .innerElement { border: none !important; } .sortable-element .handler { float: left; background: rgba(0, 0, 0, 0.3); border: none; box-shadow: none; } .sortable-element:hover .handler { opacity: 1; z-index: 10; } .fusion_layout_column:hover, .sortable-element:hover { z-index: 20; } /*textblock*/ .sortable-element .textblock_element { padding: 7px 10px; background: none; border: none !important; } .textblock_element { border: 1px solid red !important; } .fusion_element_box { border: 1px solid #e4e4e4 !important; margin: 0 !important; } .innerElement .sortable-element, .innerElement { margin: 0 0 15px 0.4% !important; } .fusion_element_box .innerElement { margin: 0 !important; } .sortable-element .handler { margin-bottom: 0 !important; border-top: none !important; } .sortable-element .textblock_element:hover { border: 1px solid #e1e1e1; cursor: pointer; } .fusion_layout_column .sortable-element .textblock_element { padding: 7px 10px; background: #fff; } .menu-item-handle .edit-element { height: 24px; width: 24px; background: #f1f1f1 !important; overflow: hidden; text-align: center; text-decoration: none; opacity: 0; float: left; } .menu-item-handle .edit-element:hover { background: transparent url(../images/icons/icon-edit.png) top center no-repeat; } .menu-item-handle .clone-element { height: 24px; width: 24px; background: #F1F1F1; color: #7b7b7b; text-align: center; font-size: 16px; text-decoration: none; line-height: 31px; overflow: hidden; opacity: 0; } .menu-item-handle .clone-element:hover { background: #fff; background-size: 18px; color: #9A9A9A; border-bottom: 1px solid #e4e4e4 !important !important; } .fusion_layout_column:hover > .menu-item-handle .clone-element { opacity: 0.6; } .editable-element { cursor: pointer; } .delete-element { height: 24px; width: 24px; background: #F1F1F1; font-size: 16px; text-align: center; line-height: 31px; text-decoration: none; color: #7b7b7b; overflow: hidden; opacity: 0; } .delete-element:hover { background: #fff; color: #9A9A9A; } .fusion_layout_column a:active { outline: none; opacity: 0.3; } .fusion_layout_column { margin: 1%; /* float: left;*/ position: relative; } .fusion_layout_column > .innerElement { background: #FFF !important; min-height: 33px; margin-bottom: 0 !important; border: 1px dashed #E1E1E1; /*padding:28px 10px 1px 15px;*/ padding: 19px 8px 10px 16px; position: relative; } .fusion_layout_column > .fusion-hover-active { border: 1px dashed #1075a0; background: #f3f8fa !important; opacity: 0.5; } .handler { width: auto; position: relative; z-index: 10; opacity: 1; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } .grid_one { width: 97.2% !important; } .grid_five_sixth { width: 80.6%; } .grid_three_fourth { width: 72.5%; } .grid_two_third { width: 64.4%; } .grid_seven { width: 56.5%; } .grid_two { width: 47.7%; } .grid_five { width: 18.02%; } .grid_three { width: 31.2%; } .grid_four { width: 22.97%; } .grid_six { width: 14.72%; } .grid_two_fifth { width: 37.8%; } .grid_three_fifth { width: 57.5%; } .grid_four_fifth { width: 77.4%; } @-moz-document url-prefix() { .grid_two { width: 47.75%; } .grid_three { width: 31.2%; } .grid_four { width: 23%; } .grid_five { width: 18.05%; } .grid_six { width: 14.75%; } } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { width: 126px; } .name-description > strong { font-size: 16px; margin-bottom: 9px; } .clearfix:after { content: '.'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; clear: both; } .form-element-container { padding: 32px 0px 32px 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border-bottom: 1px dashed #e1e1e1; position: relative; background: #fff; clear: both; } .element-type .checkbox-field, .element-type .textarea-field, .element-type .select-field, .element-type .radio-field, .element-type .text-field { font-size: small; border-radius: 0px !important; } .form-element-container-html_editor .name-description { margin-bottom: 20px; } .form-element-container-html_editor .name-description, .form-element-container-html_editor .element-type { width: 100%; float: none; } body.noscroll { overflow: hidden; } .name-description > strong { display: block; font-size: small; } .name-description > span { display: block; color: #939292; font-size: 14px; font-style: italic; line-height: 21px; } .fusion_iconbox { overflow: hidden; } .fusion_iconbox .fusion_iconbox_content_wrap { overflow: hidden; } .fusion_iconbox .fusion_iconbox_content_wrap p { margin: 1em 0 0 0; } .fusion_iconbox .fusion-position-top { padding-top: 50px; } .fusion_iconbox .fusion-position-top .fusion_iconbox_icon { position: absolute; left: 50%; margin-left: -1em; top: 10px; } .fusion_iconbox .fusion_iconbox_title { margin: 2px 0 -8px 0; font-size: 20px; font-weight: normal; position: relative; line-height: 1.1em; } .fusion_iconbox .fusion-position-top { text-align: center; } .fusion_iconbox .fusion_iconbox_content_wrap li { text-align: left; } /*Icon Selector*/ .icon_select_container { height: 263px; overflow: auto; width: 100%; border: 1px solid #AAA; overflow-x: hidden; } .icon_preview { position: relative; font-size: 14px; line-height: 32px; width: 32px; color: #494949; background: #fff; display: block; text-align: center; float: left; border: 1px solid #e1e1e1; margin-left: -1px; margin-top: -1px; transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; /* Firefox 4 */ -webkit-transition: all 0.1s ease-out; /* Safari and Chrome */ -o-transition: all 0.1s ease-out; /* Opera */ cursor: pointer; } .icon_preview:hover { color: #278AB7; z-index: 3; -webkit-transform: scale(1.3); -moz-transform: scale(1.3); -o-transform: scale(1.3); transform: scale(1.3); } .icon_select_container .selected-element:hover, .icon_select_container .selected-element { color: #D54E21; } /*drag and drop system*/ body .fusion-dragging-element { width: 240px; background: #fff !important; } body .fusion-dragging-element .innerElement { background-color: #fff; border: 1px solid #e1e1e1; overflow: hidden; } body .fusion-dragging-element .innerElement > div, body .fusion-dragging-element .innerElement img { visibility: hidden; } .fusion-dragging-element > .menu-item-handle { opacity: 1; z-index: 10; } /*---new code to fix design---*/ #ddbuilder .fusion-hover-active { border: 1px dashed #1075a0; background: #f3f8fa; } .fusion_iconbox_icon .icon-expand-alt { font-size: 32px !important; } /*drag drop highlight of single elements*/ .select-target-1 .drag-element[data-drop_level="0"], .select-target-2 .drag-element[data-drop_level="1"], .select-target-3 .drag-element[data-drop_level="2"], .select-target-3 .drag-element[data-drop_level="1"], .select-target-4 .drag-element[data-drop_level="3"], .select-target-4 .drag-element[data-drop_level="2"], .select-target-4 .drag-element[data-drop_level="1"] { border: 1px dashed #4D9EDD; } /*--wwww--*/ /*---new code to fix design end---*/ .menu-item-handle .decrease-width { background: transparent url(../images/icons/icon-shrink.png) top left no-repeat; opacity: 1 !important; } .menu-item-handle .increase-width { background: transparent url(../images/icons/icon-grow.png) top left no-repeat; opacity: 1 !important; } .menu-item-handle .clone-element { opacity: 1 !important; } .delete-element { opacity: 1 !important; } .menu-item-handle .edit-element { opacity: 1 !important; } .menu-item-handle .change-width { height: 24px; width: 24px; float: left; display: block; overflow: hidden; position: relative; left: 20px; opacity: 0; text-align: center; line-height: 26px; text-decoration: none; color: #fff; } .menu-item-handle .change-width i { -webkit-font-smoothing: subpixel-antialiased; } .menu-item-handle .change-width:hover { background-position-y: bottom; } #ddbuilder .ui-tabs-nav { background: #f1f1f1 !important; padding: 15px !important; border-bottom: 1px solid #e4e4e4 !important; border-radius: 0 !important; } #ddbuilder .tabs_name { border: 1px solid #c6c4c4 !important; border-radius: 0; padding-bottom: 0 !important; margin: 0 15px 0 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav { border-bottom: 1px solid #dfdede !important; } #delete_section { width: 110px; float: right; margin: 25px 0 0 0; } #del_icon { width: 11px; height: 13px; float: left; font-size: 16px; margin: 13px 0 0 0; color: #7B7B7B !important; text-decoration: none; } #save_icon { width: 11px; height: 13px; float: left; font-size: 16px; margin: 13px 7px 0 0; color: #009933 !important; } #del_icon:hover { opacity: 0.7; } #both_icon { width: 57px; height: 32px; float: left; padding: 0 0 0 10px; margin: 5px 0 0 10px; border-left: 1px solid #c6c4c4; } .b_left { width: 16px; height: 14px; float: left; font-size: 16px; margin: 9px 8px 0 0; border: none; color: #7B7B7B !important; text-decoration: none; } .b_left:hover { opacity: 0.7; } .b_right { width: 16px; height: 14px; float: left; border: none; font-size: 16px; color: #7B7B7B !important; margin: 9px 0 0 0; text-decoration: none; } .b_right:hover { opacity: 0.7; } .element_block { border-radius: 0; border: 1px solid #e7e7e7 !important; } .element_block:hover { background: #f7f7f7 !important; opacity: 1.0; border: 1px solid #e7e7e7 !important; } .pre_element_block { border: none !important; opacity: 0.8 !important; margin: 4.8px !important; } .pre_element_block:hover { opacity: 1 !important; } .menu-item-handle .decrease-width { width: 29px; height: 26px; margin-left: -20px; background: #d3d1d1; } .menu-item-handle .decrease-width:hover { background: #dbdada; } .menu-item-handle .increase-width:hover { background: #cccbcb; } .menu-item-handle .increase-width { width: 29px; height: 26px; background: #bcbcbc; } .sortable-element .handler { border-bottom: 1px solid #ddddde; float: left; background: #f1f1f1 !important; } .delete-element { width: 35px !important; height: 26px !important; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; margin: 0; float: right; } .menu-item-handle .clone-element { width: 36px; height: 26px !important; position: absolute !important; margin: 0 auto !important; left: 0; right: 0; top: 0; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; background-position: top center !important; } /*.grid_three .menu-item-handle .clone-element{ width:38px; }*/ .menu-item-handle .clone-element:hover { background-color: #fff; background-position: top center !important; } .menu-item-handle .edit-element { width: 38px !important; height: 26px !important; right: 78px !important; left: auto !important; line-height: 31px; color: #7b7b7b; border-left: 1px solid #ddddde; border-bottom: 1px solid #ddddde; } .menu-item-handle .edit-element:hover { background: #fff !important; color: #9A9A9A; } .fusion_layout_column > .innerElement { clear: both; background: none; } .fusion_layout_column { background: none !important; } .innerElement .sortable-element, .innerElement { background: none; display: block; } .sortable-element { background: none !important; display: inline-block; margin-left: 0; margin: 0.7% !important; } .tab_image { float: left; margin: 2px 10px 0 0; } .pop-up-element { /*width:116px !important;*/ border-right: none !important; float: right !important; background: none !important; } .droppable-area .pop-up-element { margin-top: 1px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { float: left; cursor: pointer; background: url(../images/icons/list_button.png) no-repeat top center !important; color: #fff !important; border-radius: 0; margin-right: 0px; height: 63px; width: 100%; padding-bottom: 45px; margin-bottom: 0px !important; -webkit-transition: color .15s linear .1s; transition: color .15s linear .1s; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover { color: #fff !important; height: 63px; border-bottom: 1px solid #ffffff !important; background: url(../images/icons/list_button.png) no-repeat top center !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a:hover { background: #f7f7f7 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { float: left; height: 34px !important; width: 159px; margin-left: 0 !important; margin-right: 10px !important; border-bottom: 1px solid #c2c0c0 !important; margin-bottom: 12px !important; text-align: center !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-disabled a, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-processing a { border: 1px solid #278FC1 !important; } .sortable-element .handler { width: 100%; } .sortable-element { margin: 0.8% !important; border: 1px solid #e4e4e4; vertical-align: text-top; } .element_block span { background: none !important; } .grid_width { color: #797979; font-size: 12px; float: left; height: 21px; margin: 5px 0 0 30px; } .toggle_section { display: none; } .fusion_countdown_timer { margin-top: 10px; } .fusion_countdown_timer > span { display: inline-block; margin-right: 10px; padding: 8px; background-color: #333; color: #fff; } .fusion_countdown_timer > span > span { padding-right: 5px; } .fusion-login-box, .fusion_widget_name { margin-top: 10px; font-size: 12px; } /*! * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ #poststuff h2.section_heading, .wrap .section_heading { width: 97.1%; float: left; font-family: Arial, Helvetica, sans-serif; margin: 20px 0 0 0; font-weight: normal; padding: 9px 1.1%; border: 1px solid #e5e5e5; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; cursor: pointer; } .fusion-toggler-wrapper { display: inline; position: absolute; right: 20px; } .fusion-toggler { height: 13px !important; color: #AAAAAA; font-size: 14px; margin: 0; vertical-align: bottom; } .fa-sort-desc { vertical-align: top; } .hading_potion:focus { outline: 0 !important; } #post-body-content { position: relative; } .fusion-icon { text-align: center; width: 40px; height: 40px; float: left; margin-left: 13px; } .fusion-icon-grid-1 { background: url(../images/icons/sc-one.png) no-repeat top center; } .fusion-icon-grid-2 { background: url(../images/icons/sc-two.png) no-repeat top center; } .fusion-icon-grid-5 { background: url(../images/icons/sc-five.png) no-repeat top center; } .fusion-icon-grid-4 { background: url(../images/icons/sc-four.png) no-repeat top center; } .fusion-icon-grid-3 { background: url(../images/icons/sc-three.png) no-repeat top center; } .fusion-icon-grid-5 { background: url(../images/icons/sc-five.png) no-repeat top center; } .fusion-icon-grid-6 { background: url(../images/icons/sc-six.png) no-repeat top center; } .fusion-icon-grid-5-6 { background: url(../images/icons/five-sixth.png) no-repeat top center; } .fusion-icon-grid-3-4 { background: url(../images/icons/sc-three-forth.png) no-repeat top center; } .fusion-icon-grid-2-3 { background: url(../images/icons/sc-two-third.png) no-repeat top center; } .fusion-icon-grid-1 { background: url(../images/icons/sc-one.png) no-repeat top center; } .fusion-icon-grid-2-5 { background: url(../images/icons/two-fifth.png) no-repeat top center; } .fusion-icon-grid-3-5 { background: url(../images/icons/three-fifth.png) no-repeat top center; } .fusion-icon-grid-4-5 { background: url(../images/icons/four-fifth.png) no-repeat top center; } .builder-options-icon { font-size: 18px; margin-top: 10px; } .builder-options-icon:hover { font-size: 18px; } .builder-options-icon.dashicons, .builder-options-icon.dashicons:hover { font-size: 21px; } .fusion_iconbox_icon { width: 100%; float: left; font-size: 14px; padding: 8px 0 8px 0; text-align: center !important; } .sub { font-size: 14px !important; vertical-align: bottom; line-height: 19px; } .fusion_iconbox_icon i { font-size: 20px; margin-right: 7px; vertical-align: middle; } .fusion_iconbox_icon .icon-ellipsis-horizontal { vertical-align: -webkit-baseline-middle !important; } #ddbuilder .ui-corner-all, #ddbuilder .ui-corner-bottom, #ddbuilder .ui-corner-right, #ddbuilder .ui-corner-br { border: none; border-radius: 0 !important; } #ui-id-1, .ui-dialog-title { color: #3D3D3D !important; font: 18px "Open Sans", sans-serif !important; font-weight: normal !important; padding: 5px 0; margin-left: 20px !important; } #ddbuilder #tabs ul { width: auto; padding-top: 25px !important; margin-left: 0 !important; margin-top: 0 !important; font: 18px "Open Sans", sans-serif !important; background: #f1f1f1 !important; } #ddbuilder .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; border-collapse: collapse } #ddbuilder .ui-helper-clearfix:after { clear: both } #ddbuilder .ui-helper-clearfix { min-height: 0 } #ddbuilder .ui-widget-header, .fusionb-dialog-form .ui-widget-header { background-image: none !important; width: 96.5%; margin-top: -2px; margin-left: -2px; border-radius: 0 !important; background: #fcfcfc !important; border-bottom: 1px solid #dfdfdf; } .fusionb-dialog-form { padding: 0; border: 1px solid #fff; z-index: 1002 !important; } .fusionb-dialog-form .TF_ContentBoxes > div:first-child { background-color: #eaf6f9; } .fusionb-dialog-form .ui-widget-header { width: 98.5% !important; padding: 0 0.85%; margin: 0; height: auto; min-height: 40px; line-height: normal; } .ui-widget-overlay { background: #000 !important; opacity: 0.7 !important; position: fixed !important; z-index: 1001 !important; } .fusionb-dialog-form .ui-dialog-titlebar-close { background: none !important; } .form-element-container { border-bottom: none !important; border-bottom: 1px solid #ddd !important; } .name-description { float: left !important; width: 40% !important; } .name-description strong { font-weight: normal !important; margin: 0 !important; font-size: 15px; line-height: 20px; color: #3D3D3D !important; } .child-clone-row .name-description strong { font-size: 14px; padding-bottom: 7px; line-height: normal; } .element-type { width: 57%; float: right !important; } .element-type input[type=text] { padding: 6px 15px; width: 100% !important; font: 12px/20px Arial, Helvetica, sans-serif; } .jqte { border: none !important; margin: 0 !important; border-radius: 0 !important; } .fusionb-dialog-form .ui-dialog-buttonpane { border-top: 1px solid #E7E6E6 !important; } .fusionb-dialog-form .ui-dialog-buttonpane button { background: #2790C2 !important; color: #fff !important; } .fusionb-dialog-form .ui-dialog-buttonpane button:hover { background: #333333 !important; } /* image upload */ .fusion-upload-container { position: relative; min-height: 36px; } .fusionb-upload-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; width: 95px; text-align: center; text-decoration: none; position: absolute; bottom: 0; right: 0; } .fusionb-edit-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; width: 95px; text-align: center; text-decoration: none; position: absolute; bottom: 39px; right: 0; } .fusionb-upload-button:hover { background: #fbf9f9; } .uploaded-image { max-width: 311px; margin-right: 10px; } .fusion-upload-container img[src=""] { display: none; } /* button */ .fusion-shortcodes-button { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #565656 !important; background: #fff; border: 1px solid #c7c5c5; text-align: center; text-decoration: none; } .fusion-shortcodes-button:hover { background: #fbf9f9; } .fusion-shortcodes-button { width: 175px; margin-top: 10px; display: block; } .fusion-gallery-button { padding-left: 10px; padding-right: 10px; } #fusion-child-add { display: block; width: 779px; padding: 0; height: 49px; line-height: 49px; font-size: 21px; text-align: center; padding: 0 !important; border: 1px solid #dadada; text-decoration: none; width: 101%; margin-top: 20px; } .funsion-element-d { background: #F8F6F6 !important; } .child-clone-row { background: #f8f6f6 !important; padding: 2%; float: left; width: 97%; margin-top: 20px; border: solid 1px #d6d6d6; } .has-children { width: 99% !important; padding-left: 26px; padding-right: 26px; } .child-clone-row td { width: 100%; float: left; } .child-clone-row-remove { float: left; padding: 0 0; width: 100% !important; } table.has-children tr > td { padding-top: 10px; } .line_top { width: 100%; float: left; margin: 20px 0 10px 0; border-bottom: 1px solid #D6D6D6; } #fusion-child-add { margin-bottom: 10px; color: #535353; } #fusion-child-add:hover { color: #000; } .funsion-element-child { background: none !important; padding-left: 0 !important; padding-right: 0 !important; } #fusion_loading_section { background: none repeat scroll 0 0 #fafafa; display: block; height: 44.8%; opacity: 0.8; padding: 30% 0 0; position: absolute; text-align: center; top: 77px; width: 99.6%; z-index: 1002; } .loading_img { width: 69px; height: 31px; margin: 0 auto; background: url(../images/icons/ajax-loader.gif) no-repeat top center !important; } .loading_img p { margin: 30px 0 0 0; float: left; } #ddbuilder .ui-tabs .ui-tabs-panel { width: 98%; float: left; padding: 1%; background: #fff !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { background: #fff !important; color: #7B7B7B !important; border-radius: 0; outline: none !important; } #ddbuilder .ui-tabs .ui-tabs-nav li:hover { background: #f7f7f7 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { color: #7B7B7B !important; width: 100%; text-align: center; height: 47%; background: none !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a:hover { background: #F7F7F7 !important; } #dialog_form .wp-picker-container { display: block; position: relative; } #dialog_form .wp-picker-container .button { width: 111px !important; margin-top: 5px !important; height: auto !important; padding: 3px 0 !important; margin-left: 0px !important; } #dialog_form .iris-picker .iris-slider-offset { background: none !important; } #post-body #normal-sortables { width: 99.5%; } .fusionb-dialog-form { top: 60px !important; clear: both; left: 0 !important; right: 0; margin: 0 auto; position: fixed !important; height: 90% !important; width: 62% !important; } .fusionb-dialog-form .ui-dialog-titlebar-close .ui-icon { display: inline-block; font-family: FontAwesome; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-indent: 0; margin-top: -15px; } .fusionb-dialog-form .ui-dialog-titlebar-close .ui-icon:before { content: "\f00d"; } #dialog_form { background: #fff; max-height: inherit !important; min-height: inherit !important; height: calc(100% - 110px) !important; overflow-y: scroll; font: 12px/20px Arial, Helvetica, sans-serif; width: 100% !important; } #dialog_form { padding: 0px; } #dialog_form .wp-picker-holder { clear: both; margin: 0; padding-top: 4px; } #dialog_form .ui-dialog-buttonpane { padding-top: .5em; padding-bottom: .5em; } #dialog_form .note { margin-top: 10px; color: #939292; } .fusion-tabs-menu { height: 30px; margin: 6px 0 0 20px; float: left; clear: both; } .fusion-tabs-menu li { curson: pointer !important; height: 30px; border: 1px solid transparent; line-height: 30px; float: left; margin-right: 10px; margin-top: -1px; } .fusion-tabs-menu li.current { position: relative; background-color: #fff; border-top: 1px solid #d4d4d1; border-right: 1px solid #d4d4d1; border-left: 1px solid #d4d4d1; border-bottom: 1px solid #fff; z-index: 5; } .fusion-tabs-menu li a { padding: 10px; font-size: 13px; text-decoration: none; font-weight: normal; } .fusion-tabs-menu .current a { color: #333; } .fusion-tabs { background-color: #fff; float: left; width: 100%; } .fusion-tabs .form-element-container:first-child { border-top: none !important; } .fusion-tab-content { margin-top: 10px; margin-bottom: 26px; width: 100%; display: none; } .fusion-columns-options { width: 80px !important; height: 26px; float: right; position: relative; background: #F1F1F1; } .grid_five .delete-element { width: 47% !important; } .grid_five .edit-element { width: 100% !important; border-bottom: 1px solid #e4e4e4; } .grid_five .menu-item-handle .clone-element { width: 51% !important; } .grid_five .fusion-builder-element { border-right: none !important; } .grid_five .fusion-builder-element .edit-element { width: 32.7% !important; border-bottom: none !important; } .grid_five .fusion-builder-element .clone-element { width: 33.7% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.7% !important; } .grid_six .fusion-builder-element .edit-element { width: 32.6% !important; border-bottom: none !important; border-right: 1px solid #ddddde; margin-left: -1px; } .grid_six .fusion-builder-element .clone-element { width: 32.6% !important; } .grid_six .fusion-builder-element .delete-element { width: 32.6% !important; } .grid_four .fusion-columns-options { width: 110px !important; } @media only screen and (max-width: 8000px) and (min-width: 1500px) { .grid_five .sortable-element .handler { width: 96%; background: none !important; border-left: none; } .grid_five .fusion-builder-element .edit-element { width: 32.4% !important; border-bottom: none !important; } .grid_five .fusion-builder-element .clone-element { width: 32.4% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.4% !important; } } @media only screen and (max-width: 8000px) and (min-width: 1900px) { .grid_five .fusion-builder-element .edit-element { width: 32.2% !important; } .grid_five .fusion-builder-element .clone-element { width: 32.2% !important; } .grid_five .fusion-builder-element .delete-element { width: 32.2% !important; } .grid_four .fusion-columns-options { width: 110px !important; } } @media only screen and (max-width: 8000px) and (min-width: 2400px) { .menu-item-handle .edit-element { width: 37px !important; } } .fusion-columns-options .grid_five { width: 100% !important; } .grid_one .sortable-element { width: 99.3% !important; } .grid_five_sixth .sortable-element { width: 99% !important; } .grid_two .sortable-element { width: 99% !important; } .grid_two_third .sortable-element { width: 99% !important; } .grid_three_fourth .sortable-element { width: 98.8% !important; } .grid_two_fifth .sortable-element { width: 99% !important; } .grid_three_fifth .sortable-element { width: 99% !important; } .grid_four_fifth .sortable-element { width: 99% !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-disabled a, #ddbuilder .ui-tabs .ui-tabs-nav li.ui-state-processing a { border: 1px solid #278FC1 !important; } .fusion_element_box .handler { width: 112px !important; background: #fff !important; border-bottom: none !important; } .editable-element .fusion_element_box .handler { width: 112px !important; margin-top: 2px !important; margin-right: 3px !important; background: #fff !important; border-bottom: 1px solid #ddddde !important; } .grid_one .editable-element .fusion_element_box .handler { margin-top: 12px !important; } .fusion_full_width .editable-element .fusion_element_box .handler { border-bottom: none !important; } .droppable-area .handler { margin-right: 1px !important; } .grid_six .fusion-builder-element { border-right: none !important; } .fusion_element_box { width: 97.2%; } @media only screen and (max-width: 8000px) and (min-width: 3000px) { .postbox { width: 99.3% !important; } } @media all and (max-width: 1306px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 154px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 114px; } } @media all and (max-width: 1290px) { #ddbuilder .ui-tabs .ui-tabs-nav li { margin-right: 5px !important; } } @media all and (max-width: 769px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 147px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 107px; } #wp-content-editor-tools { padding-top: 0; } #wp-content-media-buttons a { height: auto; line-height: 27px; } #wp-content-media-buttons a span { margin-top: 0 !important; } } /*@media alla nd (mx-awidth: 320px) {*/ /*#wp-content-editor-tools {*/ /*overflow: inherit;*/ /*}*/ /*}*/ .fusionb-dialog-form .ui-dialog-buttonset .ui-button:nth-child(2) { text-shadow: none !important; } .default { height: auto !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:focus { outline: none !important; } .fusionb-dialog-form .ui-dialog-buttonpane { -webkit-box-sizing: border-box; box-sizing: border-box; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; text-align: right; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button { background: #008FC5 !important; color: #fff !important; border: none !important; text-transform: uppercase; font-size: 14px !important; font-family: Arial, Helvetica, sans-serif !important; font-weight: bold !important; padding: 7px 15px !important; height: auto !important; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button:hover { background: #333333 !important; border: none !important; } .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset button:last-child { margin-right: 10px; } #ddbuilder .ui-corner-right { border: 1px solid #cccccc; } .fusionb-dialog-form .ui-buttonset .ui-state-active { background-color: #0074A2 !important; background-image: -moz-linear-gradient(center top, #008EC6, #0074A2) !important; box-shadow: none !important; padding-bottom: 1px !important; } .fusionb-dialog-form .buttonset label span { color: #333333 !important; } .fusionb-dialog-form .buttonset .ui-state-active span { color: #fff !important; margin-top: -1px !important; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { background: none !important; background-image: none !important; border: none !important; height: 20px !important; padding: 1px !important; top: 20px !important; color: #000 !important; right: 10px !important; outline: none; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-button-text { display: none; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close span { position: absolute; top: 0; } .fusionb-dialog-form .ui-dialog-titlebar-close:before { display: none; } @media all and (max-width: 1410px) { #Column_options_div { width: 95% !important; } } @media all and (max-width: 1295px) { #Column_options_div { width: 94% !important; } } @media all and (max-width: 1180px) { #Column_options_div { width: 93% !important; } } @media all and (max-width: 1079px) { #Column_options_div { width: 92% !important; } } @media all and (max-width: 1010px) { #Column_options_div { width: 91% !important; } } #poststuff h2, .metabox-holder h2, #poststuff h3, .metabox-holder h3 { font-weight: normal !important; padding: 9px 1.1% !important; } .switch-options .cb-enable { height: 32px; margin-top: 4px !important; } .fusionb-dialog-form.ui-dialog-buttons .ui-dialog-buttonpane { margin: 0px 0 0 0 !important; border-top: 1px solid #d4d4d1 !important; background: #fcfcfc !important; padding-top: 7px !important; padding-bottom: 7px !important; z-index: 999999; } #ddbuilder a.element_block { color: #9a9a9a; } #ddbuilder a.element_block:hover { color: #7d7d7d; } #element-edit-form .form-element-container { padding-left: 26px; padding-right: 26px; } @media all and (max-width: 1330px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 150px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 151px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; padding: 8px 0 !important; } } @media all and (max-width: 1270px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 130px; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 130px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; font-size: 10px; padding: 8px 0 !important; } } @media all and (max-width: 1190px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 40%; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; height: 18px !important; padding: 0; background: #278FC1 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover { background: #278FC1 !important; height: 19px !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { margin: 0 !important; text-align: center; width: 100%; font-size: 10px; padding: 8px 0 !important; } } @media all and (max-width: 1190px) { #ddbuilder .ui-tabs .ui-tabs-nav li { width: 35%; } } @media all and (max-width: 600px) { #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; } } @media all and (max-width: 450px) { #ddbuilder .ui-tabs .ui-tabs-nav li.ui-tabs-active a { width: 100% !important; } #ddbuilder .ui-tabs .ui-tabs-nav li { width: 100%; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { font-size: 12px; } } .element-type textarea { width: 100%; } #dialog_form .ui-widget { font-family: Arial, Helvetica, sans-serif !important; background: #F1F1F1 !important; } .fusionb-dialog-form .ui-dialog-buttonpane { position: absolute; bottom: 0; left: 0; height: 70px; width: 100%; padding-left: 0; padding-right: 0; } .wp-admin select { line-height: normal !important; } .wp-admin select:focus { outline: o !important; outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important; } select:focus { outline: 0 !important; !important; outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important } select option:focus { outline-style: none !important; outline-color: #fff !important; outline-width: 0 !important } /*Custom and Pre-built template CSS*/ .element-type select option { background: #ffffff !important; } input[type="file"]:focus, input[type="checkbox"]:focus, select:focus { outline: none !important; } .pop-up-element .clone-element { height: 28px !important; } .pop-up-element .delete-element { height: 28px !important; } #titlediv #title { width: 99.5% !important; } #postbox-container-1 .hndle { padding-left: 10px !important; } .custom_pre_built { width: 100% !important; float: left !important; } #pre_built_templates_wrapper { width: 97.7%; padding: 1%; float: left; } #custom_templates_wrapper { width: 97.7%; padding: 1%; float: left; } #custom_templates_left { width: 21%; float: left; } #custom_templates_right { width: 74%; float: right; } .templates_heading { font: 14px "Open Sans", sans-serif !important; color: #333333; width: 100%; margin: 0 0 20px 0; font-weight: normal; padding: 0 0 10px 0; float: left; border-bottom: 1px solid #e4e4e4; } .save_templates_here { width: 100%; float: left; padding: 0 0; transition: all 0.5s ease 0s; border: 1px solid #c2c0c0; } .save_templates_here:hover { background: #f7f7f7; transition: all 0.5s ease 0s; } .templates_selection { text-align: center; float: left; line-height: 40px; width: 100%; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #797979 !important; text-decoration: none; } .template_selection_wrapper { width: 100%; float: left; text-align: left; padding: 0 0; transition: all 0.5s ease 0s; border-bottom: 1px solid #ddddde; } .template_selection_wrapper:hover { background: #f7f7f7; transition: all 0.5s ease 0s; } .template_selection_wrapper a { font-size: 12px; line-height: 40px; } .wrap .templates_heading { margin-bottom: 15px; } .templates_123 { width: 100%; } .templates_456 { width: 202px; } .templates_789 { width: 208px; } .templates_10_11_12 { width: 216px; border-right: 1px solid #e9e9e9 !important; } .custom_pre_built_1 { width: 161px; } .custom_pre_built_2 { width: 175px; } .custom_pre_built_3 { width: 175px; } .custom_pre_built_4 { width: 175px; } .custom_pre_built_5 { width: 175px; } .custom_pre_built_6 { width: 167px; border-right: 1px solid #e9e9e9 !important; } .custom_templates_sections { border: 1px solid #e9e9e9; border-bottom: none; float: left; margin: 0 0 0 -1px; width: 18%; } .pre_built_templates_section { border: 1px solid #e9e9e9; border-bottom: none; float: left; margin: 0 0 0 -1px; width: 16.5%; } /*Custom and Pre-built template CSS*/ .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close span { top: 18px !important; } .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { width: 18px !important; } #dialog_form .wp-color-result { display: block; float: left; margin-left: 0; margin-right: 0; padding-left: 0; height: 34px !important; width: 78%; border-radius: 0 !important; } #dialog_form .wp-color-result:after { position: absolute; line-height: 34px !important; } #dialog_form .wp-picker-input-wrap { display: block; float: right; width: 20%; } #dialog_form .wp-picker-input-wrap input { width: 100%; text-align: center !important; padding: 11px 0 !important; } #dialog_form .wp-picker-input-wrap .fusion-color-field { display: block !important; } #dialog_form .wp-picker-clear { display: none !important; } #dialog_form .wp-color-result:after { font-size: 13px !important; padding: 0 20px !important; background: #fff !important; } .grid_six .fusion_layout_column .sortable-element .textblock_element { min-height: 100px !important; } .hidden_overlay { width: 100%; height: 100%; position: absolute; background: #ddddde; z-index: 9; display: none; } .hidden_overlay a { float: right; color: #797979 !important; text-align: center; width: 50%; background: #fff; font-size: 12px; font-family: Arial, Helvetica, sans-serif; text-decoration: none; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .hidden_overlay a:hover { color: #222 !important; background: #F7F7F7; } .template_selection_wrapper:hover .hidden_overlay { display: block; } .fusion_delete_template { float: left !important; } .fuiosn_load_template { border-left: 1px solid #ddddde; } .fusion_full_width .innerElement { } .fusion_full_width .handler { width: 100% !important; } .fusion_full_width .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .ui-droppable .handler { width: 99% !important; background: none !important; margin-top: 1px !important; margin-right: 1px !important; } .fusion_full_width > .menu-item-handle .change-width { display: none !important; } #dialog_form .wp-picker-container input[type=text].wp-color-picker { height: 37px; line-height: normal; } .element-type select { width: 100% !important; padding: 6px 15px; height: 34px !important; border-left: 1px solid #d9d9d9 !important; box-shadow: none !important; border-top: none !important; border-bottom: none !important; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; border-right: none !important; background: url(../images/icons/select_bg3.jpg) no-repeat right, url(../images/icons/select_bg4.jpg) repeat-x; font: 12px/20px Arial, Helvetica, sans-serif; } .element-type select:focus { outline: none; } .fusion_layout_column .menu-item-handle .edit-element { border-bottom: none !important; height: 26px !important; } .fusion_layout_column .pop-up-element .clone-element { border-bottom: none !important; height: 26px !important; } .fusion_layout_column .pop-up-element .delete-element { border-bottom: none !important; height: 26px !important; } .fusion_full_width .menu-item-handle .edit-element { height: 26px !important; } .fusion_full_width .pop-up-element .clone-element { height: 26px !important; } .fusion_full_width .pop-up-element .delete-element { height: 26px !important; } .wp-core-ui .button-secondary:focus, .wp-core-ui .button.focus, .wp-core-ui .button:focus { outline: 0 !important; border: 0 !important; } #del_icon:focus { outline: 0 !important; } #del_icon:active { outline: 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus { outline: 0 !important; } #ddbuilder .ui-tabs .ui-tabs-nav li a, #ddbuilder .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:active { outline: 0 !important; } .ui-widget-content a:focus { outline: 0 !important; } .ui-widget-content a:active { outline: 0 !important; } select:focus { outline: 0 !important; } select:active { outline: 0 !important; } #fusion-pb-switch-button { position: relative; bottom: -10px; z-index: 1001; } #fusion-pb-switch-button:focus { outline: 0 !important; } #fusion-pb-switch-button:active { outline: 0 !important; } .form-element-container #wp-fullscreen-buttons .mce-btn, .mce-toolbar .mce-btn-group .mce-btn, .qt-fullscreen { margin: 2px 1px !important; } .form-element-container .mce-toolbar .mce-btn button, .qt-fullscreen { padding: 4px 2px !important; } .form-element-container .mce-listbox button { width: 100px !important; } select option:focus { outline: none !important; } select option:active { outline: none !important; } .form-element-container .element-type .mce-tinymce { border: 1px solid #ddd; } /*.ui-state-default .ui-icon:focus{ background:red !important; } .ui-state-active .ui-icon { background-image: url(jquery/images/ui-icons_6da8d5_256x240.png) !important; }*/ a:focus { outline: none !important; } a:active { outline: none !important; } a:active, a:focus { outline: none !important; } .fusion_full_width .grid_five_sixth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_five_sixth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_one { border: 1px solid #ddddde !important; } .fusion_full_width .grid_one .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_one .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_four_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_four_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three_fourth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three_fourth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two_third { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two_third .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_two_fifth { border: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_two_fifth .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_three { border: 1px solid #ddddde !important; } .fusion_full_width .grid_three .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_three .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_four { border: 1px solid #ddddde !important; } .fusion_full_width .grid_four .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_four .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_five { border: 1px solid #ddddde !important; } .fusion_full_width .grid_five .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_five .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_six { border: 1px solid #ddddde !important; } .fusion_full_width .grid_six .handler { width: 100% !important; background: #F1F1F1 !important; margin: 0 !important; } .fusion_full_width .grid_six .handler .fusion-builder-element { border-bottom: none !important; } .fusion_full_width .grid_five_sixth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_four_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three_fourth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two_third .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_two_fifth .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_three .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_four .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_one .grid_width { margin-left: 30px !important; } .fusion_full_width .grid_five_sixth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_three .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_four .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_one .drag-element .menu-item-handle { width: 109px !important; background: #fff !important; margin-top: 1px !important; margin-right: 1px !important; border-bottom: 1px solid #ddddde !important; } .fusion_full_width .grid_one { width: 97.2% !important; } .fusion_full_width .grid_five_sixth { width: 80.6% !important; } .fusion_full_width .grid_three_fourth { width: 72.5% !important; } .fusion_full_width .grid_two_third { width: 64.4% !important; } .fusion_full_width .grid_seven { width: 56.5% !important; } .fusion_full_width .grid_two { width: 47.7% !important; } .fusion_full_width .grid_five { width: 18.02% !important; } .fusion_full_width .grid_three { width: 31.2% !important; } .fusion_full_width .grid_four { width: 22.97% !important; } .fusion_full_width .grid_six { width: 14.72% !important; } .fusion_full_width .grid_two_fifth { width: 37.8% !important; } .fusion_full_width .grid_three_fifth { width: 57.5% !important; } .fusion_full_width .grid_four_fifth { width: 77.4% !important; } @-moz-document url-prefix() { .fusion_full_width .grid_two { width: 47.75% !important; } .fusion_full_width .grid_three { width: 31.2% !important; } .fusion_full_width .grid_four { width: 23% !important; } .fusion_full_width .grid_five { width: 18.05% !important; } .fusion_full_width .grid_six { width: 14.75% !important; } } .fusion_full_width .fusion_layout_column { display: inline-block !important; margin: 0.8% !important; } .mce-container-body .wp-media-buttons { z-index: 2 !important; position: absolute !important; top: 0; } .fusion_full_width .grid_one .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_one .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_one .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_one .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_one .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two_third .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_third .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two_third .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_four .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_four .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fourth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options { margin-top: 0px !important; position: relative !important; } .fusion_full_width .grid_five .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_five .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_three_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_four_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_five_sixth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options { margin-top: 0px !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_two_fifth .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options { margin-top: 0px !important; position: relative !important; } .fusion_full_width .grid_six .fusion-columns-options .edit-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .delete-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .clone-element { background: #F1F1F1 !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_six .fusion-columns-options .clone-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options .delete-element:hover { background: #fff !important; } .fusion_full_width .grid_six .fusion-columns-options .edit-element:hover { background: #fff !important; } .fusion_full_width .ui-droppable .handler .fusion-builder-element { margin-top: 11px; position: absolute; right: 0; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .edit-element { background: #fff; border: none; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .clone-element { background: #fff; border: none; } .fusion_full_width .ui-droppable .handler .fusion-builder-element .delete-element { background: #fff; border-left: 1px solid #fff; } .fusion_layout_column .sortable-element .textblock_element { border: 1px solid #e4e4e4 !important; /*min-height:75px !important;*/ } .fusion_element_box .handler { border: none !important; position: absolute; right: 0; margin-top: 0px; } .grid_one .fusion_element_box .handler { border: none !important; position: absolute; right: 0; margin-top: 11px; } .fusion_element_box .handler .edit-element { background: #fff !important; border: none !important; border-bottom: 1px solid #fff !important; } .fusion_element_box .handler .clone-element { background: #fff !important; border: none !important; border-bottom: 1px solid #fff !important; } .fusion_element_box .handler .delete-element { background: #fff !important; border-left: 1px solid #fff !important; border-bottom: 1px solid #fff !important; } .bilder_icon_container { width: 100%; text-align: center; clear: both; float: left; /*margin:-20px 0 0 0;*/ margin: 0 0 0 0; } .grid_two .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three_fourth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_two_third .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three_fifth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_two_fifth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_three .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_four .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_five .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_six .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_four_fifth .fusion_element_box .handler { position: absolute; right: 0; display: none; margin-top: 11px !important; } .fusion_element_box:hover .handler { display: block; } .fusion_element_box .handler { display: none; } .grid_four_fifth .fusion_iconbox_icon { padding: 10px 0 12px 0 !important; } .fusion_full_width .editable-element .fusion_element_box .handler { margin-top: 2px !important; } .grid_five_sixth .fusion_element_box .handler { position: absolute; right: 0; margin-top: 11px !important; } .grid_five_sixth .fusion_iconbox_icon { padding: 10px 0 12px 0 !important; } @media only screen and (max-width: 8000px) and (min-width: 1500px) { .grid_five .fusion_iconbox { min-height: 55px !important; } } @media only screen and (max-width: 8000px) and (min-width: 1800px) { .grid_three .fusion_iconbox { min-height: 38px !important; } .grid_three .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_six .fusion_element_box .handler .edit-element { margin-left: 0 !important; } .grid_six .fusion_iconbox { min-height: 43px !important; } } @media only screen and (max-width: 8000px) and (min-width: 2000px) { .grid_four .fusion_iconbox { min-height: 38px !important; } .grid_four .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } } @media only screen and (max-width: 8000px) and (min-width: 2200px) { .grid_five .fusion_iconbox_icon { padding: 8px 0 12px 0 !important; } .grid_five .fusion_iconbox { min-height: 44px !important; } } .fusion_element_box .handler, .fusion_layout_column .fusion_element_box .handler { margin-top: 0px !important; margin-right: 0px !important; width: auto !important; top: 1px !important; right: 1px !important; border-bottom: none !important; } .fusion_element_box .fusion-columns-options { width: auto !important; height: auto !important; border-top: 0px !important; } .fusion_element_box .menu-item-handle .edit-element, .fusion_element_box .menu-item-handle .clone-element, .fusion_element_box .menu-item-handle .delete-element { font-size: 11px !important; line-height: 20px !important; width: 20px !important; height: 20px !important; position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; float: left; border-left: 1px solid #ddddde !important; border-bottom: 0 !important; } .fusion_element_box .menu-item-handle .edit-element i, .fusion_element_box .menu-item-handle .clone-element i, .fusion_element_box .menu-item-handle .delete-element i { line-height: 20px; } .fusion_element_box .handler, .fusion_layout_column .fusion_element_box .handler, .fusion_full_width .ui-droppable .fusion_element_box .handler { margin-top: 0px !important; margin-right: 0px !important; width: auto !important; top: 0px !important; right: 0px !important; border-bottom: 1px solid #ddddde !important; } .fusion_layout_column .fusion_element_box .handler, .fusion_full_width .ui-droppable .fusion_element_box .handler { top: 1px !important; right: 1px !important; } .fusion_element_box .fusion-columns-options { width: auto !important; height: auto !important; } .fusion_element_box .menu-item-handle .edit-element, .fusion_element_box .menu-item-handle .clone-element, .fusion_element_box .menu-item-handle .delete-element { font-size: 11px !important; line-height: 20px !important; width: 20px !important; height: 20px !important; position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; float: left; } .fusion_layout_column .menu-item-handle .edit-element, .fusion_layout_column .menu-item-handle .clone-element, .fusion_layout_column .menu-item-handle .delete-element { font-size: 14px; line-height: 26px; } .fusion_full_width .ui-droppable .handler .fusion-builder-element { margin-top: 0 !important; position: relative !important; } .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .edit-element, .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .clone-element, .fusion_full_width .fusion_layout_column .fusion_element_box .fusion-columns-options .delete-element { background: #fff !important; border-left: 1px solid #ddddde !important; } .fusion_full_width .grid_five .fusion_element_box .handler { background: none !important; } .fusion_full_width .grid_five .fusion_element_box .fusion-builder-element { background: none !important; } .fusion_full_width .grid_six .fusion_element_box .handler { background: none !important; } .fusion_full_width .grid_six .fusion_element_box .fusion-builder-element { background: none !important; width: 70px !important; } .fusion_full_width .fusion_element_box { width: 97.9% !important; } .fusion_full_width .grid_three_fourth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_two .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_two_fifth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_three .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_four .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_five_sixth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion_full_width .grid_four_fifth .fusion_element_box { width: 98% !important; margin-left: 0px !important; } .fusion-expand-child { color: #008FC5 !important; text-decoration: none !important; font-size: 15px !important; outline: none !important; display: block; } .fusion-expand-child:hover, .fusion-expand-child:active, .fusion-expand-child:focus { outline: none !important; } #dialog_form .child-clone-row { padding-top: 1%; padding-bottom: 1%; } #dialog_form .child-clone-row td { padding-top: 0; } .fusionb-add-shortcode { display: inline-block; height: 34px; line-height: 34px; margin: 0; font-size: 13px; color: #333333; background: #fff; border: 1px solid #c7c5c5; text-align: center; text-decoration: none; } .fusionb-add-shortcode:hover { background: #fbf9f9; } .fusionb-add-shortcode { width: 175px; margin-top: 10px; display: block; } .fusion_iconbox_icon small img { max-width: 220px !important; width: auto !important; height: auto !important; display: block; margin-left: auto; margin-right: auto; } #ddbuilder #tabs .ui-tabs-anchor { text-shadow: none; font-size: 12px; text-decoration: none; /*width: 159px;*/ text-align: center; padding: 9px 0 !important; } #ddbuilder #tabs .ui-tabs-anchor .fusion-tab { margin-right: 5px; } /*CSS for preview elements*/ #fusion_seprator .icon { width: 25px; height: 25px; position: absolute; left: 50%; text-align: center; right: 0; float: none; margin: -13px 0 0 -13px; border-radius: 100%; background: #fff; border: 1px solid #E0DEDE; color: #E0DEDE; font-size: 14px; line-height: 25px; } #fusion_seprator .separator { position: relative; } #fusion_seprator .single { width: 90%; height: 1px; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; background: #E0DEDE; } #fusion_seprator .double { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px solid #E0DEDE; border-bottom: 1px solid #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double .icon { margin-top: -12px; } #fusion_seprator .single_dashed { width: 90%; height: 0; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; border-top: 1px dashed #E0DEDE; } #fusion_seprator .double_dashed { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px dashed #E0DEDE; border-bottom: 1px dashed #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double_dashed .icon { margin-top: -12px; } #fusion_seprator .single_dotted { width: 90%; height: 0; text-align: center; margin: 0 auto; margin-top: 5px; margin-bottom: 5px; border-top: 1px dotted #E0DEDE; } #fusion_seprator .double_dotted { width: 90%; height: 5px; text-align: center; margin: 0 auto; border-top: 1px dotted #E0DEDE; border-bottom: 1px dotted #E0DEDE; /*margin-top:25px;*/ } #fusion_seprator .double_dotted .icon { margin-top: -12px; } #fusion_seprator .shadow { width: 90%; height: 2px; text-align: center; margin: 0 auto; /*margin-top:25px;*/ background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.5) 0px, rgba(255, 255, 255, 0) 80%) repeat scroll 0 0 rgba(0, 0, 0, 0); } #fusion_seprator .shadow.icon { margin-top: -15px; } #fusion_button .button { border: none; text-transform: uppercase; color: #fff; line-height: normal; height: auto; font-weight: bold; font-size: 14px; box-shadow: none; padding: 8px 20px; border-radius: 0; } .fusion_iconbox_icon p { margin: 4px 0 0 0; font-size: 12px; float: left; width: 100%; } #fusion_client_slider ul, #fusion_image_carousel ul, #fusion_slider ul { list-style: none; padding: 0; margin: -18px 0 0 0; float: left; width: 100%; } #fusion_client_slider ul li, #fusion_image_carousel ul li, #fusion_slider ul li { display: inline-block; width: 60px; vertical-align: text-bottom; line-height: 40px; margin: 0 2px 0 2px; } #fusion_client_slider ul li img, #fusion_image_carousel ul li img, #fusion_slider ul li img { width: 100%; float: left; height: 40px; margin-top: 25px; border: 1px solid #e4e4e4; } #fusion_image_frame .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_image_frame .img_frame_section img { width: 100%; float: left; height: auto; margin-top: 10px; margin-bottom: 2px; border: 1px solid #e4e4e4; } #fusion_image_frame .img_frame_gallery { clear: both; padding-top: 5px; font-size: 12px; } #fusion_person .img_frame_section { width: 120px; max-height: 75px; min-height: 0px; margin: 0 auto; clear: both; } #fusion_person .img_frame_section img { float: left; height: 100%; width: 100%; margin-top: 10px; margin-bottom: 2px; border: 1px solid #e4e4e4; } #fusion_tabs ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } #fusion_ckecklist ul { margin: 10px 0 0 0; padding: 0; font-size: 12px; } #fusion_ckecklist ul li i { font-size: 14px; vertical-align: sub; } #fusion_ckecklist ul li { margin: 0; line-height: 25px; } .select_arrow { width: 36px; height: 94.5%; position: absolute; right: 0; margin-top: 1px; margin-right: -1px; pointer-events: none; border-right: 1px solid #d9d9d9; background: url(../images/icons/select_bg3.jpg) no-repeat; } #fusion_font_awesome h3 { width: 40px; height: 40px; background: #666; border-radius: 100%; margin: 0 auto; margin-top: 10px; padding: 0px !important; color: #fff; text-align: center; } #fusion_font_awesome h3 i { margin: 0; line-height: 40px; } .element-type { position: relative; } #fusion_button .default { background: #96C346; } #fusion_button .default:hover { opacity: 0.8; } #fusion_button .custom { background: #008EC5; } #fusion_button .custom:hover { opacity: 0.8; } #fusion_button .blue { background: #b1dff7; /* Old browsers */ background: -moz-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b1dff7), color-stop(100%, #7bc9f3)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #b1dff7 0%, #7bc9f3 100%); /* IE10+ */ background: linear-gradient(to bottom, #b1dff7 0%, #7bc9f3 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b1dff7', endColorstr='#7bc9f3', GradientType=0); /* IE6-9 */ border: 1px solid #1172c1; color: #1172c1; text-shadow: 0 1px 0 #fff; } #fusion_button .blue:hover { background: #7bc9f3; /* Old browsers */ background: -moz-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7bc9f3), color-stop(100%, #b1dff7)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #7bc9f3 0%, #b1dff7 100%); /* IE10+ */ background: linear-gradient(to bottom, #7bc9f3 0%, #b1dff7 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7bc9f3', endColorstr='#b1dff7', GradientType=0); /* IE6-9 */ } #fusion_button .green { background: #cfe88d; /* Old browsers */ background: -moz-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfe88d), color-stop(100%, #aed961)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #cfe88d 0%, #aed961 100%); /* IE10+ */ background: linear-gradient(to bottom, #cfe88d 0%, #aed961 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfe88d', endColorstr='#aed961', GradientType=0); /* IE6-9 */ border: 1px solid #9dba60; color: #54770f; text-shadow: 0 1px 0 #fff; } #fusion_button .green:hover { background: #aed961; /* Old browsers */ background: -moz-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #aed961), color-stop(100%, #cfe88d)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #aed961 0%, #cfe88d 100%); /* IE10+ */ background: linear-gradient(to bottom, #aed961 0%, #cfe88d 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aed961', endColorstr='#cfe88d', GradientType=0); /* IE6-9 */ } #fusion_button .red { background: #fd9999; /* Old browsers */ background: -moz-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd9999), color-stop(100%, #fd8282)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd9999 0%, #fd8282 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd9999 0%, #fd8282 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9999', endColorstr='#fd8282', GradientType=0); /* IE6-9 */ border: 1px solid #9d1111; color: #9d1111; text-shadow: 0 1px 0 #fff; } #fusion_button .red:hover { background: #fd8282; /* Old browsers */ background: -moz-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd8282), color-stop(100%, #fd9999)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd8282 0%, #fd9999 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd8282 0%, #fd9999 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd8282', endColorstr='#fd9999', GradientType=0); /* IE6-9 */ } #fusion_button .pink { background: #fd9fd5; /* Old browsers */ background: -moz-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd9fd5), color-stop(100%, #fc86ca)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fd9fd5 0%, #fc86ca 100%); /* IE10+ */ background: linear-gradient(to bottom, #fd9fd5 0%, #fc86ca 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9fd5', endColorstr='#fc86ca', GradientType=0); /* IE6-9 */ border: 1px solid #a31366; color: #a31366; text-shadow: 0 1px 0 #fff; } #fusion_button .pink:hover { background: #fc86ca; /* Old browsers */ background: -moz-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc86ca), color-stop(100%, #fd9fd5)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fc86ca 0%, #fd9fd5 100%); /* IE10+ */ background: linear-gradient(to bottom, #fc86ca 0%, #fd9fd5 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc86ca', endColorstr='#fd9fd5', GradientType=0); /* IE6-9 */ } #fusion_button .darkgray { background: #bbbbbb; /* Old browsers */ background: -moz-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbbbbb), color-stop(100%, #a3a3a3)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #bbbbbb 0%, #a3a3a3 100%); /* IE10+ */ background: linear-gradient(to bottom, #bbbbbb 0%, #a3a3a3 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#a3a3a3', GradientType=0); /* IE6-9 */ border: 1px solid #434c50; color: #434c50; text-shadow: 0 1px 0 #fff; } #fusion_button .darkgray:hover { background: #a3a3a3; /* Old browsers */ background: -moz-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a3a3a3), color-stop(100%, #bbbbbb)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #a3a3a3 0%, #bbbbbb 100%); /* IE10+ */ background: linear-gradient(to bottom, #a3a3a3 0%, #bbbbbb 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a3a3a3', endColorstr='#bbbbbb', GradientType=0); /* IE6-9 */ } #fusion_button .lightgray { background: #fbfbfb; /* Old browsers */ background: -moz-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbfbfb), color-stop(100%, #f2f2f2)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fbfbfb 0%, #f2f2f2 100%); /* IE10+ */ background: linear-gradient(to bottom, #fbfbfb 0%, #f2f2f2 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#f2f2f2', GradientType=0); /* IE6-9 */ border: 1px solid #ababab; color: #ababab; text-shadow: 0 1px 0 #fff; } #fusion_button .lightgray:hover { background: #f2f2f2; /* Old browsers */ background: -moz-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #fbfbfb)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f2f2f2 0%, #fbfbfb 100%); /* IE10+ */ background: linear-gradient(to bottom, #f2f2f2 0%, #fbfbfb 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fbfbfb', GradientType=0); /* IE6-9 */ } #fusion_button .darkgreen { background: #cfe0a4; /* Old browsers */ background: -moz-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfe0a4), color-stop(100%, #9dba60)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #cfe0a4 0%, #9dba60 100%); /* IE10+ */ background: linear-gradient(to bottom, #cfe0a4 0%, #9dba60 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfe0a4', endColorstr='#9dba60', GradientType=0); /* IE6-9 */ border: 1px solid #9dba60; color: #54770f; text-shadow: 0 1px 0 #fff; } #fusion_button .darkgreen:hover { background: #9dba60; /* Old browsers */ background: -moz-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dba60), color-stop(100%, #cfe0a4)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #9dba60 0%, #cfe0a4 100%); /* IE10+ */ background: linear-gradient(to bottom, #9dba60 0%, #cfe0a4 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dba60', endColorstr='#cfe0a4', GradientType=0); /* IE6-9 */ } #fusion_button .orange { background: #fbda82; /* Old browsers */ background: -moz-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbda82), color-stop(100%, #f8c057)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #fbda82 0%, #f8c057 100%); /* IE10+ */ background: linear-gradient(to bottom, #fbda82 0%, #f8c057 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbda82', endColorstr='#f8c057', GradientType=0); /* IE6-9 */ border: 1px solid #c0830b; color: #c0830b; text-shadow: 0 1px 0 #fff; } #fusion_button .orange:hover { background: #f8c057; /* Old browsers */ background: -moz-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8c057), color-stop(100%, #fbda82)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f8c057 0%, #fbda82 100%); /* IE10+ */ background: linear-gradient(to bottom, #f8c057 0%, #fbda82 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8c057', endColorstr='#fbda82', GradientType=0); /* IE6-9 */ } #fusion_toggles ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } #fusion_toggles ul li i { font-size: 14px; vertical-align: sub; } #fusion_table ul { padding: 0; font-size: 12px; margin: 10px 0 0 0; list-style: inside; } sub.title_text { font-size: 15px !important; } .wp-picker-container input.iris-error[type="text"] { background-color: #fff; border: 1px solid #ddd; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset; color: #333; transition: border-color 0.05s ease-in-out 0s; } .none i { margin: 0; } .single_dashed i { margin-bottom: 20px; } #fusian_title section > div { position: absolute; left: 10%; margin-top: 15px !important; } #fusian_title .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .align_center { position: relative; float: none !important; background: #fff; padding: 0 10px !important; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .none { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; } #fusian_title .single { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-top: 1px solid #e4e4e4; } #fusian_title .single_solid { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-top: 1px solid #e4e4e4; } #fusian_title .single_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; } #fusian_title .single_dashed { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-bottom: 1px dashed #e4e4e4; } #fusian_title .single_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -13px 0 0 0; } #fusian_title .single_dotted { width: 80%; margin: 0 auto; margin-top: 6px; height: 1px; border-bottom: 1px dotted #e4e4e4; } #fusian_title .single_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -13px 0 0 0; } #fusian_title .double { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; } #fusian_title .double sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_solid { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; } #fusian_title .double_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_dashed { width: 80%; margin: 0 auto; height: 5px; margin-top: 6px; border-top: 1px dashed #e4e4e4; border-bottom: 1px dashed #e4e4e4; } #fusian_title .double_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .double_dotted { width: 80%; margin: 0 auto; margin-top: 6px; height: 5px; border-top: 1px dotted #e4e4e4; border-bottom: 1px dotted #e4e4e4; } #fusian_title .double_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline { width: 80%; margin: 0 auto; margin-top: 6px; height: 11px; border-bottom: 1px solid #e4e4e4; } #fusian_title .underline sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_solid { width: 80%; margin: 0 auto; margin-top: 6px; height: 11px; border-bottom: 1px solid #e4e4e4; } #fusian_title .underline_solid sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_dashed { width: 80%; margin: 0 auto; height: 11px; margin-top: 6px; border-bottom: 1px dashed #e4e4e4; } #fusian_title .underline_dashed sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .underline_dotted { width: 80%; margin: 0 auto; height: 11px; margin-top: 6px; border-bottom: 1px dotted #e4e4e4; } #fusian_title .underline_dotted sub { float: left; background: #fff; padding: 0 10px 0 0; margin: -11px 0 0 0; } #fusian_title .single .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .single_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .double_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_solid .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_solid .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dashed .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dashed .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dotted .align_left { float: left; background: #fff; padding: 0 10px 0 0; margin: -14px 0 0 0; line-height: 27px; } #fusian_title .underline_dotted .align_right { float: right; background: #fff; padding: 0 0 0 10px; margin: -14px 0 0 0; line-height: 27px; } .text-block-icon { display: block; width: 100%; margin-bottom: 5px; } #fusion_seprator.fusion_iconbox .fusion_iconbox_icon section { margin-top: 6px; margin-bottom: 6px; } .ui-front .mce-edit-area { overflow-y: auto; } /* .ui-front .wp-editor-area { height: 300px !important; } */ a:focus { box-shadow: none !important; } .remove-image { float: left; margin-right: 5px; position: static; } .fusionb-edit-button { float: left; position: static; } #post-body #normal-sortables { min-height: 0; } /* Post System Status */ .avada-importer-issue, .avada-importer-current-value, .avada-importer-recommended-value, .avada-importer-fix { width: 25%; display: inline-block; } /* RTL */ .rtl .ui-dialog .ui-dialog-title { float: right; } .rtl #ui-id-1, .rtl .ui-dialog-title { margin-left: 0 !important; margin-right: 20px !important; } .rtl .fusionb-dialog-form .ui-dialog-titlebar .ui-dialog-titlebar-close { left: 10px !important; right: auto !important; } .rtl .name-description { float: right !important; } .rtl .element-type { float: left !important; } .rtl .element-type select { background: url("../images/icons/select_bg3.jpg") no-repeat scroll left center, url("../images/icons/select_bg4.jpg") repeat-x scroll 0 0 rgba(0, 0, 0, 0); border-right: 1px solid #d9d9d9 !important } .rtl .select_arrow { left: 0; right: auto; margin-left: -1px; margin-right: 0; } /*.rtl .chosen-container .chosen-drop { left: auto; right: -9999px; }*/ .rtl .chosen-container-multi .chosen-choices li { float: right; margin-left: 0; margin-right: 5px; } .rtl #dialog_form .wp-color-result { float: right; padding: 0 !important; } .rtl #dialog_form .wp-picker-input-wrap { float: left; } .rtl .icon_preview { float: right; } .rtl .fusionb-dialog-form .ui-dialog-buttonpane .ui-dialog-buttonset { text-align: left; }
0.288369
0.066448
.header{ height: 88px; border: 1px solid #707070; background-color: #f01716; } .homeicon{ width: 30%; position: absolute; left:50%; transform: translate(-40%,25%); } /* #cross{ float: left; width: 40px; height: 40px; margin: 10%; } */ #slider{ position:absolute; left: -82px; top:50px; } .visitor_name{ color: #ffffff; font-family: "SF Pro Text"; font-size: 50px; font-weight: 500; font-style: italic; } .visitor_details{ padding:2%; } .visitor{ width: 90%; margin-left: 5%; height: 145px; border-radius: 15px; background-color: #f01716; margin-top: 30px; } .left{ float:left; } .right{ float:right; } .date{ color: #ffffff; font-family: "SF Pro Text"; font-size: 25px; font-weight: 500; font-style: italic; } .white_bg{ margin-top: 3%; width: 185px; height: 120px; border-radius: 15px; border: 1px solid #707070; background-color: #ffffff; } .status{ /*width: 129px; */ /* height: 41px; */ color: #fac208; font-family: "SF Pro Text"; font-size: 30px; text-align: center; font-weight: 500; font-style: italic; padding: 20%; } .radio { display: inline-block; } .form_content { color: #f01716; font-family: "SF Pro Text"; font-size: 23px; letter-spacing: -0.01px; line-height: 22px; } legend{ color: #f01716 !important; border-bottom: none !important; margin-left: 5%; font-size: 32px; font-style: italic; } .form-horizontal .form-group { margin-left: 0px !important; margin-right: 0px !important; } .radio_input{ display: inline-block; width: 65%; } .visitor_dec{ color: #f01716; font-family: "SF Pro Text"; font-size: 25px; font-weight: 800; letter-spacing: -0.01px; line-height: 22px; } .up_rect{ width: 80%; height: 78px; margin-left: 10%; border-radius: 24px; border: 1px solid #707070; background-color: #ffffff; top: 0; } .main{ width: 100%; /* height: 768px;*/ background-color: #f01716; } .mid_text{ width: 352px; height: 120px; color: #fcfafa; font-family: "Microsoft Sans Serif"; font-size: 102px; font-weight: 400; } .parent_div{ display:flex; margin-top: 5%; } hr { border: 13px solid #f01716; height: 498px; } .top{ background-color: #f01716; height: 75px; } .top_rect{ bottom: -75px; position: absolute; } .fig2 figcaption { margin-left: 7%; } figcaption{ width: 214px; height: 37px; color: #f01716; font-family: "SF Pro Text"; font-size: 30px; font-weight: 700; } .bottom_rect{ margin-left: 18%; position: fixed; bottom: 0; } .main{ width: 100%; /* height: 768px;*/ background-color: #f01716; } .mid_text{ position:absolute; color: #fcfafa; font-family: "Microsoft Sans Serif"; font-size: 102px; font-weight: 400; margin-left: 32%; margin-top: 25%; } .align-item{ position: relative; } .align_arrow{ bottom: 10%; position: fixed; margin-left: 45%; } .full_width{ width : 100%; } .full_width_height{ width : 100%; height: 100%; } .custom_heading{ font-size: 10em; color: #fff; } .vcenter{ display: flex; align-items: center; justify-content: center; } .center-block{ display: block; margin-left: auto; margin-right: auto; } .align-top{ top:0; } .cross_new{ width: 25% !important; } .padding_15px{ padding : 15px; } .homeicon_new{ margin-left: 60%; width: 28%; } .left-spacing-half{ margin-left: 7.5px; } .top-spacing{ margin-top: 1%; } /* second page.html */ html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; } .question-div { color: white; font-size: 5vw; position: absolute; top: 0; bottom: 0; width: 100%; text-align: center; overflow-x: hidden; overflow-y: hidden; } .question-text { font-family: 'tradegothiclt-bold', sans-serif; font-size: 60px; position: absolute; width: 100%; height: 100px; top: 50%; margin-top: -50px; } .circleBase { border-radius: 50%; behavior: url(PIE.htc); /* remove if you don't care about IE8 */ } .type1 { width: 26vw; height: 26vw; margin: 0 auto; /*border: 5px solid blue;*/ text-align: center; display: table; background-color: transparent; } .underlay { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; width: 26vw; height: 26vw; background-color: black; /*background: rgba(80, 62, 62, 0.93);*/ opacity: 0.25; filter: alpha(opacity=40); margin: 0 auto; /*border: 5px solid blue;*/ text-align: center; display: table; z-index: 0; border-radius: 50%; cursor:pointer; } .main-page-right-div { background-image: url(images/background%20image%20white.png); right: 0px; left: 50%; background-size: 100% 100%; position: absolute; top: 0; bottom: 0; display: none; } .main-page-body { overflow-x: hidden; background-color: black; /*background-image: linear-gradient(to right, #3a90cb , #2ed9d0);*/ } .image-text { font-size: 16pt; color: white; font-family: sans-serif; display: table-cell; vertical-align: middle; } .asset-div { top: 29%; left: 15%; } .icon-images { margin-bottom: 5%; } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { .type1{ margin-top: 34%; } .image-text{ top: 44%; } } .main-page-right-div2 { background-image: linear-gradient(to right, #3a90cb , #2ed9d0); position: absolute; width: 100%; height: 100%; left: 100%; } .inner-div { position: absolute; margin: auto; right: 0; left: 0; } .details-div { left: 27%; } .circle-initial-position { /*border: 5px solid yellow;*/ margin: 0px; padding: 0px; text-align: center; height: 365px; position: relative; top: 100%; cursor: pointer; } /* DEMO-SPECIFIC STYLES */ .typewriter{ overflow: hidden; /* Ensures the content is not revealed until the animation */ white-space: nowrap; /* Keeps the content on a single line */ margin: 0 auto; /* Gives that scrolling effect as the typing happens */ animation: typing 3.5s steps(20, end), blink-caret .5s step-end infinite; } /* The typing effect */ @keyframes typing { from { width: 0 } to { width: 100% } }
views/public/stylesheets/style.css
.header{ height: 88px; border: 1px solid #707070; background-color: #f01716; } .homeicon{ width: 30%; position: absolute; left:50%; transform: translate(-40%,25%); } /* #cross{ float: left; width: 40px; height: 40px; margin: 10%; } */ #slider{ position:absolute; left: -82px; top:50px; } .visitor_name{ color: #ffffff; font-family: "SF Pro Text"; font-size: 50px; font-weight: 500; font-style: italic; } .visitor_details{ padding:2%; } .visitor{ width: 90%; margin-left: 5%; height: 145px; border-radius: 15px; background-color: #f01716; margin-top: 30px; } .left{ float:left; } .right{ float:right; } .date{ color: #ffffff; font-family: "SF Pro Text"; font-size: 25px; font-weight: 500; font-style: italic; } .white_bg{ margin-top: 3%; width: 185px; height: 120px; border-radius: 15px; border: 1px solid #707070; background-color: #ffffff; } .status{ /*width: 129px; */ /* height: 41px; */ color: #fac208; font-family: "SF Pro Text"; font-size: 30px; text-align: center; font-weight: 500; font-style: italic; padding: 20%; } .radio { display: inline-block; } .form_content { color: #f01716; font-family: "SF Pro Text"; font-size: 23px; letter-spacing: -0.01px; line-height: 22px; } legend{ color: #f01716 !important; border-bottom: none !important; margin-left: 5%; font-size: 32px; font-style: italic; } .form-horizontal .form-group { margin-left: 0px !important; margin-right: 0px !important; } .radio_input{ display: inline-block; width: 65%; } .visitor_dec{ color: #f01716; font-family: "SF Pro Text"; font-size: 25px; font-weight: 800; letter-spacing: -0.01px; line-height: 22px; } .up_rect{ width: 80%; height: 78px; margin-left: 10%; border-radius: 24px; border: 1px solid #707070; background-color: #ffffff; top: 0; } .main{ width: 100%; /* height: 768px;*/ background-color: #f01716; } .mid_text{ width: 352px; height: 120px; color: #fcfafa; font-family: "Microsoft Sans Serif"; font-size: 102px; font-weight: 400; } .parent_div{ display:flex; margin-top: 5%; } hr { border: 13px solid #f01716; height: 498px; } .top{ background-color: #f01716; height: 75px; } .top_rect{ bottom: -75px; position: absolute; } .fig2 figcaption { margin-left: 7%; } figcaption{ width: 214px; height: 37px; color: #f01716; font-family: "SF Pro Text"; font-size: 30px; font-weight: 700; } .bottom_rect{ margin-left: 18%; position: fixed; bottom: 0; } .main{ width: 100%; /* height: 768px;*/ background-color: #f01716; } .mid_text{ position:absolute; color: #fcfafa; font-family: "Microsoft Sans Serif"; font-size: 102px; font-weight: 400; margin-left: 32%; margin-top: 25%; } .align-item{ position: relative; } .align_arrow{ bottom: 10%; position: fixed; margin-left: 45%; } .full_width{ width : 100%; } .full_width_height{ width : 100%; height: 100%; } .custom_heading{ font-size: 10em; color: #fff; } .vcenter{ display: flex; align-items: center; justify-content: center; } .center-block{ display: block; margin-left: auto; margin-right: auto; } .align-top{ top:0; } .cross_new{ width: 25% !important; } .padding_15px{ padding : 15px; } .homeicon_new{ margin-left: 60%; width: 28%; } .left-spacing-half{ margin-left: 7.5px; } .top-spacing{ margin-top: 1%; } /* second page.html */ html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; } .question-div { color: white; font-size: 5vw; position: absolute; top: 0; bottom: 0; width: 100%; text-align: center; overflow-x: hidden; overflow-y: hidden; } .question-text { font-family: 'tradegothiclt-bold', sans-serif; font-size: 60px; position: absolute; width: 100%; height: 100px; top: 50%; margin-top: -50px; } .circleBase { border-radius: 50%; behavior: url(PIE.htc); /* remove if you don't care about IE8 */ } .type1 { width: 26vw; height: 26vw; margin: 0 auto; /*border: 5px solid blue;*/ text-align: center; display: table; background-color: transparent; } .underlay { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; width: 26vw; height: 26vw; background-color: black; /*background: rgba(80, 62, 62, 0.93);*/ opacity: 0.25; filter: alpha(opacity=40); margin: 0 auto; /*border: 5px solid blue;*/ text-align: center; display: table; z-index: 0; border-radius: 50%; cursor:pointer; } .main-page-right-div { background-image: url(images/background%20image%20white.png); right: 0px; left: 50%; background-size: 100% 100%; position: absolute; top: 0; bottom: 0; display: none; } .main-page-body { overflow-x: hidden; background-color: black; /*background-image: linear-gradient(to right, #3a90cb , #2ed9d0);*/ } .image-text { font-size: 16pt; color: white; font-family: sans-serif; display: table-cell; vertical-align: middle; } .asset-div { top: 29%; left: 15%; } .icon-images { margin-bottom: 5%; } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { .type1{ margin-top: 34%; } .image-text{ top: 44%; } } .main-page-right-div2 { background-image: linear-gradient(to right, #3a90cb , #2ed9d0); position: absolute; width: 100%; height: 100%; left: 100%; } .inner-div { position: absolute; margin: auto; right: 0; left: 0; } .details-div { left: 27%; } .circle-initial-position { /*border: 5px solid yellow;*/ margin: 0px; padding: 0px; text-align: center; height: 365px; position: relative; top: 100%; cursor: pointer; } /* DEMO-SPECIFIC STYLES */ .typewriter{ overflow: hidden; /* Ensures the content is not revealed until the animation */ white-space: nowrap; /* Keeps the content on a single line */ margin: 0 auto; /* Gives that scrolling effect as the typing happens */ animation: typing 3.5s steps(20, end), blink-caret .5s step-end infinite; } /* The typing effect */ @keyframes typing { from { width: 0 } to { width: 100% } }
0.348645
0.075961
@font-face { font-family: 'PT Serif'; font-style: normal; font-weight: 400; src: local('PT Serif'), local('PTSerif-Regular'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-italic - latin */ @font-face { font-family: 'PT Serif'; font-style: italic; font-weight: 400; src: local('PT Serif Italic'), local('PTSerif-Italic'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-700 - latin */ @font-face { font-family: 'PT Serif'; font-style: normal; font-weight: 700; src: local('PT Serif Bold'), local('PTSerif-Bold'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-700italic - latin */ @font-face { font-family: 'PT Serif'; font-style: italic; font-weight: 700; src: local('PT Serif Bold Italic'), local('PTSerif-BoldItalic'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } * {margin: 0; padding: 0; box-sizing: border-box;} html {font-size: 16px;} body {font-size: 1rem; line-height: 1.4; font-family: 'PT Serif';} .content {min-height: 100vh;} .navigation { background-color: white; display: flex; position: fixed; width: 100%; justify-content: space-between; box-shadow: 0px 0px 10px rgba(0,0,0,0.25); z-index: 9; } .title {padding: 0.5rem 2rem; color: black; text-decoration: none;} .title span {font-weight: bold; display: block;} .body {padding: 6rem 2rem; flex-grow: 1; padding-bottom: 10rem;} .hamburger {display: block; margin: 0.4rem 2rem 0 0; min-width: 3rem; max-width: 3rem; height: 3rem; background: transparent; position: relative;} .hamburger span {position: absolute; top: 50%; width: 2.5rem; margin-left: 0.25rem; transform: translateY(-50%); height: 4px; background: black;} .hamburger span:nth-child(1) {margin-top: -0.6rem;} .hamburger span:nth-child(3) {margin-top: 0.6rem;} .hamburger.close::before {content: none;} .hamburger.close span {width: 1.8rem; margin-left: 0.6rem;} .hamburger.close span:nth-child(1) {margin-top: 0; transform: translateY(-50%) rotate(45deg);} .hamburger.close span:nth-child(2) {margin-top: 0; transform: translateY(-50%) rotate(-45deg);} .hamburger.close span:nth-child(3) {display: none;} th.selected::after {content: " ▾";} td, th, dl > * {padding: 0.2rem 1.5rem 0.2rem 0.5rem; text-align: left;} td, th {max-width: 40rem;} table.list td, table.list th {text-overflow: ellipsis; white-space: nowrap; overflow: hidden; max-width: 25rem;} label {padding: calc(0.2rem + 1px) 1.5rem calc(0.2rem + 1px) 0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;} td:last-child a {display: inline-block; margin-right: 0.5rem;} .logo img {height: 2rem; vertical-align: middle;} a {color: black;} label {width: 15rem; min-width: 15rem; padding-right: 2rem;} h1 {font-size: 2.2rem; margin-bottom: 0.5rem; margin-right: 1rem; line-height: 1;} h2 {font-size: 1.5rem; margin-bottom: 0.5rem;} table {border-collapse: collapse; margin-top: 1.5rem;} table tr:nth-child(even) {background: rgba(0,0,0,0.05);} table tr th {padding-top: 0.3rem; padding-bottom: 0.3rem; font-weight: bold; border-bottom: 1px solid black;} p, table {margin-bottom: 1.4rem;} .titlebar {display: flex; align-items: center; margin-bottom: 0.5rem; flex-wrap: wrap;} .titlebar > div {margin-bottom: 0.5rem;} .cols {column-width: 700px; margin-top: -2em;} .col { -webkit-column-break-inside: avoid; /* Chrome, Safari */ page-break-inside: avoid; /* Theoretically FF 20+ */ break-inside: avoid-column; /* IE 11 */ display:table; /* Actually FF 20+ */ } input, textarea, select{ height: calc(2rem + 2px); line-height: 1.4rem; text-decoration: none; border: 1px solid black; padding: 0 0.5rem; background: transparent; color: black; font-family: inherit; font-size: inherit; flex-grow: 1; background: white; } button, input[type="submit"], .btn { height: calc(2rem + 2px); line-height: 2rem; border: 1px solid transparent; display: inline-block; text-decoration: none; padding: 0 1rem; background: transparent; color: black; font-family: inherit; font-size: inherit; background-color: rgb(222, 222, 222); cursor: pointer; border-radius: 0.15rem; } button:focus, input[type="submit"]:focus, .btn:focus, .icon:focus {border-color: black;} select::-ms-expand {display: none;} select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: white url('../img/down.svg') calc(100% - 0.6rem) 50% no-repeat; background-size: auto 0.5rem; padding-right: 1.75rem; max-width: calc(100% - 15rem); } input[type="radio"], input[type="checkbox"], input[type="file"] {border: 0; height: auto; line-height: auto; margin-right: 0.4rem; vertical-align: middle; position: relative; bottom: 0.1rem;} input[type="file"] {padding: 0; margin: 0; bottom: 0;} input[type='number'] {-moz-appearance: textfield;} input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;} input[type="number"] {-moz-appearance: textfield;} input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;} textarea {min-height: 10rem; padding: 0.35rem 0.5rem; } .icon { display: inline-block; text-decoration: none; width: 0; height: 0; overflow: hidden; padding-top: 2rem; padding-left: 2rem; position: relative; background-color: rgb(222, 222, 222); cursor: pointer; border-radius: 0.15rem; border: 1px solid transparent; vertical-align: bottom; } .icon::before {content: ''; position: absolute; width: 2rem; height: 2rem; left: 0; top: 0;} .icon.filter::before { background: url('../img/filter.svg') center center / auto 45% no-repeat;} .icon.search::before { background: url('../img/search.svg') center center / auto 57% no-repeat;} .icon.prev::before { background: url('../img/prev.svg') center 48% / auto 40% no-repeat;} .icon.next::before { background: url('../img/next.svg') center 48% / auto 40% no-repeat;} form {margin-top: 1.5rem;} form, dl {width: 100%; max-width: 40rem;} form > div {display: flex; margin-bottom: 0.25rem;} form > div > *:nth-child(2) {flex-grow: 1;} form > div > *:nth-child(3) {margin-left: 0.25rem;} form > button {margin-top: 1.5rem;} dl {display: flex; margin-bottom: 1.4rem;} dt {width: 11rem; min-width: 11rem; padding-right: 2rem;} dd {flex-grow: 1;} dl + dl {margin-top: -1.4rem;} dl + dl dt {border-top: 1px solid transparent;} dl + dl dd {border-top: 1px solid silver;} ul.breadcrumb {margin-bottom: 0.3rem; font-size: 0.9rem; opacity: 0.45;} ul.breadcrumb li {display: inline; list-style: none;} ul.breadcrumb li + li::before {content: "/ ";} ul.breadcrumb li a {text-decoration: none;} ul.related li, ul.home li {list-style: none;} .filterbar {padding: 0.5rem 0.7rem; background: rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem;} .close::before{content: "+"; text-decoration: none; transform: rotate(45deg); display: inline-block;} .addFilter {margin-bottom: 0.5rem; display: none;} .addFilter.visible {display: block;} .addSearch {margin-bottom: 0.5rem; display: none;} .addSearch.visible {display: block;} .footeractions {margin-top: 1.5rem;} .pagination {display: flex; align-items: center; font-size: 0.9rem;} .pagination .icon {margin-right: 0.25rem;} .disabled {opacity: 0.4; cursor: default;} .pagination .icon:last-child {margin-right: 0; margin-left: 0.25rem;} .hidden {display: none;} @media only screen and (min-width: 1500px) { .content {display: block;} .title {position: absolute; bottom: 1.5rem;} .navigation {display: block; width: 15rem; height: 100vh;} .body {padding-top: 3rem; margin-left: 15rem; padding-left: 5rem;} .hamburger {margin-left: 2rem; margin-top: 2rem;} .hamburger.close span:nth-child(1) {margin: 0 0 0 0.2rem; width: 1.3rem; transform: translateY(-50%) rotate(-45deg); transform-origin: 0% 100%;} .hamburger.close span:nth-child(2) {margin-left: 0.3rem; transform: translateY(-50%) rotate(0deg);} .hamburger.close span:nth-child(3) {margin: 0 0 0 0.2rem; width: 1.3rem; display: block; transform: translateY(-50%) rotate(45deg); transform-origin: 0% 0%;} } .mobile-only {display: none;} @media only screen and (max-width: 600px) { ul.related li a, ul.home li a {display: inline-block; padding: 0.2rem 0;} table.read thead {display: none;} table.read tr {display: block; padding: 0.7rem 0.5rem;} table.read tr td {display: block; padding: 0;} table.read td:nth-child(odd) {font-weight: bold;} .mobile-only {display: initial;} form > div {flex-direction: column;} select {max-width: 100%;} }
webroot/css/style.css
@font-face { font-family: 'PT Serif'; font-style: normal; font-weight: 400; src: local('PT Serif'), local('PTSerif-Regular'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-italic - latin */ @font-face { font-family: 'PT Serif'; font-style: italic; font-weight: 400; src: local('PT Serif Italic'), local('PTSerif-Italic'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-700 - latin */ @font-face { font-family: 'PT Serif'; font-style: normal; font-weight: 700; src: local('PT Serif Bold'), local('PTSerif-Bold'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* pt-serif-700italic - latin */ @font-face { font-family: 'PT Serif'; font-style: italic; font-weight: 700; src: local('PT Serif Bold Italic'), local('PTSerif-BoldItalic'), url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/pt-serif-v11-latin/pt-serif-v11-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } * {margin: 0; padding: 0; box-sizing: border-box;} html {font-size: 16px;} body {font-size: 1rem; line-height: 1.4; font-family: 'PT Serif';} .content {min-height: 100vh;} .navigation { background-color: white; display: flex; position: fixed; width: 100%; justify-content: space-between; box-shadow: 0px 0px 10px rgba(0,0,0,0.25); z-index: 9; } .title {padding: 0.5rem 2rem; color: black; text-decoration: none;} .title span {font-weight: bold; display: block;} .body {padding: 6rem 2rem; flex-grow: 1; padding-bottom: 10rem;} .hamburger {display: block; margin: 0.4rem 2rem 0 0; min-width: 3rem; max-width: 3rem; height: 3rem; background: transparent; position: relative;} .hamburger span {position: absolute; top: 50%; width: 2.5rem; margin-left: 0.25rem; transform: translateY(-50%); height: 4px; background: black;} .hamburger span:nth-child(1) {margin-top: -0.6rem;} .hamburger span:nth-child(3) {margin-top: 0.6rem;} .hamburger.close::before {content: none;} .hamburger.close span {width: 1.8rem; margin-left: 0.6rem;} .hamburger.close span:nth-child(1) {margin-top: 0; transform: translateY(-50%) rotate(45deg);} .hamburger.close span:nth-child(2) {margin-top: 0; transform: translateY(-50%) rotate(-45deg);} .hamburger.close span:nth-child(3) {display: none;} th.selected::after {content: " ▾";} td, th, dl > * {padding: 0.2rem 1.5rem 0.2rem 0.5rem; text-align: left;} td, th {max-width: 40rem;} table.list td, table.list th {text-overflow: ellipsis; white-space: nowrap; overflow: hidden; max-width: 25rem;} label {padding: calc(0.2rem + 1px) 1.5rem calc(0.2rem + 1px) 0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;} td:last-child a {display: inline-block; margin-right: 0.5rem;} .logo img {height: 2rem; vertical-align: middle;} a {color: black;} label {width: 15rem; min-width: 15rem; padding-right: 2rem;} h1 {font-size: 2.2rem; margin-bottom: 0.5rem; margin-right: 1rem; line-height: 1;} h2 {font-size: 1.5rem; margin-bottom: 0.5rem;} table {border-collapse: collapse; margin-top: 1.5rem;} table tr:nth-child(even) {background: rgba(0,0,0,0.05);} table tr th {padding-top: 0.3rem; padding-bottom: 0.3rem; font-weight: bold; border-bottom: 1px solid black;} p, table {margin-bottom: 1.4rem;} .titlebar {display: flex; align-items: center; margin-bottom: 0.5rem; flex-wrap: wrap;} .titlebar > div {margin-bottom: 0.5rem;} .cols {column-width: 700px; margin-top: -2em;} .col { -webkit-column-break-inside: avoid; /* Chrome, Safari */ page-break-inside: avoid; /* Theoretically FF 20+ */ break-inside: avoid-column; /* IE 11 */ display:table; /* Actually FF 20+ */ } input, textarea, select{ height: calc(2rem + 2px); line-height: 1.4rem; text-decoration: none; border: 1px solid black; padding: 0 0.5rem; background: transparent; color: black; font-family: inherit; font-size: inherit; flex-grow: 1; background: white; } button, input[type="submit"], .btn { height: calc(2rem + 2px); line-height: 2rem; border: 1px solid transparent; display: inline-block; text-decoration: none; padding: 0 1rem; background: transparent; color: black; font-family: inherit; font-size: inherit; background-color: rgb(222, 222, 222); cursor: pointer; border-radius: 0.15rem; } button:focus, input[type="submit"]:focus, .btn:focus, .icon:focus {border-color: black;} select::-ms-expand {display: none;} select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: white url('../img/down.svg') calc(100% - 0.6rem) 50% no-repeat; background-size: auto 0.5rem; padding-right: 1.75rem; max-width: calc(100% - 15rem); } input[type="radio"], input[type="checkbox"], input[type="file"] {border: 0; height: auto; line-height: auto; margin-right: 0.4rem; vertical-align: middle; position: relative; bottom: 0.1rem;} input[type="file"] {padding: 0; margin: 0; bottom: 0;} input[type='number'] {-moz-appearance: textfield;} input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;} input[type="number"] {-moz-appearance: textfield;} input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;} textarea {min-height: 10rem; padding: 0.35rem 0.5rem; } .icon { display: inline-block; text-decoration: none; width: 0; height: 0; overflow: hidden; padding-top: 2rem; padding-left: 2rem; position: relative; background-color: rgb(222, 222, 222); cursor: pointer; border-radius: 0.15rem; border: 1px solid transparent; vertical-align: bottom; } .icon::before {content: ''; position: absolute; width: 2rem; height: 2rem; left: 0; top: 0;} .icon.filter::before { background: url('../img/filter.svg') center center / auto 45% no-repeat;} .icon.search::before { background: url('../img/search.svg') center center / auto 57% no-repeat;} .icon.prev::before { background: url('../img/prev.svg') center 48% / auto 40% no-repeat;} .icon.next::before { background: url('../img/next.svg') center 48% / auto 40% no-repeat;} form {margin-top: 1.5rem;} form, dl {width: 100%; max-width: 40rem;} form > div {display: flex; margin-bottom: 0.25rem;} form > div > *:nth-child(2) {flex-grow: 1;} form > div > *:nth-child(3) {margin-left: 0.25rem;} form > button {margin-top: 1.5rem;} dl {display: flex; margin-bottom: 1.4rem;} dt {width: 11rem; min-width: 11rem; padding-right: 2rem;} dd {flex-grow: 1;} dl + dl {margin-top: -1.4rem;} dl + dl dt {border-top: 1px solid transparent;} dl + dl dd {border-top: 1px solid silver;} ul.breadcrumb {margin-bottom: 0.3rem; font-size: 0.9rem; opacity: 0.45;} ul.breadcrumb li {display: inline; list-style: none;} ul.breadcrumb li + li::before {content: "/ ";} ul.breadcrumb li a {text-decoration: none;} ul.related li, ul.home li {list-style: none;} .filterbar {padding: 0.5rem 0.7rem; background: rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem;} .close::before{content: "+"; text-decoration: none; transform: rotate(45deg); display: inline-block;} .addFilter {margin-bottom: 0.5rem; display: none;} .addFilter.visible {display: block;} .addSearch {margin-bottom: 0.5rem; display: none;} .addSearch.visible {display: block;} .footeractions {margin-top: 1.5rem;} .pagination {display: flex; align-items: center; font-size: 0.9rem;} .pagination .icon {margin-right: 0.25rem;} .disabled {opacity: 0.4; cursor: default;} .pagination .icon:last-child {margin-right: 0; margin-left: 0.25rem;} .hidden {display: none;} @media only screen and (min-width: 1500px) { .content {display: block;} .title {position: absolute; bottom: 1.5rem;} .navigation {display: block; width: 15rem; height: 100vh;} .body {padding-top: 3rem; margin-left: 15rem; padding-left: 5rem;} .hamburger {margin-left: 2rem; margin-top: 2rem;} .hamburger.close span:nth-child(1) {margin: 0 0 0 0.2rem; width: 1.3rem; transform: translateY(-50%) rotate(-45deg); transform-origin: 0% 100%;} .hamburger.close span:nth-child(2) {margin-left: 0.3rem; transform: translateY(-50%) rotate(0deg);} .hamburger.close span:nth-child(3) {margin: 0 0 0 0.2rem; width: 1.3rem; display: block; transform: translateY(-50%) rotate(45deg); transform-origin: 0% 0%;} } .mobile-only {display: none;} @media only screen and (max-width: 600px) { ul.related li a, ul.home li a {display: inline-block; padding: 0.2rem 0;} table.read thead {display: none;} table.read tr {display: block; padding: 0.7rem 0.5rem;} table.read tr td {display: block; padding: 0;} table.read td:nth-child(odd) {font-weight: bold;} .mobile-only {display: initial;} form > div {flex-direction: column;} select {max-width: 100%;} }
0.237576
0.056392
html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .container { max-width: 960px; } .pricing-header { max-width: 700px; } .card-deck .card { min-width: 220px; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } body { padding-top: 0px; padding-bottom: 40px; background-color: #eee; } .form-signin { max-width: 330px; padding: 15px; margin: 0 auto; } .form-signin .form-signin-heading, .form-signin .checkbox { margin-bottom: 10px; } .form-signin .checkbox { font-weight: normal; } .form-signin .form-control { position: relative; height: auto; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 10px; font-size: 16px; } .form-signin .form-control:focus { z-index: 2; } .form-signin input { margin-top: 10px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .form-signin button { margin-top: 10px; } .has-error { color: red } .cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; color: #fff; padding: 6px 0; background-color: #000; z-index: 1000; text-align: center; font-size: 0.8125rem; } .cookie-bar-button { border-radius: 30px; margin: 0 10px 0 5px; padding: 3px 20px; font-size: 0.8125rem; } .footer { bottom: 0; width: 100%; /* Set the fixed height of the footer here */ height: 90px; background-color: #efefef; line-height: 8px; /* Vertically center the text there */ } .img-mdl{ position: absolute; color: #fff; text-align: center; left: 0; right: 0; top: 25%; letter-spacing: 3px; } .login-or { position: relative; font-size: 18px; color: #aaa; margin-top: 10px; margin-bottom: 10px; padding-top: 10px; padding-bottom: 10px; } .span-or { display: block; position: absolute; left: 50%; top: -2px; margin-left: -25px; background-color: #eee; color: #aaa; width: 50px; text-align: center; } .hr-or { background-color: #cdcdcd; height: 1px; margin-top: 0px !important; margin-bottom: 0px !important; } .icon-small { height:16px; margin:0; padding:0; } .m-r-sm { margin-right: .5em !important; } .kv-avatar .krajee-default.file-preview-frame,.kv-avatar .krajee-default.file-preview-frame:hover { margin: 0; padding: 0; border: none; box-shadow: none; text-align: center; } .kv-avatar { display: inline-block; } .kv-avatar .file-input { display: table-cell; width: 213px; } .pill-premium { display: block; padding: 5px 10px; background-color: transparent; color: #eba00e; font-size: 14px; border-radius: 14px; font-weight: 700; border: 2px solid #eba00e; text-align: center; } .online-status-green{ width: 12px; height: 12px; background-color: #3fcd15; display: block; margin: 0 15px 0 10px; border-radius: 12px; }
src/main/webapp/resources/css/common.css
html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .container { max-width: 960px; } .pricing-header { max-width: 700px; } .card-deck .card { min-width: 220px; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } body { padding-top: 0px; padding-bottom: 40px; background-color: #eee; } .form-signin { max-width: 330px; padding: 15px; margin: 0 auto; } .form-signin .form-signin-heading, .form-signin .checkbox { margin-bottom: 10px; } .form-signin .checkbox { font-weight: normal; } .form-signin .form-control { position: relative; height: auto; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 10px; font-size: 16px; } .form-signin .form-control:focus { z-index: 2; } .form-signin input { margin-top: 10px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .form-signin button { margin-top: 10px; } .has-error { color: red } .cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; color: #fff; padding: 6px 0; background-color: #000; z-index: 1000; text-align: center; font-size: 0.8125rem; } .cookie-bar-button { border-radius: 30px; margin: 0 10px 0 5px; padding: 3px 20px; font-size: 0.8125rem; } .footer { bottom: 0; width: 100%; /* Set the fixed height of the footer here */ height: 90px; background-color: #efefef; line-height: 8px; /* Vertically center the text there */ } .img-mdl{ position: absolute; color: #fff; text-align: center; left: 0; right: 0; top: 25%; letter-spacing: 3px; } .login-or { position: relative; font-size: 18px; color: #aaa; margin-top: 10px; margin-bottom: 10px; padding-top: 10px; padding-bottom: 10px; } .span-or { display: block; position: absolute; left: 50%; top: -2px; margin-left: -25px; background-color: #eee; color: #aaa; width: 50px; text-align: center; } .hr-or { background-color: #cdcdcd; height: 1px; margin-top: 0px !important; margin-bottom: 0px !important; } .icon-small { height:16px; margin:0; padding:0; } .m-r-sm { margin-right: .5em !important; } .kv-avatar .krajee-default.file-preview-frame,.kv-avatar .krajee-default.file-preview-frame:hover { margin: 0; padding: 0; border: none; box-shadow: none; text-align: center; } .kv-avatar { display: inline-block; } .kv-avatar .file-input { display: table-cell; width: 213px; } .pill-premium { display: block; padding: 5px 10px; background-color: transparent; color: #eba00e; font-size: 14px; border-radius: 14px; font-weight: 700; border: 2px solid #eba00e; text-align: center; } .online-status-green{ width: 12px; height: 12px; background-color: #3fcd15; display: block; margin: 0 15px 0 10px; border-radius: 12px; }
0.433262
0.104706
:root { --primary-color: #23263A; --secondary-color: #45405a; --accent-color: #e2736e; --accent-color2: #f9f871; --overlay-color: rgba(95, 64, 97, 0.6); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Poppins", sans-serif; margin:0 auto; } nav { background-color: var(--primary-color); padding: 0 2rem 1.5rem 2rem; position: fixed; width: 100%; display: flex; justify-content: space-between; /* align-items: center; */ } #logo { color: var(--accent-color2); font-size: 1.5rem; padding-top: 1.2rem; } /* Hamburger menu styling for mobile devices */ .menu-container { position: relative; align-self: stretch; } .menu-container .toggler { width: 3rem; height:3rem; position: absolute; top: 0; right: 0; cursor: pointer; z-index: 2; opacity: 0; } .menu-container .hamburger { width: 3.75rem; height: 3.75rem; position: absolute; top: 0; right: 0; padding: 1rem; z-index: 1 ; display: flex; justify-content: center; align-items: center; } /* Hamburger lines */ .menu-container .hamburger > div { background-color: var(--accent-color2); position: relative; width: 100%; height: 3px; display: flex; justify-content: center; align-items: center; transition: all 400ms ease; } .menu-container .hamburger > div::before, .menu-container .hamburger > div::after { content: ""; background-color: var(--accent-color2); width: 100%; height: 3px; position: absolute; top: 10px; } .menu-container .hamburger > div::after { top: -10px; } /* toggler animate (rotation of the hambuger) */ .menu-container .toggler:checked + .hamburger > div { transform: rotate(45deg); } .menu-container .toggler:checked + .hamburger > div::before, .menu-container .toggler:checked + .hamburger > div::after { top: 0; transform: rotate(90deg); } .menu-container .toggler:checked:hover + .hamburger > div { transform: rotate(-45deg); } /* show menu */ .menu-container .toggler:checked ~ .menu { visibility: visible; } .menu-container .toggler:checked ~ .menu > div { transform: scale(1); } .menu-container .toggler:checked ~ .menu > div > div { opacity: 1; } /* style the navlinks menu */ .menu-container .menu { width: 100%; height: 100%; position: fixed; top: 0; right: 0; visibility: hidden; overflow: hidden; display: flex; justify-content: center; align-items: center; } .menu-container .menu > div { background-color: var(--overlay-color); width: 200vw; height: 200vw; border-radius: 50%; display: flex; flex: none; justify-content: center; align-items: center; transform: scale(0); transition: transform 400ms ease; } .menu-container .menu > div > div { text-align: center; max-width: 90vw; max-height: 100vh; opacity: 0; transition: opacity 400ms ease; } .menu-container .menu > div > div > ul > li { list-style: none; padding-bottom: 2rem; } .menu-container .menu > div > div > ul > li a { text-decoration: none; color: var(--accent-color2); font-size: 1.5rem; font-weight: 600; transition: background-color 400ms ease; } .menu-container .menu > div > div > ul > li a:hover { color: var(--accent-color); } .menu-container .menu > div > div > ul > li a:focus { border: 1px solid var(--accent-color); border-radius: 5px; background-color: var(--secondary-color); color: var(--accent-color); padding: 5px 4px } /* End of the Hamburger menu styling */ /* Welcone-section */ #welcome-section { width: 100vw; height: 100vh; display: flex; flex-direction: row; align-items: center; color: white; padding-top: 5rem; padding: 3rem 2rem 0 2rem; background-color: var(--secondary-color); } .icons { display: flex; flex-wrap: wrap; gap: 2rem; margin: 3rem 0 3rem 0; } .icons .icons__elements { width: 3rem; height: 3rem; font-size: 1.3rem; border: 1px solid var(--accent-color2); border-radius: 50%; display: flex; justify-content: center; align-items: center; } .icons .icons__elements .fab { color: var(--accent-color) } .intro { line-height: 2; } .intro > h1 { font-size: 2rem; padding-bottom: 1rem; } .intro > h1 > span { color: var(--accent-color); font-size: 2.2rem; } .intro > p { font-size: 1.4rem; line-height: 1.3; padding-bottom: 4rem; } .intro > .intro__btn { color: white; display: inline-block; font-size: 1.2rem; text-decoration: none; border: 1px solid var(--accent-color); border-radius: .5em; padding: .6rem .8rem; transition: background-color 500ms ease; } .intro > .intro__btn:hover { background-color: var(--overlay-color); } .intro > .intro__btn + .intro__btn { margin-left: 2rem; } .img { position: absolute; transform: scale(0); } @media (max-width: 360px) { .icons { margin-top: 3rem; margin-bottom: 2rem; } .intro { line-height: 1.4; } .intro > h1 { line-height: 1.3; } .intro > p { padding-bottom: 2rem; } .intro > .intro__btn { margin-bottom: .6em; } .intro > .intro__btn + .intro__btn { margin-left: 0.3em; } } /* Skills section */ #skills { width: 100%; background-color: var(--primary-color); color: white; padding: 3rem 2rem; text-align: center; } #skills .cards-container { display: flex; flex-direction: column; gap: 2rem; justify-content: center; align-items: center; margin-top: 2rem; } #skills .cards-container .skills__cards { border: 1px solid var(--accent-color); border-radius: .3rem; padding: 1rem 2rem; } #skills .cards-container .skills__cards > h3 { font-size: 1.3rem; } /* About me section */ #about { width: 100%; background-color: var(--secondary-color); text-align: center; padding: 3rem 2rem; color: white; } #about .about__summary { width: 100%; display: flex; flex-direction: column; } #about .about__summary > div > img { width: 100%; height: auto; border-radius: .3rem; margin: 2rem 0; } #about .about__summary .summary__description { text-align: left; } #about .about__summary .summary__description > h3{ text-align: left; padding: 1rem 0 2rem 0; } #about .about__summary .summary__description > h3 ~ p{ padding-bottom: 1rem; } #about .about__summary .summary__description .pro-links { margin-top: 1rem; text-align: center; } #about .about__summary .summary__description .pro-links .code-link { color: white; font-size: 3rem; } #about .about__summary .summary__description .pro-links .code-link + .code-link { padding-left: 1rem; } /* subscribe section */ #subscribe { width: 100%; background-color: var(--primary-color); color: white; padding: 3rem 2rem; display: grid; place-items: center; line-height: 2; } #subscribe .mail-input { width: 80%; display: grid; padding: .5rem 0; } #subscribe .mail-input > input { width: 70%; padding: .5rem 1rem; border: 1px solid var(--accent-color2); border-radius: .3rem; justify-self: center; margin-bottom: 1rem; } #subscribe .mail-input > .subscribe-btn{ width: 70%; background-color: var(--accent-color); color: var(--accent-color2); font-size: 1.3rem; text-align: center; text-decoration: none; border-radius: .3rem; display: block; justify-self: center; transition: background-color 400ms ease; } #subscribe .mail-input > .subscribe-btn:hover { background-color: var(--secondary-color); } /* projects section */ #projects { width: 100%; background-color: var(--secondary-color); color: white; display: grid; place-items: center; padding: 3rem 2rem; text-align: center; } #projects > h1 { width: 90%; line-height: 2; } #projects > p { width: 90%; } #projects .projects-cards-container { width: 90%; display: grid; place-items: center; padding-top: 1.5rem; display: grid; row-gap: 1.5rem; } #projects .projects-cards-container .project-card { width: 90%; display: grid; justify-content: center; place-items: center; } #projects .projects-cards-container .project-card > .project-title { padding: .6rem; } #projects .projects-cards-container .project-card > img { max-width: 90%; height: auto; } #projects .projects-cards-container .project-card > div { display: flex; flex-direction: column; width: 90%; } #projects .projects-cards-container .project-card > div > a { width: 100%; background-color: var(--primary-color); color: var(--accent-color2); font-size: 1.3rem; padding: .5rem; text-decoration: none; } #projects .projects-cards-container .project-card > div > a:hover { text-decoration: underline; } #projects .projects-cards-container .project-card > div > a + a { background-color: var(--accent-color); } #projects .projects-cards-container .project-card > div ~ a > i { padding-left: 3em; } /* Footer section */ #footer { width: 100%; background-color: var(--primary-color); display: flex; flex-direction: column; color: white; padding: 3rem 2rem 1rem 2rem; } #footer .useful-links { margin-bottom: 1.5rem; } #footer .useful-links div > ul > li { list-style: none; padding: 1rem 0 .5rem 0; } #footer .useful-links > div > ul > li a { text-decoration: none; color: white; } #footer .useful-links > div > ul > li a:hover { text-decoration: underline; } #footer #contact .form { padding: 1rem 0 0 0; } #footer #contact .form > input, textarea { width: 95%; margin-bottom: 1.5rem; margin-top: .5rem; padding: .3rem .5rem; border: 1px solid var(--accent-color2); border-radius: .3rem; } #footer #contact .form > button { font-size: 1.3rem; background-color: var(--secondary-color); color: var(--accent-color2); padding: .5em 1rem; border: 1px solid var(--accent-color2); border-radius: .5rem; } #footer #contact + div { width: 100%; font-size: 1.1rem; text-align: center; margin-top: 3rem; } #footer #contact + div p + p { padding-top: 1rem; } /* Media Querries */ @media (min-width: 53.125rem) { /* for screen >= 850px */ /* Navigation bar media Query */ nav { top: 0; display: flex; justify-content: space-around; align-items: center; gap: 8rem; background-color: var(--primary-color); padding: 0 10%; z-index: 2; } #logo { padding-top: 0; } .menu-container { width: 100%; position: static; } .menu-container .toggler { display: none; pointer-events: none; } .menu-container .hamburger { display: none; pointer-events: none; } .menu-container .menu { width: 100%; height: 100%; position: static; visibility: visible; } .menu-container .menu > div { width: 100%; height: 50px; justify-content: flex-end; background-color: var(--primary-color); border-radius: 0%; transform: scale(1); transition: none; } .menu-container .menu > div > div { width: 70%; opacity: 1; transition: none; text-align: left; } .menu-container .menu > div > div > ul { display: flex; justify-content: space-between; } .menu-container .menu > div > div > ul > li { padding-bottom: 0rem; } .menu-container .menu > div > div > ul > li a { font-size: 1rem; font-weight: normal; } /* Welcone section Media Querry */ #welcome-section { display: grid; grid-template-columns: 3fr 2fr; column-gap: 1rem; align-items: center; padding: 0 10%; } .icons { margin-top: 3rem; } .img { width: 100%; position: static; transform: scale(1); } .welcome__img { width: 100%; height: 100%; } /* Skills section Media Querry */ #skills { padding-left: 10%; padding-right: 10%; } #skills .cards-container { flex-direction: row; } #skills .cards-container .skills__cards { height: 17rem; display: grid; place-items: center; } /* About me section Media Querry */ #about { padding-left: 10%; padding-right: 10%; } #about h1 { width: 90%; } #about .about__summary { flex-direction: row; justify-content: center; gap: 2rem; align-items: center; } #about .about__summary > div { width: 40%; } #about .about__summary .summary__description { padding-top: 1rem; } /* Subscribe section Media Querry */ #subscribe .mail-input { width: 60%; display: flex; align-items: center; padding: .5rem 1rem; } #subscribe .mail-input > input { width: 70%; padding: .7rem 2rem; border-radius: 0; margin-bottom: 0; border-bottom-left-radius: 2rem; border-top-left-radius: 2rem; } #subscribe .mail-input > .subscribe-btn{ width: 30%; padding: 0 1rem; border-bottom-left-radius: 0; border-top-left-radius: 0; border-bottom-right-radius: 2rem; border-top-right-radius: 2rem; } /* projects section Media Querry */ #projects { padding-left: 10%; padding-right: 10%; } #projects .projects-cards-container { width: 100%; grid-template-columns: repeat(2, 1fr); place-items: center; row-gap: 2rem; column-gap: 1.5rem; } #projects .projects-cards-container .project-card, #projects .projects-cards-container .project-card > div { width: 100%; } #projects .projects-cards-container .project-card > .project-title { padding: 0 0 .5rem 0; } #projects .projects-cards-container .project-card > img { max-width: 100%; } /* Footer section Media Querry */ #footer { display: grid; grid-template-columns: repeat(2, 1fr); padding-left: 10%; padding-right: 10%; } #footer #contact + div { grid-column: 1/3; } } @media (min-width: 75rem) { /* nav section:menu */ .menu-container .menu > div > div { width: 55%; } /* Skills section */ #skills .cards-container .skills__cards { height: 10rem; display: grid; place-items: center; } /* Projects setion */ #projects .projects-cards-container { grid-template-columns: repeat(3, 1fr); } } @media screen and (max-height: 30rem) { #welcome-section .presentation { display: grid; align-items: center; } #welcome-section .presentation .icons { margin: 1rem 0 1rem 0; } .icons .icons__elements { width: 2rem; height: 2rem; font-size: 1.1rem; border: 1px solid var(--accent-color); } .intro { line-height: 1.2; } .intro > h1 { font-size: 1.4rem; padding-bottom: .5rem; } .intro > h1 > span { color: var(--accent-color); font-size: 1.6rem; } .intro > p { font-size: 1rem; line-height: 1.2; padding-bottom: 1.5rem; } .intro > .intro__btn { color: white; display: inline-block; font-size: 1rem; text-decoration: none; border: 1px solid var(--accent-color); border-radius: .5em; padding: .4rem .6rem; transition: background-color 500ms ease; } .intro > .intro__btn:hover { background-color: var(--overlay-color); } .intro > .intro__btn + .intro__btn { margin-left: 2rem; } }
5_Personal_Portfolio_Website/style.css
:root { --primary-color: #23263A; --secondary-color: #45405a; --accent-color: #e2736e; --accent-color2: #f9f871; --overlay-color: rgba(95, 64, 97, 0.6); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Poppins", sans-serif; margin:0 auto; } nav { background-color: var(--primary-color); padding: 0 2rem 1.5rem 2rem; position: fixed; width: 100%; display: flex; justify-content: space-between; /* align-items: center; */ } #logo { color: var(--accent-color2); font-size: 1.5rem; padding-top: 1.2rem; } /* Hamburger menu styling for mobile devices */ .menu-container { position: relative; align-self: stretch; } .menu-container .toggler { width: 3rem; height:3rem; position: absolute; top: 0; right: 0; cursor: pointer; z-index: 2; opacity: 0; } .menu-container .hamburger { width: 3.75rem; height: 3.75rem; position: absolute; top: 0; right: 0; padding: 1rem; z-index: 1 ; display: flex; justify-content: center; align-items: center; } /* Hamburger lines */ .menu-container .hamburger > div { background-color: var(--accent-color2); position: relative; width: 100%; height: 3px; display: flex; justify-content: center; align-items: center; transition: all 400ms ease; } .menu-container .hamburger > div::before, .menu-container .hamburger > div::after { content: ""; background-color: var(--accent-color2); width: 100%; height: 3px; position: absolute; top: 10px; } .menu-container .hamburger > div::after { top: -10px; } /* toggler animate (rotation of the hambuger) */ .menu-container .toggler:checked + .hamburger > div { transform: rotate(45deg); } .menu-container .toggler:checked + .hamburger > div::before, .menu-container .toggler:checked + .hamburger > div::after { top: 0; transform: rotate(90deg); } .menu-container .toggler:checked:hover + .hamburger > div { transform: rotate(-45deg); } /* show menu */ .menu-container .toggler:checked ~ .menu { visibility: visible; } .menu-container .toggler:checked ~ .menu > div { transform: scale(1); } .menu-container .toggler:checked ~ .menu > div > div { opacity: 1; } /* style the navlinks menu */ .menu-container .menu { width: 100%; height: 100%; position: fixed; top: 0; right: 0; visibility: hidden; overflow: hidden; display: flex; justify-content: center; align-items: center; } .menu-container .menu > div { background-color: var(--overlay-color); width: 200vw; height: 200vw; border-radius: 50%; display: flex; flex: none; justify-content: center; align-items: center; transform: scale(0); transition: transform 400ms ease; } .menu-container .menu > div > div { text-align: center; max-width: 90vw; max-height: 100vh; opacity: 0; transition: opacity 400ms ease; } .menu-container .menu > div > div > ul > li { list-style: none; padding-bottom: 2rem; } .menu-container .menu > div > div > ul > li a { text-decoration: none; color: var(--accent-color2); font-size: 1.5rem; font-weight: 600; transition: background-color 400ms ease; } .menu-container .menu > div > div > ul > li a:hover { color: var(--accent-color); } .menu-container .menu > div > div > ul > li a:focus { border: 1px solid var(--accent-color); border-radius: 5px; background-color: var(--secondary-color); color: var(--accent-color); padding: 5px 4px } /* End of the Hamburger menu styling */ /* Welcone-section */ #welcome-section { width: 100vw; height: 100vh; display: flex; flex-direction: row; align-items: center; color: white; padding-top: 5rem; padding: 3rem 2rem 0 2rem; background-color: var(--secondary-color); } .icons { display: flex; flex-wrap: wrap; gap: 2rem; margin: 3rem 0 3rem 0; } .icons .icons__elements { width: 3rem; height: 3rem; font-size: 1.3rem; border: 1px solid var(--accent-color2); border-radius: 50%; display: flex; justify-content: center; align-items: center; } .icons .icons__elements .fab { color: var(--accent-color) } .intro { line-height: 2; } .intro > h1 { font-size: 2rem; padding-bottom: 1rem; } .intro > h1 > span { color: var(--accent-color); font-size: 2.2rem; } .intro > p { font-size: 1.4rem; line-height: 1.3; padding-bottom: 4rem; } .intro > .intro__btn { color: white; display: inline-block; font-size: 1.2rem; text-decoration: none; border: 1px solid var(--accent-color); border-radius: .5em; padding: .6rem .8rem; transition: background-color 500ms ease; } .intro > .intro__btn:hover { background-color: var(--overlay-color); } .intro > .intro__btn + .intro__btn { margin-left: 2rem; } .img { position: absolute; transform: scale(0); } @media (max-width: 360px) { .icons { margin-top: 3rem; margin-bottom: 2rem; } .intro { line-height: 1.4; } .intro > h1 { line-height: 1.3; } .intro > p { padding-bottom: 2rem; } .intro > .intro__btn { margin-bottom: .6em; } .intro > .intro__btn + .intro__btn { margin-left: 0.3em; } } /* Skills section */ #skills { width: 100%; background-color: var(--primary-color); color: white; padding: 3rem 2rem; text-align: center; } #skills .cards-container { display: flex; flex-direction: column; gap: 2rem; justify-content: center; align-items: center; margin-top: 2rem; } #skills .cards-container .skills__cards { border: 1px solid var(--accent-color); border-radius: .3rem; padding: 1rem 2rem; } #skills .cards-container .skills__cards > h3 { font-size: 1.3rem; } /* About me section */ #about { width: 100%; background-color: var(--secondary-color); text-align: center; padding: 3rem 2rem; color: white; } #about .about__summary { width: 100%; display: flex; flex-direction: column; } #about .about__summary > div > img { width: 100%; height: auto; border-radius: .3rem; margin: 2rem 0; } #about .about__summary .summary__description { text-align: left; } #about .about__summary .summary__description > h3{ text-align: left; padding: 1rem 0 2rem 0; } #about .about__summary .summary__description > h3 ~ p{ padding-bottom: 1rem; } #about .about__summary .summary__description .pro-links { margin-top: 1rem; text-align: center; } #about .about__summary .summary__description .pro-links .code-link { color: white; font-size: 3rem; } #about .about__summary .summary__description .pro-links .code-link + .code-link { padding-left: 1rem; } /* subscribe section */ #subscribe { width: 100%; background-color: var(--primary-color); color: white; padding: 3rem 2rem; display: grid; place-items: center; line-height: 2; } #subscribe .mail-input { width: 80%; display: grid; padding: .5rem 0; } #subscribe .mail-input > input { width: 70%; padding: .5rem 1rem; border: 1px solid var(--accent-color2); border-radius: .3rem; justify-self: center; margin-bottom: 1rem; } #subscribe .mail-input > .subscribe-btn{ width: 70%; background-color: var(--accent-color); color: var(--accent-color2); font-size: 1.3rem; text-align: center; text-decoration: none; border-radius: .3rem; display: block; justify-self: center; transition: background-color 400ms ease; } #subscribe .mail-input > .subscribe-btn:hover { background-color: var(--secondary-color); } /* projects section */ #projects { width: 100%; background-color: var(--secondary-color); color: white; display: grid; place-items: center; padding: 3rem 2rem; text-align: center; } #projects > h1 { width: 90%; line-height: 2; } #projects > p { width: 90%; } #projects .projects-cards-container { width: 90%; display: grid; place-items: center; padding-top: 1.5rem; display: grid; row-gap: 1.5rem; } #projects .projects-cards-container .project-card { width: 90%; display: grid; justify-content: center; place-items: center; } #projects .projects-cards-container .project-card > .project-title { padding: .6rem; } #projects .projects-cards-container .project-card > img { max-width: 90%; height: auto; } #projects .projects-cards-container .project-card > div { display: flex; flex-direction: column; width: 90%; } #projects .projects-cards-container .project-card > div > a { width: 100%; background-color: var(--primary-color); color: var(--accent-color2); font-size: 1.3rem; padding: .5rem; text-decoration: none; } #projects .projects-cards-container .project-card > div > a:hover { text-decoration: underline; } #projects .projects-cards-container .project-card > div > a + a { background-color: var(--accent-color); } #projects .projects-cards-container .project-card > div ~ a > i { padding-left: 3em; } /* Footer section */ #footer { width: 100%; background-color: var(--primary-color); display: flex; flex-direction: column; color: white; padding: 3rem 2rem 1rem 2rem; } #footer .useful-links { margin-bottom: 1.5rem; } #footer .useful-links div > ul > li { list-style: none; padding: 1rem 0 .5rem 0; } #footer .useful-links > div > ul > li a { text-decoration: none; color: white; } #footer .useful-links > div > ul > li a:hover { text-decoration: underline; } #footer #contact .form { padding: 1rem 0 0 0; } #footer #contact .form > input, textarea { width: 95%; margin-bottom: 1.5rem; margin-top: .5rem; padding: .3rem .5rem; border: 1px solid var(--accent-color2); border-radius: .3rem; } #footer #contact .form > button { font-size: 1.3rem; background-color: var(--secondary-color); color: var(--accent-color2); padding: .5em 1rem; border: 1px solid var(--accent-color2); border-radius: .5rem; } #footer #contact + div { width: 100%; font-size: 1.1rem; text-align: center; margin-top: 3rem; } #footer #contact + div p + p { padding-top: 1rem; } /* Media Querries */ @media (min-width: 53.125rem) { /* for screen >= 850px */ /* Navigation bar media Query */ nav { top: 0; display: flex; justify-content: space-around; align-items: center; gap: 8rem; background-color: var(--primary-color); padding: 0 10%; z-index: 2; } #logo { padding-top: 0; } .menu-container { width: 100%; position: static; } .menu-container .toggler { display: none; pointer-events: none; } .menu-container .hamburger { display: none; pointer-events: none; } .menu-container .menu { width: 100%; height: 100%; position: static; visibility: visible; } .menu-container .menu > div { width: 100%; height: 50px; justify-content: flex-end; background-color: var(--primary-color); border-radius: 0%; transform: scale(1); transition: none; } .menu-container .menu > div > div { width: 70%; opacity: 1; transition: none; text-align: left; } .menu-container .menu > div > div > ul { display: flex; justify-content: space-between; } .menu-container .menu > div > div > ul > li { padding-bottom: 0rem; } .menu-container .menu > div > div > ul > li a { font-size: 1rem; font-weight: normal; } /* Welcone section Media Querry */ #welcome-section { display: grid; grid-template-columns: 3fr 2fr; column-gap: 1rem; align-items: center; padding: 0 10%; } .icons { margin-top: 3rem; } .img { width: 100%; position: static; transform: scale(1); } .welcome__img { width: 100%; height: 100%; } /* Skills section Media Querry */ #skills { padding-left: 10%; padding-right: 10%; } #skills .cards-container { flex-direction: row; } #skills .cards-container .skills__cards { height: 17rem; display: grid; place-items: center; } /* About me section Media Querry */ #about { padding-left: 10%; padding-right: 10%; } #about h1 { width: 90%; } #about .about__summary { flex-direction: row; justify-content: center; gap: 2rem; align-items: center; } #about .about__summary > div { width: 40%; } #about .about__summary .summary__description { padding-top: 1rem; } /* Subscribe section Media Querry */ #subscribe .mail-input { width: 60%; display: flex; align-items: center; padding: .5rem 1rem; } #subscribe .mail-input > input { width: 70%; padding: .7rem 2rem; border-radius: 0; margin-bottom: 0; border-bottom-left-radius: 2rem; border-top-left-radius: 2rem; } #subscribe .mail-input > .subscribe-btn{ width: 30%; padding: 0 1rem; border-bottom-left-radius: 0; border-top-left-radius: 0; border-bottom-right-radius: 2rem; border-top-right-radius: 2rem; } /* projects section Media Querry */ #projects { padding-left: 10%; padding-right: 10%; } #projects .projects-cards-container { width: 100%; grid-template-columns: repeat(2, 1fr); place-items: center; row-gap: 2rem; column-gap: 1.5rem; } #projects .projects-cards-container .project-card, #projects .projects-cards-container .project-card > div { width: 100%; } #projects .projects-cards-container .project-card > .project-title { padding: 0 0 .5rem 0; } #projects .projects-cards-container .project-card > img { max-width: 100%; } /* Footer section Media Querry */ #footer { display: grid; grid-template-columns: repeat(2, 1fr); padding-left: 10%; padding-right: 10%; } #footer #contact + div { grid-column: 1/3; } } @media (min-width: 75rem) { /* nav section:menu */ .menu-container .menu > div > div { width: 55%; } /* Skills section */ #skills .cards-container .skills__cards { height: 10rem; display: grid; place-items: center; } /* Projects setion */ #projects .projects-cards-container { grid-template-columns: repeat(3, 1fr); } } @media screen and (max-height: 30rem) { #welcome-section .presentation { display: grid; align-items: center; } #welcome-section .presentation .icons { margin: 1rem 0 1rem 0; } .icons .icons__elements { width: 2rem; height: 2rem; font-size: 1.1rem; border: 1px solid var(--accent-color); } .intro { line-height: 1.2; } .intro > h1 { font-size: 1.4rem; padding-bottom: .5rem; } .intro > h1 > span { color: var(--accent-color); font-size: 1.6rem; } .intro > p { font-size: 1rem; line-height: 1.2; padding-bottom: 1.5rem; } .intro > .intro__btn { color: white; display: inline-block; font-size: 1rem; text-decoration: none; border: 1px solid var(--accent-color); border-radius: .5em; padding: .4rem .6rem; transition: background-color 500ms ease; } .intro > .intro__btn:hover { background-color: var(--overlay-color); } .intro > .intro__btn + .intro__btn { margin-left: 2rem; } }
0.49048
0.119203
body{ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } /* * * ========================================== * CUSTOM UTIL CLASSES * ========================================== * */ .navbar { transition: all 0.4s; font-weight: 10vh; } .navbar .btn{ color: #fff; border-color: #fff; } .btn:hover{ color: #555; border-color: #555; } .navbar .nav-link { color: #fff; } .navbar .nav-link:hover, .navbar .nav-link:focus { color: #fff; text-decoration: none; } .navbar .navbar-brand { color: #fff; } /* Change navbar styling on scroll */ .navbar.active { background: #fff; box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1); } .navbar.active .nav-link { color: #555; } .navbar.active .nav-link:hover, .navbar.active .nav-link:focus { color: #555; text-decoration: none; } .navbar.active .navbar-brand{ color: #555; } .navbar.active .btn{ color: #555; border-color: #555; } .navbar.active .btn:hover{ color: #3098fa; border-color: #3098fa; } /* * * ========================================== * FOR Content * ========================================== * */ .jumbotron-page .text-small { font-size: 0.9rem !important; } .jumbotron-page img{ visibility: hidden; } .text-jumbotron{ margin-top: -6.5em; } .jumbotron-page .py-5 .text-jumbotron h1{ font-size: 2rem !important; font-weight: 300; line-height: 1.2; } .text-job{ margin-top: -20rem; background-color: white; border-radius: 10px; } .job-search{ margin-left: 10px; } .text-job-search-left{ margin-top: 5rem; } .text-job-search-right{ margin-top: -20rem; } body { overflow-x: hidden; min-height: 110vh; background-color: #3098fa; background-image: linear-gradient(135deg, #3098fa 0%, #c4e0e5 100%); } body img{ visibility: hidden; } .border-content{ border: solid; border-color: #fff; border-radius: 20px; } .job{ margin-bottom: 15px; margin-left: 20px; font-size: 20px; } /* Change navbar styling on small viewports */ @media (min-width: 992px) { .mt-5{ margin-top: 3rem!important; margin-left: 2rem; } .jumbotron-page img{ visibility: visible; margin-top: 5px; } .text-jumbotron{ margin-top: 10px; } body img{ border-radius: 20px; visibility: visible; } .job { margin-left: 0; margin-top: -35rem; margin-bottom: 12rem; } .job img{ margin-right: 29px; z-index: 2; } .text-job{ margin-top: 0; margin-right: 0; background-color: white; border-radius: 10px; } .text-job .text-white{ color:#3098fa!important; font-size: 17px; } .img-search{ margin-left: 15px; } .job-search{ font-size: 20px; margin-left: 0; } .job-search .text-white{ margin-top: 10px; } } @media (max-width: 992px) { .navbar { background: #fff; } .navbar .navbar-brand, .navbar .nav-link { color: #555; } }
assets/css/landing-page.css
body{ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } /* * * ========================================== * CUSTOM UTIL CLASSES * ========================================== * */ .navbar { transition: all 0.4s; font-weight: 10vh; } .navbar .btn{ color: #fff; border-color: #fff; } .btn:hover{ color: #555; border-color: #555; } .navbar .nav-link { color: #fff; } .navbar .nav-link:hover, .navbar .nav-link:focus { color: #fff; text-decoration: none; } .navbar .navbar-brand { color: #fff; } /* Change navbar styling on scroll */ .navbar.active { background: #fff; box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1); } .navbar.active .nav-link { color: #555; } .navbar.active .nav-link:hover, .navbar.active .nav-link:focus { color: #555; text-decoration: none; } .navbar.active .navbar-brand{ color: #555; } .navbar.active .btn{ color: #555; border-color: #555; } .navbar.active .btn:hover{ color: #3098fa; border-color: #3098fa; } /* * * ========================================== * FOR Content * ========================================== * */ .jumbotron-page .text-small { font-size: 0.9rem !important; } .jumbotron-page img{ visibility: hidden; } .text-jumbotron{ margin-top: -6.5em; } .jumbotron-page .py-5 .text-jumbotron h1{ font-size: 2rem !important; font-weight: 300; line-height: 1.2; } .text-job{ margin-top: -20rem; background-color: white; border-radius: 10px; } .job-search{ margin-left: 10px; } .text-job-search-left{ margin-top: 5rem; } .text-job-search-right{ margin-top: -20rem; } body { overflow-x: hidden; min-height: 110vh; background-color: #3098fa; background-image: linear-gradient(135deg, #3098fa 0%, #c4e0e5 100%); } body img{ visibility: hidden; } .border-content{ border: solid; border-color: #fff; border-radius: 20px; } .job{ margin-bottom: 15px; margin-left: 20px; font-size: 20px; } /* Change navbar styling on small viewports */ @media (min-width: 992px) { .mt-5{ margin-top: 3rem!important; margin-left: 2rem; } .jumbotron-page img{ visibility: visible; margin-top: 5px; } .text-jumbotron{ margin-top: 10px; } body img{ border-radius: 20px; visibility: visible; } .job { margin-left: 0; margin-top: -35rem; margin-bottom: 12rem; } .job img{ margin-right: 29px; z-index: 2; } .text-job{ margin-top: 0; margin-right: 0; background-color: white; border-radius: 10px; } .text-job .text-white{ color:#3098fa!important; font-size: 17px; } .img-search{ margin-left: 15px; } .job-search{ font-size: 20px; margin-left: 0; } .job-search .text-white{ margin-top: 10px; } } @media (max-width: 992px) { .navbar { background: #fff; } .navbar .navbar-brand, .navbar .nav-link { color: #555; } }
0.394434
0.058507
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .main{ padding-left:20px!important; padding-right:20px!important; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .abajo{ margin-top: 85px; } .logo{ width:100%; height:80px; background:white; display:block !important; } .options li{ width:100%!important; } .navigation{ width:100%; height:148px !important; } .opti{ width:470px; height:60px; margin-left:auto; margin-right:auto; } .menu { width: 100%; height: 60px; } .boton{ width:60px !important; height:60px !important; display:block !important; } .esconder li a { padding-left: 20px; padding-right: 20px; padding-top: 20px; padding-bottom: 20px; color: white; font: 18px Verdana; } .imagenes{ position: relative; display: inline-block; } #Agenda{ width:135px !important; height:auto; } .agenda { padding-left: 35px!important; padding-right: 35px!important; padding-top: 20px; padding-bottom: 20px; } .carrusel { margin-top:1px; width: 100%!important; height: 400px !important; } .bloco{ height: 100%; } .titulo{ display: block; top: 50px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .select-images{ background: gray; } .font-title{ font: 24px Verdana !important; } .subtitulo{ display: block; top: 140px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .notice-minimal{ width: 400px; height: 300px; } .notice-img{ height: 400px; width: 400px; } .notice-title{ display: block; top: 1px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .atras{ background: white; color: black; } .atras:hover{ background: black; color: white; } .board{ width: 80%; margin-left: auto; margin-right: auto; } .contenedor{ height: 250px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; /* Set the fixed height of the footer here */ height: 60px; line-height: 60px; /* Vertically center the text there */ } @media screen and (max-width:992px){ .esconder{ display:none; } .container{ width:400px!important; } .card{ display: block; width: 300px } .navigation{ height:auto!important; } }
public/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .main{ padding-left:20px!important; padding-right:20px!important; } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .abajo{ margin-top: 85px; } .logo{ width:100%; height:80px; background:white; display:block !important; } .options li{ width:100%!important; } .navigation{ width:100%; height:148px !important; } .opti{ width:470px; height:60px; margin-left:auto; margin-right:auto; } .menu { width: 100%; height: 60px; } .boton{ width:60px !important; height:60px !important; display:block !important; } .esconder li a { padding-left: 20px; padding-right: 20px; padding-top: 20px; padding-bottom: 20px; color: white; font: 18px Verdana; } .imagenes{ position: relative; display: inline-block; } #Agenda{ width:135px !important; height:auto; } .agenda { padding-left: 35px!important; padding-right: 35px!important; padding-top: 20px; padding-bottom: 20px; } .carrusel { margin-top:1px; width: 100%!important; height: 400px !important; } .bloco{ height: 100%; } .titulo{ display: block; top: 50px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .select-images{ background: gray; } .font-title{ font: 24px Verdana !important; } .subtitulo{ display: block; top: 140px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .notice-minimal{ width: 400px; height: 300px; } .notice-img{ height: 400px; width: 400px; } .notice-title{ display: block; top: 1px; left: 0; padding: 5px; width: 100%; position: absolute !important; z-index: 9999!important; } .atras{ background: white; color: black; } .atras:hover{ background: black; color: white; } .board{ width: 80%; margin-left: auto; margin-right: auto; } .contenedor{ height: 250px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; /* Set the fixed height of the footer here */ height: 60px; line-height: 60px; /* Vertically center the text there */ } @media screen and (max-width:992px){ .esconder{ display:none; } .container{ width:400px!important; } .card{ display: block; width: 300px } .navigation{ height:auto!important; } }
0.506591
0.077868
html, body { margin: 0; padding: 0; background: #424242; color: #776e65; font-family: "Microsoft Yahei", "Clear Sans", "Helvetica Neue", Arial, sans-serif; font-size: 18px; } .tile .tile-inner { border-radius: 3px; background: #eee4da; text-align: center; font-weight: bold; z-index: 10; font-size: 22px; } @media screen and (max-width: 520px) { .tile .tile-inner { font-size: 10px; } } .tile.tile-2 .tile-inner { background: #eee4da; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0); } .tile.tile-4 .tile-inner { background: #ede0c8; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0); } .tile.tile-8 .tile-inner { color: #f9f6f2; background: #f2b179; } .tile.tile-16 .tile-inner { color: #f9f6f2; background: #f59563; } .tile.tile-32 .tile-inner { color: #f9f6f2; background: #f67c5f; } .tile.tile-64 .tile-inner { color: #f9f6f2; background: #f65e3b; } .tile.tile-128 .tile-inner { color: #f9f6f2; background: #edcf72; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.2381), inset 0 0 0 1px rgba(255, 255, 255, 0.14286); } @media screen and (max-width: 520px) { .tile.tile-128 .tile-inner { font-size: 10px; } } .tile.tile-256 .tile-inner { color: #f9f6f2; background: #edcc61; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.31746), inset 0 0 0 1px rgba(255, 255, 255, 0.19048); } @media screen and (max-width: 520px) { .tile.tile-256 .tile-inner { font-size: 10px; } } .tile.tile-512 .tile-inner { color: #f9f6f2; background: #edc850; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.39683), inset 0 0 0 1px rgba(255, 255, 255, 0.2381); } @media screen and (max-width: 520px) { .tile.tile-512 .tile-inner { font-size: 10px; } } .tile.tile-1024 .tile-inner { color: #f9f6f2; background: #edc53f; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.47619), inset 0 0 0 1px rgba(255, 255, 255, 0.28571); } @media screen and (max-width: 520px) { .tile.tile-1024 .tile-inner { font-size: 10px; } } .tile.tile-2048 .tile-inner { color: #f9f6f2; background: gray; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.55556), inset 0 0 0 1px rgba(255, 255, 255, 0.33333); } @media screen and (max-width: 520px) { .tile.tile-2048 .tile-inner { font-size: 10px; } } .tile.tile-4096 .tile-inner { color: #f9f6f2; background: black; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.85556), inset 0 0 0 1px rgba(0, 0, 0, 0.33333); } @media screen and (max-width: 520px) { .tile.tile-4096 .tile-inner { font-size: 10px; } } .game-container .game-message p { font-size: 30px; font-weight: bold; height: 60px; line-height: 60px; margin-top: 222px; }
style/skin_santi.css
html, body { margin: 0; padding: 0; background: #424242; color: #776e65; font-family: "Microsoft Yahei", "Clear Sans", "Helvetica Neue", Arial, sans-serif; font-size: 18px; } .tile .tile-inner { border-radius: 3px; background: #eee4da; text-align: center; font-weight: bold; z-index: 10; font-size: 22px; } @media screen and (max-width: 520px) { .tile .tile-inner { font-size: 10px; } } .tile.tile-2 .tile-inner { background: #eee4da; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0); } .tile.tile-4 .tile-inner { background: #ede0c8; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0); } .tile.tile-8 .tile-inner { color: #f9f6f2; background: #f2b179; } .tile.tile-16 .tile-inner { color: #f9f6f2; background: #f59563; } .tile.tile-32 .tile-inner { color: #f9f6f2; background: #f67c5f; } .tile.tile-64 .tile-inner { color: #f9f6f2; background: #f65e3b; } .tile.tile-128 .tile-inner { color: #f9f6f2; background: #edcf72; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.2381), inset 0 0 0 1px rgba(255, 255, 255, 0.14286); } @media screen and (max-width: 520px) { .tile.tile-128 .tile-inner { font-size: 10px; } } .tile.tile-256 .tile-inner { color: #f9f6f2; background: #edcc61; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.31746), inset 0 0 0 1px rgba(255, 255, 255, 0.19048); } @media screen and (max-width: 520px) { .tile.tile-256 .tile-inner { font-size: 10px; } } .tile.tile-512 .tile-inner { color: #f9f6f2; background: #edc850; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.39683), inset 0 0 0 1px rgba(255, 255, 255, 0.2381); } @media screen and (max-width: 520px) { .tile.tile-512 .tile-inner { font-size: 10px; } } .tile.tile-1024 .tile-inner { color: #f9f6f2; background: #edc53f; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.47619), inset 0 0 0 1px rgba(255, 255, 255, 0.28571); } @media screen and (max-width: 520px) { .tile.tile-1024 .tile-inner { font-size: 10px; } } .tile.tile-2048 .tile-inner { color: #f9f6f2; background: gray; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.55556), inset 0 0 0 1px rgba(255, 255, 255, 0.33333); } @media screen and (max-width: 520px) { .tile.tile-2048 .tile-inner { font-size: 10px; } } .tile.tile-4096 .tile-inner { color: #f9f6f2; background: black; font-size: 22px; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.85556), inset 0 0 0 1px rgba(0, 0, 0, 0.33333); } @media screen and (max-width: 520px) { .tile.tile-4096 .tile-inner { font-size: 10px; } } .game-container .game-message p { font-size: 30px; font-weight: bold; height: 60px; line-height: 60px; margin-top: 222px; }
0.352982
0.124719
#traffic-beat-2 { display:none; margin-left:20px; } .traffic-beat-clear {clear:both} .traffic-beat-relative {position:relative} .traffic-beat-sep {height:12px} /* -END- Utility */ /* Ticker Line */ .traffic-beat-ticker-line-box-highlight { -webkit-box-shadow:0 0 20px #f90; -moz-box-shadow:0 0 20px #f90; box-shadow:0 0 20px #f90; position:relative; width:400px; height:78px; background:#fff; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; border:2px solid #fb2; margin:20px; overflow:hidden; cursor:default; } .traffic-beat-ticker-line-box { -webkit-box-shadow:0 0 10px #ccc; -moz-box-shadow:0 0 10px #ccc; box-shadow:0 0 10px #ccc; position:relative; width:400px; height:78px; background:#fff; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; border:2px solid #ccc; margin:20px; overflow:hidden; cursor:default; } .traffic-beat-ticker-line-off { position:absolute; top:0px; left:0px; width:4px; height:60px; background:#eee; border-top:20px solid #fafafa; } .traffic-beat-ticker-line-on { position:absolute; top:0px; left:0px; width:4px; height:60px; background:#f90; border-top:20px solid #f00; } /* -END- Ticker Line */ /* Bar Meters */ .traffic-beat-bar { width:4px; height:18px; background:#4a3; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 2px #292; -moz-box-shadow:0 0 2px #292; box-shadow:0 0 2px #292; border:1px solid #393; margin:1px; float:left; overflow:hidden; } .traffic-beat-bar-box { position:relative; width:400px; background:#eee; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; border:1px solid #ccc; margin:2px 2px 2px 21px; overflow:hidden; cursor:default; } .traffic-beat-bar-shine { height:7px; background:#9f5; -webkit-box-shadow:0 0 9px #fff; -moz-box-shadow:0 0 9px #fff; box-shadow:0 0 9px #fff; } .traffic-beat-bar-text { position:absolute; top:0px; right:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-weight:bold; font-family:Arial; z-index:5; } .traffic-beat-bar-text-rpm { position:absolute; top:0px; left:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-weight:bold; font-family:Arial; z-index:5; } /* -END- Bar Meters */ /* Percent Bar */ .traffic-beat-percent-bar { position:relative; width:400px; height:24px; background: #bbb; background-image:-moz-linear-gradient(100% 50% 90deg,#aaa,#eee); background-image:-webkit-gradient(linear, 0% 0%,0 50%,from(#eee),to(#aaa)); -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; border:1px solid #aaa; overflow:hidden; cursor:pointer; margin:2px 2px 2px 21px; } .traffic-beat-percent-bar-shine { position:absolute; top:0px; left:0px; width:400px; height:12px; background:#fff; opacity:0.3; filter:alpha(opacity=30); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 18px #fff; -moz-box-shadow:0 0 18px #fff; box-shadow:0 0 18px #fff; z-index:10; } .traffic-beat-percent-bar-meter { position:absolute; top:0px; left:0px; width:30%; height:24px; background:#292; -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; -webkit-box-shadow:20px 0 30px #afa; -moz-box-shadow:20px 0 30px #afa; box-shadow:20px 0 30px #afa; z-index:4; } .traffic-beat-percent-bar-text-url { position:absolute; top:0px; left:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-family:Arial; z-index:5; } .traffic-beat-percent-bar-text-percent { position:absolute; top:0px; right:5px; font-weight:bold; text-shadow:0 0 3px #000; color:#fff; font-size:11px; font-family:mono; z-index:5; } /* -END- Percent Bar */
app-showcase/traffic-beat-2/traffic-beat-2.css
#traffic-beat-2 { display:none; margin-left:20px; } .traffic-beat-clear {clear:both} .traffic-beat-relative {position:relative} .traffic-beat-sep {height:12px} /* -END- Utility */ /* Ticker Line */ .traffic-beat-ticker-line-box-highlight { -webkit-box-shadow:0 0 20px #f90; -moz-box-shadow:0 0 20px #f90; box-shadow:0 0 20px #f90; position:relative; width:400px; height:78px; background:#fff; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; border:2px solid #fb2; margin:20px; overflow:hidden; cursor:default; } .traffic-beat-ticker-line-box { -webkit-box-shadow:0 0 10px #ccc; -moz-box-shadow:0 0 10px #ccc; box-shadow:0 0 10px #ccc; position:relative; width:400px; height:78px; background:#fff; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; border:2px solid #ccc; margin:20px; overflow:hidden; cursor:default; } .traffic-beat-ticker-line-off { position:absolute; top:0px; left:0px; width:4px; height:60px; background:#eee; border-top:20px solid #fafafa; } .traffic-beat-ticker-line-on { position:absolute; top:0px; left:0px; width:4px; height:60px; background:#f90; border-top:20px solid #f00; } /* -END- Ticker Line */ /* Bar Meters */ .traffic-beat-bar { width:4px; height:18px; background:#4a3; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 2px #292; -moz-box-shadow:0 0 2px #292; box-shadow:0 0 2px #292; border:1px solid #393; margin:1px; float:left; overflow:hidden; } .traffic-beat-bar-box { position:relative; width:400px; background:#eee; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; border:1px solid #ccc; margin:2px 2px 2px 21px; overflow:hidden; cursor:default; } .traffic-beat-bar-shine { height:7px; background:#9f5; -webkit-box-shadow:0 0 9px #fff; -moz-box-shadow:0 0 9px #fff; box-shadow:0 0 9px #fff; } .traffic-beat-bar-text { position:absolute; top:0px; right:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-weight:bold; font-family:Arial; z-index:5; } .traffic-beat-bar-text-rpm { position:absolute; top:0px; left:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-weight:bold; font-family:Arial; z-index:5; } /* -END- Bar Meters */ /* Percent Bar */ .traffic-beat-percent-bar { position:relative; width:400px; height:24px; background: #bbb; background-image:-moz-linear-gradient(100% 50% 90deg,#aaa,#eee); background-image:-webkit-gradient(linear, 0% 0%,0 50%,from(#eee),to(#aaa)); -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; border:1px solid #aaa; overflow:hidden; cursor:pointer; margin:2px 2px 2px 21px; } .traffic-beat-percent-bar-shine { position:absolute; top:0px; left:0px; width:400px; height:12px; background:#fff; opacity:0.3; filter:alpha(opacity=30); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 18px #fff; -moz-box-shadow:0 0 18px #fff; box-shadow:0 0 18px #fff; z-index:10; } .traffic-beat-percent-bar-meter { position:absolute; top:0px; left:0px; width:30%; height:24px; background:#292; -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; -webkit-box-shadow:20px 0 30px #afa; -moz-box-shadow:20px 0 30px #afa; box-shadow:20px 0 30px #afa; z-index:4; } .traffic-beat-percent-bar-text-url { position:absolute; top:0px; left:5px; text-shadow:0 0 2px #000; color:#fff; font-size:11px; font-family:Arial; z-index:5; } .traffic-beat-percent-bar-text-percent { position:absolute; top:0px; right:5px; font-weight:bold; text-shadow:0 0 3px #000; color:#fff; font-size:11px; font-family:mono; z-index:5; } /* -END- Percent Bar */
0.203787
0.060836
:root { --alpha-black: rgba(0, 0, 0, 0.2); --alpha-white: rgba(255, 255, 255, 0.8); --black: black; --darkgrey: #aaa; --grey: #c6c6c6; --white: white; --yellow: rgb(255, 255, 0); --font-merriwather: 'Merriweather', serif; --font-oswald: 'Oswald', sans-serif; --font-sans-pro: 'Source Sans Pro', sans-serif; } * { box-sizing: border-box; } body { font-size: 20px; line-height: 1.5; font-family: var(--font-sans-pro); } a { text-decoration: none; } .wrapper { max-width: 1280px; margin: 0 auto; } header { background-color: var(--black); border-bottom: 4px solid var(--yellow); } header .wrapper { display: flex; justify-content: space-between; padding: 20px 0; } header h1 { margin: 0; font-family: var(--font-merriwather); color: var(--yellow); } header ul { padding: 0; margin: 0; list-style: none; display: flex; } header li { padding: 20px 10px; } header li a { color: var(--white); } header li:first-of-type a, header li:nth-of-type(2) a { font-family: var(--font-oswald); text-transform: uppercase; } .tagline { background-color: var(--grey); padding: 1em; } .tagline p { text-align: center; font-family: var(--font-merriwather); font-size: 1.25em; font-style: italic; } .tagline del { color: var(--darkgrey); } .tagline ins { color: var(--yellow); } .cta { background-image: url(../images/startup-bg.jpg); padding: 2.5em 1em; background-position: center; background-size: cover; background-repeat: no-repeat; } .cta .wrapper { display: flex; justify-content: flex-end; } .tout { max-width: 33%; padding: 1em; } .tout p { margin-top: 0; } .tout h2, .tout h3 { margin: 0; } .tout .button { font-family: var(--font-oswald); text-transform: uppercase; letter-spacing: 1px; font-weight: bold; background: var(--yellow); color: var(--black); display: block; text-align: center; padding: 12px; box-shadow: inset 0 -3px 0 var(--alpha-black); border-radius: 5px; } .cta .tout { background-color: var(--alpha-white); } .cta .tout p:first-of-type { margin-bottom: 0; } .services .wrapper { display: flex; padding: 1em 0; } .services .tout:nth-of-type(2) { border-left: 1px solid var(--darkgrey); border-right: 1px solid var(--darkgrey); } footer { background-color: var(--black); padding: 1em 0; color: var(--white); } footer span { color: red; } @media screen and (max-width: 740px) { header .wrapper { flex-direction: column; padding: 0 1em 0; position: relative; } .hamburguer { position: absolute; right: 1em; top: 1em; } .hamburguer span { display: block; border: 2px solid var(--yellow); margin-bottom: 2px; width: 1.25em; } header ul { display: block; max-height: 0; transition: 1s ease linear; opacity: 0; } .menu-open header ul { max-height: 1000px; opacity: 1; } header li { border-top: 1px solid var(--white); } .tagline { padding: 0; } .tagline p { display: none; } .cta { padding: 1em; } .cta .wrapper { justify-content: center; } .tout { max-width: 100%; } .services .wrapper { display: block; } .services .tout:nth-of-type(2) { border-left: none; border-right: none; border-top: 1px solid var(--darkgrey); border-bottom: 1px solid var(--darkgrey); } footer .wrapper { padding: 0 1em; } }
labs/startup-matchmaker/solution-code/css/main.css
:root { --alpha-black: rgba(0, 0, 0, 0.2); --alpha-white: rgba(255, 255, 255, 0.8); --black: black; --darkgrey: #aaa; --grey: #c6c6c6; --white: white; --yellow: rgb(255, 255, 0); --font-merriwather: 'Merriweather', serif; --font-oswald: 'Oswald', sans-serif; --font-sans-pro: 'Source Sans Pro', sans-serif; } * { box-sizing: border-box; } body { font-size: 20px; line-height: 1.5; font-family: var(--font-sans-pro); } a { text-decoration: none; } .wrapper { max-width: 1280px; margin: 0 auto; } header { background-color: var(--black); border-bottom: 4px solid var(--yellow); } header .wrapper { display: flex; justify-content: space-between; padding: 20px 0; } header h1 { margin: 0; font-family: var(--font-merriwather); color: var(--yellow); } header ul { padding: 0; margin: 0; list-style: none; display: flex; } header li { padding: 20px 10px; } header li a { color: var(--white); } header li:first-of-type a, header li:nth-of-type(2) a { font-family: var(--font-oswald); text-transform: uppercase; } .tagline { background-color: var(--grey); padding: 1em; } .tagline p { text-align: center; font-family: var(--font-merriwather); font-size: 1.25em; font-style: italic; } .tagline del { color: var(--darkgrey); } .tagline ins { color: var(--yellow); } .cta { background-image: url(../images/startup-bg.jpg); padding: 2.5em 1em; background-position: center; background-size: cover; background-repeat: no-repeat; } .cta .wrapper { display: flex; justify-content: flex-end; } .tout { max-width: 33%; padding: 1em; } .tout p { margin-top: 0; } .tout h2, .tout h3 { margin: 0; } .tout .button { font-family: var(--font-oswald); text-transform: uppercase; letter-spacing: 1px; font-weight: bold; background: var(--yellow); color: var(--black); display: block; text-align: center; padding: 12px; box-shadow: inset 0 -3px 0 var(--alpha-black); border-radius: 5px; } .cta .tout { background-color: var(--alpha-white); } .cta .tout p:first-of-type { margin-bottom: 0; } .services .wrapper { display: flex; padding: 1em 0; } .services .tout:nth-of-type(2) { border-left: 1px solid var(--darkgrey); border-right: 1px solid var(--darkgrey); } footer { background-color: var(--black); padding: 1em 0; color: var(--white); } footer span { color: red; } @media screen and (max-width: 740px) { header .wrapper { flex-direction: column; padding: 0 1em 0; position: relative; } .hamburguer { position: absolute; right: 1em; top: 1em; } .hamburguer span { display: block; border: 2px solid var(--yellow); margin-bottom: 2px; width: 1.25em; } header ul { display: block; max-height: 0; transition: 1s ease linear; opacity: 0; } .menu-open header ul { max-height: 1000px; opacity: 1; } header li { border-top: 1px solid var(--white); } .tagline { padding: 0; } .tagline p { display: none; } .cta { padding: 1em; } .cta .wrapper { justify-content: center; } .tout { max-width: 100%; } .services .wrapper { display: block; } .services .tout:nth-of-type(2) { border-left: none; border-right: none; border-top: 1px solid var(--darkgrey); border-bottom: 1px solid var(--darkgrey); } footer .wrapper { padding: 0 1em; } }
0.551574
0.18054
@import url(http://fonts.googleapis.com/css?family=Oswald); @import url(https://fonts.googleapis.com/css?family=Pontano+Sans&subset=latin,latin-ext); */ /* global styles */ body { font-family: 'Pontano Sans', sans-serif; font-size: 14px; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; } /* basic header setup */ #page-header { width: 100%; } #logotype { height: 58px; width: 268px; float: left; display: block; text-indent: -9999px; margin: 15px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #logotype:hover { opacity: .6; filter: alpha(opacity=60); font-size: 24px; } /* primary navigation */ #primary-nav { } #primary-nav { border-right: 10px solid #343434; display: block; float: right; height: 90px; margin: 0; padding: 0 24px 0 0; } #primary-nav > ul { margin: 0; padding: 0; list-style: none; } #primary-nav > ul > li { display: block; float: left; margin: 25px 6px; padding: 0; position: relative; } #primary-nav > ul > li > a, #primary-nav > ul > li > a:visited { display: block; padding: 9px 10px; text-decoration: none; } #primary-nav > ul > li > a:hover, #primary-nav > ul > li > a.hover { -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; text-shadow: 0px -1px 0px rgba(0,0,0,0.5); -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #primary-nav > ul > li > a.withsiblings:hover { -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } #primary-nav > ul ul { display: none; -webkit-border-radius: 5px; -webkit-border-top-left-radius: 0; -moz-border-radius: 5px; -moz-border-radius-topleft: 0; border-radius: 5px; border-top-left-radius: 0; margin: 0; padding: 5px 0; list-style: none; box-shadow: 0px 2px 4px rgba(0,0,0,0.3); opacity: 0; filter: alpha(opacity=0); } #primary-nav > ul ul li { display: block; min-width: 190px; } #primary-nav > ul ul li a { display: block; margin: 0 5px; padding: 5px 10px; text-decoration: none; color: #fff; border-top: 1px dashed rgba(255,255,255,0.2); border-bottom: 1px dashed rgba(0,0,0,0.15); } #primary-nav > ul ul li:first-child a { border-top: none; } #primary-nav > ul ul li:last-child a { border-bottom: none; } #primary-nav > ul > li:hover ul { position: absolute; left: 0; top: 34px; display: block; z-index: 900; opacity: 1; filter: alpha(opacity=100);} #primary-nav-mobile { clear: both; display: none; margin: 20px 0; } #primary-nav-mobile select { background: #fff; border: 1px solid #434343; color: #434343; display: block; font-size: 1.1em; padding: 8px; width: 100%; } .fancy-headers { font-family: 'Oswald', sans-serif;; text-transform: uppercase; } .fancy-headers h1, .fancy-headers h2 { font-weight: 200; text-align: justify; } #slider .fancy-headers { display: block; float: left; margin-right: 20px; } #slider .fancy-headers h1, #slider .fancy-headers h2 { line-height: 1em; margin: 0; padding: 0; } #slider .fancy-headers h1 { font-size: 2.5em; } #slider .fancy-headers h2 { font-size: 3.286em; } #slider p { font-size: 1.286em; margin: 0 ; padding: 0; } /* * jQuery FlexSlider v2.0 http://www.woothemes.com/flexslider/ * Copyright 2012 WooThemes Free to use under the GPLv2 license http://www.gnu.org/licenses/gpl-2.0.html * Contributing author: <NAME> (@mbmufffin) */ .flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus { outline: none; } .slides, .flex-control-nav, .flex-direction-nav { margin: 0; padding: 0; list-style: none; } .flexslider { margin: 20px 30px 30px; padding: 10px; position: relative; zoom: 1; } .slider-wrapper, .flexslider { box-shadow: inset 0px 1px 0px rgba(255,255,255,0.3), inset 0px -1px 0px rgba(255,255,255,0.1), inset 1px 0px 0px rgba(255,255,255,0.1), inset -1px 0px 0px rgba(255,255,255,0.1); } .slider-wrapper:after, .flexslider:after { background: url(../img/common/slider-shadow.png) center top no-repeat; background-size: contain; content: ''; position: absolute; left: 0; bottom: -24px; height: 24px; width: 100%; } .flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; position: relative; } /* Hide the slides before the JS is loaded. Avoids image jumping */ .flexslider .slides img { width: 100%; display: block; } .flexslider .slides .flex-caption { background: #000; background: rgba(0,0,0,0.75); border-top: 1px solid rgba(255,255,255,0.20); position: absolute; bottom: 0; left: 0; width: 100%; z-index: 10; } .flexslider .slides .flex-caption > div { padding: 15px 20px; overflow: hidden; } .flex-pauseplay span { text-transform: capitalize; } .slides:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } html[xmlns] .slides { display: block; } * html .slides { height: 1%; } .no-js .slides > li:first-child { display: block; } .flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; } .loading .flex-viewport { max-height: 300px; } .flexslider .slides { zoom: 1; } .carousel li { margin-right: 5px; } .flex-direction-nav { *height: 0; } .flex-direction-nav a { width: 91px; height: 103px; margin: -51px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -91px 0; right: -28px; } .flex-direction-nav .flex-prev { left: -28px; } .flex-direction-nav .flex-next:hover { background-position: -91px -103px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -103px; } .flex-direction-nav .flex-disabled { opacity: .3!important; filter:alpha(opacity=30); cursor: default; } .flex-control-nav { width: 100%; position: absolute; bottom: -27px; text-align: center; z-index: 200; } .flex-control-nav li { margin: 0; display: inline-block; zoom: 1; *display: inline; } .flex-control-paging li a.flex-active { cursor: default; } .flex-control-paging li a { display: block; cursor: pointer; text-indent: -9999px; -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; transition: opacity 0.3s ease; } .flex-control-thumbs { margin: 5px 0 0; position: static; overflow: hidden; } .flex-control-thumbs li { width: 25%; float: left; margin: 0; } .flex-control-thumbs img { width: 100%; display: block; opacity: .7; filter: alpha(opacity=70); cursor: pointer; } .flex-control-thumbs img:hover { opacity: 1; filter: alpha(opacity=100); } .flex-control-thumbs .flex-active { opacity: 1; filter: alpha(opacity=100);cursor: default; } /* * jQuery Nivo Slider v3.1 * http://nivo.dev7studios.com * * Copyright 2012, Dev7studios * Free to use and abuse under the MIT license. * http://www.opensource.org/licenses/mit-license.php */ /* The Nivo Slider styles */ .slider-wrapper { margin: 20px 30px 30px; padding: 10px; position: relative; zoom: 1; } .nivoSlider { position: relative; width:100%; height:auto; overflow: hidden; } .nivoSlider img { position: absolute; top: 0px; left: 0px; max-width: none; } .nivo-main-image { display: block !important; position: relative !important; width: 100% !important; } /* If an image is wrapped in a link */ .nivoSlider a.nivo-imageLink { position: absolute; top:0px; left:0px; width:100%; height:100%; border:0; padding:0; margin:0; z-index:6; display:none; } /* The slices and boxes in the Slider */ .nivo-slice { display: block; position: absolute; z-index:5; height:100%; top:0; } .nivo-box { display: block; position: absolute; z-index:5; overflow:hidden; } .nivo-box img { display: block; } /* Caption styles */ .nivo-caption { position:absolute; left:0px; bottom:0px; background:#000; color:#fff; width:100%; z-index:8; padding: 5px 10px; opacity: 0.8; filter: alpha(opacity=80); overflow: hidden; display: none; -moz-opacity: 0.8; filter:alpha(opacity=80); -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; /* Opera/IE 8+ */ } .nivo-caption p { padding:5px; margin:0; } .nivo-caption a { display:inline !important; } .nivo-html-caption { display:none; } /* Direction nav styles (e.g. Next & Prev) */ .nivo-directionNav a { position:absolute; top:45%; z-index:9; cursor:pointer; } .nivo-prevNav { left:0px; } .nivo-nextNav { right:0px; } /* Control nav styles (e.g. 1,2,3...) */ .nivo-controlNav { width: 100%; position: absolute; bottom: -27px; text-align: center; z-index: 200; } .nivo-controlNav a { margin: 0; display: inline-block; zoom: 1; *display: inline; cursor:pointer; -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; transition: opacity 0.3s ease; } .theme-default .nivo-directionNav a { display:block; width:30px; height:30px; background:url(../img/common/arrows.png) no-repeat; text-indent:-9999px; border:0; opacity: 0; filter: alpha(opacity=80); -webkit-transition: all 200ms ease-in-out; -moz-transition: all 200ms ease-in-out; -o-transition: all 200ms ease-in-out; transition: all 200ms ease-in-out; } .theme-default:hover .nivo-directionNav a { opacity: 1; filter: alpha(opacity=100);} .theme-default a.nivo-nextNav { background-position:-30px 0; right:15px; } .theme-default a.nivo-prevNav { left:15px; } /* * FancyBox - jQuery Plugin * Simple and fancy lightbox alternative * * Examples and documentation at: http://fancybox.net * * Copyright (c) 2008 - 2010 <NAME> * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated. * * Version: 1.3.4 (11/11/2010) * Requires: jQuery v1.3+ * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ #fancybox-loading { position: fixed; top: 50%; left: 50%; width: 40px; height: 40px; margin-top: -20px; margin-left: -20px; cursor: pointer; overflow: hidden; z-index: 1104; display: none; } #fancybox-loading div { position: absolute; top: 0; left: 0; width: 40px; height: 480px; background-image: url('../img/common/fancybox.png'); } #fancybox-overlay { position: absolute; top: 0; left: 0; width: 100%; z-index: 1100; display: none; } #fancybox-tmp { padding: 0; margin: 0; border: 0; overflow: auto; display: none; } #fancybox-wrap { position: absolute; top: 0; left: 0; padding: 20px; z-index: 1101; outline: none; display: none; } #fancybox-outer { position: relative; width: 100%; height: 100%; background: #fff; } #fancybox-content { width: 0; height: 0; padding: 0; outline: none; position: relative; overflow: hidden; z-index: 1102; border: 0px solid #fff; } #fancybox-hide-sel-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 1101; } #fancybox-close { position: absolute; top: -15px; right: -15px; width: 30px; height: 30px; background: transparent url('../img/common/fancybox.png') -40px 0px; cursor: pointer; z-index: 1103; display: none; } #fancybox-error { color: #444; font: normal 12px/20px Arial; padding: 14px; margin: 0; } #fancybox-img { width: 100%; height: 100%; padding: 0; margin: 0; border: none; outline: none; line-height: 0; vertical-align: top; } #fancybox-frame { width: 100%; height: 100%; border: none; display: block; } #fancybox-left, #fancybox-right { position: absolute; bottom: 0px; height: 100%; width: 35%; cursor: pointer; outline: none; background: transparent url('../img/common/blank.gif'); z-index: 1102; display: none; } #fancybox-left { left: 0px; } #fancybox-right { right: 0px; } #fancybox-left-ico, #fancybox-right-ico { position: absolute; top: 50%; left: -9999px; width: 30px; height: 30px; margin-top: -15px; cursor: pointer; z-index: 1102; display: block; } #fancybox-left-ico { background-image: url('../img/common/fancybox.png'); background-position: -40px -30px; } #fancybox-right-ico { background-image: url('../img/common/fancybox.png'); background-position: -40px -60px; } #fancybox-left:hover, #fancybox-right:hover { visibility: visible; /* IE6 */ } #fancybox-left:hover span { left: 20px; } #fancybox-right:hover span { left: auto; right: 20px; } .fancybox-bg { position: absolute; padding: 0; margin: 0; border: 0; width: 20px; height: 20px; z-index: 1001; } #fancybox-bg-n { top: -20px; left: 0; width: 100%; background-image: url('../img/common/fancybox-x.png'); } #fancybox-bg-ne { top: -20px; right: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -162px; } #fancybox-bg-e { top: 0; right: -20px; height: 100%; background-image: url('../img/common/fancybox-y.png'); background-position: -20px 0px; } #fancybox-bg-se { bottom: -20px; right: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -182px; } #fancybox-bg-s { bottom: -20px; left: 0; width: 100%; background-image: url('../img/common/fancybox-x.png'); background-position: 0px -20px; } #fancybox-bg-sw { bottom: -20px; left: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -142px; } #fancybox-bg-w { top: 0; left: -20px; height: 100%; background-image: url('../img/common/fancybox-y.png'); } #fancybox-bg-nw { top: -20px; left: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -122px; } #fancybox-title { font-family: Helvetica; font-size: 12px; z-index: 1102; } .fancybox-title-inside { padding-bottom: 10px; text-align: center; color: #333; background: #fff; position: relative; } .fancybox-title-outside { padding-top: 10px; color: #fff; } .fancybox-title-over { position: absolute; bottom: 0; left: 0; color: #FFF; text-align: left; } #fancybox-title-over { padding: 10px; background-image: url('../img/common/fancy_title_over.png'); display: block; } .fancybox-title-float { position: absolute; left: 0; bottom: -20px; height: 32px; } #fancybox-title-float-wrap { border: none; border-collapse: collapse; width: auto; } #fancybox-title-float-wrap td { border: none; white-space: nowrap; } #fancybox-title-float-left { padding: 0 0 0 15px; background: url('../img/common/fancybox.png') -40px -90px no-repeat; } #fancybox-title-float-main { color: #FFF; line-height: 29px; font-weight: bold; padding: 0 0 3px 0; background: url('.._/img/common/fancybox-x.html') 0px -40px; } #fancybox-title-float-right { padding: 0 0 0 15px; background: url('../img/common/fancybox.png') -55px -90px no-repeat; } /* IE6 */ .fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_close.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_nav_left.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_nav_right.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_over.png', sizingMethod='scale'); zoom: 1; } .fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_left.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_main.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_right.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame { height: expression(this.parentNode.clientHeight + "px"); } #fancybox-loading.fancybox-ie6 { position: absolute; margin-top: 0; top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'); } #fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_loading.png', sizingMethod='scale'); } /* IE6, IE7, IE8 */ .fancybox-ie .fancybox-bg { background: transparent !important; } .fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_n.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_ne.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_e.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_se.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_s.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_sw.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_w.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_nw.png', sizingMethod='scale'); } /* content styling */ .content-title { font-family: 'Pontano Sans', serif; padding: 30px 0 30px 90px; } .content-title h1 { font-size: 1.714em; font-weight: normal; margin: 0; padding: 0; text-transform: uppercase; line-height: 1em; } .content-title h2 { font-size: 1.286em; font-weight: normal; margin: 0; padding: 0; line-height: 1em; } .content-title.welcome { background: url(../img/common/icon_welcome.png) 10px 50% no-repeat; } .content-title.blog { background: url(../img/common/icon_blog.png) 10px 50% no-repeat; } .content-title.page { background: url(../img/common/icon_page.png) 10px 50% no-repeat; } .content-title.single { background: url(../img/common/icon_single.png) 10px 50% no-repeat; } .content-title.calendar { background: url(../img/common/icon_calendar.png) 10px 50% no-repeat; } .content-title.event { background: url(../img/common/icon_calendar-single.png) 10px 50% no-repeat; } .content-title.contact { background: url(../img/common/icon_contact.png) 10px 50% no-repeat; } #content-header { margin-bottom: 5px; } #content-header .fancy-headers { padding: 18px; } #content-header .fancy-headers h1, #content-header .fancy-headers h2 { margin: 0; } #content-header .fancy-headers h1 { font-size: 2.114em; line-height: 1.2em; } #content-header .fancy-headers h2 { font-size: 1.857em; line-height: 1.2em; } #banner { margin: 20px 15px 10px; } #banner a, #banner a:visited { display: block; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } #banner img { width: 100%; height: auto; } /* post formatting (headings, galleries, tables etc) */ .posts .post { width: 100%; } .front-page.posts .post { width: 50%; float: left; } .post-offset { margin: 15px; } .blog.posts .post { margin-top: 50px; } .blog.posts .post.single { margin-top: 0; } .blog.posts .post-icon { float: left; margin: 0 20px 20px 0; } .blog.posts .post-options { clear: both; } .blog.posts .post-offset > h1 { margin-bottom: 0 !important; } .post-offset figure.post-icon a { display: block; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } .post-offset figure.post-icon a img { max-width: 100%; height: auto; } .post-offset > h1 { font-family: 'Oswald', sans-serif; font-size: 1.429em; font-weight: normal; text-transform: uppercase; margin: 20px 0; padding: 0; } .post-offset > h1 a, .post-offset > h1 a:visited { text-decoration: none; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .entry-date { color: #494949; } .post-offset h1, .post-offset h2, .post-offset h3, .post-offset h4, .post-offset h5, .post-offset h6 { color: #fff; font-family: 'Oswald', sans-serif; font-weight: 300; margin: .67em 0 .25em; } .post-offset h2 { font-size: 1.4em; } .post-offset h3 { font-size: 1.3em; } .post-offset h4 { font-size: 1.2em; } .post-offset h5 { font-size: 1.1em; } .post-offset h6 { font-size: 1em; } .post-offset ul, .post-offset ol, .post-offset dl { color: #fff; } .post-offset ul { list-style: outside; } .post-offset .gallery { display: block; width: 100%; clear: both; margin: 10px 0; padding: 0; list-style: none; overflow: hidden; text-align: center; } .post-offset .gallery li { display: inline-block; margin: 0; padding: 0; width: 20%; min-width: 84px; max-width: 150px; } .post-offset .gallery figure { background: #1e1e1e; color: #909090 !important; display: block; margin: 2px; padding: 5px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.15); -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .post-offset .gallery figure:hover { background: #2c2c2c; color: #fff !important; } .post-offset .gallery figure a { display: block; } .post-offset .gallery figure img { width: 100%; max-width: 100%; height: auto; } .post-offset .gallery figcaption { margin: 5px 0 0; text-align: center; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .post-offset table { width: 100%; border-collapse: collapse; text-align: left; } .post-offset table th { border: 1px solid #282828; color: #fff !important; font-weight: 300; font-family: 'Oswald', sans-serif; font-size: 1em; padding: 10px 4px; } .post-offset table td { border: 1px solid #282828; color: #bdbdbd; padding: 4px; } .post-offset table tr:nth-child(odd) td { background: rgba(0,0,0,0.3); } /* comments tree (with nesting) */ #comments { margin: 0; padding: 0; list-style: none; } #comments li { margin: 0; padding: 0; } #comments ul { margin: 0 0 0 30px; padding: 0; list-style: none; } .comment-author .avatar { padding: 4px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.35); background: rgb(36,36,36); /* Old browsers */ background: -moz-linear-gradient(top, rgba(36,36,36,1) 0%, rgba(24,24,24,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,36,36,1)), color-stop(100%,rgba(24,24,24,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#242424', endColorstr='#181818',GradientType=0 ); /* IE6-9 */ -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; } .comment-author .url { text-decoration: none; color: #fff; } .comment .commententry { border-bottom: 1px solid #282828; } .comment .commententry p { color: #b6b6b6 !important; } .comment .commententry .reply { clear: both; display: block; width: 100%; margin: 10px 0; padding: 0; text-align: right; } .comment-author img { float: left; margin-right: 10px; } /* post meta - social icons */ .post-options { margin: 30px 0 20px; padding: 19px; overflow: hidden; } .post-options .social { margin: 6px; padding: 0; list-style: none; display: block; float: left; } .post-options .social li { display: block; float: left; margin: 0 16px 0 0; padding: 0; } .post-options .social li a { background: url(../img/common/post-social-sprite.png) no-repeat; display: block; height: 32px; width: 32px; text-indent: -9999px; outline: none; } .post-options .social li a.share { background-position: 0 0; } .post-options .social li a.facebook-share { background-position: -32px 0; } .post-options .social li a.twitter-share { background-position: -64px 0; } .post-options .social li a.share:hover { background-position: 0 -32px; } .post-options .social li a.facebook-share:hover { background-position: -32px -32px; } .post-options .social li a.twitter-share:hover { background-position: -64px -32px; } .post-options .more-link { float: right; } /* sidebar widgets styling */ .photo-stream { margin: 0 0 15px 0; padding: 0; list-style: none; overflow: hidden; } .photo-stream li { margin: 0; padding: 0; display: block; float: left; width: 33.333%; text-align: center; } .photo-stream li a, .photo-stream li a:visited { display: inline-block; margin: 15px 10px 0 10px; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } .photo-stream li a:hover { } .photo-stream li a img { display: block; height: auto; width: 100%; } /* widget headers */ .widget .fancy-headers { padding: 20px 0 20px 20px; } .widget .fancy-headers h1 { margin: 0; padding: 0; font-size: 1.571em; line-height: 1em; } .widget .fancy-headers h2 { margin: 0; padding: 0; font-size: 1.571em; line-height: 1em; } /* playlist widget */ .widget .playlist { } .widget .playlist ul { border-bottom: 1px solid #252525; list-style: none; margin: 0 0 20px 0; padding: 0; } .widget .playlist ul li { border-top: 1px solid #252525; border-bottom: 1px solid #050505; display: block; margin: 0; padding: 11px 20px 11px 40px; cursor: pointer; } .widget .playlist p { color: #fff; margin: 0; padding: 0; overflow: hidden; font-size: 1.071em; line-height: 1.071em; } .widget .playlist .set-name { display: block; float: left; width: 80%; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .widget .playlist .set-time { display: block; float: right; width: 20%; text-align: right; } /* upcoming events widget */ .widget .upcoming-events { } .flyer-wrapper { position: relative; text-align: center; max-width: 270px; margin: 27px auto; } .flyer-wrapper figure { display: inline-block; } .flyer-wrapper figure img { display: block; height: auto; width: 100%; } .flyer-wrapper p { position: absolute; font-family: 'Oswald', sans-serif; font-size: 1.286em; line-height: 1.286em; margin: 0; padding: 10px; } .flyer-wrapper p.event-date { top: 20px; right: -20px; } .flyer-wrapper p.view-event { bottom: 20px; left: -20px; } /* pagination styling */ #pagination { text-align: center; margin: 35px 0 45px 0; } #pagination ol { display: inline-block; list-style: none; margin: 0; padding: 0; } #pagination ol li { display: block; float: left; margin: 0 3px; padding: 0; } #pagination ol li a, #pagination ol li a:visited { display: block; line-height: 1em; padding: 10px 10px 8px; text-decoration: none; } /* footer social hub */ .social-hub { clear: both; list-style: none; margin: 0; padding: 0; width: 100%; text-align: center; } .social-hub li { display: inline-block; margin: 0 4px;} .social-hub li a { box-shadow: 0px 1px 2px rgba(0,0,0,0.75), inset 0px 1px 0px rgba(255,255,255,0.15); display: block; text-indent: -9999px; height: 64px; width: 64px; position: relative; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; background: rgb(34,34,34); /* Old browsers */ background: -moz-linear-gradient(top, rgba(34,34,34,1) 0%, rgba(23,23,23,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(34,34,34,1)), color-stop(100%,rgba(23,23,23,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#171717',GradientType=0 ); /* IE6-9 */ } .social-hub li a span { background: url(../img/common/footer-social-sprite.png) 0 0 no-repeat; display: block; height: 36px; width: 36px; opacity: 0.5; filter: alpha(opacity=50); position: absolute; top: 14px; left: 14px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .social-hub li a:hover span { opacity: 1; filter: alpha(opacity=100); } .social-hub li a.share span { background-position: 0 0; } .social-hub li a.facebook-share span { background-position: -36px 0; } .social-hub li a.twitter-share span { background-position: -72px 0; } /* page footer */ #page-footer { } #page-footer .fancy-headers { clear: both; } #page-footer .fancy-headers h3 { font-size: 1.286em; } #page-footer a, #page-footer a:visited { text-decoration: none; } /* footer staff members */ .staff-members { display: block; list-style: none; text-align: center; padding: 0; margin: 0; } .staff-members li { display: block; float: left; padding: 0; height: auto; width: 20%; position: relative; } .staff-members li p { background: #000; background: rgba(0,0,0,0.75); text-align: center; width: 120px; display: none; position: absolute; top: 10px; left: 50%; opacity: 0; filter: alpha(opacity=0); padding: 10px 20px; margin: 0 0 0 -80px; z-index: 20; -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; box-sizing: padding-box; } .staff-members li:hover p { display: block; top: -45px; opacity: 1; filter: alpha(opacity=100); } .staff-members li figure { margin: 3px 3px; padding: 6px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.35); background: transparent; /* clear just in case */ filter: ''; background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc5MjgiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiMyNDI0MjQiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiMxODE4MTgiIG9mZnNldD0iMSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2c5MjgpIiAvPgo8L3N2Zz4=); /* color used: #242424 => #181818 */ -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; overflow: hidden; } .staff-members li figure img { display: block; height: auto; width: 100%; -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; } /* footer copyrights */ .copyright { padding: 28px; font-size: 0.857em; text-align: center; } .copyright a, .copyright a:visited { text-decoration: none; } /* comment form styling (single.html view) */ #commentform label { color: #d9d9d9; font-size: 0.813em; padding: 5px 10px; } #commentform input[type='text'], #commentform textarea { background: #242424; border: 1px solid #282828; color: #fff; padding: 4px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } #commentform input[type='text']:focus, #commentform textarea:focus { background: #171717; border: 1px solid #353535; } /* Responsive video embedding & rich media (iframed content) * For responsive iframes (Youtube, SoundCloud, Mixcloud etc) simply place * the iframe mebed code between <div class="media-container"></div> for * proper scaling-down */ video { max-width: 100%; height: auto; } .media-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .media-container iframe, .media-container object, .media-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* vCard styling */ .vcard { font-size: 1.143em; font-style: italic; color: #ADADAD; } .vcard a { color: #fff; text-decoration: none; } .vcard a:hover { color: #d9d9d9; } .vcard .fn { color: #fff; font-size: 1.125em; } .latest-tweet { background: url(../img/common/quotes.png) 0 0 no-repeat; display: block; padding: 5px 5px 5px 50px; font-size: 1.143em; } .latest-tweet a { color: #dedede !important; text-decoration: none; } /* global buttons styling */ .btn { display: inline-block; line-height: 1.429em; vertical-align: middle; border: none; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } .btn-small { padding: 4px 8px; } .btn-medium { padding: 12px 15px; } .btn-xxl { font-size: 1.25em; padding: 15px 20px; } .btn-small .icon { } .btn-medium .icon { margin-top: 1px; } .btn-xxl .icon { margin-top: 3px; } /* event calendar styling */ .months { color: #ffffff; text-align: center; font-size: 2em; font-weight: 400; } .months div { background: rgba(0, 0, 0, 0.3); border: 1px solid #282828; margin-bottom: 5px; padding: 5px; position: relative; } .months a { background: rgba(255,255,255,0.1); color: #fff !important; display: block; padding: 5px 18px; text-decoration: none; font-weight: 300 !important; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } .months a:hover { background: rgba(255,255,255,0.3); } .months .prev { position: absolute; top: 0; left: 0; } .months .next { position: absolute; top: 0; right: 0; } #upcoming-events { font-size: 1.5em; } #upcoming-events th { text-align: center; } #upcoming-events td { padding: 0 !important; } #upcoming-events span { display: block; padding: 40px 10px; text-align: center; } #upcoming-events span.nextmonth { color: #323232 !important; } .party { display: block; position: relative; } #event-header { position : relative; left:0px } .event-info { height: 100px; position: absolute; top: -30px; left: -10px; background: #000; background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.15); padding: 10px; width: 100%; min-width: 100px; z-index: 200; opacity: 0; filter: alpha(opacity=00); box-shadow: 0px 2px 4px rgba(0,0,0,0.5); overflow: hidden; /* -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; */ font-size: 13px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; text-shadow: 0px -1px 0px rgba(0,0,0,0.5); } .event-info ul { margin: 0; padding: 0; list-style: none; } .event-info li { margin: 0; padding: 0; } .event-info li p { margin: 5px 0; } .event-info li img { width: 100%; height: auto; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; opacity: 1; margin-bottom: 5px; } .event-info li img:hover { opacity: .7; filter: alpha(opacity=70); } .event-info li strong { text-transform: uppercase; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .event-info a.btn, .event-info a.btn:visited, .event-info a { margin-top: 8px; color: #fff !important; } .party:hover .event-info { display: block;/* top: -10px; opacity: 1; filter: alpha(opacity=100); height: 316px; */ } /* * A handcrafted icon set by Turqois (http://turqois.com) * 210 20x20 icons for buttons & other styling purposes * Modified by us for the orangeClub Theme */ .icon { display: inline-block; height: 20px; width: 20px; vertical-align: text-top; } .icon-addtag { background: url("../img/icons/icon-addtag.png") center no-repeat; } .icon-alarm { background: url("../img/icons/icon-alarm.png") center no-repeat; } .icon-anchors { background: url("../img/icons/icon-anchors.png") center no-repeat; } .icon-arrow-down { background: url("../img/icons/icon-arrow-down.png") center no-repeat; } .icon-arrow-left { background: url("../img/icons/icon-arrow-left.png") center no-repeat; } .icon-arrow-right { background: url("../img/icons/icon-arrow-right.png") center no-repeat; } .icon-arrow-up { background: url("../img/icons/icon-arrow-up.png") center no-repeat; } .icon-article-add { background: url("../img/icons/icon-article-add.png") center no-repeat; } .icon-article-remove { background: url("../img/icons/icon-article-remove.png") center no-repeat; } .icon-article { background: url("../img/icons/icon-article.png") center no-repeat; } .icon-attachment-2 { background: url("../img/icons/icon-attachment-2.png") center no-repeat; } .icon-attachment { background: url("../img/icons/icon-attachment.png") center no-repeat; } .icon-basil { background: url("../img/icons/icon-basil.png") center no-repeat; } .icon-basket { background: url("../img/icons/icon-basket.png") center no-repeat; } .icon-beer-empty { background: url("../img/icons/icon-beer-empty.png") center no-repeat; } .icon-beer { background: url("../img/icons/icon-beer.png") center no-repeat; } .icon-bike { background: url("../img/icons/icon-bike.png") center no-repeat; } .icon-bill { background: url("../img/icons/icon-bill.png") center no-repeat; } .icon-block { background: url("../img/icons/icon-block.png") center no-repeat; } .icon-bottle-w-label { background: url("../img/icons/icon-bottle-w-label.png") center no-repeat; } .icon-bottle { background: url("../img/icons/icon-bottle.png") center no-repeat; } .icon-bowl-of-chopsticks-1 { background: url("../img/icons/icon-bowl-of-chopsticks-1.png") center no-repeat; } .icon-bowl-of-chopsticks-2 { background: url("../img/icons/icon-bowl-of-chopsticks-2.png") center no-repeat; } .icon-box { background: url("../img/icons/icon-box.png") center no-repeat; } .icon-bread { background: url("../img/icons/icon-bread.png") center no-repeat; } .icon-breads { background: url("../img/icons/icon-breads.png") center no-repeat; } .icon-briefcase { background: url("../img/icons/icon-briefcase.png") center no-repeat; } .icon-brightness { background: url("../img/icons/icon-brightness.png") center no-repeat; } .icon-browser { background: url("../img/icons/icon-browser.png") center no-repeat; } .icon-bubble-1 { background: url("../img/icons/icon-bubble-1.png") center no-repeat; } .icon-bubble-2 { background: url("../img/icons/icon-bubble-2.png") center no-repeat; } .icon-bubble-3 { background: url("../img/icons/icon-bubble-3.png") center no-repeat; } .icon-bubble-4 { background: url("../img/icons/icon-bubble-4.png") center no-repeat; } .icon-cake { background: url("../img/icons/icon-cake.png") center no-repeat; } .icon-calculator { background: url("../img/icons/icon-calculator.png") center no-repeat; } .icon-calendar-2 { background: url("../img/icons/icon-calendar-2.png") center no-repeat; } .icon-calendar { background: url("../img/icons/icon-calendar.png") center no-repeat; } .icon-camera { background: url("../img/icons/icon-camera.png") center no-repeat; } .icon-candy { background: url("../img/icons/icon-candy.png") center no-repeat; } .icon-caps { background: url("../img/icons/icon-caps.png") center no-repeat; } .icon-car { background: url("../img/icons/icon-car.png") center no-repeat; } .icon-card { background: url("../img/icons/icon-card.png") center no-repeat; } .icon-cassette { background: url("../img/icons/icon-cassette.png") center no-repeat; } .icon-charging-battery { background: url("../img/icons/icon-charging-battery.png") center no-repeat; } .icon-chart { background: url("../img/icons/icon-chart.png") center no-repeat; } .icon-chicken { background: url("../img/icons/icon-chicken.png") center no-repeat; } .icon-classicbus { background: url("../img/icons/icon-classicbus.png") center no-repeat; } .icon-clipboard-w-tick { background: url("../img/icons/icon-clipboard-w-tick.png") center no-repeat; } .icon-clipboard { background: url("../img/icons/icon-clipboard.png") center no-repeat; } .icon-cloud { background: url("../img/icons/icon-cloud.png") center no-repeat; } .icon-cocktail-classic { background: url("../img/icons/icon-cocktail-classic.png") center no-repeat; } .icon-cocktail { background: url("../img/icons/icon-cocktail.png") center no-repeat; } .icon-coffee-1 { background: url("../img/icons/icon-coffee-1.png") center no-repeat; } .icon-coffee-2 { background: url("../img/icons/icon-coffee-2.png") center no-repeat; } .icon-compass { background: url("../img/icons/icon-compass.png") center no-repeat; } .icon-controller { background: url("../img/icons/icon-controller.png") center no-repeat; } .icon-crop { background: url("../img/icons/icon-crop.png") center no-repeat; } .icon-cross { background: url("../img/icons/icon-cross.png") center no-repeat; } .icon-cupcake { background: url("../img/icons/icon-cupcake.png") center no-repeat; } .icon-details { background: url("../img/icons/icon-details.png") center no-repeat; } .icon-diamond { background: url("../img/icons/icon-diamond.png") center no-repeat; } .icon-disk { background: url("../img/icons/icon-disk.png") center no-repeat; } .icon-documents { background: url("../img/icons/icon-documents.png") center no-repeat; } .icon-download { background: url("../img/icons/icon-download.png") center no-repeat; } .icon-dribbble { background: url("../img/icons/icon-dribbble.png") center no-repeat; } .icon-drop { background: url("../img/icons/icon-drop.png") center no-repeat; } .icon-egg { background: url("../img/icons/icon-egg.png") center no-repeat; } .icon-email-back { background: url("../img/icons/icon-email-back.png") center no-repeat; } .icon-email-front { background: url("../img/icons/icon-email-front.png") center no-repeat; } .icon-empty-battery { background: url("../img/icons/icon-empty-battery.png") center no-repeat; } .icon-eraser { background: url("../img/icons/icon-eraser.png") center no-repeat; } .icon-eye { background: url("../img/icons/icon-eye.png") center no-repeat; } .icon-facebook { background: url("../img/icons/icon-facebook.png") center no-repeat; } .icon-female { background: url("../img/icons/icon-female.png") center no-repeat; } .icon-files { background: url("../img/icons/icon-files.png") center no-repeat; } .icon-fish { background: url("../img/icons/icon-fish.png") center no-repeat; } .icon-flag { background: url("../img/icons/icon-flag.png") center no-repeat; } .icon-folder-add { background: url("../img/icons/icon-folder-add.png") center no-repeat; } .icon-folder-remove { background: url("../img/icons/icon-folder-remove.png") center no-repeat; } .icon-folder { background: url("../img/icons/icon-folder.png") center no-repeat; } .icon-fork-knife { background: url("../img/icons/icon-fork-knife.png") center no-repeat; } .icon-fork-spoon { background: url("../img/icons/icon-fork-spoon.png") center no-repeat; } .icon-fridge { background: url("../img/icons/icon-fridge.png") center no-repeat; } .icon-full-battery { background: url("../img/icons/icon-full-battery.png") center no-repeat; } .icon-fullscreen { background: url("../img/icons/icon-fullscreen.png") center no-repeat; } .icon-gear-1 { background: url("../img/icons/icon-gear-1.png") center no-repeat; } .icon-gear-2 { background: url("../img/icons/icon-gear-2.png") center no-repeat; } .icon-gear-3 { background: url("../img/icons/icon-gear-3.png") center no-repeat; } .icon-glasses { background: url("../img/icons/icon-glasses.png") center no-repeat; } .icon-globe { background: url("../img/icons/icon-globe.png") center no-repeat; } .icon-grid-2 { background: url("../img/icons/icon-grid-2.png") center no-repeat; } .icon-grid { background: url("../img/icons/icon-grid.png") center no-repeat; } .icon-grill { background: url("../img/icons/icon-grill.png") center no-repeat; } .icon-group { background: url("../img/icons/icon-group.png") center no-repeat; } .icon-gym { background: url("../img/icons/icon-gym.png") center no-repeat; } .icon-half-battery { background: url("../img/icons/icon-half-battery.png") center no-repeat; } .icon-headphones { background: url("../img/icons/icon-headphones.png") center no-repeat; } .icon-heart { background: url("../img/icons/icon-heart.png") center no-repeat; } .icon-home { background: url("../img/icons/icon-home.png") center no-repeat; } .icon-hot-food { background: url("../img/icons/icon-hot-food.png") center no-repeat; } .icon-ice-cream-2 { background: url("../img/icons/icon-ice-cream-2.png") center no-repeat; } .icon-ice-cream-3 { background: url("../img/icons/icon-ice-cream-3.png") center no-repeat; } .icon-ice-cream { background: url("../img/icons/icon-ice-cream.png") center no-repeat; } .icon-imac { background: url("../img/icons/icon-imac.png") center no-repeat; } .icon-instagram-1 { background: url("../img/icons/icon-instagram-1.png") center no-repeat; } .icon-instagram-2 { background: url("../img/icons/icon-instagram-2.png") center no-repeat; } .icon-ipad-landscape { background: url("../img/icons/icon-ipad-landscape.png") center no-repeat; } .icon-ipad-portrait-and-landscape-1 { background: url("../img/icons/icon-ipad-portrait-and-landscape-1.png") center no-repeat; } .icon-ipad-portrait-and-landscape-2 { background: url("../img/icons/icon-ipad-portrait-and-landscape-2.png") center no-repeat; } .icon-ipad-portrait { background: url("../img/icons/icon-ipad-portrait.png") center no-repeat; } .icon-iphone-landscape { background: url("../img/icons/icon-iphone-landscape.png") center no-repeat; } .icon-iphone-portrait-and-landscape-2 { background: url("../img/icons/icon-iphone-portrait-and-landscape-2.png") center no-repeat; } .icon-iphone-portrait-and-landscape { background: url("../img/icons/icon-iphone-portrait-and-landscape.png") center no-repeat; } .icon-iphone-portrait { background: url("../img/icons/icon-iphone-portrait.png") center no-repeat; } .icon-jar { background: url("../img/icons/icon-jar.png") center no-repeat; } .icon-ketchup { background: url("../img/icons/icon-ketchup.png") center no-repeat; } .icon-key { background: url("../img/icons/icon-key.png") center no-repeat; } .icon-laptop { background: url("../img/icons/icon-laptop.png") center no-repeat; } .icon-list-w-images { background: url("../img/icons/icon-list-w-images.png") center no-repeat; } .icon-list { background: url("../img/icons/icon-list.png") center no-repeat; } .icon-location-2 { background: url("../img/icons/icon-location-2.png") center no-repeat; } .icon-location { background: url("../img/icons/icon-location.png") center no-repeat; } .icon-locomotive { background: url("../img/icons/icon-locomotive.png") center no-repeat; } .icon-lollipop-1 { background: url("../img/icons/icon-lollipop-1.png") center no-repeat; } .icon-lollipop-2 { background: url("../img/icons/icon-lollipop-2.png") center no-repeat; } .icon-magicmouse { background: url("../img/icons/icon-magicmouse.png") center no-repeat; } .icon-male { background: url("../img/icons/icon-male.png") center no-repeat; } .icon-map { background: url("../img/icons/icon-map.png") center no-repeat; } .icon-mastercard-1 { background: url("../img/icons/icon-mastercard-1.png") center no-repeat; } .icon-mastercard-2 { background: url("../img/icons/icon-mastercard-2.png") center no-repeat; } .icon-mayo { background: url("../img/icons/icon-mayo.png") center no-repeat; } .icon-medbrief { background: url("../img/icons/icon-medbrief.png") center no-repeat; } .icon-meter { background: url("../img/icons/icon-meter.png") center no-repeat; } .icon-mic-1 { background: url("../img/icons/icon-mic-1.png") center no-repeat; } .icon-mic-2 { background: url("../img/icons/icon-mic-2.png") center no-repeat; } .icon-microwave { background: url("../img/icons/icon-microwave.png") center no-repeat; } .icon-minus { background: url("../img/icons/icon-minus.png") center no-repeat; } .icon-modernbus { background: url("../img/icons/icon-modernbus.png") center no-repeat; } .icon-music { background: url("../img/icons/icon-music.png") center no-repeat; } .icon-news { background: url("../img/icons/icon-news.png") center no-repeat; } .icon-next { background: url("../img/icons/icon-next.png") center no-repeat; } .icon-notepad { background: url("../img/icons/icon-notepad.png") center no-repeat; } .icon-pause { background: url("../img/icons/icon-pause.png") center no-repeat; } .icon-pen { background: url("../img/icons/icon-pen.png") center no-repeat; } .icon-pencil-w-paper { background: url("../img/icons/icon-pencil-w-paper.png") center no-repeat; } .icon-pencil { background: url("../img/icons/icon-pencil.png") center no-repeat; } .icon-person { background: url("../img/icons/icon-person.png") center no-repeat; } .icon-photo-1 { background: url("../img/icons/icon-photo-1.png") center no-repeat; } .icon-photo-2 { background: url("../img/icons/icon-photo-2.png") center no-repeat; } .icon-pizza-1 { background: url("../img/icons/icon-pizza-1.png") center no-repeat; } .icon-pizza-2 { background: url("../img/icons/icon-pizza-2.png") center no-repeat; } .icon-plane { background: url("../img/icons/icon-plane.png") center no-repeat; } .icon-plate { background: url("../img/icons/icon-plate.png") center no-repeat; } .icon-play { background: url("../img/icons/icon-play.png") center no-repeat; } .icon-plus { background: url("../img/icons/icon-plus.png") center no-repeat; } .icon-polaroid-1 { background: url("../img/icons/icon-polaroid-1.png") center no-repeat; } .icon-polaroid-2 { background: url("../img/icons/icon-polaroid-2.png") center no-repeat; } .icon-power { background: url("../img/icons/icon-power.png") center no-repeat; } .icon-presentation { background: url("../img/icons/icon-presentation.png") center no-repeat; } .icon-prev { background: url("../img/icons/icon-prev.png") center no-repeat; } .icon-ramen { background: url("../img/icons/icon-ramen.png") center no-repeat; } .icon-refresh { background: url("../img/icons/icon-refresh.png") center no-repeat; } .icon-reload { background: url("../img/icons/icon-reload.png") center no-repeat; } .icon-removetag { background: url("../img/icons/icon-removetag.png") center no-repeat; } .icon-repeat { background: url("../img/icons/icon-repeat.png") center no-repeat; } .icon-ribbon { background: url("../img/icons/icon-ribbon.png") center no-repeat; } .icon-rocket { background: url("../img/icons/icon-rocket.png") center no-repeat; } .icon-scooter { background: url("../img/icons/icon-scooter.png") center no-repeat; } .icon-search { background: url("../img/icons/icon-search.png") center no-repeat; } .icon-share { background: url("../img/icons/icon-share.png") center no-repeat; } .icon-ship { background: url("../img/icons/icon-ship.png") center no-repeat; } .icon-shoppingbag-1 { background: url("../img/icons/icon-shoppingbag-1.png") center no-repeat; } .icon-shoppingbag-2 { background: url("../img/icons/icon-shoppingbag-2.png") center no-repeat; } .icon-shuffle { background: url("../img/icons/icon-shuffle.png") center no-repeat; } .icon-spatula { background: url("../img/icons/icon-spatula.png") center no-repeat; } .icon-sportscar { background: url("../img/icons/icon-sportscar.png") center no-repeat; } .icon-star { background: url("../img/icons/icon-star.png") center no-repeat; } .icon-stats-down { background: url("../img/icons/icon-stats-down.png") center no-repeat; } .icon-stats-up { background: url("../img/icons/icon-stats-up.png") center no-repeat; } .icon-stop { background: url("../img/icons/icon-stop.png") center no-repeat; } .icon-tag-1 { background: url("../img/icons/icon-tag-1.png") center no-repeat; } .icon-tag-2 { background: url("../img/icons/icon-tag-2.png") center no-repeat; } .icon-tag-3 { background: url("../img/icons/icon-tag-3.png") center no-repeat; } .icon-task { background: url("../img/icons/icon-task.png") center no-repeat; } .icon-tea { background: url("../img/icons/icon-tea.png") center no-repeat; } .icon-thermometer { background: url("../img/icons/icon-thermometer.png") center no-repeat; } .icon-thumbsdown { background: url("../img/icons/icon-thumbsdown.png") center no-repeat; } .icon-thumbsup { background: url("../img/icons/icon-thumbsup.png") center no-repeat; } .icon-tick { background: url("../img/icons/icon-tick.png") center no-repeat; } .icon-tickets { background: url("../img/icons/icon-tickets.png") center no-repeat; } .icon-tie-1 { background: url("../img/icons/icon-tie-1.png") center no-repeat; } .icon-tie-2 { background: url("../img/icons/icon-tie-2.png") center no-repeat; } .icon-train { background: url("../img/icons/icon-train.png") center no-repeat; } .icon-trashcan { background: url("../img/icons/icon-trashcan.png") center no-repeat; } .icon-tv { background: url("../img/icons/icon-tv.png") center no-repeat; } .icon-twitter { background: url("../img/icons/icon-twitter.png") center no-repeat; } .icon-unlocked-1 { background: url("../img/icons/icon-unlocked-1.png") center no-repeat; } .icon-unlocked-2 { background: url("../img/icons/icon-unlocked-2.png") center no-repeat; } .icon-unlocked-3 { background: url("../img/icons/icon-unlocked-3.png") center no-repeat; } .icon-upload { background: url("../img/icons/icon-upload.png") center no-repeat; } .icon-video { background: url("../img/icons/icon-video.png") center no-repeat; } .icon-videonegative { background: url("../img/icons/icon-videonegative.png") center no-repeat; } .icon-volume-max { background: url("../img/icons/icon-volume-max.png") center no-repeat; } .icon-volume-med { background: url("../img/icons/icon-volume-med.png") center no-repeat; } .icon-volume-min { background: url("../img/icons/icon-volume-min.png") center no-repeat; } .icon-volume-mute { background: url("../img/icons/icon-volume-mute.png") center no-repeat; } .icon-warning { background: url("../img/icons/icon-warning.png") center no-repeat; } .icon-water { background: url("../img/icons/icon-water.png") center no-repeat; } .icon-wine-2 { background: url("../img/icons/icon-wine-2.png") center no-repeat; } .icon-wine { background: url("../img/icons/icon-wine.png") center no-repeat; } #map_canvas { width: 100%; height: 400px; margin-top: 20px; } .generic-form { padding: 5px; } .generic-form label { color: #d9d9d9; font-size: 0.813em; padding: 5px 10px; } .generic-form input[type='text'], .generic-form textarea { background: #242424; border: 1px solid #282828; color: #fff; padding: 4px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } .generic-form input[type='text'] { width: 220px; } .generic-form textarea { width: 300px; } .generic-form input[type='text']:focus, .generic-form textarea:focus { background: #171717; border: 1px solid #353535; } #styleswitcher { position: fixed; top: 106px; left: 0; z-index: 1200; height: 120px; padding: 5px; box-shadow: 2px 0 10px rgba(0,0,0,0.5); -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; background: rgb(255,255,255); /* Old browsers */ background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */ background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 ); /* IE6-9 */ } #styleswitcher dt { display: none; } #styleswitcher dd { margin-left: 6px; margin-bottom: 5px; } #styleswitcher dd a { box-shadow: inset 0px 2px 4px rgba(0,0,0,0.5); outline: none; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #styleswitcher dd a:hover { opacity: .7; filter: alpha(opacity=70); } #styleswitcher .style { display: block; text-indent: -9999px; height: 20px; width: 20px; background: #434343; } #styleswitcher .red { background: #D81910; } #styleswitcher .violet { background: #C71257; } #styleswitcher .green { background: #539601; } #styleswitcher .blue { background: #0F7FCA; } #styleswitcher .orange { background: #EC4200; } @media (min-width: 768px) and (max-width: 1199px) { /* @media screen and (min-width: 700px) and (max-width: 1199px) { */ .flexslider { margin: 20px 15px 30px; } .flex-direction-nav a { width: 46px; height: 51px; margin: -25px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -46px 0; right: -14px; } .flex-direction-nav .flex-prev { left: -14px; } .flex-direction-nav .flex-next:hover { background-position: -46px -51px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -51px; } #slider .fancy-headers h1 { font-size: 1.5em; } #slider .fancy-headers h2 { font-size: 2.286em; } #slider p { font-size: 1em; margin: 0 ; padding: 0; } .content-title { padding: 20px 20px 20px 90px; } .content-title h1 { } .content-title h2 { } #content-header .fancy-headers h1 { font-size: 1.614em; } #content-header .fancy-headers h2 { font-size: 1.457em; } .blog.posts .post-icon { float: left; margin: 0 20px 5px 0; } .post-offset > h1 { font-size: 1.229em; } .post-options { padding: 19px 0; text-align: center; } .post-options .social { float: left; margin: 6px 0 6px 10px; } .post-options .social li { float: none; display: inline-block; margin: 0 5px 0 0; } .post-options .more-link { float: right; margin: 0 10px 0 0; } .widget .playlist .set-name { display: block; float: left; width: 100%; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .widget .playlist .set-time { display: none; } .widget .fancy-headers h1 { font-size: 1.371em; } .widget .fancy-headers h2 { font-size: 1.471em; } .flyer-wrapper { margin: 0; padding: 27px 20px; overflow: hidden; } .flyer-wrapper p.event-date { top: 47px; right: 0px; } .flyer-wrapper p.view-event { bottom: 47px; left: 0px; } } @media (min-width: 768px) and (max-width: 979px) { .resp { display: none; } .content-title { } .content-title h1 { font-size: 1.314em; } .content-title h2 { } #content-header .fancy-headers h1 { font-size: 1.214em } #content-header .fancy-headers h2 { font-size: 1.357em; } .blog.posts .post-icon { float: none; } .blog.posts .post-icon img { width: 100% !important; } .widget .fancy-headers { padding: 15px 0 15px 15px; } .widget .fancy-headers h1 { font-size: 1.071em; } .widget .fancy-headers h2 { font-size: 1.071em; } .staff-members li figure { padding: 4px; } .generic-form textarea { width: 100%; } } @media (max-width: 767px) { .resp { display: none; } body { padding: 0 20px; } #page-header { padding: 0 20px; margin: 0 -20px; } #slider, #content-header { margin: 0 -20px; } #primary-nav { display: none; } #primary-nav-mobile { display: block; } #page-footer { padding: 0 20px 20px; margin: 0 -20px; } #slider .fancy-headers h1 { font-size: 1.286em; } #slider .fancy-headers h2 { font-size: 1.286em; } #slider p { display: none; } .flexslider { margin: 0 0 30px; padding: 0;} .flex-direction-nav { display: none; } .flex-direction-nav a { width: 46px; height: 51px; margin: -25px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -46px 0; right: -14px; } .flex-direction-nav .flex-prev { left: -14px; } .flex-direction-nav .flex-next:hover { background-position: -46px -51px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -51px; } .content-title { padding: 30px 20px 30px 80px; } .content-title h1 { font-size: 1.15em; } #content-header .fancy-headers h1 { font-size: 1.286em } #content-header .fancy-headers h2 { font-size: 1.286em } .front-page.posts .post { clear: both; float: none; width: 100%; } .post-offset { margin: 20px 0; } .post-offset figure.post-icon a { display: inline-block; padding: 8px; margin: 0 auto; } .post-offset figure.post-icon a img { max-width: 100%; height: auto; } .post-options .social { float: left; } .post-options .social li { display: block; float: left; margin: 0 16px 0 0; } .post-options .more-link { float: right; } .widget .fancy-headers h1 { margin: 0; padding: 0; font-size: 1.271em; line-height: 1.1em; } .widget .fancy-headers h2 { margin: 0; padding: 0; font-size: 1.271em; line-height: 1.1em; } .flyer-wrapper { margin: 0 auto; padding: 27px 20px; overflow: hidden; } .flyer-wrapper p.event-date { right: 0; top: 48px; } .flyer-wrapper p.view-event { left: 0; } .copyright { margin: 0 -20px -20px; border-left: none !important; border-right: none !important; } .generic-form textarea { width: 100%; } }
public/css/web/core.css
@import url(http://fonts.googleapis.com/css?family=Oswald); @import url(https://fonts.googleapis.com/css?family=Pontano+Sans&subset=latin,latin-ext); */ /* global styles */ body { font-family: 'Pontano Sans', sans-serif; font-size: 14px; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; } /* basic header setup */ #page-header { width: 100%; } #logotype { height: 58px; width: 268px; float: left; display: block; text-indent: -9999px; margin: 15px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #logotype:hover { opacity: .6; filter: alpha(opacity=60); font-size: 24px; } /* primary navigation */ #primary-nav { } #primary-nav { border-right: 10px solid #343434; display: block; float: right; height: 90px; margin: 0; padding: 0 24px 0 0; } #primary-nav > ul { margin: 0; padding: 0; list-style: none; } #primary-nav > ul > li { display: block; float: left; margin: 25px 6px; padding: 0; position: relative; } #primary-nav > ul > li > a, #primary-nav > ul > li > a:visited { display: block; padding: 9px 10px; text-decoration: none; } #primary-nav > ul > li > a:hover, #primary-nav > ul > li > a.hover { -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; text-shadow: 0px -1px 0px rgba(0,0,0,0.5); -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #primary-nav > ul > li > a.withsiblings:hover { -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } #primary-nav > ul ul { display: none; -webkit-border-radius: 5px; -webkit-border-top-left-radius: 0; -moz-border-radius: 5px; -moz-border-radius-topleft: 0; border-radius: 5px; border-top-left-radius: 0; margin: 0; padding: 5px 0; list-style: none; box-shadow: 0px 2px 4px rgba(0,0,0,0.3); opacity: 0; filter: alpha(opacity=0); } #primary-nav > ul ul li { display: block; min-width: 190px; } #primary-nav > ul ul li a { display: block; margin: 0 5px; padding: 5px 10px; text-decoration: none; color: #fff; border-top: 1px dashed rgba(255,255,255,0.2); border-bottom: 1px dashed rgba(0,0,0,0.15); } #primary-nav > ul ul li:first-child a { border-top: none; } #primary-nav > ul ul li:last-child a { border-bottom: none; } #primary-nav > ul > li:hover ul { position: absolute; left: 0; top: 34px; display: block; z-index: 900; opacity: 1; filter: alpha(opacity=100);} #primary-nav-mobile { clear: both; display: none; margin: 20px 0; } #primary-nav-mobile select { background: #fff; border: 1px solid #434343; color: #434343; display: block; font-size: 1.1em; padding: 8px; width: 100%; } .fancy-headers { font-family: 'Oswald', sans-serif;; text-transform: uppercase; } .fancy-headers h1, .fancy-headers h2 { font-weight: 200; text-align: justify; } #slider .fancy-headers { display: block; float: left; margin-right: 20px; } #slider .fancy-headers h1, #slider .fancy-headers h2 { line-height: 1em; margin: 0; padding: 0; } #slider .fancy-headers h1 { font-size: 2.5em; } #slider .fancy-headers h2 { font-size: 3.286em; } #slider p { font-size: 1.286em; margin: 0 ; padding: 0; } /* * jQuery FlexSlider v2.0 http://www.woothemes.com/flexslider/ * Copyright 2012 WooThemes Free to use under the GPLv2 license http://www.gnu.org/licenses/gpl-2.0.html * Contributing author: <NAME> (@mbmufffin) */ .flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus { outline: none; } .slides, .flex-control-nav, .flex-direction-nav { margin: 0; padding: 0; list-style: none; } .flexslider { margin: 20px 30px 30px; padding: 10px; position: relative; zoom: 1; } .slider-wrapper, .flexslider { box-shadow: inset 0px 1px 0px rgba(255,255,255,0.3), inset 0px -1px 0px rgba(255,255,255,0.1), inset 1px 0px 0px rgba(255,255,255,0.1), inset -1px 0px 0px rgba(255,255,255,0.1); } .slider-wrapper:after, .flexslider:after { background: url(../img/common/slider-shadow.png) center top no-repeat; background-size: contain; content: ''; position: absolute; left: 0; bottom: -24px; height: 24px; width: 100%; } .flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; position: relative; } /* Hide the slides before the JS is loaded. Avoids image jumping */ .flexslider .slides img { width: 100%; display: block; } .flexslider .slides .flex-caption { background: #000; background: rgba(0,0,0,0.75); border-top: 1px solid rgba(255,255,255,0.20); position: absolute; bottom: 0; left: 0; width: 100%; z-index: 10; } .flexslider .slides .flex-caption > div { padding: 15px 20px; overflow: hidden; } .flex-pauseplay span { text-transform: capitalize; } .slides:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } html[xmlns] .slides { display: block; } * html .slides { height: 1%; } .no-js .slides > li:first-child { display: block; } .flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; } .loading .flex-viewport { max-height: 300px; } .flexslider .slides { zoom: 1; } .carousel li { margin-right: 5px; } .flex-direction-nav { *height: 0; } .flex-direction-nav a { width: 91px; height: 103px; margin: -51px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -91px 0; right: -28px; } .flex-direction-nav .flex-prev { left: -28px; } .flex-direction-nav .flex-next:hover { background-position: -91px -103px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -103px; } .flex-direction-nav .flex-disabled { opacity: .3!important; filter:alpha(opacity=30); cursor: default; } .flex-control-nav { width: 100%; position: absolute; bottom: -27px; text-align: center; z-index: 200; } .flex-control-nav li { margin: 0; display: inline-block; zoom: 1; *display: inline; } .flex-control-paging li a.flex-active { cursor: default; } .flex-control-paging li a { display: block; cursor: pointer; text-indent: -9999px; -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; transition: opacity 0.3s ease; } .flex-control-thumbs { margin: 5px 0 0; position: static; overflow: hidden; } .flex-control-thumbs li { width: 25%; float: left; margin: 0; } .flex-control-thumbs img { width: 100%; display: block; opacity: .7; filter: alpha(opacity=70); cursor: pointer; } .flex-control-thumbs img:hover { opacity: 1; filter: alpha(opacity=100); } .flex-control-thumbs .flex-active { opacity: 1; filter: alpha(opacity=100);cursor: default; } /* * jQuery Nivo Slider v3.1 * http://nivo.dev7studios.com * * Copyright 2012, Dev7studios * Free to use and abuse under the MIT license. * http://www.opensource.org/licenses/mit-license.php */ /* The Nivo Slider styles */ .slider-wrapper { margin: 20px 30px 30px; padding: 10px; position: relative; zoom: 1; } .nivoSlider { position: relative; width:100%; height:auto; overflow: hidden; } .nivoSlider img { position: absolute; top: 0px; left: 0px; max-width: none; } .nivo-main-image { display: block !important; position: relative !important; width: 100% !important; } /* If an image is wrapped in a link */ .nivoSlider a.nivo-imageLink { position: absolute; top:0px; left:0px; width:100%; height:100%; border:0; padding:0; margin:0; z-index:6; display:none; } /* The slices and boxes in the Slider */ .nivo-slice { display: block; position: absolute; z-index:5; height:100%; top:0; } .nivo-box { display: block; position: absolute; z-index:5; overflow:hidden; } .nivo-box img { display: block; } /* Caption styles */ .nivo-caption { position:absolute; left:0px; bottom:0px; background:#000; color:#fff; width:100%; z-index:8; padding: 5px 10px; opacity: 0.8; filter: alpha(opacity=80); overflow: hidden; display: none; -moz-opacity: 0.8; filter:alpha(opacity=80); -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; /* Opera/IE 8+ */ } .nivo-caption p { padding:5px; margin:0; } .nivo-caption a { display:inline !important; } .nivo-html-caption { display:none; } /* Direction nav styles (e.g. Next & Prev) */ .nivo-directionNav a { position:absolute; top:45%; z-index:9; cursor:pointer; } .nivo-prevNav { left:0px; } .nivo-nextNav { right:0px; } /* Control nav styles (e.g. 1,2,3...) */ .nivo-controlNav { width: 100%; position: absolute; bottom: -27px; text-align: center; z-index: 200; } .nivo-controlNav a { margin: 0; display: inline-block; zoom: 1; *display: inline; cursor:pointer; -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; transition: opacity 0.3s ease; } .theme-default .nivo-directionNav a { display:block; width:30px; height:30px; background:url(../img/common/arrows.png) no-repeat; text-indent:-9999px; border:0; opacity: 0; filter: alpha(opacity=80); -webkit-transition: all 200ms ease-in-out; -moz-transition: all 200ms ease-in-out; -o-transition: all 200ms ease-in-out; transition: all 200ms ease-in-out; } .theme-default:hover .nivo-directionNav a { opacity: 1; filter: alpha(opacity=100);} .theme-default a.nivo-nextNav { background-position:-30px 0; right:15px; } .theme-default a.nivo-prevNav { left:15px; } /* * FancyBox - jQuery Plugin * Simple and fancy lightbox alternative * * Examples and documentation at: http://fancybox.net * * Copyright (c) 2008 - 2010 <NAME> * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated. * * Version: 1.3.4 (11/11/2010) * Requires: jQuery v1.3+ * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ #fancybox-loading { position: fixed; top: 50%; left: 50%; width: 40px; height: 40px; margin-top: -20px; margin-left: -20px; cursor: pointer; overflow: hidden; z-index: 1104; display: none; } #fancybox-loading div { position: absolute; top: 0; left: 0; width: 40px; height: 480px; background-image: url('../img/common/fancybox.png'); } #fancybox-overlay { position: absolute; top: 0; left: 0; width: 100%; z-index: 1100; display: none; } #fancybox-tmp { padding: 0; margin: 0; border: 0; overflow: auto; display: none; } #fancybox-wrap { position: absolute; top: 0; left: 0; padding: 20px; z-index: 1101; outline: none; display: none; } #fancybox-outer { position: relative; width: 100%; height: 100%; background: #fff; } #fancybox-content { width: 0; height: 0; padding: 0; outline: none; position: relative; overflow: hidden; z-index: 1102; border: 0px solid #fff; } #fancybox-hide-sel-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 1101; } #fancybox-close { position: absolute; top: -15px; right: -15px; width: 30px; height: 30px; background: transparent url('../img/common/fancybox.png') -40px 0px; cursor: pointer; z-index: 1103; display: none; } #fancybox-error { color: #444; font: normal 12px/20px Arial; padding: 14px; margin: 0; } #fancybox-img { width: 100%; height: 100%; padding: 0; margin: 0; border: none; outline: none; line-height: 0; vertical-align: top; } #fancybox-frame { width: 100%; height: 100%; border: none; display: block; } #fancybox-left, #fancybox-right { position: absolute; bottom: 0px; height: 100%; width: 35%; cursor: pointer; outline: none; background: transparent url('../img/common/blank.gif'); z-index: 1102; display: none; } #fancybox-left { left: 0px; } #fancybox-right { right: 0px; } #fancybox-left-ico, #fancybox-right-ico { position: absolute; top: 50%; left: -9999px; width: 30px; height: 30px; margin-top: -15px; cursor: pointer; z-index: 1102; display: block; } #fancybox-left-ico { background-image: url('../img/common/fancybox.png'); background-position: -40px -30px; } #fancybox-right-ico { background-image: url('../img/common/fancybox.png'); background-position: -40px -60px; } #fancybox-left:hover, #fancybox-right:hover { visibility: visible; /* IE6 */ } #fancybox-left:hover span { left: 20px; } #fancybox-right:hover span { left: auto; right: 20px; } .fancybox-bg { position: absolute; padding: 0; margin: 0; border: 0; width: 20px; height: 20px; z-index: 1001; } #fancybox-bg-n { top: -20px; left: 0; width: 100%; background-image: url('../img/common/fancybox-x.png'); } #fancybox-bg-ne { top: -20px; right: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -162px; } #fancybox-bg-e { top: 0; right: -20px; height: 100%; background-image: url('../img/common/fancybox-y.png'); background-position: -20px 0px; } #fancybox-bg-se { bottom: -20px; right: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -182px; } #fancybox-bg-s { bottom: -20px; left: 0; width: 100%; background-image: url('../img/common/fancybox-x.png'); background-position: 0px -20px; } #fancybox-bg-sw { bottom: -20px; left: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -142px; } #fancybox-bg-w { top: 0; left: -20px; height: 100%; background-image: url('../img/common/fancybox-y.png'); } #fancybox-bg-nw { top: -20px; left: -20px; background-image: url('../img/common/fancybox.png'); background-position: -40px -122px; } #fancybox-title { font-family: Helvetica; font-size: 12px; z-index: 1102; } .fancybox-title-inside { padding-bottom: 10px; text-align: center; color: #333; background: #fff; position: relative; } .fancybox-title-outside { padding-top: 10px; color: #fff; } .fancybox-title-over { position: absolute; bottom: 0; left: 0; color: #FFF; text-align: left; } #fancybox-title-over { padding: 10px; background-image: url('../img/common/fancy_title_over.png'); display: block; } .fancybox-title-float { position: absolute; left: 0; bottom: -20px; height: 32px; } #fancybox-title-float-wrap { border: none; border-collapse: collapse; width: auto; } #fancybox-title-float-wrap td { border: none; white-space: nowrap; } #fancybox-title-float-left { padding: 0 0 0 15px; background: url('../img/common/fancybox.png') -40px -90px no-repeat; } #fancybox-title-float-main { color: #FFF; line-height: 29px; font-weight: bold; padding: 0 0 3px 0; background: url('.._/img/common/fancybox-x.html') 0px -40px; } #fancybox-title-float-right { padding: 0 0 0 15px; background: url('../img/common/fancybox.png') -55px -90px no-repeat; } /* IE6 */ .fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_close.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_nav_left.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_nav_right.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_over.png', sizingMethod='scale'); zoom: 1; } .fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_left.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_main.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_title_right.png', sizingMethod='scale'); } .fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame { height: expression(this.parentNode.clientHeight + "px"); } #fancybox-loading.fancybox-ie6 { position: absolute; margin-top: 0; top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'); } #fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_loading.png', sizingMethod='scale'); } /* IE6, IE7, IE8 */ .fancybox-ie .fancybox-bg { background: transparent !important; } .fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_n.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_ne.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_e.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_se.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_s.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_sw.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_w.png', sizingMethod='scale'); } .fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/common/fancy_shadow_nw.png', sizingMethod='scale'); } /* content styling */ .content-title { font-family: 'Pontano Sans', serif; padding: 30px 0 30px 90px; } .content-title h1 { font-size: 1.714em; font-weight: normal; margin: 0; padding: 0; text-transform: uppercase; line-height: 1em; } .content-title h2 { font-size: 1.286em; font-weight: normal; margin: 0; padding: 0; line-height: 1em; } .content-title.welcome { background: url(../img/common/icon_welcome.png) 10px 50% no-repeat; } .content-title.blog { background: url(../img/common/icon_blog.png) 10px 50% no-repeat; } .content-title.page { background: url(../img/common/icon_page.png) 10px 50% no-repeat; } .content-title.single { background: url(../img/common/icon_single.png) 10px 50% no-repeat; } .content-title.calendar { background: url(../img/common/icon_calendar.png) 10px 50% no-repeat; } .content-title.event { background: url(../img/common/icon_calendar-single.png) 10px 50% no-repeat; } .content-title.contact { background: url(../img/common/icon_contact.png) 10px 50% no-repeat; } #content-header { margin-bottom: 5px; } #content-header .fancy-headers { padding: 18px; } #content-header .fancy-headers h1, #content-header .fancy-headers h2 { margin: 0; } #content-header .fancy-headers h1 { font-size: 2.114em; line-height: 1.2em; } #content-header .fancy-headers h2 { font-size: 1.857em; line-height: 1.2em; } #banner { margin: 20px 15px 10px; } #banner a, #banner a:visited { display: block; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } #banner img { width: 100%; height: auto; } /* post formatting (headings, galleries, tables etc) */ .posts .post { width: 100%; } .front-page.posts .post { width: 50%; float: left; } .post-offset { margin: 15px; } .blog.posts .post { margin-top: 50px; } .blog.posts .post.single { margin-top: 0; } .blog.posts .post-icon { float: left; margin: 0 20px 20px 0; } .blog.posts .post-options { clear: both; } .blog.posts .post-offset > h1 { margin-bottom: 0 !important; } .post-offset figure.post-icon a { display: block; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } .post-offset figure.post-icon a img { max-width: 100%; height: auto; } .post-offset > h1 { font-family: 'Oswald', sans-serif; font-size: 1.429em; font-weight: normal; text-transform: uppercase; margin: 20px 0; padding: 0; } .post-offset > h1 a, .post-offset > h1 a:visited { text-decoration: none; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .entry-date { color: #494949; } .post-offset h1, .post-offset h2, .post-offset h3, .post-offset h4, .post-offset h5, .post-offset h6 { color: #fff; font-family: 'Oswald', sans-serif; font-weight: 300; margin: .67em 0 .25em; } .post-offset h2 { font-size: 1.4em; } .post-offset h3 { font-size: 1.3em; } .post-offset h4 { font-size: 1.2em; } .post-offset h5 { font-size: 1.1em; } .post-offset h6 { font-size: 1em; } .post-offset ul, .post-offset ol, .post-offset dl { color: #fff; } .post-offset ul { list-style: outside; } .post-offset .gallery { display: block; width: 100%; clear: both; margin: 10px 0; padding: 0; list-style: none; overflow: hidden; text-align: center; } .post-offset .gallery li { display: inline-block; margin: 0; padding: 0; width: 20%; min-width: 84px; max-width: 150px; } .post-offset .gallery figure { background: #1e1e1e; color: #909090 !important; display: block; margin: 2px; padding: 5px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.15); -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .post-offset .gallery figure:hover { background: #2c2c2c; color: #fff !important; } .post-offset .gallery figure a { display: block; } .post-offset .gallery figure img { width: 100%; max-width: 100%; height: auto; } .post-offset .gallery figcaption { margin: 5px 0 0; text-align: center; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .post-offset table { width: 100%; border-collapse: collapse; text-align: left; } .post-offset table th { border: 1px solid #282828; color: #fff !important; font-weight: 300; font-family: 'Oswald', sans-serif; font-size: 1em; padding: 10px 4px; } .post-offset table td { border: 1px solid #282828; color: #bdbdbd; padding: 4px; } .post-offset table tr:nth-child(odd) td { background: rgba(0,0,0,0.3); } /* comments tree (with nesting) */ #comments { margin: 0; padding: 0; list-style: none; } #comments li { margin: 0; padding: 0; } #comments ul { margin: 0 0 0 30px; padding: 0; list-style: none; } .comment-author .avatar { padding: 4px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.35); background: rgb(36,36,36); /* Old browsers */ background: -moz-linear-gradient(top, rgba(36,36,36,1) 0%, rgba(24,24,24,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,36,36,1)), color-stop(100%,rgba(24,24,24,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(36,36,36,1) 0%,rgba(24,24,24,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#242424', endColorstr='#181818',GradientType=0 ); /* IE6-9 */ -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; } .comment-author .url { text-decoration: none; color: #fff; } .comment .commententry { border-bottom: 1px solid #282828; } .comment .commententry p { color: #b6b6b6 !important; } .comment .commententry .reply { clear: both; display: block; width: 100%; margin: 10px 0; padding: 0; text-align: right; } .comment-author img { float: left; margin-right: 10px; } /* post meta - social icons */ .post-options { margin: 30px 0 20px; padding: 19px; overflow: hidden; } .post-options .social { margin: 6px; padding: 0; list-style: none; display: block; float: left; } .post-options .social li { display: block; float: left; margin: 0 16px 0 0; padding: 0; } .post-options .social li a { background: url(../img/common/post-social-sprite.png) no-repeat; display: block; height: 32px; width: 32px; text-indent: -9999px; outline: none; } .post-options .social li a.share { background-position: 0 0; } .post-options .social li a.facebook-share { background-position: -32px 0; } .post-options .social li a.twitter-share { background-position: -64px 0; } .post-options .social li a.share:hover { background-position: 0 -32px; } .post-options .social li a.facebook-share:hover { background-position: -32px -32px; } .post-options .social li a.twitter-share:hover { background-position: -64px -32px; } .post-options .more-link { float: right; } /* sidebar widgets styling */ .photo-stream { margin: 0 0 15px 0; padding: 0; list-style: none; overflow: hidden; } .photo-stream li { margin: 0; padding: 0; display: block; float: left; width: 33.333%; text-align: center; } .photo-stream li a, .photo-stream li a:visited { display: inline-block; margin: 15px 10px 0 10px; padding: 8px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; } .photo-stream li a:hover { } .photo-stream li a img { display: block; height: auto; width: 100%; } /* widget headers */ .widget .fancy-headers { padding: 20px 0 20px 20px; } .widget .fancy-headers h1 { margin: 0; padding: 0; font-size: 1.571em; line-height: 1em; } .widget .fancy-headers h2 { margin: 0; padding: 0; font-size: 1.571em; line-height: 1em; } /* playlist widget */ .widget .playlist { } .widget .playlist ul { border-bottom: 1px solid #252525; list-style: none; margin: 0 0 20px 0; padding: 0; } .widget .playlist ul li { border-top: 1px solid #252525; border-bottom: 1px solid #050505; display: block; margin: 0; padding: 11px 20px 11px 40px; cursor: pointer; } .widget .playlist p { color: #fff; margin: 0; padding: 0; overflow: hidden; font-size: 1.071em; line-height: 1.071em; } .widget .playlist .set-name { display: block; float: left; width: 80%; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .widget .playlist .set-time { display: block; float: right; width: 20%; text-align: right; } /* upcoming events widget */ .widget .upcoming-events { } .flyer-wrapper { position: relative; text-align: center; max-width: 270px; margin: 27px auto; } .flyer-wrapper figure { display: inline-block; } .flyer-wrapper figure img { display: block; height: auto; width: 100%; } .flyer-wrapper p { position: absolute; font-family: 'Oswald', sans-serif; font-size: 1.286em; line-height: 1.286em; margin: 0; padding: 10px; } .flyer-wrapper p.event-date { top: 20px; right: -20px; } .flyer-wrapper p.view-event { bottom: 20px; left: -20px; } /* pagination styling */ #pagination { text-align: center; margin: 35px 0 45px 0; } #pagination ol { display: inline-block; list-style: none; margin: 0; padding: 0; } #pagination ol li { display: block; float: left; margin: 0 3px; padding: 0; } #pagination ol li a, #pagination ol li a:visited { display: block; line-height: 1em; padding: 10px 10px 8px; text-decoration: none; } /* footer social hub */ .social-hub { clear: both; list-style: none; margin: 0; padding: 0; width: 100%; text-align: center; } .social-hub li { display: inline-block; margin: 0 4px;} .social-hub li a { box-shadow: 0px 1px 2px rgba(0,0,0,0.75), inset 0px 1px 0px rgba(255,255,255,0.15); display: block; text-indent: -9999px; height: 64px; width: 64px; position: relative; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; background: rgb(34,34,34); /* Old browsers */ background: -moz-linear-gradient(top, rgba(34,34,34,1) 0%, rgba(23,23,23,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(34,34,34,1)), color-stop(100%,rgba(23,23,23,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(34,34,34,1) 0%,rgba(23,23,23,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#171717',GradientType=0 ); /* IE6-9 */ } .social-hub li a span { background: url(../img/common/footer-social-sprite.png) 0 0 no-repeat; display: block; height: 36px; width: 36px; opacity: 0.5; filter: alpha(opacity=50); position: absolute; top: 14px; left: 14px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } .social-hub li a:hover span { opacity: 1; filter: alpha(opacity=100); } .social-hub li a.share span { background-position: 0 0; } .social-hub li a.facebook-share span { background-position: -36px 0; } .social-hub li a.twitter-share span { background-position: -72px 0; } /* page footer */ #page-footer { } #page-footer .fancy-headers { clear: both; } #page-footer .fancy-headers h3 { font-size: 1.286em; } #page-footer a, #page-footer a:visited { text-decoration: none; } /* footer staff members */ .staff-members { display: block; list-style: none; text-align: center; padding: 0; margin: 0; } .staff-members li { display: block; float: left; padding: 0; height: auto; width: 20%; position: relative; } .staff-members li p { background: #000; background: rgba(0,0,0,0.75); text-align: center; width: 120px; display: none; position: absolute; top: 10px; left: 50%; opacity: 0; filter: alpha(opacity=0); padding: 10px 20px; margin: 0 0 0 -80px; z-index: 20; -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; box-sizing: padding-box; } .staff-members li:hover p { display: block; top: -45px; opacity: 1; filter: alpha(opacity=100); } .staff-members li figure { margin: 3px 3px; padding: 6px; box-shadow: inset 0px 1px 0px rgba(255,255,255,0.35); background: transparent; /* clear just in case */ filter: ''; background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc5MjgiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiMyNDI0MjQiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiMxODE4MTgiIG9mZnNldD0iMSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2c5MjgpIiAvPgo8L3N2Zz4=); /* color used: #242424 => #181818 */ -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; overflow: hidden; } .staff-members li figure img { display: block; height: auto; width: 100%; -moz-border-radius: 500px; -webkit-border-radius: 500px; -o-border-radius: 500px; border-radius: 500px; } /* footer copyrights */ .copyright { padding: 28px; font-size: 0.857em; text-align: center; } .copyright a, .copyright a:visited { text-decoration: none; } /* comment form styling (single.html view) */ #commentform label { color: #d9d9d9; font-size: 0.813em; padding: 5px 10px; } #commentform input[type='text'], #commentform textarea { background: #242424; border: 1px solid #282828; color: #fff; padding: 4px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } #commentform input[type='text']:focus, #commentform textarea:focus { background: #171717; border: 1px solid #353535; } /* Responsive video embedding & rich media (iframed content) * For responsive iframes (Youtube, SoundCloud, Mixcloud etc) simply place * the iframe mebed code between <div class="media-container"></div> for * proper scaling-down */ video { max-width: 100%; height: auto; } .media-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .media-container iframe, .media-container object, .media-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* vCard styling */ .vcard { font-size: 1.143em; font-style: italic; color: #ADADAD; } .vcard a { color: #fff; text-decoration: none; } .vcard a:hover { color: #d9d9d9; } .vcard .fn { color: #fff; font-size: 1.125em; } .latest-tweet { background: url(../img/common/quotes.png) 0 0 no-repeat; display: block; padding: 5px 5px 5px 50px; font-size: 1.143em; } .latest-tweet a { color: #dedede !important; text-decoration: none; } /* global buttons styling */ .btn { display: inline-block; line-height: 1.429em; vertical-align: middle; border: none; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } .btn-small { padding: 4px 8px; } .btn-medium { padding: 12px 15px; } .btn-xxl { font-size: 1.25em; padding: 15px 20px; } .btn-small .icon { } .btn-medium .icon { margin-top: 1px; } .btn-xxl .icon { margin-top: 3px; } /* event calendar styling */ .months { color: #ffffff; text-align: center; font-size: 2em; font-weight: 400; } .months div { background: rgba(0, 0, 0, 0.3); border: 1px solid #282828; margin-bottom: 5px; padding: 5px; position: relative; } .months a { background: rgba(255,255,255,0.1); color: #fff !important; display: block; padding: 5px 18px; text-decoration: none; font-weight: 300 !important; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } .months a:hover { background: rgba(255,255,255,0.3); } .months .prev { position: absolute; top: 0; left: 0; } .months .next { position: absolute; top: 0; right: 0; } #upcoming-events { font-size: 1.5em; } #upcoming-events th { text-align: center; } #upcoming-events td { padding: 0 !important; } #upcoming-events span { display: block; padding: 40px 10px; text-align: center; } #upcoming-events span.nextmonth { color: #323232 !important; } .party { display: block; position: relative; } #event-header { position : relative; left:0px } .event-info { height: 100px; position: absolute; top: -30px; left: -10px; background: #000; background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.15); padding: 10px; width: 100%; min-width: 100px; z-index: 200; opacity: 0; filter: alpha(opacity=00); box-shadow: 0px 2px 4px rgba(0,0,0,0.5); overflow: hidden; /* -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; */ font-size: 13px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-sizing: padding-box; text-shadow: 0px -1px 0px rgba(0,0,0,0.5); } .event-info ul { margin: 0; padding: 0; list-style: none; } .event-info li { margin: 0; padding: 0; } .event-info li p { margin: 5px 0; } .event-info li img { width: 100%; height: auto; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; opacity: 1; margin-bottom: 5px; } .event-info li img:hover { opacity: .7; filter: alpha(opacity=70); } .event-info li strong { text-transform: uppercase; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .event-info a.btn, .event-info a.btn:visited, .event-info a { margin-top: 8px; color: #fff !important; } .party:hover .event-info { display: block;/* top: -10px; opacity: 1; filter: alpha(opacity=100); height: 316px; */ } /* * A handcrafted icon set by Turqois (http://turqois.com) * 210 20x20 icons for buttons & other styling purposes * Modified by us for the orangeClub Theme */ .icon { display: inline-block; height: 20px; width: 20px; vertical-align: text-top; } .icon-addtag { background: url("../img/icons/icon-addtag.png") center no-repeat; } .icon-alarm { background: url("../img/icons/icon-alarm.png") center no-repeat; } .icon-anchors { background: url("../img/icons/icon-anchors.png") center no-repeat; } .icon-arrow-down { background: url("../img/icons/icon-arrow-down.png") center no-repeat; } .icon-arrow-left { background: url("../img/icons/icon-arrow-left.png") center no-repeat; } .icon-arrow-right { background: url("../img/icons/icon-arrow-right.png") center no-repeat; } .icon-arrow-up { background: url("../img/icons/icon-arrow-up.png") center no-repeat; } .icon-article-add { background: url("../img/icons/icon-article-add.png") center no-repeat; } .icon-article-remove { background: url("../img/icons/icon-article-remove.png") center no-repeat; } .icon-article { background: url("../img/icons/icon-article.png") center no-repeat; } .icon-attachment-2 { background: url("../img/icons/icon-attachment-2.png") center no-repeat; } .icon-attachment { background: url("../img/icons/icon-attachment.png") center no-repeat; } .icon-basil { background: url("../img/icons/icon-basil.png") center no-repeat; } .icon-basket { background: url("../img/icons/icon-basket.png") center no-repeat; } .icon-beer-empty { background: url("../img/icons/icon-beer-empty.png") center no-repeat; } .icon-beer { background: url("../img/icons/icon-beer.png") center no-repeat; } .icon-bike { background: url("../img/icons/icon-bike.png") center no-repeat; } .icon-bill { background: url("../img/icons/icon-bill.png") center no-repeat; } .icon-block { background: url("../img/icons/icon-block.png") center no-repeat; } .icon-bottle-w-label { background: url("../img/icons/icon-bottle-w-label.png") center no-repeat; } .icon-bottle { background: url("../img/icons/icon-bottle.png") center no-repeat; } .icon-bowl-of-chopsticks-1 { background: url("../img/icons/icon-bowl-of-chopsticks-1.png") center no-repeat; } .icon-bowl-of-chopsticks-2 { background: url("../img/icons/icon-bowl-of-chopsticks-2.png") center no-repeat; } .icon-box { background: url("../img/icons/icon-box.png") center no-repeat; } .icon-bread { background: url("../img/icons/icon-bread.png") center no-repeat; } .icon-breads { background: url("../img/icons/icon-breads.png") center no-repeat; } .icon-briefcase { background: url("../img/icons/icon-briefcase.png") center no-repeat; } .icon-brightness { background: url("../img/icons/icon-brightness.png") center no-repeat; } .icon-browser { background: url("../img/icons/icon-browser.png") center no-repeat; } .icon-bubble-1 { background: url("../img/icons/icon-bubble-1.png") center no-repeat; } .icon-bubble-2 { background: url("../img/icons/icon-bubble-2.png") center no-repeat; } .icon-bubble-3 { background: url("../img/icons/icon-bubble-3.png") center no-repeat; } .icon-bubble-4 { background: url("../img/icons/icon-bubble-4.png") center no-repeat; } .icon-cake { background: url("../img/icons/icon-cake.png") center no-repeat; } .icon-calculator { background: url("../img/icons/icon-calculator.png") center no-repeat; } .icon-calendar-2 { background: url("../img/icons/icon-calendar-2.png") center no-repeat; } .icon-calendar { background: url("../img/icons/icon-calendar.png") center no-repeat; } .icon-camera { background: url("../img/icons/icon-camera.png") center no-repeat; } .icon-candy { background: url("../img/icons/icon-candy.png") center no-repeat; } .icon-caps { background: url("../img/icons/icon-caps.png") center no-repeat; } .icon-car { background: url("../img/icons/icon-car.png") center no-repeat; } .icon-card { background: url("../img/icons/icon-card.png") center no-repeat; } .icon-cassette { background: url("../img/icons/icon-cassette.png") center no-repeat; } .icon-charging-battery { background: url("../img/icons/icon-charging-battery.png") center no-repeat; } .icon-chart { background: url("../img/icons/icon-chart.png") center no-repeat; } .icon-chicken { background: url("../img/icons/icon-chicken.png") center no-repeat; } .icon-classicbus { background: url("../img/icons/icon-classicbus.png") center no-repeat; } .icon-clipboard-w-tick { background: url("../img/icons/icon-clipboard-w-tick.png") center no-repeat; } .icon-clipboard { background: url("../img/icons/icon-clipboard.png") center no-repeat; } .icon-cloud { background: url("../img/icons/icon-cloud.png") center no-repeat; } .icon-cocktail-classic { background: url("../img/icons/icon-cocktail-classic.png") center no-repeat; } .icon-cocktail { background: url("../img/icons/icon-cocktail.png") center no-repeat; } .icon-coffee-1 { background: url("../img/icons/icon-coffee-1.png") center no-repeat; } .icon-coffee-2 { background: url("../img/icons/icon-coffee-2.png") center no-repeat; } .icon-compass { background: url("../img/icons/icon-compass.png") center no-repeat; } .icon-controller { background: url("../img/icons/icon-controller.png") center no-repeat; } .icon-crop { background: url("../img/icons/icon-crop.png") center no-repeat; } .icon-cross { background: url("../img/icons/icon-cross.png") center no-repeat; } .icon-cupcake { background: url("../img/icons/icon-cupcake.png") center no-repeat; } .icon-details { background: url("../img/icons/icon-details.png") center no-repeat; } .icon-diamond { background: url("../img/icons/icon-diamond.png") center no-repeat; } .icon-disk { background: url("../img/icons/icon-disk.png") center no-repeat; } .icon-documents { background: url("../img/icons/icon-documents.png") center no-repeat; } .icon-download { background: url("../img/icons/icon-download.png") center no-repeat; } .icon-dribbble { background: url("../img/icons/icon-dribbble.png") center no-repeat; } .icon-drop { background: url("../img/icons/icon-drop.png") center no-repeat; } .icon-egg { background: url("../img/icons/icon-egg.png") center no-repeat; } .icon-email-back { background: url("../img/icons/icon-email-back.png") center no-repeat; } .icon-email-front { background: url("../img/icons/icon-email-front.png") center no-repeat; } .icon-empty-battery { background: url("../img/icons/icon-empty-battery.png") center no-repeat; } .icon-eraser { background: url("../img/icons/icon-eraser.png") center no-repeat; } .icon-eye { background: url("../img/icons/icon-eye.png") center no-repeat; } .icon-facebook { background: url("../img/icons/icon-facebook.png") center no-repeat; } .icon-female { background: url("../img/icons/icon-female.png") center no-repeat; } .icon-files { background: url("../img/icons/icon-files.png") center no-repeat; } .icon-fish { background: url("../img/icons/icon-fish.png") center no-repeat; } .icon-flag { background: url("../img/icons/icon-flag.png") center no-repeat; } .icon-folder-add { background: url("../img/icons/icon-folder-add.png") center no-repeat; } .icon-folder-remove { background: url("../img/icons/icon-folder-remove.png") center no-repeat; } .icon-folder { background: url("../img/icons/icon-folder.png") center no-repeat; } .icon-fork-knife { background: url("../img/icons/icon-fork-knife.png") center no-repeat; } .icon-fork-spoon { background: url("../img/icons/icon-fork-spoon.png") center no-repeat; } .icon-fridge { background: url("../img/icons/icon-fridge.png") center no-repeat; } .icon-full-battery { background: url("../img/icons/icon-full-battery.png") center no-repeat; } .icon-fullscreen { background: url("../img/icons/icon-fullscreen.png") center no-repeat; } .icon-gear-1 { background: url("../img/icons/icon-gear-1.png") center no-repeat; } .icon-gear-2 { background: url("../img/icons/icon-gear-2.png") center no-repeat; } .icon-gear-3 { background: url("../img/icons/icon-gear-3.png") center no-repeat; } .icon-glasses { background: url("../img/icons/icon-glasses.png") center no-repeat; } .icon-globe { background: url("../img/icons/icon-globe.png") center no-repeat; } .icon-grid-2 { background: url("../img/icons/icon-grid-2.png") center no-repeat; } .icon-grid { background: url("../img/icons/icon-grid.png") center no-repeat; } .icon-grill { background: url("../img/icons/icon-grill.png") center no-repeat; } .icon-group { background: url("../img/icons/icon-group.png") center no-repeat; } .icon-gym { background: url("../img/icons/icon-gym.png") center no-repeat; } .icon-half-battery { background: url("../img/icons/icon-half-battery.png") center no-repeat; } .icon-headphones { background: url("../img/icons/icon-headphones.png") center no-repeat; } .icon-heart { background: url("../img/icons/icon-heart.png") center no-repeat; } .icon-home { background: url("../img/icons/icon-home.png") center no-repeat; } .icon-hot-food { background: url("../img/icons/icon-hot-food.png") center no-repeat; } .icon-ice-cream-2 { background: url("../img/icons/icon-ice-cream-2.png") center no-repeat; } .icon-ice-cream-3 { background: url("../img/icons/icon-ice-cream-3.png") center no-repeat; } .icon-ice-cream { background: url("../img/icons/icon-ice-cream.png") center no-repeat; } .icon-imac { background: url("../img/icons/icon-imac.png") center no-repeat; } .icon-instagram-1 { background: url("../img/icons/icon-instagram-1.png") center no-repeat; } .icon-instagram-2 { background: url("../img/icons/icon-instagram-2.png") center no-repeat; } .icon-ipad-landscape { background: url("../img/icons/icon-ipad-landscape.png") center no-repeat; } .icon-ipad-portrait-and-landscape-1 { background: url("../img/icons/icon-ipad-portrait-and-landscape-1.png") center no-repeat; } .icon-ipad-portrait-and-landscape-2 { background: url("../img/icons/icon-ipad-portrait-and-landscape-2.png") center no-repeat; } .icon-ipad-portrait { background: url("../img/icons/icon-ipad-portrait.png") center no-repeat; } .icon-iphone-landscape { background: url("../img/icons/icon-iphone-landscape.png") center no-repeat; } .icon-iphone-portrait-and-landscape-2 { background: url("../img/icons/icon-iphone-portrait-and-landscape-2.png") center no-repeat; } .icon-iphone-portrait-and-landscape { background: url("../img/icons/icon-iphone-portrait-and-landscape.png") center no-repeat; } .icon-iphone-portrait { background: url("../img/icons/icon-iphone-portrait.png") center no-repeat; } .icon-jar { background: url("../img/icons/icon-jar.png") center no-repeat; } .icon-ketchup { background: url("../img/icons/icon-ketchup.png") center no-repeat; } .icon-key { background: url("../img/icons/icon-key.png") center no-repeat; } .icon-laptop { background: url("../img/icons/icon-laptop.png") center no-repeat; } .icon-list-w-images { background: url("../img/icons/icon-list-w-images.png") center no-repeat; } .icon-list { background: url("../img/icons/icon-list.png") center no-repeat; } .icon-location-2 { background: url("../img/icons/icon-location-2.png") center no-repeat; } .icon-location { background: url("../img/icons/icon-location.png") center no-repeat; } .icon-locomotive { background: url("../img/icons/icon-locomotive.png") center no-repeat; } .icon-lollipop-1 { background: url("../img/icons/icon-lollipop-1.png") center no-repeat; } .icon-lollipop-2 { background: url("../img/icons/icon-lollipop-2.png") center no-repeat; } .icon-magicmouse { background: url("../img/icons/icon-magicmouse.png") center no-repeat; } .icon-male { background: url("../img/icons/icon-male.png") center no-repeat; } .icon-map { background: url("../img/icons/icon-map.png") center no-repeat; } .icon-mastercard-1 { background: url("../img/icons/icon-mastercard-1.png") center no-repeat; } .icon-mastercard-2 { background: url("../img/icons/icon-mastercard-2.png") center no-repeat; } .icon-mayo { background: url("../img/icons/icon-mayo.png") center no-repeat; } .icon-medbrief { background: url("../img/icons/icon-medbrief.png") center no-repeat; } .icon-meter { background: url("../img/icons/icon-meter.png") center no-repeat; } .icon-mic-1 { background: url("../img/icons/icon-mic-1.png") center no-repeat; } .icon-mic-2 { background: url("../img/icons/icon-mic-2.png") center no-repeat; } .icon-microwave { background: url("../img/icons/icon-microwave.png") center no-repeat; } .icon-minus { background: url("../img/icons/icon-minus.png") center no-repeat; } .icon-modernbus { background: url("../img/icons/icon-modernbus.png") center no-repeat; } .icon-music { background: url("../img/icons/icon-music.png") center no-repeat; } .icon-news { background: url("../img/icons/icon-news.png") center no-repeat; } .icon-next { background: url("../img/icons/icon-next.png") center no-repeat; } .icon-notepad { background: url("../img/icons/icon-notepad.png") center no-repeat; } .icon-pause { background: url("../img/icons/icon-pause.png") center no-repeat; } .icon-pen { background: url("../img/icons/icon-pen.png") center no-repeat; } .icon-pencil-w-paper { background: url("../img/icons/icon-pencil-w-paper.png") center no-repeat; } .icon-pencil { background: url("../img/icons/icon-pencil.png") center no-repeat; } .icon-person { background: url("../img/icons/icon-person.png") center no-repeat; } .icon-photo-1 { background: url("../img/icons/icon-photo-1.png") center no-repeat; } .icon-photo-2 { background: url("../img/icons/icon-photo-2.png") center no-repeat; } .icon-pizza-1 { background: url("../img/icons/icon-pizza-1.png") center no-repeat; } .icon-pizza-2 { background: url("../img/icons/icon-pizza-2.png") center no-repeat; } .icon-plane { background: url("../img/icons/icon-plane.png") center no-repeat; } .icon-plate { background: url("../img/icons/icon-plate.png") center no-repeat; } .icon-play { background: url("../img/icons/icon-play.png") center no-repeat; } .icon-plus { background: url("../img/icons/icon-plus.png") center no-repeat; } .icon-polaroid-1 { background: url("../img/icons/icon-polaroid-1.png") center no-repeat; } .icon-polaroid-2 { background: url("../img/icons/icon-polaroid-2.png") center no-repeat; } .icon-power { background: url("../img/icons/icon-power.png") center no-repeat; } .icon-presentation { background: url("../img/icons/icon-presentation.png") center no-repeat; } .icon-prev { background: url("../img/icons/icon-prev.png") center no-repeat; } .icon-ramen { background: url("../img/icons/icon-ramen.png") center no-repeat; } .icon-refresh { background: url("../img/icons/icon-refresh.png") center no-repeat; } .icon-reload { background: url("../img/icons/icon-reload.png") center no-repeat; } .icon-removetag { background: url("../img/icons/icon-removetag.png") center no-repeat; } .icon-repeat { background: url("../img/icons/icon-repeat.png") center no-repeat; } .icon-ribbon { background: url("../img/icons/icon-ribbon.png") center no-repeat; } .icon-rocket { background: url("../img/icons/icon-rocket.png") center no-repeat; } .icon-scooter { background: url("../img/icons/icon-scooter.png") center no-repeat; } .icon-search { background: url("../img/icons/icon-search.png") center no-repeat; } .icon-share { background: url("../img/icons/icon-share.png") center no-repeat; } .icon-ship { background: url("../img/icons/icon-ship.png") center no-repeat; } .icon-shoppingbag-1 { background: url("../img/icons/icon-shoppingbag-1.png") center no-repeat; } .icon-shoppingbag-2 { background: url("../img/icons/icon-shoppingbag-2.png") center no-repeat; } .icon-shuffle { background: url("../img/icons/icon-shuffle.png") center no-repeat; } .icon-spatula { background: url("../img/icons/icon-spatula.png") center no-repeat; } .icon-sportscar { background: url("../img/icons/icon-sportscar.png") center no-repeat; } .icon-star { background: url("../img/icons/icon-star.png") center no-repeat; } .icon-stats-down { background: url("../img/icons/icon-stats-down.png") center no-repeat; } .icon-stats-up { background: url("../img/icons/icon-stats-up.png") center no-repeat; } .icon-stop { background: url("../img/icons/icon-stop.png") center no-repeat; } .icon-tag-1 { background: url("../img/icons/icon-tag-1.png") center no-repeat; } .icon-tag-2 { background: url("../img/icons/icon-tag-2.png") center no-repeat; } .icon-tag-3 { background: url("../img/icons/icon-tag-3.png") center no-repeat; } .icon-task { background: url("../img/icons/icon-task.png") center no-repeat; } .icon-tea { background: url("../img/icons/icon-tea.png") center no-repeat; } .icon-thermometer { background: url("../img/icons/icon-thermometer.png") center no-repeat; } .icon-thumbsdown { background: url("../img/icons/icon-thumbsdown.png") center no-repeat; } .icon-thumbsup { background: url("../img/icons/icon-thumbsup.png") center no-repeat; } .icon-tick { background: url("../img/icons/icon-tick.png") center no-repeat; } .icon-tickets { background: url("../img/icons/icon-tickets.png") center no-repeat; } .icon-tie-1 { background: url("../img/icons/icon-tie-1.png") center no-repeat; } .icon-tie-2 { background: url("../img/icons/icon-tie-2.png") center no-repeat; } .icon-train { background: url("../img/icons/icon-train.png") center no-repeat; } .icon-trashcan { background: url("../img/icons/icon-trashcan.png") center no-repeat; } .icon-tv { background: url("../img/icons/icon-tv.png") center no-repeat; } .icon-twitter { background: url("../img/icons/icon-twitter.png") center no-repeat; } .icon-unlocked-1 { background: url("../img/icons/icon-unlocked-1.png") center no-repeat; } .icon-unlocked-2 { background: url("../img/icons/icon-unlocked-2.png") center no-repeat; } .icon-unlocked-3 { background: url("../img/icons/icon-unlocked-3.png") center no-repeat; } .icon-upload { background: url("../img/icons/icon-upload.png") center no-repeat; } .icon-video { background: url("../img/icons/icon-video.png") center no-repeat; } .icon-videonegative { background: url("../img/icons/icon-videonegative.png") center no-repeat; } .icon-volume-max { background: url("../img/icons/icon-volume-max.png") center no-repeat; } .icon-volume-med { background: url("../img/icons/icon-volume-med.png") center no-repeat; } .icon-volume-min { background: url("../img/icons/icon-volume-min.png") center no-repeat; } .icon-volume-mute { background: url("../img/icons/icon-volume-mute.png") center no-repeat; } .icon-warning { background: url("../img/icons/icon-warning.png") center no-repeat; } .icon-water { background: url("../img/icons/icon-water.png") center no-repeat; } .icon-wine-2 { background: url("../img/icons/icon-wine-2.png") center no-repeat; } .icon-wine { background: url("../img/icons/icon-wine.png") center no-repeat; } #map_canvas { width: 100%; height: 400px; margin-top: 20px; } .generic-form { padding: 5px; } .generic-form label { color: #d9d9d9; font-size: 0.813em; padding: 5px 10px; } .generic-form input[type='text'], .generic-form textarea { background: #242424; border: 1px solid #282828; color: #fff; padding: 4px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; } .generic-form input[type='text'] { width: 220px; } .generic-form textarea { width: 300px; } .generic-form input[type='text']:focus, .generic-form textarea:focus { background: #171717; border: 1px solid #353535; } #styleswitcher { position: fixed; top: 106px; left: 0; z-index: 1200; height: 120px; padding: 5px; box-shadow: 2px 0 10px rgba(0,0,0,0.5); -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; background: rgb(255,255,255); /* Old browsers */ background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */ background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 ); /* IE6-9 */ } #styleswitcher dt { display: none; } #styleswitcher dd { margin-left: 6px; margin-bottom: 5px; } #styleswitcher dd a { box-shadow: inset 0px 2px 4px rgba(0,0,0,0.5); outline: none; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; } #styleswitcher dd a:hover { opacity: .7; filter: alpha(opacity=70); } #styleswitcher .style { display: block; text-indent: -9999px; height: 20px; width: 20px; background: #434343; } #styleswitcher .red { background: #D81910; } #styleswitcher .violet { background: #C71257; } #styleswitcher .green { background: #539601; } #styleswitcher .blue { background: #0F7FCA; } #styleswitcher .orange { background: #EC4200; } @media (min-width: 768px) and (max-width: 1199px) { /* @media screen and (min-width: 700px) and (max-width: 1199px) { */ .flexslider { margin: 20px 15px 30px; } .flex-direction-nav a { width: 46px; height: 51px; margin: -25px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -46px 0; right: -14px; } .flex-direction-nav .flex-prev { left: -14px; } .flex-direction-nav .flex-next:hover { background-position: -46px -51px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -51px; } #slider .fancy-headers h1 { font-size: 1.5em; } #slider .fancy-headers h2 { font-size: 2.286em; } #slider p { font-size: 1em; margin: 0 ; padding: 0; } .content-title { padding: 20px 20px 20px 90px; } .content-title h1 { } .content-title h2 { } #content-header .fancy-headers h1 { font-size: 1.614em; } #content-header .fancy-headers h2 { font-size: 1.457em; } .blog.posts .post-icon { float: left; margin: 0 20px 5px 0; } .post-offset > h1 { font-size: 1.229em; } .post-options { padding: 19px 0; text-align: center; } .post-options .social { float: left; margin: 6px 0 6px 10px; } .post-options .social li { float: none; display: inline-block; margin: 0 5px 0 0; } .post-options .more-link { float: right; margin: 0 10px 0 0; } .widget .playlist .set-name { display: block; float: left; width: 100%; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .widget .playlist .set-time { display: none; } .widget .fancy-headers h1 { font-size: 1.371em; } .widget .fancy-headers h2 { font-size: 1.471em; } .flyer-wrapper { margin: 0; padding: 27px 20px; overflow: hidden; } .flyer-wrapper p.event-date { top: 47px; right: 0px; } .flyer-wrapper p.view-event { bottom: 47px; left: 0px; } } @media (min-width: 768px) and (max-width: 979px) { .resp { display: none; } .content-title { } .content-title h1 { font-size: 1.314em; } .content-title h2 { } #content-header .fancy-headers h1 { font-size: 1.214em } #content-header .fancy-headers h2 { font-size: 1.357em; } .blog.posts .post-icon { float: none; } .blog.posts .post-icon img { width: 100% !important; } .widget .fancy-headers { padding: 15px 0 15px 15px; } .widget .fancy-headers h1 { font-size: 1.071em; } .widget .fancy-headers h2 { font-size: 1.071em; } .staff-members li figure { padding: 4px; } .generic-form textarea { width: 100%; } } @media (max-width: 767px) { .resp { display: none; } body { padding: 0 20px; } #page-header { padding: 0 20px; margin: 0 -20px; } #slider, #content-header { margin: 0 -20px; } #primary-nav { display: none; } #primary-nav-mobile { display: block; } #page-footer { padding: 0 20px 20px; margin: 0 -20px; } #slider .fancy-headers h1 { font-size: 1.286em; } #slider .fancy-headers h2 { font-size: 1.286em; } #slider p { display: none; } .flexslider { margin: 0 0 30px; padding: 0;} .flex-direction-nav { display: none; } .flex-direction-nav a { width: 46px; height: 51px; margin: -25px 0 0; display: block; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; } .flex-direction-nav .flex-next { background-position: -46px 0; right: -14px; } .flex-direction-nav .flex-prev { left: -14px; } .flex-direction-nav .flex-next:hover { background-position: -46px -51px; } .flex-direction-nav .flex-prev:hover { background-position: 0 -51px; } .content-title { padding: 30px 20px 30px 80px; } .content-title h1 { font-size: 1.15em; } #content-header .fancy-headers h1 { font-size: 1.286em } #content-header .fancy-headers h2 { font-size: 1.286em } .front-page.posts .post { clear: both; float: none; width: 100%; } .post-offset { margin: 20px 0; } .post-offset figure.post-icon a { display: inline-block; padding: 8px; margin: 0 auto; } .post-offset figure.post-icon a img { max-width: 100%; height: auto; } .post-options .social { float: left; } .post-options .social li { display: block; float: left; margin: 0 16px 0 0; } .post-options .more-link { float: right; } .widget .fancy-headers h1 { margin: 0; padding: 0; font-size: 1.271em; line-height: 1.1em; } .widget .fancy-headers h2 { margin: 0; padding: 0; font-size: 1.271em; line-height: 1.1em; } .flyer-wrapper { margin: 0 auto; padding: 27px 20px; overflow: hidden; } .flyer-wrapper p.event-date { right: 0; top: 48px; } .flyer-wrapper p.view-event { left: 0; } .copyright { margin: 0 -20px -20px; border-left: none !important; border-right: none !important; } .generic-form textarea { width: 100%; } }
0.360489
0.041891